Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<<widget "charSheet">><<nobr>>
<<include "characterTexts">>
<div id="character-profile">
<button id="ui-dialog-close" class="ui-close" tabindex="0" aria-label="Close"></button>
<div id="character-profile-contents">
<div id="character-profile-header">
<div id="character-profile-agency">
<<= '<img src='+ $imagePath.ui + "characterSheet/agency-logo.svg"+' class="agency-logo" >'>>
<h2 class="label-top-secret">
Top secret strap3 UKEO
</h2>
</div>
<div id="character-profile-personal">
<div class="profile-image-container">
<<= '<img src='+ $imagePath.ui + "characterSheet/profile-image-placeholder.png"+' >'>>
/*
<div class="profile-image-container-inner">
<div class="profile-image-container-inner-2">
<div class="profile-image-container-inner-3">
<!-- The containers are necessary in order to hide the avatar,
which is usually much larger than the portrait we'll be
showing -->
<<avatar>>
</div>
</div>
</div>
*/
</div>
<div class="character-profile-record">
<h3 class="label-personnel-record">
Service personnel record
</h3>
<div class="character-profile-details">
<h2 class="character-name">
<<= $kate.firstName >>
<<= $kate.surname >>
</h2>
<div class="character-title">Operational Officer</div>
<div class="character-assignment">Current Assignment: MID/OPS</div>
</div>
</div>
</div>
</div>
<div id="character-profile-stats" class="tabs">
<div class="tabs-header">
<a href="#" class="tab-active" data-tab="tab-1">Status</a>
/*<a href="#" data-tab="tab-2">Profile</a>*/
<a href="#" data-tab="tab-2">Skills</a>
<a href="#" data-tab="tab-3">Personal</a>
<a href="#" data-tab="tab-4">Bio</a>
<a href="#" data-tab="tab-5">Mission</a>
</div>
<div class="tabs-content">
<div class="tab tab-active" data-tab="tab-1">
<div class="accordion-item">
<header>Status Effects</header>
<div class="accordion-item-content">
<<for _i to 0; _i lt $kate.statusEffects.length; _i++>>
<<character-sheet-statusEffect $kate.statusEffects[_i]>>
<div class="character-stat">
<<= '<img class="stat-image" src='+ _statusEffects.image +'>'>>
<header>_statusEffects.name</header>
<div class="stat-description">
_statusEffects.description
</div>
<div class="stat-effects">
_statusEffects.effects
</div>
</div>
<</for>>
</div>
</div>
/*
<div class="accordion-item">
<header>Quirks</header>
<div class="accordion-item-content">
<<set _quirkList to ["batarian","commando","resting bitch face","elite","middle class","working class","single mum","big brother","big sister","kid brother","kid sister","easy","picky"]>>
<<for _i to 0; _i lt $kate.quirks.length ; _i++>>
<<if _quirkList.includes($kate.quirks[_i])>>
<div class="character-stat">
<<set _quirk to $kate.quirks[_i]>>
<header><<=_quirk.toUpperFirst()>></header>
<div class="stat-description">
<<print setup.info.quirkDescriptions[_quirk]>>
</div>
<div class="stat-effects">
<<print setup.info.quirkEffects[_quirk]>>
</div>
</div>
<</if>>
<</for>>
</div>
</div>
<div class="accordion-item">
<header>Kinks</header>
<div class="accordion-item-content">
<<for _i to 0; _i lt $kate.kinks.length ; _i++>>
<div class="character-stat">
<<set _kink to $kate.kinks[_i]>>
<header><<=_kink.toUpperFirst()>></header>
<div class="stat-description">
<<print setup.info.kinkDescriptions[_kink]>>
</div>
<div class="stat-effects">
<<print setup.info.kinkEffects[_kink]>>
</div>
</div>
<</for>>
</div>
</div>
*/
</div>
<div class="tab" data-tab="tab-2">
<div class="accordion-item">
<header>Skills list</header>
<div class="accordion-item-content">
<<set _skills to Object.keys($kate.skills)>>
<<for _i to 0; _i lt _skills.length; _i++>>
<<set _skill to _skills[_i]>>
<<set _skillObj to $kate.skills[_skill] >>
<<if def $kate.skills[_skill]>>
<<set _value to (Math.round(_skillObj['level'] || 0)).toString() >>
<<if _value neq "-4">>
<div class="character-stat">
<header>
<<= _skill.toUpperFirst() >>:
<strong>
<<= _value >>
<<= setup.info.skillDescriptionTitles[_skill][_value] >>
</strong>
</header>
<div class="stat-description">
//Skill description.// [Specialities will be displayed here]
</div>
<div class="stat-effects">
<<for _j to 0; _j lt _skillObj.specialities.length; _j++>>
<<set _specialty to _skillObj.specialities[_j] >>
<div class="stat-description">
_specialty
</div>
<</for>>
</div>
<<set _XP to _skillObj.xp >>
<<set _targetXP to 500 >> /*Calculations for target xp.*/
<<for _l to 0; _l lt 51; _l++>>
<<if _targetXP lte _XP>>
<<set _targetXP to _targetXP*2>>
<<else>>
<<break>>
<</if>>
<</for>>
<<set _width to 100 * (_XP-(_targetXP /2)) / _targetXP>>
<div class="progress-bar-container">
<div class="progress-bar">
<<= '<div class="progress-bar-filled" style="width:'+ _width +'%"></div>'>>
</div>
<div class="progress-bar-label">
_XP / _targetXP
</div>
</div>
</div>
<</if>>
<</if>>
<</for>>
<br>
</div>
</div>
</div>
<div class="tab" data-tab="tab-3">
<div class="accordion-item">
<header>Kinks</header>
<div class="accordion-item-content">
<<for _i to 0; _i lt $kate.kinks.length ; _i++>>
<div class="character-stat">
<<set _kink to $kate.kinks[_i]>>
<header><<=_kink.toUpperFirst()>></header>
<div class="stat-description">
<<print setup.info.kinkDescriptions[_kink]>>
</div>
<div class="stat-effects">
<<print setup.info.kinkEffects[_kink]>>
</div>
</div>
<</for>>
</div>
</div>
/*
<div class="accordion-item">
<header>Relationship Statistics</header>
<div class="accordion-item-content">
<div class="character-stat">
Coming Soon
</div>
</div>
<div class="accordion-item-content">
<div class="character-stat">
<header>Serious Relationships: 2</header>
<div class="stat-description">Rob, Jacob</div>
</div>
<div class="character-stat">
<header>Some other stat</header>
<div class="stat-description">stat 2</div>
</div>
<div class="character-stat">
<header>third stat </header>
<div class="stat-description">Placeholder</div>
</div>
</div>
</div>
<div class="accordion-item">
<header>Relationship History</header>
<div class="accordion-item-content">
<<rTables-showPartners>>
</div>
</div>
*/
</div>
<div class="tab" data-tab="tab-4">
/*
<div class="accordion-item">
<header>Personal Bio</header>
<div class="accordion-item-content">
<div class="character-stat">
Coming Soon
</div>
<<for _i to $kate.personalBio.length-1; _i gte 0; _i-->>
<div class="character-stat">
<header>$kate.personalBio[_i].timestamp</header>
<div class="stat-description">
$kate.personalBio[_i].entry
</div>
</div>
<</for>>
</div>
</div>
*/
<div class="accordion-item">
<header>Achievements</header>
<div class="accordion-item-content">
<div class="character-achievements">
<div class="accordion-item-content">
<div class="character-stat">
Coming Soon
</div>
</div>
<<for _i to 0; _i lt $kate.achievements.length; _i++>>
<<character-sheet-achievements $kate.achievements[_i]>>
<div class="character-achievement">
<<='<img class="achievement-image" src=' + _cheevos.image +'>'>>
<header>_cheevos.name</header>
<p class="achievement-text">_cheevos.description</p>
</div>
<</for>>
</div>
</div>
</div>
</div>
<div class="tab" data-tab="tab-5">
<div class="accordion-item">
<header>Active Missions</header>
<div class="accordion-item-content">
<div class="character-stat">
<div class="stat-description">
<i>(Locked until main quest starts)</i>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<header>Completed Missions</header>
<div class="accordion-item-content">
<div class="character-stat">
<div class="stat-description">
<i>(Locked until main quest starts)</i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<</nobr>><</widget>><<widget "wear-amandasWhiteCrissCrossFashionBag">><<nobr>>
<<set _pathClothing to "clothing/accessories/amandasWhiteCrissCrossFashionBag/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("handbag")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-amandasWhiteCrissCrossFashionBag"))>>
/*BACK*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-amandasWhiteCrissCrossFashionBag-rear"))>>
<</nobr>><</widget>>
<<widget "remove-amandasWhiteCrissCrossFashionBag">><<nobr>>
<<set _pathClothing to "clothing/accessories/amandasWhiteCrissCrossFashionBag/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("handbag")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-amandasWhiteCrissCrossFashionBag"))>>
/*BACK*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-amandasWhiteCrissCrossFashionBag-rear"))>>
<</nobr>><</widget>>
<<widget "wear-bohoBrownLeatherBag">><<nobr>>
<<set _pathClothing to "clothing/accessories/bohoBrownLeatherBag/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("handbag")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-bohoBrownLeatherBag"))>>
/*BACK*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-bohoBrownLeatherBag-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bohoBrownLeatherBag">><<nobr>>
<<set _pathClothing to "clothing/accessories/bohoBrownLeatherBag/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("handbag")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-bohoBrownLeatherBag"))>>
/*BACK*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-bohoBrownLeatherBag-rear"))>>
<</nobr>><</widget>>
<<widget "wear-blackAviators">><<nobr>>
<<set _pathClothing to "clothing/accessories/blackAviators/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("glasses")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_sunglasses-blackAviators"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "remove-blackAviators">><<nobr>>
<<set _pathClothing to "clothing/accessories/blackAviators/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("glasses")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_sunglasses-blackAviators"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "wear-ogBackpack">><<nobr>>
<<set _pathClothing to "clothing/accessories/ogBackpack/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("backpack")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"9_backpack-ogBackpackStraps"))>>
<<set $avatar.background.pushUnique((_pathClothing+"80_backpack-ogBackpackBag"))>>
/*BACK*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_backpack-ogBackpackStraps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-ogBackpack">><<nobr>>
<<set _pathClothing to "clothing/accessories/ogBackpack/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("backpack")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"9_backpack-ogBackpackStraps"))>>
<<set $avatar.background.delete((_pathClothing+"80_backpack-ogBackpackBag"))>>
/*BACK*/
<<set $avatar.foreground.delete((_pathClothing+"60_backpack-ogBackpackStraps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-bigBlackSunglasses">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("glasses")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_sunglasses-blackLensesWithBlackFrameOversized"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "remove-bigBlackSunglasses">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("glasses")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_sunglasses-blackLensesWithBlackFrameOversized"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "wear-blueLatexSurgicalGloves">><<nobr>>
<<set _pathClothing to "clothing/accessories/blueLatexSurgicalGloves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("gloves")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_blueLatexSurgicalGloves"))>>
<<set $avatar.clothing.pushUnique((_pathClothing+"20_blueLatexSurgicalGloves-rear"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "remove-blueLatexSurgicalGloves">><<nobr>>
<<set _pathClothing to "clothing/accessories/blueLatexSurgicalGloves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("gloves")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_blueLatexSurgicalGloves"))>>
<<set $avatar.clothing.delete((_pathClothing+"20_blueLatexSurgicalGloves-rear"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "wear-clearLatexSurgicalGloves">><<nobr>>
<<remove-bracelet-friendshipBraceletsLeftWrist>>
<<set _pathClothing to "clothing/accessories/clearLatexSurgicalGloves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("gloves")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_clearLatexSurgicalGloves"))>>
<<set $avatar.clothing.pushUnique((_pathClothing+"20_clearLatexSurgicalGloves-rear"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "remove-clearLatexSurgicalGloves">><<nobr>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<set _pathClothing to "clothing/accessories/clearLatexSurgicalGloves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("gloves")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_clearLatexSurgicalGloves"))>>
<<set $avatar.clothing.delete((_pathClothing+"20_clearLatexSurgicalGloves-rear"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "wear-khakiFourPocketBackpackWithStripes">><<nobr>>
<<set _pathClothing to "accessories/khakiFourPocketBackpackWithStripes/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("backpack")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique(_pathClothing+"60_bag-khakiFourPocketBackpackWithStripes")>>
/*BACK*/
<<set $avatar.foreground.pushUnique(_pathClothing+"60_bag-khakiFourPocketBackpackWithStripes-rear")>>
<</nobr>><</widget>>
<<widget "remove-khakiFourPocketBackpackWithStripes">><<nobr>>
<<set _pathClothing to "accessories/khakiFourPocketBackpackWithStripes/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("backpack")>>
/*FRONT*/
<<set $avatar.foreground.delete(_pathClothing+"60_bag-khakiFourPocketBackpackWithStripes")>>
/*BACK*/
<<set $avatar.foreground.delete(_pathClothing+"60_bag-khakiFourPocketBackpackWithStripes-rear")>>
<</nobr>><</widget>>
<<widget "wear-multicolouredMalaysianCrossBodyBag">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("handbag")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-multicolouredMalaysianCrossBodyBag"))>>
<<set $avatar.background.pushUnique((_pathClothing+"60_bag-multicolouredMalaysianCrossBodyBagBackgroundStrap"))>>
/*BACK*/
<<set $avatar.foreground.pushUnique((_pathClothing+"8_bag-multicolouredMalaysianCrossBodyBag-rear"))>>
<<set $avatar.background.pushUnique((_pathClothing+"60_bag-multicolouredMalaysianCrossBodyBagBackgroundStrap-rear"))>>
<</nobr>><</widget>>
<<widget "remove-multicolouredMalaysianCrossBodyBag">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("handbag")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-multicolouredMalaysianCrossBodyBag"))>>
<<set $avatar.background.delete((_pathClothing+"60_bag-multicolouredMalaysianCrossBodyBagBackgroundStrap"))>>
/*BACK*/
<<set $avatar.foreground.delete((_pathClothing+"8_bag-multicolouredMalaysianCrossBodyBag-rear"))>>
<<set $avatar.background.delete((_pathClothing+"60_bag-multicolouredMalaysianCrossBodyBagBackgroundStrap-rear"))>>
<</nobr>><</widget>>
<<widget "wear-tanLeatherHandbag">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("handbag")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-tanLeatherHandbag"))>>
/*BACK*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-tanLeatherHandbag-rear"))>>
<</nobr>><</widget>>
<<widget "remove-tanLeatherHandbag">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("handbag")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-tanLeatherHandbag"))>>
/*BACK*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-tanLeatherHandbag-rear"))>>
<</nobr>><</widget>>
<<widget "wear-zoesSilverClutchHandbag">><<nobr>>
<<set _pathClothing to "clothing/accessories/zoesSilverClutchHandbag/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("handbag")>>
/*FRONT*/
<<set $avatar.foreground.pushUnique((_pathClothing+"60_bag-zoesSilverClutchHandbag"))>>
/*BACK*/
<</nobr>><</widget>>
<<widget "remove-zoesSilverClutchHandbag">><<nobr>>
<<set _pathClothing to "clothing/accessories/zoesSilverClutchHandbag/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("handbag")>>
/*FRONT*/
<<set $avatar.foreground.delete((_pathClothing+"60_bag-zoesSilverClutchHandbag"))>>
/*BACK*/
<</nobr>><</widget>><<widget "removeBra">><<silently>>
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-bra-blackAloYogaPeakBra">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackAloYogaPeakBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "blackAloYogaPeakBra">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-blackAloYogaPeakBra-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-blackAloYogaPeakBra-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-blackAloYogaPeakBra">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackAloYogaPeakBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to _pathUnderWear+"30_bra-blackAloYogaPeakBra-" +$kate.braSize>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete(_pathUnderWear+"30_bra-blackAloYogaPeakBra-rear")>>
<</nobr>><</widget>>
/*Black plunge bra with pink and invisible against fair coloured skin bow.*/
<<widget "wear-bra-blackPlungeWithPinkBow">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackPlungeBraWithPinkBow/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "blackPlungeWithPinkBow">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-blackPlungeWithPinkBow-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-blackPlungeWithPinkBow-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-blackPlungeWithPinkBow">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackPlungeBraWithPinkBow/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to _pathUnderWear+"30_bra-blackPlungeWithPinkBow-" +$kate.braSize>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete(_pathUnderWear+"30_bra-blackPlungeWithPinkBow-rear")>>
<</nobr>><</widget>>
<<widget "wear-bra-blackUnderArmourSportsBra">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackUnderArmourSportsUnderwear/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "blackUnderArmourSportsBra">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-blackUnderArmourSportsBra-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-blackUnderArmourSportsBra-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-blackUnderArmourSportsBra">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackUnderArmourSportsUnderwear/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to _pathUnderWear+"30_bra-blackUnderArmourSportsBra-" +$kate.braSize>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete(_pathUnderWear+"30_bra-blackUnderArmourSportsBra-rear")>>
<</nobr>><</widget>>
<<widget "wear-bra-cherryRedPlunge">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathClothing to "clothing/underwear/cherryRedPlungeBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "cherryRedPlunge">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_bra-cherryRedPlunge-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_bra-cherryRedPlunge-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-cherryRedPlunge">><<nobr>>
<<set _pathClothing to "clothing/underwear/cherryRedPlungeBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"30_bra-cherryRedPlunge-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"30_bra-cherryRedPlunge-rear"))>>
<</nobr>><</widget>>
<<widget "wear-bra-nudeStrapless">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/nudeStraplessBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "nudeStrapless">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-nudeStrapless-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-nudeStrapless-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-nudeStrapless">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/nudeStraplessBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to _pathUnderWear+"30_bra-nudeStrapless-" +$kate.braSize>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete(_pathUnderWear+"30_bra-nudeStrapless-rear")>>
<</nobr>><</widget>>
<<widget "wear-bra-oceanDotCrissCrossBra">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/oceanDotCrissCrossBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "oceanDotCrissCrossBra">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-oceanDotCrissCrossBra-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-oceanDotCrissCrossBra-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-oceanDotCrissCrossBra">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/oceanDotCrissCrossBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to _pathUnderWear+"30_bra-oceanDotCrissCrossBra-" +$kate.braSize>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete(_pathUnderWear+"30_bra-oceanDotCrissCrossBra-rear")>>
<</nobr>><</widget>>
<<widget "wear-bra-pinkSheerWithCentralBow">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/pinkSheerBraWithCentralBow/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "pinkSheerWithCentralBow">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-pinkSheerBraWithCentralPinkBow-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-pinkSheerBraWithCentralPinkBow-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-pinkSheerWithCentralBow">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/pinkSheerBraWithCentralBow/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to _pathUnderWear+"30_bra-pinkSheerBraWithCentralPinkBow-" +$kate.braSize>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete(_pathUnderWear+"30_bra-pinkSheerBraWithCentralPinkBow-rear")>>
<</nobr>><</widget>>
<<widget "wear-bra-rosePinkAbbieLaceTrimBra">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/rosePinkAbbieLaceTrimBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "rosePinkAbbieLaceTrimBra">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-rosePinkAbbieLaceTrimBra-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-rosePinkAbbieLaceTrimBra-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-rosePinkAbbieLaceTrimBra">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/rosePinkAbbieLaceTrimBra/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-rosePinkAbbieLaceTrimBra-" +$kate.braSize)>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_bra-rosePinkAbbieLaceTrimBra-rear"))>>
<</nobr>><</widget>>
<<widget "wear-bra-whiteHalfCupCentralDart">><<nobr>>
/* if kate is wearing a bra already, take it off */
<<if $kate.isWearing.includes("bra")>>
<<= '<<remove-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/whiteHalfCupBraCentralDart/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra"),
$kate.lastWornBra to "whiteHalfCupCentralDart">>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-whiteHalfCupCentralDart-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_bra-whiteHalfCupCentralDart-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bra-whiteHalfCupCentralDart">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/whiteHalfCupBraCentralDart/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"30_bra-whiteHalfCupCentralDart-" +$kate.braSize)>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_bra-whiteHalfCupCentralDart-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithDresses">>
/* if kate is wearing a dress already, take it off */
<<if $kate.isWearing.includes("dress")>>
<<= '<<remove-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
/* if kate is wearing trousers, take them off */
<<if $kate.isWearing.includes("trousers")>>
<<= '<<remove-trousers-' + $kate.lastWornTrousers + '>>'>>
<</if>>
/* if kate is wearing shorts, take them off */
<<if $kate.isWearing.includes("shorts")>>
<<= '<<remove-shorts-' + $kate.lastWornShorts + '>>'>>
<</if>>
/* if kate is wearing a skirt, take it off */
<<if $kate.isWearing.includes("skirt")>>
<<= '<<remove-skirt-' + $kate.lastWornSkirt + '>>'>>
<</if>>
/* if kate is wearing a top, take it off */
<<if $kate.isWearing.includes("top")>>
<<= '<<remove-top-' + $kate.lastWornTop + '>>'>>
<</if>>
<</widget>>
<<widget "removeDress">><<silently>>
<<if $kate.isWearing.includes("dress")>>
<<= '<<remove-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-dress-bananaYellowLongSleeveCutOutMiniDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("bananaYellowLongSleeveCutOutMiniDress")>>
/*FRONT*/
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-bananaYellowLongSleeveCutOutMiniDress-piercedFeminist2-"+$kate.braSize))>>
<<else>>
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-bananaYellowLongSleeveCutOutMiniDress-feminist2-"+$kate.braSize))>>
<</if>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-bananaYellowLongSleeveCutOutMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-bananaYellowLongSleeveCutOutMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-bananaYellowLongSleeveCutOutMiniDress-piercedFeminist2-"+$kate.braSize))>>
<<set $avatar.clothing.delete((_pathClothing+"30_dress-bananaYellowLongSleeveCutOutMiniDress-feminist2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-bananaYellowLongSleeveCutOutMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-blackBodyconSleevelessMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackBodyconSleevelessMiniDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_dress-blackBodyconSleevelessMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_dress-blackBodyconSleevelessMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-blackBodyconSleevelessMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackBodyconSleevelessMiniDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_dress-blackBodyconSleevelessMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_dress-blackBodyconSleevelessMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-blackDeepVDualSlitJerseyMaxi">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/blackDeepVDualSlitJerseyMaxi/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("blackDeepVDualSlitJerseyMaxi")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackDeepVDualSlitJerseyMaxi-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackDeepVDualSlitJerseyMaxi-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-blackDeepVDualSlitJerseyMaxi">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackDeepVDualSlitJerseyMaxi/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackDeepVDualSlitJerseyMaxi-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackDeepVDualSlitJerseyMaxi-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-blackKnottedCocktailDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackKnottedCocktailDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("blackKnottedCocktailDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_dress-blackKnottedCocktailDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_dress-blackKnottedCocktailDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-blackKnottedCocktailDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackKnottedCocktailDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_dress-blackKnottedCocktailDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_dress-blackKnottedCocktailDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-blackOneShoulderCutOutThighSlitGown">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-highHeels-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-blackOneShoulderCutOutThighSlitGown">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-highHeels-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackOneShoulderCutOutThighSlitGown-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-blackSleevelessSkater">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackSleevelessSkaterDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackSleevelessSkater-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackSleevelessSkater-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-blackSleevelessSkater">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackSleevelessSkaterDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackSleevelessSkater-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackSleevelessSkater-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-blackTwistFrontRuchedCutOutDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/blackTwistFrontRuchedCutOutDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("blackTwistFrontRuchedCutOutDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackTwistFrontRuchedCutOutDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-blackTwistFrontRuchedCutOutDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-blackTwistFrontRuchedCutOutDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/blackTwistFrontRuchedCutOutDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackTwistFrontRuchedCutOutDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-blackTwistFrontRuchedCutOutDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-cherryRedOffTheShoulderFishtailGown">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-highHeels-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-cherryRedOffTheShoulderFishtailGown">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-highHeels-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-cherryRedOffTheShoulderFishtailGown-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-cobaltBlueButtonedMaxi">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-cobaltBlueButtonedMaxiWithSpaghettiStraps-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-cobaltBlueButtonedMaxiWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-cobaltBlueButtonedMaxi">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.dress("dress")>>
/*FRONT*/
<<set $avatar.clothing.dress((_pathClothing+"30_dress-cobaltBlueButtonedMaxiWithSpaghettiStraps-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.dress((_pathClothing+"30_dress-cobaltBlueButtonedMaxiWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-emeraldGreenSatinMiniDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/emeraldGreenSatinMiniDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("emeraldGreenSatinMiniDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-emeraldGreenSatinMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-emeraldGreenSatinMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/emeraldGreenSatinMiniDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-emeraldGreenSatinMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-lightBlueLowBackRibbedBodyconJerseyDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("lightBlueLowBackRibbedBodyconJerseyDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_dress-lightBlueLowBackRibbedBodyconJerseyDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_dress-lightBlueLowBackRibbedBodyconJerseyDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-lightBlueLowBackRibbedBodyconJerseyDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_dress-lightBlueLowBackRibbedBodyconJerseyDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_dress-lightBlueLowBackRibbedBodyconJerseyDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-kittenWetLookBlackCrissCrossDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/kittenWetLookBlackCrissCrossDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=0>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("kittenWetLookBlackCrissCrossDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-kittenWetLookBlackCrissCrossDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-kittenWetLookBlackCrissCrossDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-kittenWetLookBlackCrissCrossDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/kittenWetLookBlackCrissCrossDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-kittenWetLookBlackCrissCrossDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-kittenWetLookBlackCrissCrossDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-onePieceCowlNeckBurgundyMiniDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/onePieceCowlNeckBurgundyMiniDress/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("onePieceCowlNeckBurgundyMiniDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-onePieceCowlNeckBurgundyMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-onePieceCowlNeckBurgundyMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-onePieceCowlNeckBurgundyMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/onePieceCowlNeckBurgundyMiniDress/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-onePieceCowlNeckBurgundyMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-onePieceCowlNeckBurgundyMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-purpleOpaqueLongSleeveCutOutFront">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<remove-bracelet-friendshipBraceletsLeftWrist>>
<<set _pathClothing to "clothing/dresses/purpleOpaqueLongSleeveCutOutFront/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("purpleOpaqueLongSleeveCutOutFront")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-purpleOpaqueLongSleeveCutOutFront-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-purpleOpaqueLongSleeveCutOutFront-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-purpleOpaqueLongSleeveCutOutFront">><<nobr>>
<<set _pathClothing to "clothing/dresses/purpleOpaqueLongSleeveCutOutFront/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-purpleOpaqueLongSleeveCutOutFront-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-purpleOpaqueLongSleeveCutOutFront-rear"))>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<</nobr>><</widget>>
<<widget "wear-dress-redOneShoulderCocktailDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/redOneShoulderCocktailDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("redOneShoulderCocktailDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-redOneShoulderCocktailDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-redOneShoulderCocktailDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-redOneShoulderCocktailDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/redOneShoulderCocktailDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-redOneShoulderCocktailDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-redOneShoulderCocktailDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-wineAsymmetricHemCocktailDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/wineAsymmetricHemCocktailDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("wineAsymmetricHemCocktailDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wineAsymmetricHemCocktailDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wineAsymmetricHemCocktailDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-wineAsymmetricHemCocktailDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/wineAsymmetricHemCocktailDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wineAsymmetricHemCocktailDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wineAsymmetricHemCocktailDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-wineMultiStrapGown">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wineMultiStrapGown-barefoot-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wineMultiStrapGown-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wineMultiStrapGown-highHeels-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wineMultiStrapGown-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-wineMultiStrapGown">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wineMultiStrapGown-barefoot-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wineMultiStrapGown-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wineMultiStrapGown-highHeels-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wineMultiStrapGown-highHeels-rear"))>>
<</nobr>><</widget>>
/* NEW CODE DRESSES */
<<widget "wear-dress-ogStretchyEthnicSkirtWornAsMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/ogStretchyEthnicSkirtWornAsMiniDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("ogStretchyEthnicSkirtWornAsMiniDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"40_dress-ogStretchyEthnicSkirtWornAsMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"40_dress-ogStretchyEthnicSkirtWornAsMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-ogStretchyEthnicSkirtWornAsMiniDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/ogStretchyEthnicSkirtWornAsMiniDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"40_dress-ogStretchyEthnicSkirtWornAsMiniDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"40_dress-ogStretchyEthnicSkirtWornAsMiniDress-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-wetYellowHalterNeckSummerDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/wetYellowHalterNeckSummerDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("wetYellowHalterNeckSummerDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wetYellowHalterNeckSummerDress2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-wetYellowHalterNeckSummerDress2-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-wetYellowHalterNeckSummerDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/wetYellowHalterNeckSummerDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wetYellowHalterNeckSummerDress2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-wetYellowHalterNeckSummerDress2-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-whiteMiniSmockSummerDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/whiteMiniSmockSummerDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("whiteMiniSmockSummerDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-whiteMiniSmockSummerDress3-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-whiteMiniSmockSummerDress3-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-whiteMiniSmockSummerDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/whiteMiniSmockSummerDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-whiteMiniSmockSummerDress3-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-whiteMiniSmockSummerDress3-rear"))>>
<</nobr>><</widget>>
<<widget "wear-dress-yellowHalterNeckSummerDress">><<nobr>>
<<removeClothesThatConflictWithDresses>>
<<set _pathClothing to "clothing/dresses/yellowHalterNeckSummerDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("dress"),
$kate.lastWornDress to ("yellowHalterNeckSummerDress")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-yellowHalterNeckSummerDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_dress-yellowHalterNeckSummerDress-rear"))>>
<</nobr>><</widget>>
<<widget "remove-dress-yellowHalterNeckSummerDress">><<nobr>>
<<set _pathClothing to "clothing/dresses/yellowHalterNeckSummerDress/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("dress")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-yellowHalterNeckSummerDress-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_dress-yellowHalterNeckSummerDress-rear"))>>
<</nobr>><</widget>><<widget "removeHosiery">>
/* if kate is wearing hosiery, take it off */
<<if $kate.isWearing.includes("hosiery")>>
<<= '<<remove-hosiery-' + $kate.lastWornHosiery + '>>'>>
<</if>>
<</widget>>
<<widget "wear-hosiery-blackCottonTrainerSocksWithDarkGreyHeels">><<nobr>>
<<set _pathClothing to "clothing/hosiery/blackCottonTrainerSocksWithDarkGreyHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("socks"),
$kate.lastWornHosiery to "blackCottonTrainerSocksWithDarkGreyHeels">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_socks-blackCottonTrainerSocksWithDarkGreyHeels"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_socks-blackCottonTrainerSocksWithDarkGreyHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hosiery-blackCottonTrainerSocksWithDarkGreyHeels">><<nobr>>
<<set _pathClothing to "clothing/hosiery/blackCottonTrainerSocksWithDarkGreyHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("socks")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"10_socks-blackCottonTrainerSocksWithDarkGreyHeels"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_socks-blackCottonTrainerSocksWithDarkGreyHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hosiery-blackTrainerSocks">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("hosiery"),
$kate.lastWornHosiery to "blackTrainerSocks">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_blackTrainerSocks"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_blackTrainerSocks-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hosiery-blackTrainerSocks">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("hosiery")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"10_blackTrainerSocks"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_blackTrainerSocks-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hosiery-greyTrainerSocks">><<nobr>>
<<set _pathClothing to "clothing/hosiery/greyTrainerSocks/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("socks"),
$kate.lastWornHosiery to "greyTrainerSocks">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_socks-greyTrainerSocks"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_socks-greyTrainerSocks-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hosiery-greyTrainerSocks">><<nobr>>
<<set _pathClothing to "clothing/hosiery/greyTrainerSocks/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("socks")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"10_socks-greyTrainerSocks"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_socks-greyTrainerSocks-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hosiery-plainBlackHoldUpStockings">><<nobr>>
<<set _pathClothing to "clothing/hosiery/plainBlackHoldUpStockings/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("stockings"),
$kate.lastWornHosiery to "plainBlackHoldUpStockings">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_hosiery-plainBlackHoldUpStockings"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_hosiery-plainBlackHoldUpStockings-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hosiery-plainBlackHoldUpStockings">><<nobr>>
<<set _pathClothing to "clothing/hosiery/plainBlackHoldUpStockings/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("stockings")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"10_hosiery-plainBlackHoldUpStockings"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_hosiery-plainBlackHoldUpStockings-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hosiery-whiteTrainerSocks">><<nobr>>
<<set _pathClothing to "clothing/hosiery/whiteCottonTrainerSocks/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("hosiery"),
$kate.lastWornHosiery to "whiteCottonTrainerSocks">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_socks-whiteCottonTrainerSocks"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_socks-whiteCottonTrainerSocks-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hosiery-whiteTrainerSocks">><<nobr>>
<<set _pathClothing to "clothing/hosiery/whiteCottonTrainerSocks/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("hosiery")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"10_socks-whiteCottonTrainerSocks"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_socks-whiteCottonTrainerSocks-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithJackets">><<silently>>
/* if kate is wearing a jacket, take it off */
<<if $kate.isWearing.includes("jacket")>>
<<= '<<remove-jacket-' + $kate.lastWornJacket + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "removeJacket">><<silently>>
/* if kate is wearing a jacket, take it off */
<<if $kate.isWearing.includes("jacket")>>
<<= '<<remove-jacket-' + $kate.lastWornJacket + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-jacket-classicCamelBlazer">><<nobr>>
<<set _pathClothing to "clothing/jackets/classicCamelBlazer/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("jacket"),
$kate.lastWornJacket to "classicCamelBlazer">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_jacket-classicCamelBlazer"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_jacket-classicCamelBlazer-rear"))>>
<</nobr>><</widget>>
<<widget "remove-jacket-classicCamelBlazer">><<nobr>>
<<set _pathClothing to "clothing/jackets/classicCamelBlazer/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("jacket")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"50_jacket-classicCamelBlazer"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"50_jacket-classicCamelBlazer-rear"))>>
<</nobr>><</widget>>
/* OLD CODE JACKETS BELOW */
<<widget "wear-jacket-blackShortLeatherJacketWithSleevesRolledUp">><<nobr>>
<<set _pathClothing to "clothing/jackets/blackShortLeatherJacketWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("jacket")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_jacket-blackShortLeatherJacketWithSleevesRolledUp"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_jacket-blackShortLeatherJacketWithSleevesRolledUp-rear"))>>
<</nobr>><</widget>>
<<widget "remove-jacket-blackShortLeatherJacketWithSleevesRolledUp">><<nobr>>
<<set _pathClothing to "clothing/jackets/blackShortLeatherJacketWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("jacket")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"50_jacket-blackShortLeatherJacketWithSleevesRolledUp"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"50_jacket-blackShortLeatherJacketWithSleevesRolledUp-rear"))>>
<</nobr>><</widget>>
<<widget "wear-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves">><<nobr>>
<<set _pathClothing to "clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("jacket")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed-rear"))>>
<</nobr>><</widget>>
<<widget "remove-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves">><<nobr>>
<<set _pathClothing to "clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("jacket")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed-rear"))>>
<</nobr>><</widget>>/*Friendship bracelets left wrist*/
<<widget "wear-bracelet-friendshipBraceletsLeftWrist">><<nobr>>
<<set _pathClothing to "clothing/jewellery/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("braceletLeft")>>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_bracelet-friendshipBraceletsLeftWrist"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_bracelet-friendshipBraceletsLeftWrist-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bracelet-friendshipBraceletsLeftWrist">><<nobr>>
<<set _pathClothing to "clothing/jewellery/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("braceletLeft")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"50_bracelet-friendshipBraceletsLeftWrist"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"50_bracelet-friendshipBraceletsLeftWrist-rear"))>>
<</nobr>><</widget>>
<<widget "wear-necklace-turquoiseSpyNecklace">><<nobr>>
<<set _pathClothing to "clothing/jewellery/turquoiseSpyNecklace/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("necklace")>>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_necklace-turquoiseSpyNecklace"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_necklace-turquoiseSpyNecklace-rear"))>>
<</nobr>><</widget>>
<<widget "remove-necklace-turquoiseSpyNecklace">><<nobr>>
<<set _pathClothing to "clothing/jewellery/turquoiseSpyNecklace/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("necklace")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"50_necklace-turquoiseSpyNecklace"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"50_necklace-turquoiseSpyNecklace-rear"))>>
<</nobr>><</widget>>
<<widget "wear-ring-transmitterRing">><<nobr>>
<<set _pathClothing to "clothing/jewellery/transmitterRing/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("ringRight")>>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_transmitterRing"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_transmitterRing-rear"))>>
<</nobr>><</widget>>
<<widget "remove-ring-transmitterRing">><<nobr>>
<<set _pathClothing to "clothing/jewellery/transmitterRing/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("ringRight")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"50_transmitterRing"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"50_transmitterRing-rear"))>>
<</nobr>><</widget>>
<<widget "wear-watch-deautherWatch">><<nobr>>
<<set _pathClothing to "clothing/jewellery/deautherWatch/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("watchRight")>>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_watch-deautherWatch"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"50_watch-deautherWatch-rear"))>>
<</nobr>><</widget>>
<<widget "remove-watch-deautherWatch">><<nobr>>
<<set _pathClothing to "clothing/jewellery/deautherWatch/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("watchRight")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"50_watch-deautherWatch"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"50_watch-deautherWatch-rear"))>>
<</nobr>><</widget>><<widget "removeKnickers">><<silently>>
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "blackAndLimeGreenThreeSideStrapGanjaString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackAndLimeGreenThreeSideStrapGanjaString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackAndLimeGreenThreeSideStrapGanjaString-rear"))>>
<<set $knickers to {},
$knickers.type to "gString",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<<set $knickers.description.push("thong", "g-string")>>
<</nobr>><</widget>>
<<widget "remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackAndLimeGreenThreeSideStrapGanjaString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackAndLimeGreenThreeSideStrapGanjaString-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-blackGotYourBackLaceThong">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackGotYourBackLaceThong/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "blackGotYourBackLaceThong">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackGotYourBackLaceThong"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackGotYourBackLaceThong-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lace">>
<<set $knickers.description.push("thong")>>
<</nobr>><</widget>>
<<widget "remove-knickers-blackGotYourBackLaceThong">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackGotYourBackLaceThong/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackGotYourBackLaceThong"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackGotYourBackLaceThong-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-blackMeshWithHotPinkBowsCrotchlessString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "blackMeshWithHotPinkBowsCrotchlessString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackMeshWithHotPinkBowsCrotchlessString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackMeshWithHotPinkBowsCrotchlessString-rear"))>>
<<set $knickers to {},
$knickers.type to "gString",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lace">>
<<set $knickers.description.push("thong", "g-string")>>
<</nobr>><</widget>>
<<widget "remove-knickers-blackMeshWithHotPinkBowsCrotchlessString">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackMeshWithHotPinkBowsCrotchlessString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackMeshWithHotPinkBowsCrotchlessString-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-blackWithPinkPolkaDotsString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackStringWithPinkPolkaDots/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "blackWithPinkPolkaDotsString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-blackWithPinkPolkaDotsString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-blackWithPinkPolkaDotsString-rear"))>>
<<set $knickers to {},
$knickers.type to "gString",
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-blackWithPinkPolkaDotsString">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackStringWithPinkPolkaDots/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-blackWithPinkPolkaDotsString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-blackWithPinkPolkaDotsString-rear"))>>
<</nobr>><</widget>>
<<widget "wear-knickers-blackLaceStringWithBlackCentralBow">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "blackLaceStringWithBlackCentralBow">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-blackLaceStringWithBlackCentralBow"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-blackLaceStringWithBlackCentralBow-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "black thong", "lacy thong", "skimpy thong"],
$knickers.pronoun to "it",
$knickers.material to "lace">>
<</nobr>><</widget>>
<<widget "remove-knickers-blackLaceStringWithBlackCentralBow">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-blackLaceStringWithBlackCentralBow"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-blackLaceStringWithBlackCentralBow-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-blackMicroMiniGString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/blackMicroMiniGString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "blackMicroMiniGString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackMicroMiniGString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-blackMicroMiniGString-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["g-string", "black g-string", "skimpy g-string"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-blackMicroMiniGString">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/blackMicroMiniGString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackMicroMiniGString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-blackMicroMiniGString-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-blackUnderArmourSportsKnickers">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathClothing to "clothing/underwear/blackUnderArmourSportsUnderwear/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to ("blackUnderArmourSportsKnickers")>>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_pants-blackUnderArmourKnickers"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_pants-blackUnderArmourKnickers-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lycra">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties", "sporty panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers", "sporty knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies", "sporty undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-blackUnderArmourSportsKnickers">><<nobr>>
<<set _pathClothing to "clothing/underwear/blackUnderArmourSportsUnderwear/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"30_pants-blackUnderArmourKnickers"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"30_pants-blackUnderArmourKnickers-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-cheekyThongFlamingoPink">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongFlamingoPink/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "cheekyThongFlamingoPink">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongFlamingoPink"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongFlamingoPink-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<<set $knickers.description.push("thong")>>
<</nobr>><</widget>>
<<widget "remove-knickers-cheekyThongFlamingoPink">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongFlamingoPink/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongFlamingoPink"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongFlamingoPink-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-cheekyThongRavenBlack">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongRavenBlack/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "cheekyThongRavenBlack">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongRavenBlack"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongRavenBlack-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<<set $knickers.description.push("thong")>>
<</nobr>><</widget>>
<<widget "remove-knickers-cheekyThongRavenBlack">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongRavenBlack/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongRavenBlack"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongRavenBlack-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-cheekyThongRobinEggBlue">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongRobinEggBlue/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "cheekyThongRobinEggBlue">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongRobinEggBlue"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongRobinEggBlue-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<<set $knickers.description.push("thong")>>
<</nobr>><</widget>>
<<widget "remove-knickers-cheekyThongRobinEggBlue">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongRobinEggBlue/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongRobinEggBlue"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongRobinEggBlue-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-cheekyThongRoseRed">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongRoseRed/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "cheekyThongRoseRed">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongRoseRed"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cheekyThongRoseRed-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<<set $knickers.description.push("thong")>>
<</nobr>><</widget>>
<<widget "remove-knickers-cheekyThongRoseRed">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/cheekyThongRoseRed/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongRoseRed"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cheekyThongRoseRed-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-cherryRedMidiWithSplitSide">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathClothing to "clothing/underwear/cherryRedMidiKnickers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "cherryRedMidiWithSplitSide">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_pants-cherryRedMidiWithSplitSide"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_pants-cherryRedMidiWithSplitSide-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lycra">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties", "red panties", "bright red panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers", "red knickers", "bright red knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies", "red undies", "bright red undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-cherryRedMidiWithSplitSide">><<nobr>>
<<set _pathClothing to "clothing/underwear/cherryRedMidiKnickers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"30_pants-cherryRedMidiWithSplitSide"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"30_pants-cherryRedMidiWithSplitSide-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "cherryRedTwoSideStrapWithGoldLoopsString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cherryRedTwoSideStrapWithGoldLoopsString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-cherryRedTwoSideStrapWithGoldLoopsString-rear"))>>
<<set $knickers to {},
$knickers.type to "gString",
$knickers.description to [],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<<set $knickers.description.push("thong", "g-string")>>
<</nobr>><</widget>>
<<widget "remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cherryRedTwoSideStrapWithGoldLoopsString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-cherryRedTwoSideStrapWithGoldLoopsString-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-hotPinkCottonBoyshorts">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/hotPinkCottonBoyshorts/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "hotPinkCottonBoyshorts">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-hotPinkCottonBoyshorts"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-hotPinkCottonBoyshorts-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to ["boyshorts"],
$knickers.pronoun to "them",
$knickers.material to "cotton">>
<</nobr>><</widget>>
<<widget "remove-knickers-hotPinkCottonBoyshorts">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/hotPinkCottonBoyshorts/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-hotPinkCottonBoyshorts"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-hotPinkCottonBoyshorts-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-ivoryStrappyString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "/clothing/underwear/ivoryStrappyString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "ivoryStrappyString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-ivoryStrappyString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-ivoryStrappyString-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-ivoryStrappyString">><<nobr>>
<<set _pathUnderWear to "/clothing/underwear/ivoryStrappyString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-ivoryStrappyString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-ivoryStrappyString-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-leopardPrintMidiWithSplitSide">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/leopardPrintMidiWithSplitSide/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "leopardPrintMidiWithSplitSide">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-leopardPrintMidiWithSplitSide"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-leopardPrintMidiWithSplitSide-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lycra">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties", "leopard print panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers", "leopard print knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies", "leopard print undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-leopardPrintMidiWithSplitSide">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/leopardPrintMidiWithSplitSide/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-leopardPrintMidiWithSplitSide"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-leopardPrintMidiWithSplitSide-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-maroonGlitterString">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "/clothing/underwear/maroonGlitterString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "maroonGlitterString">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-maroonGlitterString"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-maroonGlitterString-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-maroonGlitterString">><<nobr>>
<<set _pathUnderWear to "/clothing/underwear/maroonGlitterString/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-maroonGlitterString"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-maroonGlitterString-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-nudeStringWithTwoBowsOnStraps">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "nudeStringWithTwoBowsOnStraps">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-nudeStringWithTwoBowsOnStraps"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-nudeStringWithTwoBowsOnStraps-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "skimpy thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-nudeStringWithTwoBowsOnStraps">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-nudeStringWithTwoBowsOnStraps"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-nudeStringWithTwoBowsOnStraps-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-oceanDotStringBikiniPanties">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/oceanDotStringBikiniPanties/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "oceanDotStringBikiniPanties">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-oceanDotStringBikiniPanties"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-oceanDotStringBikiniPanties-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lycra">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-oceanDotStringBikiniPanties">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/oceanDotStringBikiniPanties/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-oceanDotStringBikiniPanties"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-oceanDotStringBikiniPanties-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-pinkSheerBikiniCutKnickers">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathClothing to "clothing/underwear/pinkSheerBikiniCutKnickers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "pinkSheerBikiniCutKnickers">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_pants-pinkSheerBikiniCutPantsWithCentralPinkBow"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"30_pants-pinkSheerBikiniCutPantsWithCentralPinkBow-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lace">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties", "pink panties", "sheer pink panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers", "pink knickers", "sheer pink knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies", "pink undies", "sheer pink undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-pinkSheerBikiniCutKnickers">><<nobr>>
<<set _pathClothing to "clothing/underwear/pinkSheerBikiniCutKnickers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"30_pants-pinkSheerBikiniCutPantsWithCentralPinkBow"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"30_pants-pinkSheerBikiniCutPantsWithCentralPinkBow-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-pinkThongWithCentralBow">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "/clothing/underwear/pinkThongWithCentralBow/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "pinkThongWithCentralBow">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-pinkThongWithCentralBow"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-pinkThongWithCentralBow-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "pink thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-pinkThongWithCentralBow">><<nobr>>
<<set _pathUnderWear to "/clothing/underwear/pinkThongWithCentralBow/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-pinkThongWithCentralBow"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-pinkThongWithCentralBow-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-palePinkNetAndRedVelvetMultiStrapThong">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "palePinkNetAndRedVelvetMultiStrapThong">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-palePinkNetAndRedVelvetMultiStrapThong"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-palePinkNetAndRedVelvetMultiStrapThong-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "strappy thong"],
$knickers.pronoun to "it",
$knickers.material to "lace">>
<</nobr>><</widget>>
<<widget "remove-knickers-palePinkNetAndRedVelvetMultiStrapThong">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-palePinkNetAndRedVelvetMultiStrapThong"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-palePinkNetAndRedVelvetMultiStrapThong-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-redLowRiseThong">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "/clothing/underwear/redLowRiseThong/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "redLowRiseThong">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-redLowRiseThong"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-redLowRiseThong-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "red thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-redLowRiseThong">><<nobr>>
<<set _pathUnderWear to "/clothing/underwear/redLowRiseThong/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-redLowRiseThong"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-redLowRiseThong-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-redWineThongWith2Bows">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "/clothing/underwear/redWineThongWith2Bows/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "redWineThongWith2Bows">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-redWineThongWith2Bows"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-redWineThongWith2Bows-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "red thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-redWineThongWith2Bows">><<nobr>>
<<set _pathUnderWear to "/clothing/underwear/redWineThongWith2Bows/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-redWineThongWith2Bows"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-redWineThongWith2Bows-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-rosePinkAbbieLaceTrimPanties">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "/clothing/underwear/rosePinkAbbieLaceTrimPanties/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "rosePinkAbbieLaceTrimPanties">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_knickers-rosePinkAbbieLaceTrimPanties"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_knickers-rosePinkAbbieLaceTrimPanties-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "red thong"],
$knickers.pronoun to "it",
$knickers.material to "lycra">>
<</nobr>><</widget>>
<<widget "remove-knickers-rosePinkAbbieLaceTrimPanties">><<nobr>>
<<set _pathUnderWear to "/clothing/underwear/rosePinkAbbieLaceTrimPanties/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_knickers-rosePinkAbbieLaceTrimPanties"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_knickers-rosePinkAbbieLaceTrimPanties-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-vsPinkHeartsKnickers">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/vsPinkHeartsKnickers/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "vsPinkHeartsKnickers">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-vsPinkHeartsKnickers"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_knickers-vsPinkHeartsKnickers-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lace">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-vsPinkHeartsKnickers">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/vsPinkHeartsKnickers/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-vsPinkHeartsKnickers"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_knickers-vsPinkHeartsKnickers-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-whiteBikiniPantsRipley">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/whiteBikiniPantsRipley/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "whiteBikiniPantsRipley">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_knickers-whiteBikiniPantsRipley"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_knickers-whiteBikiniPantsRipley-rear"))>>
<<set $knickers to {},
$knickers.type to "thong",
$knickers.description to ["thong", "skimpy thong"],
$knickers.pronoun to "it",
$knickers.material to "cotton">>
<</nobr>><</widget>>
<<widget "remove-knickers-whiteBikiniPantsRipley">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/whiteBikiniPantsRipley/">>
/*SET CLEAVAGE OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_knickers-whiteBikiniPantsRipley"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_knickers-whiteBikiniPantsRipley-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>>
<<widget "wear-knickers-whiteBrazilianCutWithLaceHem">><<nobr>>
/* if kate is wearing knickers already, take them off */
<<if $kate.isWearing.includes("knickers")>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<set _pathUnderWear to "clothing/underwear/whiteBrazilianCutPantiesWithLaceHem/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers"),
$kate.lastWornKnickers to "whiteBrazilianCutWithLaceHem">>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-whiteBrazilianCutWithLaceHem"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"30_pants-whiteBrazilianCutWithLaceHem-rear"))>>
<<set $knickers to {},
$knickers.type to "knickers",
$knickers.description to [],
$knickers.pronoun to "them",
$knickers.material to "lycra">>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $knickers.description.push("panties", "silky panties")>>
<<elseif $kate.agency == "mi6">>
<<set $knickers.description.push("knickers", "silky knickers")>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $knickers.description.push("undies", "silky undies")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-knickers-whiteBrazilianCutWithLaceHem">><<nobr>>
<<set _pathUnderWear to "clothing/underwear/whiteBrazilianCutPantiesWithLaceHem/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-whiteBrazilianCutWithLaceHem"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"30_pants-whiteBrazilianCutWithLaceHem-rear"))>>
<<unset $knickers>>
<</nobr>><</widget>><<widget "lifepath-8yrAvatar-school">><<nobr>>
<<set _path to "age8/">>
<<set $avatar.body.delete(_path+"20_body-yellowSkirtAndBlackSweater-"+$kate.complexion)>>
<<set $avatar.body.pushUnique(_path+"20_body-ukSchoolUniform-"+$kate.complexion)>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_pink-rectangular-glasses")>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-12yrAvatarNoBlazer">><<nobr>>
<<set _path to "age12/">>
<<set $avatar.clothing to []>>
<<set $avatar.clothing.pushUnique(_path+"10_ukSchoolUniform")>>
<<set $avatar.foreground.pushUnique(_path+"10_hairclip")>>
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_purple-rectangular-glasses")>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-12yrAvatarJeansAndHoodie">><<nobr>>
<<set _path to "age12/">>
<<set $avatar.clothing to []>>
<<set $avatar.body.delete(_path+"20_body-ukSchoolUniform-"+$kate.complexion)>>
<<set $avatar.body.pushUnique(_path+"20_body-jeansAndHoodie-"+$kate.complexion)>>
<<set $avatar.foreground.pushUnique(_path+"10_hairclip")>>
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_purple-rectangular-glasses")>>
<</if>>
<</nobr>><</widget>><<widget "wear-bathRobe-whiteBathRobe">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavage to false>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bathrobe")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_bathrobe-whiteRobeWithWaistTie"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_bathrobe-whiteRobeWithWaistTie-rear"))>>
<</nobr>><</widget>>
<<widget "remove-bathRobe-whiteBathRobe">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavage to false>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bathrobe")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_bathrobe-whiteRobeWithWaistTie"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_bathrobe-whiteRobeWithWaistTie-rear"))>>
<</nobr>><</widget>>
<<widget "wear-towel-amandasSkimpyRedTowel">><<nobr>>
<<set _pathClothing to "clothing/towels/amandasSkimpyRedTowel/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavage to false>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("towel")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_towel-amandasSkimpyRedTowel-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_towel-amandasSkimpyRedTowel-rear"))>>
<</nobr>><</widget>>
<<widget "remove-towel-amandasSkimpyRedTowel">><<nobr>>
<<set _pathClothing to "clothing/towels/amandasSkimpyRedTowel/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavage to false>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("towel")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_towel-amandasSkimpyRedTowel-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_towel-amandasSkimpyRedTowel-rear"))>>
<</nobr>><</widget>>
<<widget "wear-towel-whiteBathSheet">><<nobr>>
<<set _pathClothing to "clothing/towels/whiteBathTowel/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavage to false>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("towel")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_towel-whiteBathSheet-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_towel-whiteBathSheet-rear"))>>
<</nobr>><</widget>>
<<widget "remove-towel-whiteBathSheet">><<nobr>>
<<set _pathClothing to "clothing/towels/whiteBathTowel/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavage to false>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("towel")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_towel-whiteBathSheet-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_towel-whiteBathSheet-rear"))>>
<</nobr>><</widget>>
<<widget "wear-scarf-greyScarf">><<nobr>>
<<set _pathClothing to "clothing/accessories/greyScarf/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("scarf")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_scarf-greyScarf"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"50_scarf-greyScarf-rear"))>>
<</nobr>><</widget>>
<<widget "remove-scarf-greyScarf">><<nobr>>
<<set _pathClothing to "clothing/accessories/greyScarf/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("scarf")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"50_scarf-greyScarf"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"50_scarf-greyScarf-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithShoes">>
/* if kate is wearing shoes, take them off */
<<if $kate.isWearing.includes("shoes")>>
<<= '<<remove-shoes-' + $kate.lastWornShoes + '>>'>>
<</if>>
<</widget>>
<<widget "removeShoes">><<silently>>
<<if $kate.isWearing.includes("shoes")>>
<<= '<<remove-shoes-' + $kate.lastWornShoes + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-shoes-amandasBlackHighHeeledAnkleBoots">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/amandasBlackHighHeeledAnkleBoots/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "amandasBlackHighHeeledAnkleBoots">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-amandasBlackHighHeeledAnkleBoots"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-amandasBlackHighHeeledAnkleBoots-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-amandasBlackHighHeeledAnkleBoots">><<nobr>>
<<set _pathClothing to "clothing/shoes/amandasBlackHighHeeledAnkleBoots/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-amandasBlackHighHeeledAnkleBoots"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-amandasBlackHighHeeledAnkleBoots-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-beigeMaryJanePumps">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/beigeMaryJanePumps/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "beigeMaryJanePumps">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-beigeMaryJanePumps"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-beigeMaryJanePumps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-beigeMaryJanePumps">><<nobr>>
<<set _pathClothing to "clothing/shoes/beigeMaryJanePumps/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-beigeMaryJanePumps"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-beigeMaryJanePumps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackAndWhiteConverseLowTops">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/blackAndWhiteConverseLowTopTrainers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackAndWhiteConverseLowTops">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackAndWhiteConverseTrainers"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackAndWhiteConverseTrainers-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackAndWhiteConverseLowTops">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackAndWhiteConverseLowTopTrainers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackAndWhiteConverseTrainers"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackAndWhiteConverseTrainers-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackAndWhiteStripeAdidasTrainers">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/blackAndWhiteStripeAdidasTrainers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackAndWhiteStripeAdidasTrainers">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackAndWhiteStripeAdidasTrainers"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackAndWhiteStripeAdidasTrainers-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackAndWhiteStripeAdidasTrainers">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackAndWhiteStripeAdidasTrainers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackAndWhiteStripeAdidasTrainers"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackAndWhiteStripeAdidasTrainers-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackPatentHeels">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/blackPatentHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackPatentHeels">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackPatentHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackPatentHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackPatentHeels">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackPatentHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackPatentHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackPatentHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackElegantPumps">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/blackElegantPumps/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackElegantPumps">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-blackElegantPumps"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-blackElegantPumps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackElegantPumps">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackElegantPumps/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-blackElegantPumps"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-blackElegantPumps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackStrappyGladiatorFlatSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<removeHosiery>>
<<set _pathClothing to "clothing/shoes/blackStrappyGladiatorFlatSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackStrappyGladiatorFlatSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackStrappyGladiatorFlatSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackStrappyGladiatorFlatSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackStrappyGladiatorFlatSandals">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackStrappyGladiatorFlatSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackStrappyGladiatorFlatSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackStrappyGladiatorFlatSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackStrappyGladiatorHeels">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/blackStrappyGladiatorHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackStrappyGladiatorHeels">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackStrappyGladiatorHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackStrappyGladiatorHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackStrappyGladiatorHeels">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackStrappyGladiatorHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackStrappyGladiatorHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackStrappyGladiatorHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackSuedeAnklePlatformHeels">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/blackSuedeAnklePlatformHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackSuedeAnklePlatformHeels">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-blackSuedeAnklePlatformHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-blackSuedeAnklePlatformHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackSuedeAnklePlatformHeels">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackSuedeAnklePlatformHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-blackSuedeAnklePlatformHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-blackSuedeAnklePlatformHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackSuedeAnklePlatformHeelsOverTrousers">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackSuedeAnklePlatformHeelsOverTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackSuedeAnklePlatformHeelsOverTrousers">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"25_shoes-blackSuedeAnklePlatformHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"25_shoes-blackSuedeAnklePlatformHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackSuedeAnklePlatformHeelsOverTrousers">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackSuedeAnklePlatformHeelsOverTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"25_shoes-blackSuedeAnklePlatformHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"25_shoes-blackSuedeAnklePlatformHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-brownAnkleHighStrappyFlatSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<removeHosiery>>
<<set _pathClothing to "clothing/shoes/brownAnkleHighStrappyFlatSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "brownAnkleHighStrappyFlatSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-brownAnkleHighStrappyFlatSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-brownAnkleHighStrappyFlatSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-brownAnkleHighStrappyFlatSandals">><<nobr>>
<<set _pathClothing to "clothing/shoes/brownAnkleHighStrappyFlatSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-brownAnkleHighStrappyFlatSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-brownAnkleHighStrappyFlatSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-creamBSKSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<removeHosiery>>
<<set _pathClothing to "clothing/shoes/creamBSKSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "creamBSKSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-creamBSKSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-creamBSKSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-creamBSKSandals">><<nobr>>
<<set _pathClothing to "clothing/shoes/creamBSKSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-creamBSKSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-creamBSKSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-greyToeThongFlipFlops">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<removeHosiery>>
<<set _pathClothing to "clothing/shoes/greyToeThongFlipFlops/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "greyToeThongFlipFlops">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greyToeThongFlipFlops"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greyToeThongFlipFlops-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-greyToeThongFlipFlops">><<nobr>>
<<set _pathClothing to "clothing/shoes/greyToeThongFlipFlops/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-greyToeThongFlipFlops"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-greyToeThongFlipFlops-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-pinkToeThongFlipFlops">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<removeHosiery>>
<<set _pathClothing to "clothing/shoes/pinkToeThongFlipFlops/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "pinkToeThongFlipFlops">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-pinkToeThongFlipFlops"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-pinkToeThongFlipFlops-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-pinkToeThongFlipFlops">><<nobr>>
<<set _pathClothing to "clothing/shoes/pinkToeThongFlipFlops/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-pinkToeThongFlipFlops"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-pinkToeThongFlipFlops-rear"))>>
<</nobr>><</widget>>
/* OLD FORMAT SHOES */
<<widget "wear-shoes-brownPatentHeelsWithBlackToe">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/brownPatentHeelsWithBlackToe/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "brownPatentHeelsWithBlackToe">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-brownPatentHeelsWithBlackToe"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-brownPatentHeelsWithBlackToe-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-brownPatentHeelsWithBlackToe">><<nobr>>
<<set _pathClothing to "clothing/shoes/brownPatentHeelsWithBlackToe/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-brownPatentHeelsWithBlackToe"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-brownPatentHeelsWithBlackToe-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackStrappyGladiatorStilettoSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<removeHosiery>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackStrappyGladiatorStilettoSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackStrappyGladiatorStilettoSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackStrappyGladiatorStilettoSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackStrappyGladiatorStilettoSandals">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackStrappyGladiatorStilettoSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackStrappyGladiatorStilettoSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-boots-blackSuedeAnkleStillettosWithBuckles">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackSuedeAnkleStilettosWithBuckles/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("boots")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_boots-blackSuedeAnkleStillettosWithBuckles"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_boots-blackSuedeAnkleStillettosWithBuckles-rear"))>>
<</nobr>><</widget>>
<<widget "remove-boots-blackSuedeAnkleStillettosWithBuckles">><<nobr>>
<<set _pathClothing to "clothing/shoes/blackSuedeAnkleStilettosWithBuckles/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("boots")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_boots-blackSuedeAnkleStillettosWithBuckles"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_boots-blackSuedeAnkleStillettosWithBuckles-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-blackAndGreyTBarStrapStilettos">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "blackAndGreyTBarStrapStilettos">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackAndGreyTBarStrapStilettos"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-blackAndGreyTBarStrapStilettos-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-blackAndGreyTBarStrapStilettos">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackAndGreyTBarStrapStilettos"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-blackAndGreyTBarStrapStilettos-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-goldStrappyGladiatorStilettoSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "goldStrappyGladiatorStilettoSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-goldStrappyGladiatorStilettoSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-goldStrappyGladiatorStilettoSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-goldStrappyGladiatorStilettoSandals">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-goldStrappyGladiatorStilettoSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-goldStrappyGladiatorStilettoSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-greenHikingShoesWithWhiteSocks">><<nobr>>
<<set _pathClothing to "clothing/shoes/greenHikingShoesWithWhiteSocks/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greenHikingShoesWithWhiteSocks"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greenHikingShoesWithWhiteSocks-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-greenHikingShoesWithWhiteSocks">><<nobr>>
<<set _pathClothing to "clothing/shoes/greenHikingShoesWithWhiteSocks/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-greenHikingShoesWithWhiteSocks"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-greenHikingShoesWithWhiteSocks-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-greyAdidasPaceVSTrainers">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/greyAdidasPaceVSTrainers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "greyAdidasPaceVSTrainers">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greyAdidasPaceVSTrainers2"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greyAdidasPaceVSTrainers2-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-greyAdidasPaceVSTrainers">><<nobr>>
<<set _pathClothing to "clothing/shoes/greyAdidasPaceVSTrainers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-greyAdidasPaceVSTrainers2"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-greyAdidasPaceVSTrainers2-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-greyStrappyWedgeSandals">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greyStrappyWedgeSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-greyStrappyWedgeSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-khakiFlatEspadrilles">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "khakiFlatEspadrilles">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-khakiFlatEspadrilles"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-khakiFlatEspadrilles-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-khakiFlatEspadrilles">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-khakiFlatEspadrilles"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-khakiFlatEspadrilles-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-leopardStrappyHighHeelSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/leopardStrappyHighHeelSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "leopardStrappyHighHeelSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-leopardStrappyHighHeelSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-leopardStrappyHighHeelSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-leopardStrappyHighHeelSandals">><<nobr>>
<<set _pathClothing to "clothing/shoes/leopardStrappyHighHeelSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-leopardStrappyHighHeelSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-leopardStrappyHighHeelSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-nudePeepToeHeels">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/nudePeepToeHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "nudePeepToeHeels">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-nudePeepToeHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-nudePeepToeHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-nudePeepToeHeels">><<nobr>>
<<set _pathClothing to "clothing/shoes/nudePeepToeHeels/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-nudePeepToeHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-nudePeepToeHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-pinkStrappyStilettoHeelSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/pinkStrappyStilettoHeelSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "pinkStrappyStilettoHeelSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-pinkStrappyStilettoHeelSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-pinkStrappyStilettoHeelSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-pinkStrappyStilettoHeelSandals">><<nobr>>
<<set _pathClothing to "clothing/shoes/pinkStrappyStilettoHeelSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-pinkStrappyStilettoHeelSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-pinkStrappyStilettoHeelSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-redValentinoStilettos">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/redValentinoStilettos/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "redValentinoStilettos">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-redValentinoStilettos"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-redValentinoStilettos-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-redValentinoStilettos">><<nobr>>
<<set _pathClothing to "clothing/shoes/redValentinoStilettos/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-redValentinoStilettos"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-redValentinoStilettos-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "redVelvetCrissCrossStrappyStilettoHeelSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals">><<nobr>>
<<set _pathClothing to "clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-silverStrappyStilettoSandals">><<nobr>>
<<removeClothesThatConflictWithShoes>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to false>>
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "silverStrappyStilettoSandals">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-silverStrappyStilettoSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-silverStrappyStilettoSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-silverStrappyStilettoSandals">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-silverStrappyStilettoSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-silverStrappyStilettoSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-tanAnkleHighStrappyFlatSandals">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to ("tanAnkleHighStrappyFlatSandals")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-tanAnkleHighStrappyFlatSandals"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-tanAnkleHighStrappyFlatSandals-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-tanAnkleHighStrappyFlatSandals">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-tanAnkleHighStrappyFlatSandals"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-tanAnkleHighStrappyFlatSandals-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-whiteAdidasTrainers">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-whiteAndGreyStripeAdidasTrainers"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-whiteAndGreyStripeAdidasTrainers-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-whiteAdidasTrainers">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-whiteAndGreyStripeAdidasTrainers"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-whiteAndGreyStripeAdidasTrainers-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shoes-whiteFlatEspadrilles">><<nobr>>
<<set _pathClothing to "clothing/shoes/whiteFlatEspadrilles/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shoes"),
$kate.lastWornShoes to "whiteFlatEspadrilles">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-whiteFlatEspadrilles"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shoes-whiteFlatEspadrilles-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shoes-whiteFlatEspadrilles">><<nobr>>
<<set _pathClothing to "clothing/shoes/whiteFlatEspadrilles/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
<<set $avatar.barefoot to true>>
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shoes")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-whiteFlatEspadrilles"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shoes-whiteFlatEspadrilles-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithShorts">>
/* if kate is wearing a dress, take it off */
<<if $kate.isWearing.includes("dress")>>
<<= '<<remove-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
/* if kate is wearing trousers, take them off */
<<if $kate.isWearing.includes("trousers")>>
<<= '<<remove-trousers-' + $kate.lastWornTrousers + '>>'>>
<</if>>
/* if kate is wearing shorts, take them off */
<<if $kate.isWearing.includes("shorts")>>
<<= '<<remove-shorts-' + $kate.lastWornShorts + '>>'>>
<</if>>
/* if kate is wearing a skirt, take it off */
<<if $kate.isWearing.includes("skirt")>>
<<= '<<remove-skirt-' + $kate.lastWornSkirt + '>>'>>
<</if>>
<</widget>>
<<widget "removeShorts">><<silently>>
<<if $kate.isWearing.includes("shorts")>>
<<= '<<remove-shorts-' + $kate.lastWornShorts + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-shorts-basicBlackCottonBlendHotPants">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/basicBlackCottonBlendHotPants/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "basicBlackCottonBlendHotPants">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-basicBlackCottonBlendHotPants"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-basicBlackCottonBlendHotPants-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-basicBlackCottonBlendHotPants">><<nobr>>
<<set _pathClothing to "clothing/shorts/basicBlackCottonBlendHotPants/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-basicBlackCottonBlendHotPants"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-basicBlackCottonBlendHotPants-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-bayouxBlueButtonDetailShorts">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/bayouxBlueButtonDetailShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "bayouxBlueButtonDetailShorts">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-bayouxBlueButtonDetailShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-bayouxBlueButtonDetailShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-bayouxBlueButtonDetailShorts">><<nobr>>
<<set _pathClothing to "clothing/shorts/bayouxBlueButtonDetailShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-bayouxBlueButtonDetailShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-bayouxBlueButtonDetailShorts-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-blackDenimDaisyDukes">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "blackDenimDaisyDukes">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackDenimDaisyDukes"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackDenimDaisyDukes-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-blackDenimDaisyDukes">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackDenimDaisyDukes"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackDenimDaisyDukes-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-blackHikerShortsWithBrownBelt">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/trousers/blackHikerShortsWithBrownBelt/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "blackHikerShortsWithBrownBelt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackHikerShortsWithBrownBelt"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackHikerShortsWithBrownBelt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-blackHikerShortsWithBrownBelt">><<nobr>>
<<set _pathClothing to "clothing/trousers/blackHikerShortsWithBrownBelt/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackHikerShortsWithBrownBelt"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackHikerShortsWithBrownBelt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-blackShortSportsShorts">><<nobr>>
<<set _pathClothing to "clothing/trousers/blackShortSportsShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackShortSportsShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackShortSportsShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-blackShortSportsShorts">><<nobr>>
<<set _pathClothing to "clothing/trousers/blackShortSportsShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackShortSportsShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackShortSportsShorts-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-blackStripperBootyShorts">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/blackStripperBootyShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "blackStripperBootyShorts">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackStripperBootyShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blackStripperBootyShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-blackStripperBootyShorts">><<nobr>>
<<set _pathClothing to "clothing/shorts/blackStripperBootyShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackStripperBootyShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blackStripperBootyShorts-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-blueDenimDaisyDukes">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/blueDenimDaisyDukes2/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "blueDenimDaisyDukes">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blueDenimDaisyDukes"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blueDenimDaisyDukes-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-blueDenimDaisyDukes">><<nobr>>
<<set _pathClothing to "clothing/shorts/blueDenimDaisyDukes2/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blueDenimDaisyDukes"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blueDenimDaisyDukes-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-blueDenimDIYJeansShorts">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/blueDenimDIYJeansShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "blueDenimDIYJeansShorts">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blueDenimDIYJeansShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-blueDenimDIYJeansShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-blueDenimDIYJeansShorts">><<nobr>>
<<set _pathClothing to "clothing/shorts/blueDenimDIYJeansShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blueDenimDIYJeansShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-blueDenimDIYJeansShorts-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-darkGreyShortsWithBeltLoops">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "darkGreyShortsWithBeltLoops">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-darkGreyShortsWithBeltLoops"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-darkGreyShortsWithBeltLoops-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-darkGreyShortsWithBeltLoops">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-darkGreyShortsWithBeltLoops"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-darkGreyShortsWithBeltLoops-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-lightGreyCyclingShorts">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/lightGreyCyclingShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "lightGreyCyclingShorts">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-lightGreyCyclingShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-lightGreyCyclingShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-lightGreyCyclingShorts">><<nobr>>
<<set _pathClothing to "clothing/shorts/lightGreyCyclingShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-lightGreyCyclingShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-lightGreyCyclingShorts-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-offWhiteVelour70sTrackShorts">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/offWhiteVelour70sTrackShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "offWhiteVelour70sTrackShorts">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-offWhiteVelour70sTrackShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-offWhiteVelour70sTrackShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-offWhiteVelour70sTrackShorts">><<nobr>>
<<set _pathClothing to "clothing/shorts/offWhiteVelour70sTrackShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-offWhiteVelour70sTrackShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-offWhiteVelour70sTrackShorts-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shorts-pinkBootyShorts">><<nobr>>
<<removeClothesThatConflictWithShorts>>
<<set _pathClothing to "clothing/shorts/pinkBootyShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shorts"),
$kate.lastWornShorts to "pinkBootyShorts">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-pinkBootyShorts"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shorts-pinkBootyShorts-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shorts-pinkBootyShorts">><<nobr>>
<<set _pathClothing to "clothing/shorts/pinkBootyShorts/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shorts")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-pinkBootyShorts"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shorts-pinkBootyShorts-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithSkirts">>
/* if kate is wearing a dress, take it off */
<<if $kate.isWearing.includes("dress")>>
<<= '<<remove-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
/* if kate is wearing trousers, take them off */
<<if $kate.isWearing.includes("trousers")>>
<<= '<<remove-trousers-' + $kate.lastWornTrousers + '>>'>>
<</if>>
/* if kate is wearing shorts, take them off */
<<if $kate.isWearing.includes("shorts")>>
<<= '<<remove-shorts-' + $kate.lastWornShorts + '>>'>>
<</if>>
/* if kate is wearing a skirt, take it off */
<<if $kate.isWearing.includes("skirt")>>
<<= '<<remove-skirt-' + $kate.lastWornSkirt + '>>'>>
<</if>>
<</widget>>
<<widget "removeSkirt">><<silently>>
<<if $kate.isWearing.includes("skirt")>>
<<= '<<remove-skirt-' + $kate.lastWornSkirt + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-skirt-blackMiniPencil">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackMiniPencil/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackMiniPencil"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackMiniPencil-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-blackMiniPencil">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackMiniPencil/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackMiniPencil"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackMiniPencil-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-blackMiniWorkSkirt">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackMiniWorkSkirt/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "blackMiniWorkSkirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackMiniWorkSkirt2"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackMiniWorkSkirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-blackMiniWorkSkirt">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackMiniWorkSkirt/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackMiniWorkSkirt2"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackMiniWorkSkirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-blackShortWorkSkirt">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackShortWorkSkirt2/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "blackShortWorkSkirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackShortWorkSkirt2"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackShortWorkSkirt2-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-blackShortWorkSkirt">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackShortWorkSkirt2/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackShortWorkSkirt2"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackShortWorkSkirt2-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-blackSideSlitMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackSideSlitMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackSideSlitMini"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blackSideSlitMini-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-blackSideSlitMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/blackSideSlitMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackSideSlitMini"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blackSideSlitMini-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-bloomingLavenderFlippyMini">><<nobr>>
<<removeClothesThatConflictWithSkirts>>
<<set _pathClothing to "clothing/skirts/bloomingLavenderFlippyMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "bloomingLavenderFlippyMini">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-bloomingLavenderFlippyMini"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-bloomingLavenderFlippyMini-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-bloomingLavenderFlippyMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/bloomingLavenderFlippyMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-bloomingLavenderFlippyMini"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-bloomingLavenderFlippyMini-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-blueAndRedEthnicPatternFlippyMini">><<nobr>>
<<removeClothesThatConflictWithSkirts>>
<<set _pathClothing to "clothing/skirts/blueAndRedEthnicPatternFlippyMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "blueAndRedEthnicPatternFlippyMini">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blueAndRedEthnicPatternFlippyMini3"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-blueAndRedEthnicPatternFlippyMini4-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-blueAndRedEthnicPatternFlippyMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/blueAndRedEthnicPatternFlippyMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blueAndRedEthnicPatternFlippyMini3"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-blueAndRedEthnicPatternFlippyMini4-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-mustardMaxiSkirt">><<nobr>>
<<set _pathClothing to "clothing/skirts/mustardMaxiSkirt/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-mustardMaxiSkirt"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-mustardMaxiSkirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-mustardMaxiSkirt">><<nobr>>
<<set _pathClothing to "clothing/skirts/mustardMaxiSkirt/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-mustardMaxiSkirt"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-mustardMaxiSkirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-ogKhakiMini">><<nobr>>
<<removeClothesThatConflictWithSkirts>>
<<set _pathClothing to "clothing/skirts/ogKhakiMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "ogKhakiMini">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-ogKhakiMini"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-ogKhakiMini-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-ogKhakiMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/ogKhakiMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-ogKhakiMini"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-ogKhakiMini-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-ogStretchyEthnicSkirtMaxi">><<nobr>>
<<removeClothesThatConflictWithSkirts>>
<<set _pathClothing to "clothing/skirts/ogStretchyEthnicSkirtMaxi/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "ogStretchyEthnicSkirtMaxi">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMaxi2"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMaxi2-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-ogStretchyEthnicSkirtMaxi">><<nobr>>
<<set _pathClothing to "clothing/skirts/ogStretchyEthnicSkirtMaxi/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMaxi2"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMaxi2-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-ogStretchyEthnicSkirtMidi">><<nobr>>
<<removeClothesThatConflictWithSkirts>>
<<set _pathClothing to "clothing/skirts/ogStretchyEthnicSkirtMidi/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "ogStretchyEthnicSkirtMidi">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMidi"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMidi-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-ogStretchyEthnicSkirtMidi">><<nobr>>
<<set _pathClothing to "clothing/skirts/ogStretchyEthnicSkirtMidi/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMidi"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"40_skirt-ogStretchyEthnicSkirtMidi-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-redFloralTieSideMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/redFloralTieSideMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-redFloralTieSideMini"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-redFloralTieSideMini-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-redFloralTieSideMini">><<nobr>>
<<set _pathClothing to "clothing/skirts/redFloralTieSideMini/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-redFloralTieSideMini"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-redFloralTieSideMini-rear"))>>
<</nobr>><</widget>>
<<widget "wear-skirt-taupeBandagePencilSkirtWithFlutedHem">><<nobr>>
<<removeClothesThatConflictWithSkirts>>
<<set _pathClothing to "clothing/skirts/taupeBandagePencilSkirtWithFlutedHem/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("skirt"),
$kate.lastWornSkirt to "taupeBandagePencilSkirtWithFlutedHem">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-taupeBandagePencilSkirtWithFlutedHem"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_skirt-taupeBandagePencilSkirtWithFlutedHem-rear"))>>
<</nobr>><</widget>>
<<widget "remove-skirt-taupeBandagePencilSkirtWithFlutedHem">><<nobr>>
<<set _pathClothing to "clothing/skirts/taupeBandagePencilSkirtWithFlutedHem/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("skirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-taupeBandagePencilSkirtWithFlutedHem"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_skirt-taupeBandagePencilSkirtWithFlutedHem-rear"))>>
<</nobr>><</widget>><<widget "wear-apMazzyPinkAndBlackSwimsuit">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("swimsuit")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"10_swimsuit-blackAndPinkAPMazzySwimsuit-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_swimsuit-blackAndPinkAPMazzySwimsuit-rear"))>>
<</nobr>><</widget>>
<<widget "remove-apMazzyPinkAndBlackSwimsuit">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("swimsuit")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"10_swimsuit-blackAndPinkAPMazzySwimsuit-" +$kate.braSize)>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_swimsuit-blackAndPinkAPMazzySwimsuit-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hallesBikiniBottoms">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("knickers")>>
/*FRONT*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_bikiniBottoms-orangeTieSideBikiniBottoms"))>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_bikiniBottoms-orangeTieSideBikiniBottoms-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hallesBikiniBottoms">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("knickers")>>
/*FRONT*/
<<set $avatar.underwear.delete((_pathClothing+"10_bikiniBottoms-orangeTieSideBikiniBottoms"))>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_bikiniBottoms-orangeTieSideBikiniBottoms-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hallesBikiniTop">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"10_bikiniTop-orangeHalterTieBikiniTop-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_bikiniTop-orangeHalterTieBikiniTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hallesBikiniTop">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"10_bikiniTop-orangeHalterTieBikiniTop-" +$kate.braSize)>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_bikiniTop-orangeHalterTieBikiniTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-hallesBikiniTop-undone">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("bra")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"10_bikiniTop-orangeHalterTieBikiniTop-undone-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique(_size)>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathUnderWear+"10_bikiniTop-orangeHalterTieBikiniTop-undone-rear"))>>
<</nobr>><</widget>>
<<widget "remove-hallesBikiniTop-undone">><<nobr>>
<<set _pathUnderWear to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("bra")>>
/*FRONT*/
<<set _size to (_pathUnderWear +"10_bikiniTop-orangeHalterTieBikiniTop-undone-" +$kate.braSize)>>
<<set $avatar.underwear.delete(_size)>>
/*BACK*/
<<set $avatar.underwear.delete((_pathUnderWear+"10_bikiniTop-orangeHalterTieBikiniTop-undone-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithTops">>
/* if kate is wearing a dress, take it off */
<<if $kate.isWearing.includes("dress")>>
<<= '<<remove-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
/* if kate is wearing a top, take it off */
<<if $kate.isWearing.includes("top")>>
<<= '<<remove-top-' + $kate.lastWornTop + '>>'>>
<</if>>
<</widget>>
<<widget "removeTop">><<silently>>
<<if $kate.isWearing.includes("top")>>
<<= '<<remove-top-' + $kate.lastWornTop + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-top-babyBlueSemiSheerVNeckTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/babyBlueSemiSheerVNeckTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "babyBlueSemiSheerVNeckTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-babyBlueSemiSheerVNeckTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-babyBlueSemiSheerVNeckTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-babyBlueSemiSheerVNeckTop">><<nobr>>
<<set _pathClothing to "clothing/tops/babyBlueSemiSheerVNeckTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-babyBlueSemiSheerVNeckTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-babyBlueSemiSheerVNeckTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-blackHardCockCafeCropTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set _pokies to "piercedPokies">>
<<else>>
<<set _pokies to "pokies">>
<</if>>
<<set _pathClothing to "clothing/tops/blackHardCockCafeCropTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "blackHardCockCafeCropTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-blackHardCockCafeCropTop-" + _pokies + "-" + $kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-blackHardCockCafeCropTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-blackHardCockCafeCropTop">><<nobr>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set _pokies to "piercedPokies">>
<<else>>
<<set _pokies to "pokies">>
<</if>>
<<set _pathClothing to "clothing/tops/blackHardCockCafeCropTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-blackHardCockCafeCropTop-" + _pokies + "-" + $kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-blackHardCockCafeCropTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-blackLongSleevedTee">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/blackLongSleevedTee/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "blackLongSleevedTee">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackLongSleevedTee-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackLongSleevedTee-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-blackLongSleevedTee">><<nobr>>
<<set _pathClothing to "clothing/tops/blackLongSleevedTee/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackLongSleevedTee-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackLongSleevedTee-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-blackVestWithSpaghettiStraps">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/blackVestWithSpaghettiStraps/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "blackVestWithSpaghettiStraps">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackVestWithSpaghettiStraps2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackVestWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-blackVestWithSpaghettiStraps">><<nobr>>
<<set _pathClothing to "clothing/tops/blackVestWithSpaghettiStraps/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackVestWithSpaghettiStraps2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackVestWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-blueFloralPrintSummerScoopNeckSleevelessTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/blueFloralPrintSummerScoopNeckSleevelessTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "blueFloralPrintSummerScoopNeckSleevelessTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blueFloralPrintSummerScoopNeckSleevelessTop3-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blueFloralPrintSummerScoopNeckSleevelessTop3-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-blueFloralPrintSummerScoopNeckSleevelessTop">><<nobr>>
<<set _pathClothing to "clothing/tops/blueFloralPrintSummerScoopNeckSleevelessTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blueFloralPrintSummerScoopNeckSleevelessTop3-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blueFloralPrintSummerScoopNeckSleevelessTop3-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-brownVestWithSpaghettiStraps">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/brownVestWithSpaghettiStraps/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "brownVestWithSpaghettiStraps">>
/*FRONT*/
<<if $kate.isWearing.includes("bra")>>
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-brownVestWithSpaghettiStraps-"+$kate.braSize))>>
<<elseif $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-brownVestWithSpaghettiStraps-piercedFeminist-"+$kate.braSize))>>
<<else>>
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-brownVestWithSpaghettiStraps-feminist-"+$kate.braSize))>>
<</if>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-brownVestWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-brownVestWithSpaghettiStraps">><<nobr>>
<<set _pathClothing to "clothing/tops/brownVestWithSpaghettiStraps/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-brownVestWithSpaghettiStraps-"+$kate.braSize))>>
<<set $avatar.clothing.delete((_pathClothing+"30_top-brownVestWithSpaghettiStraps-piercedFeminist-"+$kate.braSize))>>
<<set $avatar.clothing.delete((_pathClothing+"30_top-brownVestWithSpaghettiStraps-feminist-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-brownVestWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-greyBohoShirt">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/greyBohoShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "greyBohoShirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-greyBohoShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-greyBohoShirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-greyBohoShirt">><<nobr>>
<<set _pathClothing to "clothing/tops/greyBohoShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-greyBohoShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-greyBohoShirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-petrolBlueDeathHornetCropTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/petrolBlueDeathHornetCropTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "petrolBlueDeathHornetCropTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-petrolBlueDeathHornetCropTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-petrolBlueDeathHornetCropTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-petrolBlueDeathHornetCropTop">><<nobr>>
<<set _pathClothing to "clothing/tops/petrolBlueDeathHornetCropTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-petrolBlueDeathHornetCropTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-petrolBlueDeathHornetCropTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-redTieUpHalterneckTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/redTieUpHalterneckTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "redTieUpHalterneckTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-redTieUpHalterneckTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-redTieUpHalterneckTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-redTieUpHalterneckTop">><<nobr>>
<<set _pathClothing to "clothing/tops/redTieUpHalterneckTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-redTieUpHalterneckTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-redTieUpHalterneckTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteTouristyTempleTShirt">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteTouristyTempleTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteTouristyTempleTShirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteTouristyTempleTShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteTouristyTempleTShirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteTouristyTempleTShirt">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteTouristyTempleTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteTouristyTempleTShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteTouristyTempleTShirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-zoesBlackLongsleevedTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/zoesBlackLongsleevedTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "zoesBlackLongsleevedTop">>
/*FRONT*/
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize))>>
<<else>>
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize))>>
<</if>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-zoesBlackLongsleevedTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-zoesBlackLongsleevedTop">><<nobr>>
<<set _pathClothing to "clothing/tops/zoesBlackLongsleevedTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete((_pathClothing+"20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize))>>
<<else>>
<<set $avatar.clothing.delete((_pathClothing+"20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize))>>
<</if>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-zoesBlackLongsleevedTop-rear"))>>
<</nobr>><</widget>>
/* OLD CODE AND SOME NEW CODE TOPS SHIRTS SWEATERS JUMPERS*/
<<widget "wear-jumper-blackTurtleNeckWithRolledUpSleeves">><<nobr>>
<<set _pathClothing to "clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("jumper")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-rear"))>>
<</nobr>><</widget>>
<<widget "remove-jumper-blackTurtleNeckWithRolledUpSleeves">><<nobr>>
<<set _pathClothing to "clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("jumper")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-greenRibbedSweaterWithWhiteCollarAndShirtTails">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_jumper-greenRibbedSweaterWithWhiteCollarAndShirtTails-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_jumper-greenRibbedSweaterWithWhiteCollarAndShirtTails-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-greenRibbedSweaterWithWhiteCollarAndShirtTails">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_jumper-greenRibbedSweaterWithWhiteCollarAndShirtTails-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_jumper-greenRibbedSweaterWithWhiteCollarAndShirtTails-rear"))>>
<</nobr>><</widget>>
<<widget "wear-sweater-greyHoodlessSweater">><<nobr>>
<<set _pathClothing to "clothing/sweaters/greyHoodlessSweater/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("sweater")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_sweater-greyHoodlessSweater-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_sweater-greyHoodlessSweater-rear"))>>
<</nobr>><</widget>>
<<widget "remove-sweater-greyHoodlessSweater">><<nobr>>
<<set _pathClothing to "clothing/sweaters/greyHoodlessSweater/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("sweater")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_sweater-greyHoodlessSweater-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_sweater-greyHoodlessSweater-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shirt-beigeSilkCollarlessBlouse">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shirt")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_shirt-beigeSilkCollarlessFittedBlouseWithFoldedSleeves-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_shirt-beigeSilkCollarlessFittedBlouseWithFoldedSleeves-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shirt-beigeSilkCollarlessBlouse">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_shirt-beigeSilkCollarlessFittedBlouseWithFoldedSleeves-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_shirt-beigeSilkCollarlessFittedBlouseWithFoldedSleeves-rear"))>>
<</nobr>><</widget>>
<<widget "wear-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves">><<nobr>>
<<set _pathClothing to "clothing/shirts/paleGreyAndWhiteShirtWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("shirt")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves-rear"))>>
<</nobr>><</widget>>
<<widget "remove-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves">><<nobr>>
<<set _pathClothing to "clothing/shirts/paleGreyAndWhiteShirtWithRolledUpSleeves/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("shirt")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-blackRibbedButtonUpCroppedTShirt">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/blackRibbedButtonFrontCroppedTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "blackRibbedButtonUpCroppedTShirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackRibbedButtonFrontCroppedTShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackRibbedButtonFrontCroppedTShirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-blackRibbedButtonUpCroppedTShirt">><<nobr>>
<<set _pathClothing to "clothing/tops/blackRibbedButtonFrontCroppedTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackRibbedButtonFrontCroppedTShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackRibbedButtonFrontCroppedTShirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-shellPinkVNeckWrapLongSleevedBlouse">><<nobr>>
<<set _pathClothing to "clothing/tops/shellPinkVNeckWrapLongSleevedBlouse/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-shellPinkVNeckWrapLongSleevedBlouse-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-shellPinkVNeckWrapLongSleevedBlouse-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-shellPinkVNeckWrapLongSleevedBlouse">><<nobr>>
<<set _pathClothing to "clothing/tops/shellPinkVNeckWrapLongSleevedBlouse/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-shellPinkVNeckWrapLongSleevedBlouse-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-shellPinkVNeckWrapLongSleevedBlouse-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-darkGreyVNeckLongSleevedFlared">><<nobr>>
<<set _pathClothing to "clothing/tops/darkGreyVNeckLongSleevedFlaredTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-darkGreyVNeckLongSleevedFlared-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-darkGreyVNeckLongSleevedFlared-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-darkGreyVNeckLongSleevedFlared">><<nobr>>
<<set _pathClothing to "clothing/tops/darkGreyVNeckLongSleevedFlaredTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-darkGreyVNeckLongSleevedFlared-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-darkGreyVNeckLongSleevedFlared-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-foxHugTShirt">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteFlaredLongTShirtFoxHug-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteFlaredLongTShirtFoxHug-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-foxHugTShirt">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteFlaredLongTShirtFoxHug-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteFlaredLongTShirtFoxHug-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-pinkRibbedButtonFrontCroppedTShirt">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/pinkRibbedButtonFrontCroppedTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "pinkRibbedButtonFrontCroppedTShirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-pinkRibbedButtonFrontCroppedTShirt2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-pinkRibbedButtonFrontCroppedTShirt2-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-pinkRibbedButtonFrontCroppedTShirt">><<nobr>>
<<set _pathClothing to "clothing/tops/pinkRibbedButtonFrontCroppedTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-pinkRibbedButtonFrontCroppedTShirt2-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-pinkRibbedButtonFrontCroppedTShirt2-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteFlaredVestWithSpaghettiStraps">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteFlaredVestWithSpaghettiStraps/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteFlaredVestWithSpaghettiStraps">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteFlaredVestWithSpaghettiStraps-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteFlaredVestWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteFlaredVestWithSpaghettiStraps">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteFlaredVestWithSpaghettiStraps/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteFlaredVestWithSpaghettiStraps-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteFlaredVestWithSpaghettiStraps-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteFrillySpaghettiStrapVest">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteFrillySpaghettiStrapVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-whiteFrillySpaghettiStrapVest-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-whiteFrillySpaghettiStrapVest-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteFrillySpaghettiStrapVest">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteFrillySpaghettiStrapVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-whiteFrillySpaghettiStrapVest-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-whiteFrillySpaghettiStrapVest-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteSpaghettiStrapsVestTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteSpaghettiStrapsVestTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteSpaghettiStrapsVestTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteSpaghettiStrapsVestTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteSpaghettiStrapsVestTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteSpaghettiStrapsVestTop">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteSpaghettiStrapsVestTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteSpaghettiStrapsVestTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteSpaghettiStrapsVestTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-mustardYellowVNeckLongSleevedFlared">><<nobr>>
<<set _pathClothing to "clothing/tops/mustardYellowVNeckLongSleevedFlaredTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-mustardYellowVNeckLongSleevedFlared-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-mustardYellowVNeckLongSleevedFlared-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-mustardYellowVNeckLongSleevedFlared">><<nobr>>
<<set _pathClothing to "clothing/tops/mustardYellowVNeckLongSleevedFlaredTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-mustardYellowVNeckLongSleevedFlared-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-mustardYellowVNeckLongSleevedFlared-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-rustVNeckShortCrinkleSleevedTop">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-rustVNeckShortCrinkleSleevedTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-rustVNeckShortCrinkleSleevedTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-rustVNeckShortCrinkleSleevedTop">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-rustVNeckShortCrinkleSleevedTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-rustVNeckShortCrinkleSleevedTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-vsHenleySleepTank">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-vsHenleySleepTank-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-vsHenleySleepTank-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-vsHenleySleepTank">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-vsHenleySleepTank-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-vsHenleySleepTank-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteTightCropTop">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteTightCropTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-whiteTightCropTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_top-whiteTightCropTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteTightCropTop">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteTightCropTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-whiteTightCropTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_top-whiteTightCropTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-yellowAndBlackCottonFlaredVest">><<nobr>>
<<set _pathClothing to "clothing/tops/yellowAndBlackCottonFlaredVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-yellowAndBlackCottonFlaredVest-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-yellowAndBlackCottonFlaredVest-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-yellowAndBlackCottonFlaredVest">><<nobr>>
<<set _pathClothing to "clothing/tops/yellowAndBlackCottonFlaredVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-yellowAndBlackCottonFlaredVest-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-yellowAndBlackCottonFlaredVest-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteRibbedButtonUpCroppedTShirt">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteRibbedButtonFrontCroppedTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteRibbedButtonUpCroppedTShirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteRibbedButtonFrontCroppedTShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteRibbedButtonFrontCroppedTShirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteRibbedButtonUpCroppedTShirt">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteRibbedButtonFrontCroppedTShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteRibbedButtonFrontCroppedTShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteRibbedButtonFrontCroppedTShirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteRipleyVest">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/underwear/whiteRipleyVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=0>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteRipleyVest">>
/*FRONT*/
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.underwear.pushUnique((_pathClothing+"10_top-whiteRipleyVestPierced2-"+$kate.braSize))>>
<<else>>
<<set $avatar.underwear.pushUnique((_pathClothing+"10_top-whiteRipleyVest2-"+$kate.braSize))>>
<</if>>
/*BACK*/
<<set $avatar.underwear.pushUnique((_pathClothing+"10_top-whiteRipleyVest-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteRipleyVest">><<nobr>>
<<set _pathClothing to "clothing/underwear/whiteRipleyVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=0>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.underwear.delete((_pathClothing+"10_top-whiteRipleyVestPierced2-"+$kate.braSize))>>
<<else>>
<<set $avatar.underwear.delete((_pathClothing+"10_top-whiteRipleyVest2-"+$kate.braSize))>>
<</if>>
/*BACK*/
<<set $avatar.underwear.delete((_pathClothing+"10_top-whiteRipleyVest-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-blackPlungeHalterneckTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/blackPlungeHalterneckTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "blackPlungeHalterneckTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackPlungeHalterneckTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-blackPlungeHalterneckTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-blackPlungeHalterneckTop">><<nobr>>
<<set _pathClothing to "clothing/tops/blackPlungeHalterneckTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackPlungeHalterneckTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-blackPlungeHalterneckTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-darkGreyTankTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/darkGreyTankTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "darkGreyTankTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-darkGreyTankTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-darkGreyTankTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-darkGreyTankTop">><<nobr>>
<<set _pathClothing to "clothing/tops/darkGreyTankTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-darkGreyTankTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-darkGreyTankTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-lightGreyScoopNeckSleevelessTankVest">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/lightGreyScoopNeckSleevelessTankVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "lightGreyScoopNeckSleevelessTankVest">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-lightGreyScoopNeckSleevelessTankVest-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-lightGreyScoopNeckSleevelessTankVest-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-lightGreyScoopNeckSleevelessTankVest">><<nobr>>
<<set _pathClothing to "clothing/tops/lightGreyScoopNeckSleevelessTankVest/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-lightGreyScoopNeckSleevelessTankVest-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-lightGreyScoopNeckSleevelessTankVest-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-orangeHighNeckHalterTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/orangeHighNeckHalterTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "orangeHighNeckHalterTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-orangeHighNeckHalterTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-orangeHighNeckHalterTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-orangeHighNeckHalterTop">><<nobr>>
<<set _pathClothing to "clothing/tops/orangeHighNeckHalterTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-orangeHighNeckHalterTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-orangeHighNeckHalterTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-taupeWorkShirt">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/taupeWorkShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "taupeWorkShirt">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-taupeWorkShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-taupeWorkShirt-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-taupeWorkShirt">><<nobr>>
<<set _pathClothing to "clothing/tops/taupeWorkShirt/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-taupeWorkShirt-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-taupeWorkShirt-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteBacklessSatinHalterCropTopWithBigBow">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteBacklessSatinHalterCropTopWithBigBow/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteBacklessSatinHalterCropTopWithBigBow">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteBacklessSatinHalterCropTopWithBigBow-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteBacklessSatinHalterCropTopWithBigBow-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteBacklessSatinHalterCropTopWithBigBow">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteBacklessSatinHalterCropTopWithBigBow/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteBacklessSatinHalterCropTopWithBigBow-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteBacklessSatinHalterCropTopWithBigBow-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteCutOutKnitTop">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteCutOutKnitTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteCutOutKnitTop">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteCutOutKnitTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteCutOutKnitTop-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteCutOutKnitTop">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteCutOutKnitTop/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteCutOutKnitTop-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteCutOutKnitTop-rear"))>>
<</nobr>><</widget>>
<<widget "wear-top-whiteTShirtWithRuffledSleevesKnottedAtWaist">><<nobr>>
<<removeClothesThatConflictWithTops>>
<<set _pathClothing to "clothing/tops/whiteTShirtWithRuffledSleevesKnottedAtWaist/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter +=1>>
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("top"),
$kate.lastWornTop to "whiteTShirtWithRuffledSleevesKnottedAtWaist">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteTShirtWithRuffledSleevesKnottedAtWaist-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_top-whiteTShirtWithRuffledSleevesKnottedAtWaist-rear"))>>
<</nobr>><</widget>>
<<widget "remove-top-whiteTShirtWithRuffledSleevesKnottedAtWaist">><<nobr>>
<<set _pathClothing to "clothing/tops/whiteTShirtWithRuffledSleevesKnottedAtWaist/">>
/*SET CLEAVAGE OR NOT*/
<<set $avatar.cleavageCounter -=1>>
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("top")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteTShirtWithRuffledSleevesKnottedAtWaist-"+$kate.braSize))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_top-whiteTShirtWithRuffledSleevesKnottedAtWaist-rear"))>>
<</nobr>><</widget>><<widget "removeClothesThatConflictWithTrousers">>
/* if kate is wearing a dress, take it off */
<<if $kate.isWearing.includes("dress")>>
<<= '<<remove-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
/* if kate is wearing trousers, take them off */
<<if $kate.isWearing.includes("trousers")>>
<<= '<<remove-trousers-' + $kate.lastWornTrousers + '>>'>>
<</if>>
/* if kate is wearing shorts, take them off */
<<if $kate.isWearing.includes("shorts")>>
<<= '<<remove-shorts-' + $kate.lastWornShorts + '>>'>>
<</if>>
/* if kate is wearing a skirt, take it off */
<<if $kate.isWearing.includes("skirt")>>
<<= '<<remove-skirt-' + $kate.lastWornSkirt + '>>'>>
<</if>>
<</widget>>
<<widget "removeTrousers">><<silently>>
<<if $kate.isWearing.includes("trousers")>>
<<= '<<remove-trousers-' + $kate.lastWornTrousers + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "wear-trousers-blackTailoredWorkTrousers">><<nobr>>
<<removeClothesThatConflictWithTrousers>>
<<set _pathClothing to "clothing/trousers/blackTailoredWorkTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers"),
$kate.lastWornTrousers to "blackTailoredWorkTrousers">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-blackTailoredWorkTrousers"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-blackTailoredWorkTrousers-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-blackTailoredWorkTrousers">><<nobr>>
<<set _pathClothing to "clothing/trousers/blackTailoredWorkTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-blackTailoredWorkTrousers"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-blackTailoredWorkTrousers-rear"))>>
<</nobr>><</widget>>
<<widget "wear-trousers-greyTailoredWorkTrousers">><<nobr>>
<<removeClothesThatConflictWithTrousers>>
<<set _pathClothing to "clothing/trousers/greyTailoredWorkTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers"),
$kate.lastWornTrousers to "greyTailoredWorkTrousers">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-greyTailoredWorkTrousers"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-greyTailoredWorkTrousers-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-greyTailoredWorkTrousers">><<nobr>>
<<set _pathClothing to "clothing/trousers/greyTailoredWorkTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-greyTailoredWorkTrousers"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-greyTailoredWorkTrousers-rear"))>>
<</nobr>><</widget>>
<<widget "wear-leggings-ogLeggings">><<nobr>>
<<removeClothesThatConflictWithTrousers>>
<<set _pathClothing to "clothing/trousers/ogLeggings/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers"),
$kate.lastWornTrousers to "ogLeggings">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"10_leggings-ogLeggings2"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"10_leggings-ogLeggings2-rear"))>>
<</nobr>><</widget>>
<<widget "remove-leggings-ogLeggings">><<nobr>>
<<set _pathClothing to "clothing/trousers/ogLeggings/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"10_leggings-ogLeggings2"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"10_leggings-ogLeggings2-rear"))>>
<</nobr>><</widget>>
<<widget "wear-leggings-pinkCutOffYogaLeggings">><<nobr>>
<<removeClothesThatConflictWithTrousers>>
<<set _pathClothing to "clothing/trousers/pinkCutOffYogaLeggings/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers"),
$kate.lastWornTrousers to "pinkCutOffYogaLeggings">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"10_leggings-pinkCutOffYogaLeggings"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"10_leggings-pinkCutOffYogaLeggings-rear"))>>
<</nobr>><</widget>>
<<widget "remove-leggings-pinkCutOffYogaLeggings">><<nobr>>
<<set _pathClothing to "clothing/trousers/pinkCutOffYogaLeggings/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"10_leggings-pinkCutOffYogaLeggings"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"10_leggings-pinkCutOffYogaLeggings-rear"))>>
<</nobr>><</widget>>
<<widget "wear-trousers-oliveGreenCapriCargoPants">><<nobr>>
<<removeClothesThatConflictWithTrousers>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers"),
$kate.lastWornTrousers to "oliveGreenCapriCargoPants">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers_oliveGreenCapriCargoPants"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers_oliveGreenCapriCargoPants-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-oliveGreenCapriCargoPants">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers_oliveGreenCapriCargoPants"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers_oliveGreenCapriCargoPants-rear"))>>
<</nobr>><</widget>>
<<widget "wear-trousers-oliveGreenCargoTrousers">><<nobr>>
<<removeClothesThatConflictWithTrousers>>
<<set _pathClothing to "clothing/trousers/oliveGreenCargoTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers"),
$kate.lastWornTrousers to "oliveGreenCargoTrousers">>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-oliveGreenCargoTrousers2"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-oliveGreenCargoTrousers-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-oliveGreenCargoTrousers">><<nobr>>
<<set _pathClothing to "clothing/trousers/oliveGreenCargoTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-oliveGreenCargoTrousers2"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-oliveGreenCargoTrousers-rear"))>>
<</nobr>><</widget>>
/*TROUSERS LEGGINGS OLD CODE */
<<widget "wear-leggings-blackCottonLeggings">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("leggings")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"10_blackLeggings"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"10_blackLeggings-rear"))>>
<</nobr>><</widget>>
<<widget "remove-leggings-blackCottonLeggings">><<nobr>>
<<set _pathClothing to "malaysia/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("leggings")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"10_blackLeggings"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"10_blackLeggings"))>>
<</nobr>><</widget>>
<<widget "wear-trousers-darkBlueDenimBootcutJeans">><<nobr>>
<<set _pathClothing to "clothing/trousers/bootcutBlueJeans/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-barefoot"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-highHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-darkBlueDenimBootcutJeans">><<nobr>>
<<set _pathClothing to "clothing/trousers/bootcutBlueJeans/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-barefoot"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-highHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-darkBlueDenimBootcutJeans-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-trousers-blackStraightcutTrousers">><<nobr>>
<<set _pathClothing to "clothing/trousers/blackStraightcutTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-blackStraightcutTrousers-barefoot"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-blackStraightcutTrousers-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-blackStraightcutTrousers-highHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"30_trousers-blackStraightcutTrousers-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-blackStraightcutTrousers">><<nobr>>
<<set _pathClothing to "clothing/trousers/blackStraightcutTrousers/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-blackStraightcutTrousers-barefoot"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-blackStraightcutTrousers-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-blackStraightcutTrousers-highHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"30_trousers-blackStraightcutTrousers-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "wear-trousers-darkBlueDenimSkinnyJeans">><<nobr>>
<<set _pathClothing to "clothing/trousers/skinnyBlueJeans/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.pushUnique("trousers")>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-barefoot"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-highHeels"))>>
/*BACK*/
<<set $avatar.clothing.pushUnique((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-highHeels-rear"))>>
<</nobr>><</widget>>
<<widget "remove-trousers-darkBlueDenimSkinnyJeans">><<nobr>>
<<set _pathClothing to "clothing/trousers/skinnyBlueJeans/">>
/*SET CLEAVAGE OR NOT*/
/*SET tiptoes OR NOT*/
/*Include conflict detection widget detection widget*/
/*IS WEARING*/
<<set $kate.isWearing.delete("trousers")>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-barefoot"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-barefoot-rear"))>>
/*FRONT*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-highHeels"))>>
/*BACK*/
<<set $avatar.clothing.delete((_pathClothing+"20_trousers-darkBlueDenimSkinnyJeans-highHeels-rear"))>>
<</nobr>><</widget>><<widget "avatar">><<nobr>>
/*Avatar Display widget*/
<<avatar-checkCleavage>>
<<avatar-checkBarefoot>>
/*BEHIND AVATAR*/
<<if def $avatar.background and $avatar.background.length>>
<<set $avatar.background to window.sortAvatar($avatar.background)>>
<<for _i to 0; _i lt $avatar.background.length ; _i++>>
<<set _check to true>>
<<if ($avatar.showRear and !window.stringContains($avatar.background[_i],"-rear"))>>
<<if !window.stringContains($avatar.background[_i],"both")>>
<<set _check to false>>
<</if>>
<<elseif !$avatar.showRear and window.stringContains($avatar.background[_i],"-rear")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.barefoot and window.stringContains($avatar.background[_i],"highHeels")>>
<<set _check to false>>
<<elseif !$avatar.barefoot and window.stringContains($avatar.background[_i],"barefoot")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if _check>>
<<= "<img src='" + $imagePath.avatar + $avatar.background[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
<<else>>
/*Nothing should happen*/
<</if>>
<</for>>
<</if>>
/*BODY*/
<<if def $avatar.body and $avatar.body.length>>
<<set $avatar.body to window.sortAvatar($avatar.body)>>
<<for _i to 0; _i lt $avatar.body.length ; _i++>>
<<set _check to true>>
<<if ($avatar.showRear and !window.stringContains($avatar.body[_i],"-rear")) >>
<<set _check to false>>
<<elseif !$avatar.showRear and window.stringContains($avatar.body[_i],"-rear")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.barefoot and window.stringContains($avatar.body[_i],"highHeels")>>
<<set _check to false>>
<<elseif !$avatar.barefoot and window.stringContains($avatar.body[_i],"barefoot")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.cleavage and (window.stringContains($avatar.body[_i],"bare") and !window.stringContains($avatar.body[_i],"barefoot"))>>
<<set _check to false>>
<<elseif !$avatar.cleavage and window.stringContains($avatar.body[_i],"cleavage")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if _check>>
<<set _serach to $avatar.body[_i].search("closed")>>
<<if _serach neq -1 and $avatar.blink>>
<span class = "animated2 infinite eyeBlink">
<<= "<img src='" + $imagePath.avatar + $avatar.body[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
</span>
<<else>>
<<= "<img src='" + $imagePath.avatar + $avatar.body[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
<</if>>
<<else>>
/*Nothing should happen*/
<</if>>
<</for>>
<</if>>
/*BODYMODS*/
<<if def $avatar.bodyMods and $avatar.bodyMods.length>>
<<set $avatar.bodyMods to window.sortAvatar($avatar.bodyMods)>>
<<for _i to 0; _i lt $avatar.bodyMods.length ; _i++>>
<<set _check to true>>
<<if ($avatar.showRear and !window.stringContains($avatar.bodyMods[_i],"-rear")) >>
<<set _check to false>>
<<elseif !$avatar.showRear and window.stringContains($avatar.bodyMods[_i],"-rear")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.barefoot and window.stringContains($avatar.bodyMods[_i],"highHeels")>>
<<set _check to false>>
<<elseif !$avatar.barefoot and window.stringContains($avatar.bodyMods[_i],"barefoot")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if _check>>
<<= "<img src='" + $imagePath.avatar + $avatar.bodyMods[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
<<else>>
/*Nothing should happen*/
<</if>>
<</for>>
<</if>>
/*UNDERWEAR*/
<<if def $avatar.underwear and $avatar.underwear.length>>
<<set $avatar.underwear to window.sortAvatar($avatar.underwear)>>
<<for _i to 0; _i lt $avatar.underwear.length ; _i++>>
<<set _check to true>>
<<if ($avatar.showRear and !window.stringContains($avatar.underwear[_i],"-rear")) >>
<<set _check to false>>
<<elseif !$avatar.showRear and window.stringContains($avatar.underwear[_i],"-rear")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.barefoot and window.stringContains($avatar.underwear[_i],"highHeels")>>
<<set _check to false>>
<<elseif !$avatar.barefoot and window.stringContains($avatar.underwear[_i],"barefoot")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if _check>>
<<= "<img src='" + $imagePath.avatar + $avatar.underwear[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
<<else>>
/*Nothing should happen*/
<</if>>
<</for>>
<</if>>
/*CLOTHES*/
<<if def $avatar.clothing and $avatar.clothing.length>>
<<set $avatar.clothing to window.sortAvatar($avatar.clothing)>>
<<for _i to 0; _i lt $avatar.clothing.length ; _i++>>
<<set _check to true>>
<<if ($avatar.showRear and !window.stringContains($avatar.clothing[_i],"-rear")) >>
<<set _check to false>>
<<elseif !$avatar.showRear and window.stringContains($avatar.clothing[_i],"-rear")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.barefoot and window.stringContains($avatar.clothing[_i],"highHeels")>>
<<set _check to false>>
<<elseif !$avatar.barefoot and window.stringContains($avatar.clothing[_i],"barefoot")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if _check>>
<<= "<img src='" + $imagePath.avatar + $avatar.clothing[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
<<else>>
/*Nothing should happen*/
<</if>>
<</for>>
<</if>>
/*IN FRONT OF AVATAR*/
<<if def $avatar.foreground and $avatar.foreground.length>>
<<set $avatar.foreground to window.sortAvatar($avatar.foreground)>>
<<for _i to 0; _i lt $avatar.foreground.length ; _i++>>
<<set _check to true>>
<<if $avatar.showRear and !window.stringContains($avatar.foreground[_i],"-rear")>>
<<set _check to false>>
<<elseif !$avatar.showRear and window.stringContains($avatar.foreground[_i],"-rear")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if $avatar.barefoot and window.stringContains($avatar.foreground[_i],"highHeels")>>
<<set _check to false>>
<<elseif !$avatar.barefoot and window.stringContains($avatar.foreground[_i],"barefoot")>>
<<set _check to false>>
<<else>>
/*Nothing*/
<</if>>
<<if _check>>
<<= "<img src='" + $imagePath.avatar + $avatar.foreground[_i] +".png" + "' style='position: absolute; left: 0; top: " + $avatar.top + "px'>" >>
<<else>>
/*Nothing should happen*/
<</if>>
<</for>>
<</if>>
/*END OF AVATAR WIDGET*/
<</nobr>><</widget>>
<<widget "characterCreator-updateAvatar">><<nobr>>
<<silently>>
<<characterCreator-clearAvatar>>
<<characterCreator-setShadow>>
<<characterCreator-setBody>>
<<characterCreator-setFeet>>
<<characterCreator-setHair>>
<<characterCreator-setBreasts>>
<<characterCreator-setHead>>
<<characterCreator-setFreckles>>
<<characterCreator-setArms>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-blackMiniPencil>>
<<wear-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves>>
<<if $kate.agency == "mi6" or $kate.agency == "csis">>
<<wear-hosiery-plainBlackHoldUpStockings>>
<</if>>
<<wear-shoes-blackPatentHeels>>
<<characterCreator-setSecurityPass>>
<<if $kate.quirks.includes("batarian")>>
<<characterCreator-setHipsterGlasses>>
<</if>>
<<characterCreator-setNose>>
<<characterCreator-setMouth>>
<<characterCreator-setBrows>>
<<characterCreator-setEyeColour>>
<<characterCreator-setEyeShape>>
<</silently>>
<</nobr>><</widget>>
/*SET AVATAR WIDGETS*/
/*-------------------*/
/*Behind Avatar*/
<<widget "characterCreator-setShadow">><<nobr>>
<<characterCreator-unsetShadow>>
<<if $args.includes("barefoot")>>
<<set $avatar.background.pushUnique("11_shadow-barefoot")>>
<<set $avatar.background.pushUnique("11_shadow-barefoot-rear")>>
<<else>>
<<set $avatar.background.pushUnique("11_shadow-highHeels")>>
<<set $avatar.background.pushUnique("11_shadow-highHeels-rear")>>
<</if>>
<<set $avatar.background.pushUnique("02_glow-both")>>
<</nobr>><</widget>>
<<widget "characterCreator-unsetShadow">><<nobr>>
<<set $avatar.background.delete("11_shadow-barefoot","11_shadow-barefoot-rear","11_shadow-highHeels","11_shadow-highHeels-rear","02_glow-both")>>
<<set $avatar.background.delete("10_shadow-barefoot","10_shadow","10_shadow-both","10_shadow-both-barefoot")>>
<</nobr>><</widget>>
/*Body*/
<<widget "characterCreator-setBody">><<nobr>>
<<characterCreator-removeBody>>
<<set $avatar.body.pushUnique("20_body-"+$kate.complexion)>>
<<if !$avatar.body.includes("20_body-"+$kate.complexion+"-rear")>>
<<set $avatar.body.pushUnique(("20_body-"+$kate.complexion+"-rear"))>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-removeBody">><<nobr>>
<<set $avatar.body.delete("20_body-"+$kate.complexion)>>
<<set $avatar.body.delete(("20_body-"+$kate.complexion+"-rear"))>>
<</nobr>><</widget>>
<<widget "characterCreator-setFeet">><<nobr>>
<<set $avatar.body.delete(("10_feet-"+$kate.complexion+"-barefoot"))>>
<<set $avatar.body.delete(("10_feet-"+$kate.complexion+"-tiptoes"))>>
<<set $avatar.body.delete(("30_feet-"+$kate.complexion+"-barefoot-rear"))>>
<<set $avatar.body.delete(("30_feet-"+$kate.complexion+"-tiptoes-rear"))>>
<<if $args[0] eq "barefoot">>
<<set _feet to ("10_feet-"+$kate.complexion+"-barefoot")>>
<<set _feetBack to (("30_feet-"+$kate.complexion+"-barefoot-rear"))>>
<<else>>
<<set _feet to ("10_feet-"+$kate.complexion+"-tiptoes")>>
<<set _feetBack to (("30_feet-"+$kate.complexion+"-tiptoes-rear"))>>
<</if>>
<<set $avatar.body.pushUnique(_feet)>>
<<set $avatar.body.pushUnique(_feetBack)>>
<</nobr>><</widget>>
<<widget "characterCreator-setBreasts">><<nobr>>
<<set $avatar.body.delete(("30_breasts-" +$kate.braSize+ "-" +$kate.complexion +"-bare"))>>
<<set $avatar.body.delete(("30_breasts-" +$kate.braSize+ "-" +$kate.complexion +"-cleavage"))>>
<<set $avatar.body.delete(_size)>>
<<if $args[0] eq "bare">>
<<set _size to "30_breasts-" +$kate.braSize+ "-" +$kate.complexion +"-bare">>
<<set $avatar.body.pushUnique(_size)>>
<<else>>
<<set _size to "30_breasts-" +$kate.braSize+"-" +$kate.complexion +"-cleavage">>
<<set $avatar.body.pushUnique(_size)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-clearBreasts">><<nobr>>
<<set $avatar.body.delete(("30_breasts-" +$kate.braSize+"-" +$kate.complexion +"-cleavage"))>>
<<set $avatar.body.delete(("30_breasts-" +$kate.braSize+ "-" +$kate.complexion +"-bare"))>>
<</nobr>><</widget>>
<<widget "characterCreator-setHead">><<nobr>>
/*diamond, heart, oval, round, square*/
<<set _shape to "30_head-" +$kate.complexion+"-" +$kate.faceShape.toLowerCase()>>
<<if !$avatar.body.includes(_shape)>>
<<set $avatar.body.push(_shape)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setFreckles">><<nobr>>
<<if $kate.quirks.includes("freckles")>>
<<set $avatar.body.pushUnique("60_freckles")>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setArms">><<nobr>>
<<if not $hideAvatarArms>>
<<set $avatar.body.pushUnique("25_arms-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.pushUnique("30_arms-"+$kate.complexion+"-relaxed-rear")>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setNose">><<nobr>>
/*headshapes: diamond, heart, oval, round, square*/
/*noseshapes: celestial, greek, nubian, princess, princess*/
<<set _shape to "/113Expressions/50_nose-" + $kate.complexion+ "-" +$kate.noseShape.toLowerCase()>>
<<if !$avatar.body.includes(_shape)>>
<<set $avatar.body.push(_shape)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setMouth">><<nobr>>
/*headshapes: diamond, heart, oval, round, square*/
/*mouthhapes: cupid, hollywood, pearlique, rubina, thin*/
<<set _shape to "/113Expressions/50_mouth-" +$kate.complexion+"-"+$kate.mouthShape.toLowerCase()>>
<<if !$avatar.body.includes(_shape)>>
<<set $avatar.body.push(_shape)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setEyeColour">><<nobr>>
/*eyecolour: blue, chestnut, emerald, grey, hazelnut, sapphire*/
/*eyeshape: almond, cat, downturned, round, wide*/
<<set _shape to "/113Expressions/50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<if !$avatar.body.includes(_shape)>>
<<set $avatar.body.push(_shape)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-unsetEyes">><<nobr>>
<<set _shape to "/113Expressions/50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.delete(_shape)>>
<<set _shape to "/113Expressions/40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.delete(_shape)>>
<</nobr>><</widget>>
<<widget "characterCreator-setBrows">><<nobr>>
/*headshapes: diamond, heart, oval, round, square*/
/*mouthhapes: cupid, hollywood, pearlique, rubina, thin*/
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set _shape to "/113Brows/60_brows-"+_hairColour +"-calm">>
<<if !$avatar.body.includes(_shape)>>
<<set $avatar.body.push(_shape)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setEyeShape">><<nobr>>
/*headshapes: diamond, heart, oval, round, square*/
/*eyeshape: almond, cat, downturned, round, wide*/
<<set _shape to "/113Expressions/40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()>>
<<if !$avatar.body.includes(_shape)>>
<<set $avatar.body.push(_shape)>>
<</if>>
<</nobr>><</widget>>
/*Underwear*/
<<widget "characterCreator-setStockings">><<nobr>>
<<if !$avatar.underwear.includes("10_holdUps-40denier-black")>>
<<set $avatar.underwear.push("10_holdUps-40denier-black")>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setBra">><<nobr>>
<<set _size to "30_bra-plain-nude-" +$kate.braSize>>
<<if !$avatar.underwear.includes(_size)>>
<<set $avatar.underwear.push(_size)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setPanties">><<nobr>>
<<if !$avatar.underwear.includes("30_thong-plain-nude")>>
<<set $avatar.underwear.push("30_thong-plain-nude")>>
<</if>>
<</nobr>><</widget>>
/*Clothes*/
<<widget "characterCreator-setShirt">><<nobr>>
<<set _size to "20_shirt-fittedBlouse-white-"+$kate.braSize>>
<<if !$avatar.clothing.includes(_size)>>
<<set $avatar.clothing.push(_size)>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setShoes">><<nobr>>
<<if !$avatar.clothing.includes("20_highHeels-patent-black")>>
<<set $avatar.clothing.push("20_highHeels-patent-black")>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setSkirt">><<nobr>>
<<if !$avatar.clothing.includes("30_skirt-atkWorkSkirt-black")>>
<<set $avatar.clothing.push("30_skirt-atkWorkSkirt-black")>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-setHair">><<nobr>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.pushUnique("/113Hair/10_"+_hair+"-front"),
$avatar.foreground.pushUnique("/113Hair/10_"+_hair+"-rear"),
$avatar.background.pushUnique("/113Hair/90_"+_hair+"-back")>>
<</nobr>><</widget>>
<<widget "characterCreator-unsetHair">><<nobr>>
/*Deletes hairStyles found in checklist from avatar*/
<<set _checklist to ["longHair-straight","longHair-curls","shortHair-superShort","mediumHair-bob","mediumHair-wavyBob","longHair-bunWithBangs"]>>
<<set _index to []>>
<<for _i to 0; _i lt $avatar.foreground.length; _i++>>
<<for _j to 0; _j lt _checklist.length; _j++>>
<<set _hairSearch to $avatar.foreground[_i].search(_checklist[_j])>>
<<if _hairSearch neq -1>>
<<set _index.push(_i)>>
<</if>>
<</for>>
<</for>>
<<for _i to 0; _i lt _index.length; _i++>>
<<set $avatar.foreground.deleteAt(_index[_i])>>
<</for>>
<<set _index to []>>
<<for _i to 0; _i lt $avatar.background.length; _i++>>
<<for _j to 0; _j lt _checklist.length; _j++>>
<<set _hairSearch to $avatar.background[_i].search(_checklist[_j])>>
<<if _hairSearch neq -1>>
<<set _index.push(_i)>>
<</if>>
<</for>>
<</for>>
<<for _i to 0; _i lt _index.length; _i++>>
<<set $avatar.background.deleteAt(_index[_i])>>
<</for>>
<</nobr>><</widget>>
/*In front of Avatar*/
<<widget "characterCreator-setSecurityPass">><<nobr>>
/*Front*/
<<if !$avatar.foreground.includes("60_belt-ID-pass")>>
<<set $avatar.foreground.push("60_belt-ID-pass")>>
<</if>>
<</nobr>><</widget>>
<<widget "remove-securityPass">><<nobr>>
/*Front*/
<<set $avatar.foreground.delete("60_belt-ID-pass")>>
<</nobr>><</widget>>
<<widget "characterCreator-setHipsterGlasses">><<nobr>>
/*Front*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.foreground.pushUnique("10_hipsterGlasses")>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-reloadStoryCaption">><<nobr>>
<<replace "#avatar">><<include "StoryCaption">><</replace>>
<</nobr>><</widget>>
/*END*/
/*Other widgets*/
<<widget "avatar-stripNaked">><<nobr>>
/*<<avatar-stripNaked>>*/
/*This widget will give you an adult naked avatar*/
/*<<avatar-stripNaked barefoot braless>> will set a barefoot braless avatar*/
<<characterCreator-clearAvatar>>
<<characterCreator-setBody>>
<<characterCreator-setHead>>
<<if $args.includes("barefoot") or $avatar.barefoot>>
<<set $avatar.barefoot to true>>
<<characterCreator-setShadow "barefoot">>
<<characterCreator-setFeet "barefoot">>
<<characterCreator-setArms>>
<<if settings.avatarSize == "XXS">>
<<set $avatar.top to 12>>
<<elseif settings.avatarSize == "XS">>
<<set $avatar.top to 16>>
<<elseif settings.avatarSize == "S">>
<<set $avatar.top to 20>>
<<elseif settings.avatarSize == "M">>
<<set $avatar.top to 22>>
<<elseif settings.avatarSize == "L">>
<<set $avatar.top to 26>>
<<elseif settings.avatarSize == "XL">>
<<set $avatar.top to 30>>
<<elseif settings.avatarSize == "XXL">>
<<set $avatar.top to 35>>
<</if>>
<<elseif $args.includes("tiptoes") or !$avatar.barefoot>>
<<set $avatar.barefoot to false>>
<<characterCreator-setFeet>>
<<characterCreator-setArms>>
<<characterCreator-setShadow>>
<<set $avatar.top to 0>>
<<else>>
<<characterCreator-setFeet>>
<<characterCreator-setArms>>
<<characterCreator-setShadow>>
<<set $avatar.top to 0>>
<</if>>
<<characterCreator-setHead>>
<<characterCreator-setHair>>
<<if !$args.includes("braless") or $avatar.cleavage>>
<<set $avatar.cleavage to true>>
<<set $avatar.cleavageCounter to 0>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<<elseif $args.includes("braless") or !$avatar.cleavage>>
<<set $avatar.cleavage to false>>
<<set $avatar.cleavageCounter to 0>>
<<characterCreator-setBreasts>>
<<update-avatar-tattoo-piercing>>
<<else>>
<<characterCreator-setBreasts>>
<<update-avatar-tattoo-piercing>>
<</if>>
<<avatar-normal>>
<<characterCreator-setFreckles>>
<<if $avatar.sixPack>>
<<set $avatar.body.pushUnique("23_abs-sixPack-" + $kate.complexion)>>
<</if>>
<<if $kate.wasWearing.includes("manicure")>>
<<= '<<apply-makeup-manicure "' + $kate.lastWornManicure + '">>'>>
<</if>>
<<if $kate.wasWearing.includes("pedicure")>>
<<= '<<apply-makeup-pedicure "' + $kate.lastWornPedicure + '">>'>>
<</if>>
<<emote-calm>>
<</nobr>><</widget>>
<<widget "avatar-checkCleavage">><<nobr>>
<<if $avatar.cleavageCounter gt 0>>
<<set $avatar.cleavage to true>>
<<else>>
<<set $avatar.cleavage to false>>
<</if>>
<<if !$kate.isWearing.includesAny("top","bra","sweater","jumper","shirt","dress") and $avatar.cleavageCounter gt 0>>
<<consoleLog "Check failure in cleavage counter">>
<</if>>
<<if !$avatar.cleavage>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<<else>>
<<characterCreator-setBreasts>>
<<update-avatar-tattoo-piercing>>
<</if>>
<</nobr>><</widget>>
<<widget "avatar-checkBarefoot">><<nobr>>
<<if $avatar.barefoot>>
<<characterCreator-setShadow "barefoot">>
<<characterCreator-setFeet "barefoot">>
<<characterCreator-setArms>>
<<if settings.avatarSize == "XXS">>
<<set $avatar.top to 12>>
<<elseif settings.avatarSize == "XS">>
<<set $avatar.top to 16>>
<<elseif settings.avatarSize == "S">>
<<set $avatar.top to 20>>
<<elseif settings.avatarSize == "M">>
<<set $avatar.top to 22>>
<<elseif settings.avatarSize == "L">>
<<set $avatar.top to 26>>
<<elseif settings.avatarSize == "XL">>
<<set $avatar.top to 30>>
<<elseif settings.avatarSize == "XXL">>
<<set $avatar.top to 35>>
<</if>>
<<else>>
<<characterCreator-setFeet>>
<<characterCreator-setArms>>
<<characterCreator-setShadow>>
<<set $avatar.top to 0>>
<</if>>
<</nobr>><</widget>>
<<widget "characterCreator-clearAvatar">>
<<set $avatar.background to [],
$avatar.body to [],
$avatar.underwear to [],
$avatar.clothing to [],
$avatar.foreground to [],
$kate.wasWearing to $kate.isWearing,
$kate.isWearing to [],
$avatar.cleavage to false,
$avatar.cleavageCounter to 0,
$avatar.barefoot to true>>
<</widget>>
<<widget "avatar-undress">><<nobr>>
<<consoleLog $kate.isWearing>>
<<set _checkAgainst to $kate.isWearing>>
<<set _itemlist to []>>
<<for _j to 0; _j lt (_checkAgainst.length); _j++>>
<<set _searchTerm to "_" + _checkAgainst[_j]>>
<<consoleLog _searchTerm>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.foreground.length; _k++>>
<<set _foundTerm to $avatar.foreground[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.foreground[_k]>>
<<set _split to $avatar.foreground[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<consoleLog _item>>
<<set _itemlist.push(_checkAgainst[_j] +"-"+_item)>>
<</if>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.clothing.length; _k++>>
<<set _foundTerm to $avatar.clothing[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.clothing[_k]>>
<<set _split to $avatar.clothing[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<consoleLog _item>>
<<set _itemlist.push(_checkAgainst[_j] +"-"+_item)>>
<</if>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.underwear.length; _k++>>
<<set _foundTerm to $avatar.underwear[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.underwear[_k]>>
<<set _split to $avatar.underwear[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<consoleLog _item>>
<<set _itemlist.push(_checkAgainst[_j] +"-"+_item)>>
<</if>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.background.length; _k++>>
<<set _foundTerm to $avatar.background[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.background[_k]>>
<<set _split to $avatar.underwear[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<consoleLog _item>>
<<set _itemlist.push(_checkAgainst[_j] +"-"+_item)>>
<</if>>
<</for>>
<<for _k to 0; _k lt _itemlist.length; _k++>>
<<= "<<remove-"+_itemlist[_k]+">>">>
<</for>>
<</nobr>><</widget>>
<<widget "avatar-undressScene">><<nobr>>
<<set _title to $args[0]>>
<<set _location to $args[1]>>
<<if $kate.isWearing.includes("knickers") and !$kate.isWearing.includesAny("trousers", "leggings","skirt", "dress")>>
<<link "Pants">><<replace "#undressID">><<avatar-remove-indivualItem "pants">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("bra") and !$kate.isWearing.includesAny("sweater", "jumper","skirt", "dress", "top", "shirt", "jacket")>>
<<link "Bra">><<replace "#undressID">><<avatar-remove-indivualItem "bra">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("shoes")>>
<<link "Shoes">><<replace "#undressID">><<avatar-remove-indivualItem "shoes">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if >>
<<if $kate.isWearing.includes("trousers")>>
<<link "Trousers">><<replace "#undressID">><<avatar-remove-indivualItem "trousers">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("sweater")>>
<<link "Sweater">><<replace "#undressID">><<avatar-remove-indivualItem "sweater">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("jumper")>>
<<link "Jumper">><<replace "#undressID">><<avatar-remove-indivualItem "jumper">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("top")>>
<<link "Top">><<replace "#undressID">><<avatar-remove-indivualItem "top">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("leggings")>>
<<link "Legging">><<replace "#undressID">><<avatar-remove-indivualItem "leggings">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("boots")>>
<<link "Boots">><<replace "#undressID">><<avatar-remove-indivualItem "boots">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("jacket")>>
<<link "Jacket">><<replace "#undressID">><<avatar-remove-indivualItem "jacket">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("dress")>>
<<link "Dress">><<replace "#undressID">><<avatar-remove-indivualItem "dress">> <<avatar-undressScene _title _location>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("skirt")>>
<<link "Skirt">><<replace "#undressID">><<avatar-remove-indivualItem "skirt">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.includes("shirt")>>
<<link "Shirt">><<replace "#undressID">><<avatar-remove-indivualItem "shirt">> <<avatar-undressScene _title _location>> <</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><br>
<</if>>
<<if $kate.isWearing.length eq 0>>
<<if $avatar.cleavageCounter gt 0>>
<<consoleLog "FAILURE OF DRESSDOWN cleavage counter GT 0 ">>
<<set $avatar.cleavageCounter to 0>>
<</if>>
<<link _title _location>><</link>>
<</if>>
<</nobr>><</widget>>
<<widget "avatar-remove-indivualItem">><<nobr>>
<<set _itemToRemove to $args[0]>>
<<set _itemlist to []>>
<<set _searchTerm to "_" + _itemToRemove>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.foreground.length; _k++>>
<<set _foundTerm to $avatar.foreground[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.foreground[_k]>>
<<set _split to $avatar.foreground[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<set _itemlist.push(_itemToRemove +"-"+_item)>>
<</if>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.clothing.length; _k++>>
<<set _foundTerm to $avatar.clothing[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.clothing[_k]>>
<<set _split to $avatar.clothing[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<set _itemlist.push(_itemToRemove +"-"+_item)>>
<</if>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.underwear.length; _k++>>
<<set _foundTerm to $avatar.underwear[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.underwear[_k]>>
<<set _split to $avatar.underwear[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<set _itemlist.push(_itemToRemove +"-"+_item)>>
<</if>>
<<set _result to "None">>
<<for _k to 0; _k lt $avatar.background.length; _k++>>
<<set _foundTerm to $avatar.background[_k].search(_searchTerm)>>
<<if _foundTerm neq -1>>
<<set _result to $avatar.background[_k]>>
<<set _split to $avatar.underwear[_k].split(_searchTerm)>>
<<set _split to _split[1].split("-")>>
<<set _item to _split[1]>>
<</if>>
<</for>>
<<if _result neq "None">>
<<set _itemlist.push(_itemToRemove +"-"+_item)>>
<</if>>
<<for _k to 0; _k lt _itemlist.length; _k++>>
<<= "<<remove-"+_itemlist[_k]+">>">>
<</for>>
<</nobr>><</widget>>
<<widget "avatar-clothing-removeConflict">><<nobr>>
<<set _clothingPiece to $args[0]>>
<<set _conflictList to []>>
<<if _clothingPiece eq "pants" >>
<<set _conflictList to ["pants"]>>
<</if>>
<<if _clothingPiece eq "bra">>
<<set _conflictList to ["bra"]>>
<</if>>
<<if _clothingPiece eq "shoes">>
<<set _conflictList to ["shoes","boots"]>>
<</if >>
<<if _clothingPiece eq "trousers">>
<<set _conflictList to ["trousers","leggings","skirt","dress"]>>
<</if>>
<<if _clothingPiece eq "sweater">>
<<set _conflictList to ["sweater","jumper","top","shirt","dress"]>>
<</if>>
<<if _clothingPiece eq "jumper">>
<<set _conflictList to ["sweater","jumper","top","shirt","dress"]>>
<</if>>
<<if _clothingPiece eq "top">>
<<set _conflictList to ["sweater","jumper","top","shirt","dress"]>>
<</if>>
<<if _clothingPiece eq "leggings">>
<<set _conflictList to ["trousers","leggings","skirt","dress"]>>
<</if>>
<<if _clothingPiece eq "boots">>
<<set _conflictList to ["shoes","boots"]>>
<</if>>
<<if _clothingPiece eq "shoes">>
<<set _conflictList to ["shoes","boots"]>>
<</if>>
<<if _clothingPiece eq "jacket">>
<<set _conflictList to ["jacket"]>>
<</if>>
<<if _clothingPiece eq "dress">>
<<set _conflictList to ["sweater","jumper","top","shirt","dress"]>>
<</if>>
<<if _clothingPiece eq "skirt">>
<<set _conflictList to ["trousers","leggings","skirt","dress"]>>
<</if>>
<<if _clothingPiece eq "shirt">>
<<set _conflictList to ["sweater","jumper","top","shirt","dress"]>>
<</if>>
<<for _m to 0; _m lt _conflictList.length; _m++>>
<<avatar-remove-indivualItem _conflictList[_m]>>
<</for>>
<</nobr>><</widget>>
/*LIFEPATH WIDGETS---------------------------------------------------------------------------------------------lifepath*/
/*BABY*/
<<widget "lifepathSetBabyAvatar">><<nobr>>
<<characterCreator-clearAvatar>>
<<set $avatar.body.push("baby/10_baby-"+$kate.complexion)>>
<<set _shape to "baby/10_baby-eyes-" +$kate.eyeColour.toLowerCase()>>
<<if !$avatar.foreground.includes(_shape)>>
<<set $avatar.foreground.push(_shape)>>
<</if>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set _hair to "baby/10_baby-hair-"+_hairColour>>
<<set $avatar.foreground.pushUnique(_hair)>>
<<set $avatar.foreground.pushUnique("baby/20_baby-rabbitAndBow")>>
<</nobr>><</widget>>
/*8 YR*/
<<widget "lifepath-8yrAvatar">><<nobr>>
<<characterCreator-clearAvatar>>/*clear avatar*/
<<set _path to "age8/">>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_pink-rectangular-glasses")>>
<</if>>
/*Shadow*/
<<set $avatar.background.pushUnique(_path+"10_shadow")>>
/*Body*/
<<set $avatar.body.pushUnique(_path+"20_body-yellowSkirtAndBlackSweater-"+$kate.complexion)>>
/*Hair*/
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-"+_hairColour+"-back")>>
/*Brows*/
<<set _brows to _path+"60_brows-"+_hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
/*Eyes*/
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to _path+"50_eyeColour-"+$kate.complexion+"-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
/*12 YR*/
<<widget "lifepath-12yrAvatar">><<nobr>>
<<characterCreator-clearAvatar>>/*clear avatar*/
<<set _path to "age12/">>
/*Clothes*/
<<set $avatar.foreground.pushUnique(_path+"10_hairclip")>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_purple-rectangular-glasses")>>
<</if>>
/*Shadow*/
<<set $avatar.background.pushUnique(_path+"10_shadow")>>
/*Body*/
<<set $avatar.body.pushUnique(_path+"20_body-ukSchoolUniform-"+$kate.complexion)>>
<<set $avatar.clothing.pushUnique(_path+"20-ukSchoolBlazer")>>
/*Hair*/
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-"+_hairColour+"-back")>>
/*Brows*/
<<set _brows to _path+"60_brows-"+_hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
/*Eyes*/
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to _path+"50_eyeColour-"+$kate.complexion+"-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _mouth to _path+"/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_mouth)>>
<</nobr>><</widget>>
/*16 YR*/
<<widget "lifepath-16yrAvatar">><<nobr>>
/*ONLY BODY, NO CLOTHES*/
<<set _path to "age16/">>
<<characterCreator-clearAvatar>>/*clear avatar*/
/*Shadow*/
<<set $avatar.background.pushUnique(_path+"10_shadow")>>
/*Body*/
<<set $avatar.body.pushUnique(_path+"20_body-"+$kate.complexion+"-" +$kate.braSize+"-cleavage")>>
/*Feet, Only barefoot, set tiptoes in clothing - <<set $avatar.body.delete(_path+"10_feet-"+$kate.complexion+"-barefoot")>>*/
<<set _feet to (_path+"10_feet-"+$kate.complexion+"-barefoot")>>
<<set $avatar.body.pushUnique(_feet)>>
/*Hair*/
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-loose-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-loose-"+_hairColour+"-back")>>
<<set _head to _path+"30_head-"+ $kate.complexion +"-"+ $kate.faceShape.toLowerCase() >>
<<set $avatar.body.pushUnique(_head)>>
/*Brows*/
<<set _brows to _path+"60_brows-"+_hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
/*Eyes*/
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to _path+"50_eyeColour-"+$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _mouth to _path+"/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_mouth)>>
<<set _nose to _path+"/113Expressions/50_nose-"+$kate.complexion+"-"+$kate.noseShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_nose)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarClearHair">><<nobr>>
<<set _path to "age16/">>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.delete(_path+"10_hair-promUpdo-"+_hairColour+"-front"),
$avatar.background.delete(_path+"90_hair-promUpdo-"+_hairColour+"-back")>>
<<if $avatar.foreground.includes((_path+"10_hair-ponytail-"+_hairColour+"-front"))>>
<<set $avatar.foreground.delete(_path+"10_hair-ponytail-"+_hairColour+"-front")>>
<<set $avatar.background.delete(_path+"90_hair-ponytail-"+_hairColour+"-back")>>
<<elseif $avatar.foreground.includes((_path+"10_hair-loose-"+_hairColour+"-front"))>>
<<set $avatar.foreground.delete(_path+"10_hair-loose-"+_hairColour+"-front")>>
<<set $avatar.background.delete(_path+"90_hair-loose-"+_hairColour+"-back")>>
<<set $avatar.foreground.delete(_path+"10_pinkFlowersHairclip")>>
<<set $avatar.foreground.delete(_path+"10_pinkSkullsHairclip")>>
<<elseif $temp.leiaWig>>
<<set $avatar.foreground.delete(_path+"10_hair-leiaBuns-black-front")>>
<<set $avatar.background.delete(_path+"90_hair-leiaBuns-black-back")>>
/* return Kate's brows to their natural colour */
<<set $avatar.body.delete(_path+"60_brows-black")>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set _brows to _path+"60_brows-"+_hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarClearBuns">><<nobr>>
<<for _i to 0; _i lt $avatar.foreground.length; _i++>>
<<set _bunSearch to $avatar.foreground[_i].search("Buns")>>
<<if _bunSearch neq -1>>
<<set $avatar.foreground.deleteAt(_i)>>
<</if>>
<</for>>
<<for _i to 0; _i lt $avatar.background.length; _i++>>
<<set _bunSearch to $avatar.background[_i].search("Buns")>>
<<if _bunSearch neq -1>>
<<set $avatar.background.deleteAt(_i)>>
<</if>>
<</for>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarHairLoose">><<nobr>>
<<lifepath-16yrAvatarClearHair>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-loose-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-loose-"+_hairColour+"-back")>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.foreground.pushUnique(_path+"10_pinkSkullHairclip")>>
<<else>>
<<set $avatar.foreground.pushUnique(_path+"10_pinkFlowersHairclip")>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarHairPony">><<nobr>>
<<lifepath-16yrAvatarClearHair>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-ponytail-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-ponytail-"+_hairColour+"-back")>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarTiptoes">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.delete(_path+"10_feet-"+$kate.complexion+"-barefoot")>>
<<set _feet to (_path+"10_feet-"+$kate.complexion+"-tiptoes")>>
<<set $avatar.body.pushUnique(_feet)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarBarefoot">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.delete(_path+"10_feet-"+$kate.complexion+"-tiptoes")>>
<<set _feet to (_path+"10_feet-"+$kate.complexion+"-barefoot")>>
<<set $avatar.body.pushUnique(_feet)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSportStarClothes1">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_ukNetballUniform")>>
<<lifepath-16yrAvatarHairPony>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSportStarClothes2">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_ukSchoolShirt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_ukSchoolSkirt-sporty")>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_blackRectangularFramedGlasses")>>
<</if>>
<<lifepath-16yrAvatarHairLoose>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSportStarKino">><<nobr>>
<<set $avatar.clothing.pushUnique(_path+"30_kinoTape")>>/*Clothing*/
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSportStarWorkOutGear">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_workoutGear-"+$kate.braSize)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSportStarTrackGear">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_trackUniform-"+$kate.braSize)>>
<<lifepath-16yrAvatarHairPony>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSportStarPubGear">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"20_pubEscapadeTop-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"10_pubEscapadeSkirtAndBoots")>>
<<lifepath-16yrAvatarHairLoose>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarCasual">><<nobr>>
<<if $kate.quirks.includes("sportsStar")>>
<<lifepath-16yrAvatarCasualSportsStar>>
<<elseif $kate.quirks.includes("rockChick")>>
<<lifepath-16yrAvatarCasualRock>>
<<elseif $kate.quirks.includes("alphaFemale")>>
<<lifepath-16yrAvatarCasualAlpha>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<lifepath-16yrAvatarCasualGeek>>
<<else>>
<</if>>
<<lifepath-16yrAvatarBatarian>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarBatarian">><<nobr>>
<<if $kate.quirks.includes("batarian")>>
<<if $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique(_path+"10_geekGlasses")>>
<<else>>
<<set $avatar.clothing.pushUnique(_path+"10_blackRectangularFramedGlasses")>>
<</if>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarCasualSportsStar">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_sportyCasualLeggingsAndHoodie")>>
<<lifepath-16yrAvatarHairLoose>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarCasualGeek">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_geekJeansAndTrainers")>>
<<set $avatar.clothing.pushUnique(_path+"20_alderaanTee-"+$kate.braSize)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarCasualRock">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_rockerShortsAndBoots")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerJacket-"+$kate.braSize)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarCasualAlpha">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_alphaSkirtAndBoots")>>
<<lifepath-16yrAvatarTiptoes>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaSweater-"+$kate.braSize)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarStudyBuddyClothes">><<nobr>>
<<set $avatar.clothing to []>>
<<set _path to "age16/">>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique(_path+"10_rocker-studyBuddyShortsAndSocks")>>
<<set $avatar.clothing.pushUnique(_path+"20_rocker-casualRamonesTee-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique(_path+"10_geek-studyBuddyLeggingsAndSocks")>>
<<set $avatar.clothing.pushUnique(_path+"20_geek-casualStarBearTee-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.clothing.pushUnique(_path+"10_sportsStar-studyBuddySkirtAndSocks")>>
<<set $avatar.clothing.pushUnique(_path+"20_sportsStar-casualCardigan-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("alphaFemale")>>
<<lifepath-16yrAvatarBarefoot>>
<<set $avatar.clothing.pushUnique(_path+"10_alpha-layeredPinkVestOverWhiteTee-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_alpha-studyBuddySkirtAndSocks")>>
<</if>>
<<lifepath-16yrAvatarHairLoose>>
<<lifepath-16yrAvatarBatarian>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarGeekClothes1">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_ukSchoolShirt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_ukSchoolSkirt-geek")>>
<<set $avatar.clothing.pushUnique(_path+"30_ukSchoolBlazer")>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_geekGlasses")>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarGeekCosplayLara">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.clothing to []>>
<<lifepath-16yrAvatarHairPony>>
<<set $avatar.clothing.pushUnique(_path+"20_tombRaiderTop-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"10_tombRaiderShorts")>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarGeekCosplayStarTrek">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.clothing to []>>
<<set $avatar.clothing.pushUnique(_path+"10_starfleetUniform-"+$kate.braSize)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarGeekCosplaySomeStarWarsCharacterIDontKnow">><<nobr>>
<<set _path to "age16/">>
<<lifepath-16yrAvatarClearHair>>
<<set $avatar.clothing to []>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<if $temp.leiaWig>>
<<set $avatar.body.delete(_path+"60_brows-"+_hairColour)>>
<<set _hairColour to "black">>
<<set $avatar.foreground.pushUnique(_path+"10_hair-leiaBuns-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-leiaBuns-"+_hairColour+"-back")>>
<<set _brows to _path+"60_brows-black">>
<<set $avatar.body.pushUnique(_path+"60_brows-"+_hairColour)>>
<<else>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-leiaBuns-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-leiaBuns-"+_hairColour+"-back")>>
<</if>>
<<set $avatar.clothing.pushUnique(_path+"10_leiaRobes-"+$kate.braSize)>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarAlphaClothes1">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"20_ukSchoolShirt-alpha-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"10_ukSchoolSkirt-alpha")>>
<<set $avatar.clothing.pushUnique(_path+"30_ukSchoolBlazer")>>
<<set $avatar.foreground.pushUnique(_path+"20_alphaHeadband")>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_blackRectangularFramedGlasses")>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarAlphaProm">><<nobr>>
<<set _path to "age16/">>
<<lifepath-16yrAvatarClearHair>>
<<set $avatar.clothing to []>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<lifepath-16yrAvatarTiptoes>>
<<set $avatar.clothing.pushUnique(_path+"10_gabriellaPromDressAndHeels-"+$kate.braSize)>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-promUpdo-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-promUpdo-"+_hairColour+"-back")>>
<<set $avatar.foreground.delete(_path+"20_alphaHeadband")>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarAlphaPromQueen">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.foreground.pushUnique(_path+"20_promQueenSashAndTiara")>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarRockChickClothes1">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.clothing.pushUnique(_path+"10_ukSchoolShirt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_ukSchoolSkirt-rock")>>
<<set $avatar.clothing.pushUnique(_path+"30_ukSchoolBlazer")>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<set $avatar.clothing.pushUnique(_path+"10_blackRectangularFramedGlasses")>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarRockChickBOTB">><<nobr>>
<<set _path to "age16/">>
<<lifepath-16yrAvatarClearHair>>
<<set $avatar.clothing to []>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.delete(_path+"10_pinkSkullHairclip")>>
<<if $temp.metalMakeover>>
<<set $avatar.clothing.pushUnique(_path+"10_rockerDress-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique(_path+"20_fooFightersTee-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"10_rockerJeansAndBoots")>>
<</if>>
<<set $avatar.foreground.pushUnique(_path+"10_hair-spaceBuns-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path+"90_hair-spaceBuns-"+_hairColour+"-back")>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarRemoveBlazer">><<nobr>>
<<set _path to "age16/">>
<<if $avatar.clothing.includesAny("age16/30_ukSchoolBlazer")>>
<<set $avatar.clothing.delete('age16/30_ukSchoolBlazer')>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarSchoolUniform">><<nobr>>
<<set $avatar.clothing to []>>
<<if $avatar.foreground.includesAny("age16/20_pizzaPupStaffCap")>>
<<set $avatar.foreground.delete('age16/20_pizzaPupStaffCap')>>
<</if>>
<<if $kate.quirks.includes("sportsStar")>>
<<lifepath-16yrAvatarSportStarClothes2>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<lifepath-16yrAvatarGeekClothes1>>
<<lifepath-16yrAvatarRemoveBlazer>>
<<elseif $kate.quirks.includes("alphaFemale")>>
<<lifepath-16yrAvatarAlphaClothes1>>
<<lifepath-16yrAvatarRemoveBlazer>>
<<elseif $kate.quirks.includes("rockChick")>>
<<lifepath-16yrAvatarRockChickClothes1>>
<<lifepath-16yrAvatarRemoveBlazer>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarWaitress">><<nobr>>
<<set _path to "age16/">>
<<lifepath-16yrAvatarHairPony>>
<<set $avatar.clothing to []>>
<<set $avatar.clothing.pushUnique(_path+"10_waitressUniform-"+$kate.braSize)>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<if $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique(_path+"10_geekGlasses")>>
<<else>>
<<set $avatar.clothing.pushUnique(_path+"10_blackRectangularFramedGlasses")>>
<</if>>
<</if>>
<</nobr>><</widget>>
<<widget "lifepath-16yrAvatarPizza">><<nobr>>
<<set _path to "age16/">>
<<lifepath-16yrAvatarHairPony>>
<<set $avatar.clothing to []>>
<<set $avatar.clothing.pushUnique(_path+"10_blueConverseSneakers")>>
<<set $avatar.clothing.pushUnique(_path+"20_noughtiesBootCutJeans")>>
<<set $avatar.foreground.pushUnique(_path+"20_pizzaPupStaffCap")>>
<<set $avatar.clothing.pushUnique(_path+"30_pizzaPupStaffTee-"+$kate.braSize)>>
/*GLASSES FOR BATARIAN!!*/
<<if $kate.quirks.includes("batarian")>>
<<if $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique(_path+"10_geekGlasses")>>
<<else>>
<<set $avatar.clothing.pushUnique(_path+"10_blackRectangularFramedGlasses")>>
<</if>>
<</if>>
<</nobr>><</widget>>
/*18 YR*/
<<widget "lifepath-18yrAvatarBirthday">><<silently>>
<<set _path to "teenRom/">>
<<avatar-stripNaked>>
<<characterCreator-clearBreasts>>
<<set $avatar.background.pushUnique(_path+"20_18TodayBalloons")>>
<<if $kate.quirks.includes("rockChick")>>
<<characterCreator-setBreasts>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique(_path+"20_skirt-blackSideSlitMini")>>
<<set $avatar.clothing.pushUnique(_path+"30_tshirt-gnrSkinnyFit-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_boots-blackSuedeOverTheKneeBoots")>>
<<set $avatar.clothing.pushUnique(_path+"50_jacket-blackLeatherBiker")>>
<<characterCreator-setHipsterGlasses>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<characterCreator-setBreasts>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique(_path+"10_stockings-sheerWithHearts")>>
<<set $avatar.clothing.pushUnique(_path+"20_skirt-blackCatFaceMini")>>
<<set $avatar.clothing.pushUnique(_path+"40_sweater-pinkRibbedWithWhiteLaceCollar-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_boots-blackSuedeAnkleStillettosWithBuckles")>>
<<characterCreator-setHipsterGlasses>>
<<else>>
<<characterCreator-setBreasts "bare">>
<<lifepath-18yrAvatarHairUpdo>>
<<set $avatar.clothing.pushUnique(_path+"20_trousers-partyFlares-white")>>
<<set $avatar.clothing.pushUnique(_path+"20_top-lowCutGoingOutCropTop-olive-"+$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<<characterCreator-setShoes>>/*High heels patent black*/
<</if>>
<</silently>><</widget>>
<<widget "lifepath-18yrAvatarHairLongMessy">><<nobr>>
<<characterCreator-unsetHair>>
<<set _path1 to "teenRom/">>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown" "Brown" "brown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path1+"10_longHair-longMessy-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path1+"90_longHair-longMessy-"+_hairColour+"-back")>>
<</nobr>><</widget>>
<<widget "lifepath-18yrAvatarHairPonytail">><<nobr>>
<<characterCreator-unsetHair>>
<<set _path1 to "teenRom/">>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path1+"10_longHair-ponytail-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path1+"90_longHair-ponytail-"+_hairColour+"-back")>>
<</nobr>><</widget>>
<<widget "lifepath-18yrAvatarHairUpdo">><<nobr>>
<<characterCreator-unsetHair>>
<<set _path1 to "teenRom/">>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique(_path1+"10_longHair-updo-"+_hairColour+"-front"),
$avatar.background.pushUnique(_path1+"90_longHair-updo-"+_hairColour+"-back")>>
<</nobr>><</widget>>
/*Piercing -------------------------------------------------------------------------------*/
<<widget "piercing-bellybutton-diamondBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-bellybutton-diamondBarbell")>>
<</nobr>><</widget>>
<<widget "piercing-remove-bellybutton-diamondBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-bellybutton-diamondBarbell")>>
<</nobr>><</widget>>
<<widget "piercing-bottomLip-silverLabretSpike">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-bottomLip-silverLabretSpike")>>
<</nobr>><</widget>>
<<widget "piercing-remove-bottomLip-silverLabretSpike">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-bottomLip-silverLabretSpike")>>
<</nobr>><</widget>>
<<widget "piercing-bottomLip-silverLabretSpike-beam">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-bottomLip-silverLabretSpike-beam")>>
<</nobr>><</widget>>
<<widget "piercing-remove-bottomLip-silverLabretSpike-beam">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-bottomLip-silverLabretSpike-beam")>>
<</nobr>><</widget>>
<<widget "piercing-bottomLip-silverLabretSpike-openWide">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-bottomLip-silverLabretSpike-openWide")>>
<</nobr>><</widget>>
<<widget "piercing-remove-bottomLip-silverLabretSpike-openWide">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-bottomLip-silverLabretSpike-openWide")>>
<</nobr>><</widget>>
<<widget "piercing-bottomLip-silverLabretSpike-talk">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-bottomLip-silverLabretSpike-talk")>>
<</nobr>><</widget>>
<<widget "piercing-remove-bottomLip-silverLabretSpike-talk">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-bottomLip-silverLabretSpike-talk")>>
<</nobr>><</widget>>
<<widget "piercing-chest-silverBarbells">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-chest-silverBarbells")>>
<</nobr>><</widget>>
<<widget "piercing-remove-chest-silverBarbells">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-chest-silverBarbells")>>
<</nobr>><</widget>>
<<widget "piercing-forehead-diamondStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-forehead-diamondStud")>>
<</nobr>><</widget>>
<<widget "piercing-remove-forehead-diamondStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-forehead-diamondStud")>>
<</nobr>><</widget>>
<<widget "piercing-leftCheek-silverStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftCheek-silverStud")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftCheek-silverStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftCheek-silverStud")>>
<</nobr>><</widget>>
<<widget "piercing-leftEyebrow-silverSpikedBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftEyebrow-silverSpikedBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell")>>
<</nobr>><</widget>>
<<widget "piercing-leftEyebrow-silverSpikedBarbell-frown">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-frown")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftEyebrow-silverSpikedBarbell-frown">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-frown")>>
<</nobr>><</widget>>
<<widget "piercing-leftEyebrow-silverSpikedBarbell-raised">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-raised")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftEyebrow-silverSpikedBarbell-raised">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-raised")>>
<</nobr>><</widget>>
<<widget "piercing-leftEyebrow-silverSpikedBarbell-rogerMoore">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-rogerMoore")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftEyebrow-silverSpikedBarbell-rogerMoore">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-rogerMoore")>>
<</nobr>><</widget>>
<<widget "piercing-leftEyebrow-silverSpikedBarbell-worried">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-worried")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftEyebrow-silverSpikedBarbell-worried">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell-worried")>>
<</nobr>><</widget>>
<<widget "piercing-leftHelix-diamondStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftHelix-diamondStud-" + $kate.faceShape)>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftHelix-diamondStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftHelix-diamondStud-" + $kate.faceShape)>>
<</nobr>><</widget>>
<<widget "piercing-leftHighLobe-lowerSilverRings">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftHighLobe-lowerSilverRings-" + $kate.faceShape)>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftHighLobe-lowerSilverRings">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftHighLobe-lowerSilverRings-" + $kate.faceShape)>>
<</nobr>><</widget>>
<<widget "piercing-leftHighLobe-upperSilverRing">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftHighLobe-upperSilverRing")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftHighLobe-upperSilverRing">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftHighLobe-upperSilverRing")>>
<</nobr>><</widget>>
<<widget "piercing-leftNipple-silverBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<if $args.includes("bare")>>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>
<<else>>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-cleavage")>>
<</if>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftNipple-silverBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-cleavage")>>
<</nobr>><</widget>>
<<widget "piercing-leftNostril-blackStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-leftNostril-blackStud")>>
<</nobr>><</widget>>
<<widget "piercing-remove-leftNostril-blackStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftNostril-blackStud")>>
<</nobr>><</widget>>
<<widget "piercing-nose-silverSeptumRingWithBall">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-nose-silverSeptumRingWithBall")>>
<</nobr>><</widget>>
<<widget "piercing-remove-nose-silverSeptumRingWithBall">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-nose-silverSeptumRingWithBall")>>
<</nobr>><</widget>>
<<widget "piercing-noseBridge-silverBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-noseBridge-silverBarbell")>>
<</nobr>><</widget>>
<<widget "piercing-remove-noseBridge-silverBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-noseBridge-silverBarbell")>>
<</nobr>><</widget>>
<<widget "piercing-rightCheek-silverStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-rightCheek-silverStud")>>
<</nobr>><</widget>>
<<widget "piercing-remove-rightCheek-silverStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightCheek-silverStud")>>
<</nobr>><</widget>>
<<widget "piercing-rightEar-industrialBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-rightEar-industrialBarbell-" + $kate.faceShape)>>
<</nobr>><</widget>>
<<widget "piercing-remove-rightEar-industrialBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightEar-industrialBarbell-" + $kate.faceShape)>>
<</nobr>><</widget>>
<<widget "piercing-rightNipple-silverBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<if $args.includes("bare")>>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-rightNipple-silverBarbell-"+$kate.braSize+"-bare")>>
<<else>>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-rightNipple-silverBarbell-"+$kate.braSize+"-cleavage")>>
<</if>>
<</nobr>><</widget>>
<<widget "piercing-remove-rightNipple-silverBarbell">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightNipple-silverBarbell-"+$kate.braSize+"-bare")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightNipple-silverBarbell-"+$kate.braSize+"-cleavage")>>
<</nobr>><</widget>>
<<widget "piercing-rightNostril-blackStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-rightNostril-blackStud")>>
<</nobr>><</widget>>
<<widget "piercing-remove-rightNostril-blackStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightNostril-blackStud")>>
<</nobr>><</widget>>
<<widget "piercing-rightUpperHelix-silverRing">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-rightUpperHelix-silverRing")>>
<</nobr>><</widget>>
<<widget "piercing-remove-rightUpperHelix-silverRing">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightUpperHelix-silverRing")>>
<</nobr>><</widget>>
<<widget "piercing-nose-silverSeptumRingWithBall">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-nose-silverSeptumRingWithBall")>>
<</nobr>><</widget>>
<<widget "piercing-remove-nose-silverSeptumRingWithBall">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-nose-silverSeptumRingWithBall")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-talk">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-talk")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-talk">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-talk")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-snarl">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-snarl")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-snarl">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-snarl")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-smirk">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-smirk")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-smirk">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-smirk")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-sexyMouth">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-sexyMouth")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-sexyMouth">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-sexyMouth")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-sad">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-sad")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-sad">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-sad")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-pout">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-pout")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-pout">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-pout")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-openWide">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-openWide")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-openWide">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-openWide")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-closedSmile">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-closedSmile")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-closedSmile">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-closedSmile")>>
<</nobr>><</widget>>
<<widget "piercing-topLip-diamondMedusaStud-beam">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.pushUnique(_path2+"20_piercing-topLip-diamondMedusaStud-beam")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud-beam">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud-beam")>>
<</nobr>><</widget>>
<<widget "piercing-remove-topLip-diamondMedusaStud">><<nobr>>
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud")>>
<</nobr>><</widget>>
/*Brow silverSpikedBarbell facial expressions*/
<<widget "piercings-remove-facial-expressions-brow">>
/*Removes all bottom lip piercings */
<<piercing-remove-leftEyebrow-silverSpikedBarbell>>
<<piercing-remove-leftEyebrow-silverSpikedBarbell-worried>>
<<piercing-remove-leftEyebrow-silverSpikedBarbell-rogerMoore>>
<<piercing-remove-leftEyebrow-silverSpikedBarbell-frown>>
<<piercing-remove-leftEyebrow-silverSpikedBarbell-raised>>
<</widget>>
<<widget "piercings-facial-expressions-brow-normal">>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<<piercings-remove-facial-expressions-brow>>
<<piercing-leftEyebrow-silverSpikedBarbell>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-brow-worried">>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<<piercings-remove-facial-expressions-brow>>
<<piercing-leftEyebrow-silverSpikedBarbell-worried>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-brow-rogerMoore">>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<<piercings-remove-facial-expressions-brow>>
<<piercing-leftEyebrow-silverSpikedBarbell-rogerMoore>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-brow-frown">>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<<piercings-remove-facial-expressions-brow>>
<<piercing-leftEyebrow-silverSpikedBarbell-frown>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-brow-raised">>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<<piercings-remove-facial-expressions-brow>>
<<piercing-leftEyebrow-silverSpikedBarbell-raised>>
<</if>>
<</widget>>
/*Top lip diamondMedusaStud facial expressions*/
<<widget "piercings-remove-facial-expressions-topLip">>
/*Removes all top lip piercings */
<<piercing-remove-topLip-diamondMedusaStud>>
<<piercing-remove-topLip-diamondMedusaStud-talk>>
<<piercing-remove-topLip-diamondMedusaStud-snarl>>
<<piercing-remove-topLip-diamondMedusaStud-smirk>>
<<piercing-remove-topLip-diamondMedusaStud-sexyMouth>>
<<piercing-remove-topLip-diamondMedusaStud-sad>>
<<piercing-remove-topLip-diamondMedusaStud-pout>>
<<piercing-remove-topLip-diamondMedusaStud-openWide>>
<<piercing-remove-topLip-diamondMedusaStud-closedSmile>>
<<piercing-remove-topLip-diamondMedusaStud-beam>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-normal">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-talk">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-talk>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-snarl">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-snarl>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-smirk">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-smirk>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-sexyMouth">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-sexyMouth>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-sad">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-sad>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-pout">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-pout>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-openWide">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-openWide>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-closedSmile">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-closedSmile>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-topLip-beam">>
/*Normal top lip piercing*/
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercings-remove-facial-expressions-topLip>>
<<piercing-topLip-diamondMedusaStud-beam>>
<</if>>
<</widget>>
/*Bottom lip silverLabretSpike facial expressions */
<<widget "piercings-remove-facial-expressions-bottomLip">>
/*Removes all bottom lip piercings */
<<piercing-remove-bottomLip-silverLabretSpike-openWide>>
<<piercing-remove-bottomLip-silverLabretSpike-beam>>
<<piercing-remove-bottomLip-silverLabretSpike-talk>>
<<piercing-remove-bottomLip-silverLabretSpike>>
<</widget>>
<<widget "piercings-facial-expressions-bottomLip-normal">>
/*Normal bottom lip piercing*/
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<<piercings-remove-facial-expressions-bottomLip>>
<<piercing-bottomLip-silverLabretSpike>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-bottomLip-beam">>
/*beam bottom lip piercing*/
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<<piercings-remove-facial-expressions-bottomLip>>
<<piercing-bottomLip-silverLabretSpike-beam>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-bottomLip-talk">>
/*talk bottom lip piercing*/
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<<piercings-remove-facial-expressions-bottomLip>>
<<piercing-bottomLip-silverLabretSpike-talk>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-bottomLip-openWide">>
/*talk bottom lip piercing*/
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<<piercings-remove-facial-expressions-bottomLip>>
<<piercing-bottomLip-silverLabretSpike-openWide>>
<</if>>
<</widget>>
<<widget "piercings-facial-expressions-removeAll">><<nobr>>
<<piercings-remove-facial-expressions-bottomLip>>
<<piercings-remove-facial-expressions-topLip>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
<<widget "piercing-UPDATE">><<nobr>>
<<if $kate.piercings.includes("earSilverHighLobeRings")>>
<<piercing-leftHighLobe-upperSilverRing>>
<</if>>
<<if $kate.piercings.includes("earSilverBarbell")>>
<<piercing-rightEar-industrialBarbell>>
<</if>>
<<if $kate.piercings.includes("earDiamondHelixStud")>>
<<piercing-leftHelix-diamondStud>>
<</if>>
<<if $kate.piercings.includes("earSilverHelixRing")>>
<<piercing-rightUpperHelix-silverRing>>
<</if>>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<<piercing-leftEyebrow-silverSpikedBarbell>>
<</if>>
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<<piercing-topLip-diamondMedusaStud>>
<</if>>
<<if $kate.piercings.includes("faceSilverDimpleStuds")>>
<<piercing-rightCheek-silverStud>>
<<piercing-leftCheek-silverStud>>
<</if>>
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<<piercing-bottomLip-silverLabretSpike>>
<</if>>
<<if $kate.piercings.includes("faceThirdEyeDiamondStud")>>
<<piercing-forehead-diamondStud>>
<</if>>
<<if $kate.piercings.includes("noseBlackNasalang")>>
<<piercing-rightNostril-blackStud>>
<<piercing-leftNostril-blackStud>>
<</if>>
<<if $kate.piercings.includes("noseSilverBarbell")>>
<<piercing-noseBridge-silverBarbell>>
<</if>>
<<if $kate.piercings.includes("chestSilverBarbell")>>
<<piercing-chest-silverBarbells>>
<</if>>
<<if $kate.piercings.includes("navelSilverBarbell")>>
<<piercing-bellybutton-diamondBarbell>>
<</if>>
<<if $kate.piercings.includes("nosesilverSeptumRingWithBall")>>
<<piercing-nose-silverSeptumRingWithBall>>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<if $args.includes("bare")>>
<<piercing-rightNipple-silverBarbell "bare">>
<<piercing-leftNipple-silverBarbell "bare">>
<<else>>
<<piercing-rightNipple-silverBarbell>>
<<piercing-leftNipple-silverBarbell>>
<</if>>
<</if>>
<</nobr>><</widget>>
<<widget "piercings-removeFacialPiercings">><<nobr>>
/*This widget will remove all the facial piercings form the avatar*/
/*To re show : <<update-avatar-tattoo-piercing>>*/
<<set _path2 to "piercings/">>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-bottomLip-silverLabretSpike")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-forehead-diamondStud")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftCheek-silverStud")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftEyebrow-silverSpikedBarbell")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftHelix-diamondStud-" + $kate.faceShape)>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftHighLobe-lowerSilverRings-" + $kate.faceShape)>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftHighLobe-upperSilverRing-" + $kate.faceShape)>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-leftNostril-blackStud")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-nose-silverSeptumRingWithBall")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-noseBridge-silverBarbell")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightCheek-silverStud")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightEar-industrialBarbell-" + $kate.faceShape)>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightNostril-blackStud")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-rightUpperHelix-silverRing")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-nose-silverSeptumRingWithBall")>>
<<set $avatar.bodyMods.delete(_path2+"20_piercing-topLip-diamondMedusaStud")>>
<<replace "#avatar-container">><<avatar>><</replace>>
<</nobr>><</widget>>
/*TATTOOS*/
<<widget "tattoo-ChestSwallows">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-chest-swallows")>>
<</nobr>><</widget>>
<<widget "tattoo-bohoMandala">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-chestAndSolarPlexus-bohoMandala")>>
<</nobr>><</widget>>
<<widget "tattoo-leftAnkle-diamond">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftAnkle-diamond")>>
<</nobr>><</widget>>
<<widget "tattoo-leftAnkle-triyang">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftAnkle-triyang")>>
<</nobr>><</widget>>
<<widget "tattoo-leftForearm-aeroplane">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftForearm-aeroplane")>>
<</nobr>><</widget>>
<<widget "tattoo-leftHip-tribal">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftHip-tribal")>>
<</nobr>><</widget>>
<<widget "tattoo-leftHipBone-jacob">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftHipBone-jacob")>>
<</nobr>><</widget>>
<<widget "tattoo-leftThigh-tribalBand">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftThigh-tribalBand")>>
<</nobr>><</widget>>
<<widget "tattoo-leftUpperArm-stayGoldSlogan">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftUpperArm-stayGoldSlogan")>>
<</nobr>><</widget>>
<<widget "tattoo-leftUpperArm-tribal">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftUpperArm-tribal")>>
<</nobr>><</widget>>
<<widget "tattoo-pubicMound-hotZoneSlogan">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-pubicMound-hotZoneSlogan")>>
<</nobr>><</widget>>
<<widget "tattoo-pubicMound-tribalLoveCrest">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-pubicMound-tribalLoveCrest")>>
<</nobr>><</widget>>
<<widget "tattoo-rightAnkle-dove">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightAnkle-dove")>>
<</nobr>><</widget>>
<<widget "tattoo-rightCalf-cowgirl">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightCalf-cowgirl")>>
<</nobr>><</widget>>
<<widget "tattoo-rightForearm-d10Die">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightForearm-d10Die")>>
<</nobr>><</widget>>
<<widget "tattoo-rightForearm-rosesSleeve">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightForearm-rosesSleeve")>>
<</nobr>><</widget>>
<<widget "tattoo-rightHand-paperPlane">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightHand-paperPlane")>>
<</nobr>><</widget>>
<<widget "tattoo-rightHip-ashley">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightHip-ashley")>>
<</nobr>><</widget>>
<<widget "tattoo-rightHip-rose">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightHip-rose")>>
<</nobr>><</widget>>
<<widget "tattoo-rightNeck-stars">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightNeck-stars")>>
<</nobr>><</widget>>
<<widget "tattoo-rightThigh-tribal">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightThigh-tribal")>>
<</nobr>><</widget>>
<<widget "tattoo-rightThigh-tribal">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightThigh-tribal")>>
<</nobr>><</widget>>
<<widget "tattoo-rightUnderboob-wave">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-rightUnderboob-wave")>>
<</nobr>><</widget>>
<<widget "tattoo-leftCollarbone-8BitHearts">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftCollarbone-8BitHearts")>>
<</nobr>><</widget>>
<<widget "tattoo-leftCollarbone-CaffeineStructure">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftCollarbone-caffeineStructure")>>
<</nobr>><</widget>>
<<widget "tattoo-leftForearm-Elvish">><<nobr>>
/**/
<<set _path2 to "tattoos/">>
<<set $avatar.bodyMods.pushUnique(_path2+"10_tattoo-leftForearm-elvish")>>
<</nobr>><</widget>>
<<widget "tattoo-piercing-CLEAR">><<nobr>>
/*Also clears bikiniLines!!!*/
<<set $avatar.bodyMods to []>>
<</nobr>><</widget>>
<<widget "tattoo-UPDATE">><<nobr>>
<<if $kate.tattoos.includes("chestBohoMandela")>>
<<tattoo-bohoMandala>>
<</if>>
<<if $kate.tattoos.includes("chestSwallows")>>
<<tattoo-ChestSwallows>>
<</if>>
<<if $kate.tattoos.includes("rightNeckStars")>>
<<tattoo-rightNeck-stars>>
<</if>>
<<if $kate.tattoos.includes("rightUnderboobWave")>>
<<tattoo-rightUnderboob-wave>>
<</if>>
<<if $kate.tattoos.includes("rightHipRose")>>
<<tattoo-rightHip-rose>>
<</if>>
<<if $kate.tattoos.includes("leftHipBoneJacob")>>
<<tattoo-leftHipBone-jacob>>
<</if>>
<<if $kate.tattoos.includes("leftHipTribal")>>
<<tattoo-leftHip-tribal>>
<</if>>
<<if $kate.tattoos.includes("pubicMoundHotZoneSlogan")>>
<<tattoo-pubicMound-hotZoneSlogan>>
<</if>>
<<if $kate.tattoos.includes("pubicMoundTribalLoveCrest")>>
<<tattoo-pubicMound-tribalLoveCrest>>
<</if>>
<<if $kate.tattoos.includes("leftUpperArmStayGoldSlogan")>>
<<tattoo-leftUpperArm-stayGoldSlogan>>
<</if>>
<<if $kate.tattoos.includes("leftUpperArmTribal")>>
<<tattoo-leftUpperArm-tribal>>
<</if>>
<<if $kate.tattoos.includes("leftForearmAeroplane")>>
<<tattoo-leftForearm-aeroplane>>
<</if>>
<<if $kate.tattoos.includes("rightForearmD10Die")>>
<<tattoo-rightForearm-d10Die>>
<</if>>
<<if $kate.tattoos.includes("rightForearmRosesSleeve")>>
<<tattoo-rightForearm-rosesSleeve>>
<</if>>
<<if $kate.tattoos.includes("rightHandPaperPlane")>>
<<tattoo-rightHand-paperPlane>>
<</if>>
<<if $kate.tattoos.includes("rightThighTribal")>>
<<tattoo-rightThigh-tribal>>
<</if>>
<<if $kate.tattoos.includes("rightThighAshley")>>
<<tattoo-rightHip-ashley>>
<</if>>
<<if $kate.tattoos.includes("rightCalfCowgirl")>>
<<tattoo-rightCalf-cowgirl>>
<</if>>
<<if $kate.tattoos.includes("rightAnkleDove")>>
<<tattoo-rightAnkle-dove>>
<</if>>
<<if $kate.tattoos.includes("leftThighTribalBand")>>
<<tattoo-leftThigh-tribalBand>>
<</if>>
<<if $kate.tattoos.includes("leftAnkleDiamond")>>
<<tattoo-leftAnkle-diamond>>
<</if>>
<<if $kate.tattoos.includes("leftAnkleTriyang")>>
<<tattoo-leftAnkle-triyang>>
<</if>>
<<if $kate.tattoos.includes("leftCollarbone8BitHearts")>>
<<tattoo-leftCollarbone-8BitHearts>>
<</if>>
<<if $kate.tattoos.includes("leftCollarboneCaffeineStructure")>>
<<tattoo-leftCollarbone-CaffeineStructure>>
<</if>>
<<if $kate.tattoos.includes("leftForearmElvish")>>
<<tattoo-leftForearm-Elvish>>
<</if>>
<</nobr>><</widget>>
<<widget "update-avatar-tattoo-piercing">><<nobr>>
<<tattoo-piercing-CLEAR>>
<<if $args.includes("bare")>>
<<tattoo-UPDATE "bare">>
<<piercing-UPDATE "bare">>
<<else>>
<<tattoo-UPDATE>>
<<piercing-UPDATE>>
<</if>>
<<update-avatar-bikinilines>>
/*<<replace "#avatar-container">><<avatar>><</replace>>*/
<</nobr>><</widget>>
<<widget "lifepath-ukTeenRom-bikiniLines">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique(_path+"10_bikiniBottoms-blackTropicalPrintWithTieSidesBikiniBottoms")>>
<<set $avatar.clothing.pushUnique(_path+"10_bikiniTop-fuchsiaAndBlackBikiniTop-"+$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-ukTeenRom-drugdealer">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerSkirt-blackAndPurpleTartanWithBucklesMini")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackCottonVest-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerBoots-blackDMFlatformAnkleBoots")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerSocks-blackOverTheKneeSocks-barefoot")>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.underwear.pushUnique(_path+"10_geekSocks-blackOverTheKneeSocks-highHeels")>>
<<set $avatar.clothing.pushUnique(_path+"20_geekSkirt-khakiFlippyMiniWithFrontButtons")>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-blackCottonVestWithEmblem-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_geekBoots-backSuedeAnkleStillettosWithBuckles")>>/*Heels*/
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.clothing.pushUnique(_path+"30_sportyPlaysuit-greySleevelessWithSideTieBelt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyBoots-blackSuedeOverTheKneeHighHeeledBoots")>>/*Heels*/
<<else>>/*alpha*/
<<set $avatar.clothing.pushUnique(_path+"30_alphaShorts-pinkChiffonWithFrontTieBeltShorts")>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaTop-whiteCroppedVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaShoes-tanHighHeeledStrappySandals")>>/*Heels*/
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-ukTeenRom-drugdealer">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerSkirt-blackAndPurpleTartanWithBucklesMini")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackCottonVest-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerBoots-blackDMFlatformAnkleBoots")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerSocks-blackOverTheKneeSocks-barefoot")>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.underwear.pushUnique(_path+"10_geekSocks-blackOverTheKneeSocks-highHeels")>>
<<set $avatar.clothing.pushUnique(_path+"20_geekSkirt-khakiFlippyMiniWithFrontButtons")>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-blackCottonVestWithEmblem-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_geekBoots-backSuedeAnkleStillettosWithBuckles")>>/*Heels*/
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.clothing.pushUnique(_path+"30_sportyPlaysuit-greySleevelessWithSideTieBelt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyBoots-blackSuedeOverTheKneeHighHeeledBoots")>>/*Heels*/
<<else>>/*alpha*/
<<set $avatar.clothing.pushUnique(_path+"30_alphaShorts-pinkChiffonWithFrontTieBeltShorts")>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaTop-whiteCroppedVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaShoes-tanHighHeeledStrappySandals")>>/*Heels*/
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-ukTeenRom-AlevelResults">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique(_path+"10_rockerLeggings-blackCottonLeggings")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackAndGreyCottonFlaredRideOrDieVest-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerBoots-blackDMFlatformAnkleBoots")>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique(_path+"20_geekSkirt-lightBlueDenimMiniWithBrownBelt")>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-blackSkinnyfitWinTshirt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_geekShoes-pinkAndWhiteConverseTrainers")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.clothing.pushUnique(_path+"30_sportyTop-whiteCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"10_sportyLeggings-sheerBlackCottonLeggings")>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyShoes-whiteAndBlackAddidasTrainers")>>
<<else>>/*alpha*/
<<set $avatar.clothing.pushUnique(_path+"20_alphaJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaTop-blackCottonFlaredYouMeVest-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaShoes-pinkAndWhiteConverseTrainers")>>
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-ukTeenRom-kateTries">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerNecklace-blackThinChoker")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerStockings-blackSheerWideGreyBand-barefoot")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerShorts-blackDenimDaisyDukes")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerShoes-blackPatentSlipOnFlatformLoafers")>>
<<set $avatar.clothing.pushUnique(_path+"50_rockerJacket-blackLeatherBikerJacket")>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique(_path+"10_geekStockings-blackSheerNarrowBlackBand-barefoot")>>
<<set $avatar.clothing.pushUnique(_path+"40_geekDress-purpleCorduroyDungareeDressWithFrontPockets")>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-whiteBohoBlouse-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_geekShoes-blackPatentSlipOnLoafers")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyTop-blackLongSleevedCroppedTieWaistTop-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_sportyJeans-darkBlueDenimBootcutJeans")>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyShoes-blackSlipOnHighHeels")>>
<<else>>/*alpha*/
<<set $avatar.clothing.pushUnique(_path+"30_alphaJeans-darkBlueDenimBootcutJeans")>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaTop-whiteBohoBlouse-"+$kate.braSize)>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaShoes-tanHighHeeledStrappySandals")>>
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-ukTeenRom-aftermath">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerSocks-blackCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerShorts-lightBlueDenimDaisyDukes")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackAndYellowRamonesTshirt-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.underwear.pushUnique(_path+"10_geekSocks-palePinkWithPinkHeartsCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-oldCreamSpaceKittyTshirt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_geekShorts-blueAndWhiteStripedBoxerShorts")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.underwear.pushUnique(_path+"10_sportySocks-pinkCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"10_sportyLeggings-greyAndDuckeggStripeCroppedLycraLeggings")>>
<<set $avatar.clothing.pushUnique(_path+"40_sportyTop-greyDidntWantToComeSweater")>>
<<else>>/*alpha*/
<<set $avatar.underwear.pushUnique(_path+"10_alphaSocks-yellowWithPinkHeartsCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaTop-orangeCroppedExoticVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaShorts-blueAndWhiteStripedBoxerShorts")>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaTop-oldGreyZipUpHoodie-"+$kate.braSize)>>
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-BJFORTB-setup-clothes">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerSocks-blackCottonTrainerSocksWithGreyCuffs")>>
<<set $avatar.underwear.pushUnique(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerJeans-darkBlueDenimRippedSkinnyJeans")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackAndRedSkinnyfitSlipknotTshirt-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.underwear.pushUnique(_path+"10_geekSocks-blackCottonTrainerSocksWithGreyCuffs")>>
<<set $avatar.underwear.pushUnique(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-PinkFlaredVestNatural20-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_geekJeans-darkBlueDenimSkinnyJeans")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.underwear.pushUnique(_path+"10_sportySocks-hotPinkCottonTrainerSocksWithPalePinkCuffs")>>
<<set $avatar.underwear.pushUnique(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_sportyTop-hotPinkLooseCroppedVestNoGames-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyJeans-darkBlueDenimSkinnyJeans")>>
<<else>>/*alpha*/
<<set $avatar.underwear.pushUnique(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaTop-whiteCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaJeans-darkBlueDenimSkinnyJeans")>>
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-BJ-MenageAMoi-clothes">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.clothing.pushUnique(_path+"50_katesBedsheets")>>
<</nobr>><</widget>>
<<widget "lifepath-ukRomance-OtherPartners-clothes">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerNecklace-blackThinChoker")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerStockings-blackSheerWideGreyBand-barefoot")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerShorts-blackDenimDaisyDukes")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerShoes-blackPatentSlipOnFlatformLoafers")>>
<<set $avatar.clothing.pushUnique(_path+"50_rockerJacket-blackLeatherBikerJacket")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-blackCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique(_path+"30_geekTop-whiteBohoBlouse-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"40_geekDress-purpleCorduroyDungareeDressWithFrontPockets")>>
<<set $avatar.clothing.pushUnique(_path+"20_geekShoes-blackPatentSlipOnLoafers")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.underwear.pushUnique(_path+"10_sportySocks-paleMintWithDarkMintHeartsCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"30_sportyTop-navyWaterfallHemTshirtShark-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"20_sportyShorts-lightBlueDenimDaisyDukes")>>
<<else>>/*alpha*/
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaTop-whiteBohoBlouse-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_alphaJeans-darkBlueDenimBootcutJeans")>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaShoes-tanHighHeeledStrappySandals")>>
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "lifepath-bj-aftermath">><<nobr>>
<<set _path to "teenRom/">>
<<avatar-stripNaked "barefoot">>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.underwear.pushUnique(_path+"10_rockerSocks-darkGreyCottonAnkleSocksWithBlackHeels")>>
<<set $avatar.clothing.pushUnique(_path+"20_rockerShorts-darkGreyBoxerShorts")>>
<<set $avatar.clothing.pushUnique(_path+"40_rockerCardigan-blackCardigan")>>
<<set $avatar.clothing.pushUnique(_path+"30_rockerTop-lightGreyWaterfallHemTshirtRockRollFestival-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.underwear.pushUnique(_path+"10_geekSocks-palePinkWithPinkHeartsCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"40_geekTop-pinkHoodieSweater-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique(_path+"30_geekShorts-blueAndWhiteStripedBoxerShorts")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.underwear.pushUnique(_path+"10_sportySocks-pinkCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique(_path+"10_sportyLeggings-greyAndDuckeggStripeCroppedLycraLeggings")>>
<<set $avatar.clothing.pushUnique(_path+"40_sportyTop-greyDidntWantToComeSweater")>>
<<else>>/*alpha*/
<<set $avatar.clothing.pushUnique(_path+"10_rockerLeggings-blackCottonLeggings")>>
<<set $avatar.clothing.pushUnique(_path+"20_alphaTop-blueGreenVest-"+$kate.braSize)>>
<</if>>
<<characterCreator-setHipsterGlasses>>
<</nobr>><</widget>>
<<widget "util-avatarValuesToCamel">><<nobr>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set $kate.hairColour to "black">>
<<case "Blonde" "blonde">>
<<set $kate.hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set $kate.hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "lightbrown" "Lightbrown">>
<<set $kate.hairColour to "lightBrown">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight" "Long Straight" "long straight" "longstraight">>
<<set $kate.hairStyle to "longStraight">>
<<case "longCurly" "Long curly" "Long Curly" "long curly" "longcurly">>
<<set $kate.hairStyle to "longCurly">>
<<case "short" "Short" "shortSuperShort" "Super short">>
<<set $kate.hairStyle to "short">>
<<case "shortBob" "Short bob" "Medium bob">>
<<set $kate.hairStyle to "shortBob">>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set $kate.hairStyle to "bunWithBangs">>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*Wavy*/
<<set $kate.hairStyle to "wavyBob">>
<</switch>>
<<set $kate.faceShape to $kate.faceShape.toLowerCase()>>
<<set $kate.noseShape to $kate.noseShape.toLowerCase()>>
<<set $kate.mouthShape to $kate.mouthShape.toLowerCase()>>
<<set $kate.eyeColour to $kate.eyeColour.toLowerCase()>>
<<set $kate.eyeShape to $kate.eyeShape.toLowerCase()>>
<<set $kate.complexion to $kate.complexion.toLowerCase()>>
<</nobr>><</widget>>
<<widget "update-avatar-bikinilines">><<nobr>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set _path3 to "/113BikiniLines/">>
<<set $avatar.bodyMods.pushUnique(_path3+"15_bikiniLine-"+$kate.bikiniLine+"-"+_hairColour)>>
<</nobr>><</widget>>/*Clearing widgets -----------------------------------------------------------------*/
<<widget "avatar-clearFace">><<nobr>>
/*This avatar widget will clear the face of nose, mouth, eyes and brows*/
/* <<avatar-clearFace>> */
<<set $avatar.blink to false>>
<<avatar-clearBrows>>
<<avatar-clearEyes>>
<<avatar-clearNose>>
<<avatar-clearMouth>>
<<piercings-facial-expressions-removeAll>>
<<avatar-expr-removeBlush>>
<<avatar-expr-removeCheeksBJ>>
<<avatar-expr-removeTongue-out>>
<</nobr>><</widget>>
<<widget "avatar-clearBrows">><<nobr>>
<<for _i to 0; _i lt $avatar.body.length; _i++>>
<<set _toCheck to $avatar.body[_i]>>
<<if _toCheck.includes("brows")>>
<<set $avatar.body.deleteAt(_i)>>
<</if>>
<</for>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
<<widget "avatar-clearEyecolour">><<nobr>>
<<for _i to 0; _i lt $avatar.body.length; _i++>>
<<set _toCheck to $avatar.body[_i]>>
<<if _toCheck.includes("eyeColour")>>
<<set $avatar.body.deleteAt(_i)>>
<</if>>
<</for>>
<</nobr>><</widget>>
<<widget "avatar-clearEyeshape">><<nobr>>
<<for _i to 0; _i lt $avatar.body.length; _i++>>
<<set _toCheck to $avatar.body[_i]>>
<<if _toCheck.includes("eyeShape")>>
<<set $avatar.body.deleteAt(_i)>>
<</if>>
<</for>>
<</nobr>><</widget>>
<<widget "avatar-clearNose">><<nobr>>
<<for _i to 0; _i lt $avatar.body.length; _i++>>
<<set _toCheck to $avatar.body[_i]>>
<<if _toCheck.includes("nose")>>
<<set $avatar.body.deleteAt(_i)>>
<</if>>
<</for>>
<</nobr>><</widget>>
<<widget "avatar-clearMouth">><<nobr>>
<<for _i to 0; _i lt $avatar.body.length; _i++>>
<<set _toCheck to $avatar.body[_i]>>
<<if _toCheck.includes("mouth")>>
<<set $avatar.body.deleteAt(_i)>>
<</if>>
<</for>>
<<piercings-remove-facial-expressions-bottomLip>>
<<piercings-remove-facial-expressions-topLip>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</if>>
<</nobr>><</widget>>
<<widget "avatar-clearEyes">>
<<avatar-clearEyecolour>>
<<avatar-clearEyeshape>>
<</widget>>
/*Cheeks--------------------------------------------*/
<<widget "avatar-expr-blush">><<nobr>>
<<set $avatar.body.pushUnique("60_cheeks-blush")>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeBlush">><<nobr>>
<<set $avatar.body.delete("60_cheeks-blush")>>
<</nobr>><</widget>>
<<widget "avatar-expr-cheeksBJ">><<nobr>>
<<set $avatar.body.pushUnique("60_cheeks-blowJob")>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeCheeksBJ">><<nobr>>
<<set $avatar.body.delete("60_cheeks-blowJob")>>
<</nobr>><</widget>>
/*Brows---------------------------------------------*/
<<widget "avatar-expr-eyebrows-calm">><<nobr>>
/*Normal/ Default*/
<<avatar-clearBrows>>
<<set $avatar.body.pushUnique("60_brows-"+$kate.hairColour+"-calm")>>
<<piercings-facial-expressions-brow-normal>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyebrows-calm">><<nobr>>
<<set $avatar.body.delete("60_brows-"+$kate.hairColour+"-calm")>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyebrows-rogerMoore">><<nobr>>
<<avatar-clearBrows>>
<<set $avatar.body.pushUnique("60_brows-"+$kate.hairColour+"-rogerMoore")>>
<<piercings-facial-expressions-brow-rogerMoore>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyebrows-rogerMoore">><<nobr>>
<<set $avatar.body.delete("60_brows-"+$kate.hairColour+"-rogerMoore")>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyebrows-raised">><<nobr>>
<<avatar-clearBrows>>
<<set $avatar.body.pushUnique("60_brows-"+$kate.hairColour+"-raised")>>
<<piercings-facial-expressions-brow-raised>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyebrows-raised">><<nobr>>
<<set $avatar.body.delete("60_brows-"+$kate.hairColour+"-raised")>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyebrows-frown">><<nobr>>
<<avatar-clearBrows>>
<<set $avatar.body.pushUnique("60_brows-"+$kate.hairColour+"-frown")>>
<<piercings-facial-expressions-brow-frown>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyebrows-frown">><<nobr>>
<<set $avatar.body.delete("60_brows-"+$kate.hairColour+"-frown")>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyebrows-worried">><<nobr>>
<<avatar-clearBrows>>
<<set $avatar.body.pushUnique("60_brows-"+$kate.hairColour+"-worried")>>
<<piercings-facial-expressions-brow-worried>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyebrows-worried">><<nobr>>
<<set $avatar.body.delete("60_brows-"+$kate.hairColour+"-worried")>>
<<piercings-remove-facial-expressions-brow>>
<</nobr>><</widget>>
/* Eyes ---------------------------------------------------------------------*/
<<widget "avatar-expr-eyes-big">><<nobr>>
<<avatar-clearEyes>>
<<set _shape to "40_eyeShape-"+$kate.complexion+"-" + $kate.faceShape.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to "50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyes-big">><<nobr>>
<<set _shape to "40_eyeShape-"+$kate.complexion+"-" + $kate.faceShape.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.delete("_shape)>>
<<set _shape to "50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.delete("_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyes-normal">><<nobr>>
<<avatar-clearEyes>>
<<characterCreator-setEyeShape>>
<<characterCreator-setEyeColour>>
<</nobr>><</widget>>
/*Noses-------------------------------------------------------------------------*/
<<widget "avatar-expr-nose-normal">><<nobr>>
<<avatar-clearNose>>
<<characterCreator-setNose>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeNose-normal">><<nobr>>
<<avatar-clearNose>>
<</nobr>><</widget>>
<<widget "avatar-expr-nose-scrunch">><<nobr>>
<<avatar-clearNose>>
<<set _shape to "/113Expressions/50_nose-"+$kate.complexion+"-" +$kate.noseShape.toLowerCase()+"-scrunch">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeNose-scrunch">><<nobr>>
<<avatar-clearNose>>
<</nobr>><</widget>>
/*Mouths-------------------------------------------------------------------------------------*/
<<widget "avatar-expr-mouth-normal">><<nobr>>
<<avatar-clearMouth>>
<<characterCreator-setMouth>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-normal>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-normal">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-smirk">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-smirk">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-smirk>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-smirk">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-sad">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-sad">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-sad>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-sad">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-pout">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-pout">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-pout>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-pout">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-sexy">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-sexy">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-sexyMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-sexy">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-smile">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-smile">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-closedSmile>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-smile">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-snarl">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-snarl">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-normal>>
<<piercings-facial-expressions-topLip-snarl>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-snarl">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-openWide">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-openWide">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-openWide>>
<<piercings-facial-expressions-topLip-openWide>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-openWide">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-talk">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-talk">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-talk>>
<<piercings-facial-expressions-topLip-talk>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-talk">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-expr-mouth-beam">><<nobr>>
<<avatar-clearMouth>>
<<set _shape to "50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-beam">>
<<set $avatar.body.pushUnique(_shape)>>
<<piercings-facial-expressions-bottomLip-beam>>
<<piercings-facial-expressions-topLip-beam>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeMouth-beam">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
/*Tongue-------------------------------------------------------------------------------*/
<<widget "avatar-expr-tongue-out">><<nobr>>
<<avatar-expr-removeTongue-out>>
<<set _shape to "60_tongue-"+$kate.mouthShape.toLowerCase()+"-rollingStone">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeTongue-out">><<nobr>>
<<set _shape to "60_tongue-"+$kate.mouthShape.toLowerCase()+"-rollingStone">>
<<set $avatar.body.delete(_shape)>>
<</nobr>><</widget>>
/*Eyelids-------------------------------------------------------------------------------*/
<<widget "avatar-expr-eyelid-normal">><<nobr>>
<<avatar-expr-removeEyelid-squint>>
<<avatar-expr-removeEyelid-tearful>>
<<avatar-expr-removeEyelid-closed>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyelid-squint">><<nobr>>
<<avatar-expr-eyelid-normal>>
<<set _shape to "55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-squint">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyelid-squint">><<nobr>>
<<set _shape to "55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-squint">>
<<set $avatar.body.delete(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyelid-tearful">><<nobr>>
<<avatar-expr-eyelid-normal>>
<<set _shape to "55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-tearful">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyelid-tearful">><<nobr>>
<<set _shape to "/113Expressions/55_eyelids-"+$kate.eyeShape.toLowerCase()+ "-" +$kate.complexion+"-tearful">>
<<set $avatar.body.delete(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-eyelid-closed">><<nobr>>
<<avatar-expr-eyelid-normal>>
<<set _shape to "55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-closed">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-expr-removeEyelid-closed">><<nobr>>
<<set _shape to "55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-closed">>
<<set $avatar.body.delete(_shape)>>
<</nobr>><</widget>>
/*AVATAR 16 expression parts -------------------------------------------------------------------------*/
<<widget "avatar-age16-expr-eyebrows-normal">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age16/">>
<<set _brows to _path+"60_brows-"+ $kate.hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyebrows-raised">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age16/">>
<<set $avatar.body.pushUnique(_path+"60_brows-"+$kate.hairColour+"-raised")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeEyebrows-raised">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.delete(_path+"60_brows-"+$kate.hairColour+"-raised")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyebrows-frown">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age16/">>
<<set $avatar.body.pushUnique(_path+"60_brows-"+$kate.hairColour+"-frown")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeEyebrows-frown">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.delete(_path+"60_brows-"+$kate.hairColour+"-frown")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyebrows-worried">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age16/">>
<<set $avatar.body.pushUnique(_path+"60_brows-"+$kate.hairColour+"-worried")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeEyebrows-worried">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.delete(_path+"60_brows-"+$kate.hairColour+"-worried")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyes-normal">><<nobr>>
<<avatar-clearEyes>>
<<set _path to "age16/">>
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to _path+"50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyes-big">><<nobr>>
<<avatar-clearEyes>>
<<set _path to "age16/">>
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-" + $kate.faceShape.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to _path+"50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeEyes-big">><<nobr>>
<<set _path to "age16/">>
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-" + $kate.faceShape.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.delete("_shape)>>
<<set _shape to _path+"50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.delete("_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyelid-normal">><<nobr>>
<<avatar-age16-expr-removeEyelid-squint>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-eyelid-squint">><<nobr>>
<<avatar-age16-expr-removeEyelid-squint>>
<<set _path to "age16/">>
<<set _shape to _path+"55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-squint">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeEyelid-squint">><<nobr>>
<<set _path to "age16/">>
<<set _shape to _path+"55_eyelids-"+$kate.complexion+ "-" +$kate.eyeShape.toLowerCase()+"-squint">>
<<set $avatar.body.delete(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-mouth-normal">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age16/">>
<<set _mouth to _path+"50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_mouth)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeMouth-normal">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-mouth-smirk">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age16/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-smirk">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeMouth-smirk">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-mouth-sad">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age16/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-sad">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeMouth-sad">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-mouth-smile">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age16/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-smile">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeMouth-smile">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-mouth-snarl">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age16/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-snarl">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeMouth-snarl">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-mouth-beam">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age16/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.mouthShape.toLowerCase()+"-beam">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-blush">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.pushUnique(_path+"60_cheeks-blush")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeBlush">><<nobr>>
<<set _path to "age16/">>
<<set $avatar.body.delete(_path+"60_cheeks-blush")>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-removeMouth-beam">><<nobr>>
<<avatar-clearMouth>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-normal">><<nobr>>
<<set _path to "age16/">>
<<set _brows to _path+"60_brows-"+ $kate.hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
<<set _shape to _path+"40_eyeShape-"+$kate.complexion+"-"+$kate.faceShape.toLowerCase()+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _shape to _path+"50_eyeColour-"+$kate.complexion+"-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<<set _mouth to _path+"50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_mouth)>>
<<set _nose to _path+"/113Expressions/50_nose-"+$kate.complexion+"-" +$kate.noseShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_nose)>>
<<avatar-age16-expr-removeBlush>>
<</nobr>><</widget>>
<<widget "avatar-age16-expr-nose-normal">><<nobr>>
<<set _path to "age16/">>
<<set _nose to _path+"/113Expressions/50_nose-"+$kate.complexion+"-" +$kate.noseShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_nose)>>
<</nobr>><</widget>>
/*AGE 12 Expression parts----------------------------------------------------------------------------------------------------*/
<<widget "avatar-age12-expr-eyebrows-normal">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age12/">>
<<set _brows to _path+"60_brows-"+$kate.hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
<</nobr>><</widget>>
<<widget "avatar-age12-expr-eyebrows-sad">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age12/">>
<<set $avatar.body.pushUnique(_path+"60_brows-"+$kate.hairColour+"-sad")>>
<</nobr>><</widget>>
<<widget "avatar-age12-expr-mouth-pout">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age12/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-" +$kate.mouthShape.toLowerCase()+"-pout">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age12-expr-mouth-smile">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age12/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-" +$kate.mouthShape.toLowerCase()+"-smile">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age12-expr-mouth-normal">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age12/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-" +$kate.mouthShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
/*Age 8 expression parts---------------------------------------------------------------------------*/
<<widget "avatar-age8-expr-eyebrows-normal">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age8/">>
<<set _brows to _path+"60_brows-"+$kate.hairColour>>
<<set $avatar.body.pushUnique(_brows)>>
<</nobr>><</widget>>
<<widget "avatar-age8-expr-eyebrows-raised">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age8/">>
<<set _brows to _path+"60_brows-"+$kate.hairColour+"-raised">>
<<set $avatar.body.pushUnique(_brows)>>
<</nobr>><</widget>>
<<widget "avatar-age8-expr-eyebrows-rogerMoore">><<nobr>>
<<avatar-clearBrows>>
<<set _path to "age8/">>
<<set _brows to _path+"60_brows-"+$kate.hairColour+"-rogerMoore">>
<<set $avatar.body.pushUnique(_brows)>>
<</nobr>><</widget>>
<<widget "avatar-age8-expr-mouth-normal">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age8/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion>>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age8-expr-mouth-beam">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age8/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-beam">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age8-expr-mouth-open">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age8/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-open">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
<<widget "avatar-age8-expr-mouth-smirk">><<nobr>>
<<avatar-clearMouth>>
<<set _path to "age8/">>
<<set _shape to _path+"50_mouth-" +$kate.complexion+"-smirk">>
<<set $avatar.body.pushUnique(_shape)>>
<</nobr>><</widget>>
/*ACTUAL EXPRESSIONS--------------------------------------------------------------------------------------------------Expression combinations*/
/*Age 8*/
<<widget "avatar-age8-normal">><<nobr>>
<<avatar-age8-expr-eyebrows-normal>>
<<avatar-age8-expr-mouth-normal>>
<</nobr>><</widget>>
<<widget "avatar-age8-smile">><<nobr>>
<<avatar-age8-expr-eyebrows-normal>>
<<avatar-age8-expr-mouth-beam>>
<</nobr>><</widget>>
<<widget "avatar-age8-shock">><<nobr>>
<<avatar-age8-expr-eyebrows-raised>>
<<avatar-age8-expr-mouth-open>>
<</nobr>><</widget>>
<<widget "avatar-age8-smirk">><<nobr>>
<<avatar-age8-expr-eyebrows-rogerMoore>>
<<avatar-age8-expr-mouth-smirk>>
<</nobr>><</widget>>
/*Age 12*/
<<widget "avatar-age12-normal">><<nobr>>
<<avatar-age12-expr-eyebrows-normal>>
<<avatar-age12-expr-mouth-normal>>
<</nobr>><</widget>>
<<widget "avatar-age12-sad">><<nobr>>
<<avatar-age12-expr-eyebrows-sad>>
<<avatar-age12-expr-mouth-pout>>
<</nobr>><</widget>>
<<widget "avatar-age12-smile">><<nobr>>
<<avatar-age12-expr-eyebrows-normal>>
<<avatar-age12-expr-mouth-smile>>
<</nobr>><</widget>>
/*Age 16*/
<<widget "avatar-age16-normal">><<nobr>>
<<avatar-age16-expr-normal>>
<<avatar-age16-expr-eyebrows-normal>>
<<avatar-age16-expr-eyes-normal>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-normal>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-lol">><<nobr>>
/*Genuine smile / Lol*/
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-eyes-normal>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-beam>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-sad">><<nobr>>
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyebrows-worried>>
<<avatar-age16-expr-eyes-normal>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-sad>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-restingBitchFace">><<nobr>>
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyebrows-normal>>
<<avatar-age16-expr-eyes-normal>>
<<avatar-age16-expr-eyelid-squint>>
<<avatar-age16-expr-mouth-sad>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-anger">><<nobr>>
/*Anger / indignation */
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyebrows-frown>>
<<avatar-age16-expr-eyes-normal>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-snarl>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-embarrassed2">><<nobr>>
<<avatar-age16-expr-eyebrows-worried>>
<<avatar-age16-expr-eyes-big>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-smirk>>
<<avatar-age16-expr-blush>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-pain">><<nobr>>
/*Pain / Shock */
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyebrows-worried>>
<<avatar-age16-expr-eyes-big>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-snarl>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-thrilled">><<nobr>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyes-big>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-beam>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
<<widget "avatar-age16-smile">><<nobr>>
<<avatar-age16-expr-removeBlush>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-eyes-normal>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-smile>>
<<avatar-age16-expr-nose-normal>>
<</nobr>><</widget>>
/*Adult avatar Expressions-------------------------*/
<<widget "avatar-normal">><<nobr>>
<<set $avatar.blink to true>>
/*This is only the face expression*/
<<if $kate.quirks.includes("resting bitch face")>>
<<avatar-restingBitchFace>>
<<set $avatar.blink to true>>
<<else>>
<<avatar-clearFace>>
<<set $avatar.blink to true>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-normal>>
<</if>>
<</nobr>><</widget>>
<<widget "avatar-talking">><<nobr>>
/*talking*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-talk>>
<</nobr>><</widget>>
<<widget "avatar-stern">><<nobr>>
/*stern / resentful*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-frown>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-pout>>
<</nobr>><</widget>>
<<widget "avatar-sternTalking">><<nobr>>
/**/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-frown>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-talk>>
<</nobr>><</widget>>
<<widget "avatar-uncertain">><<nobr>>
/*uncertain /worried /sullen*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-pout>>
<</nobr>><</widget>>
<<widget "avatar-uncertainTalking">><<nobr>>
/*Uncertain / talking / surprise */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-talk>>
<</nobr>><</widget>>
<<widget "avatar-asleep">><<nobr>>
/*asleep*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-normal>>
<</nobr>><</widget>>
<<widget "avatar-sassy">><<nobr>>
/*sassy / Mocking*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-rogerMoore>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-smirk>>
<</nobr>><</widget>>
<<widget "avatar-niceToMeetYou">><<nobr>>
/* Nice to meet you / High morale*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-smile>>
<</nobr>><</widget>>
<<widget "avatar-satisfied">><<nobr>>
/*satisfied / Understanding */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-squint>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-smile>>
<</nobr>><</widget>>
<<widget "avatar-lol">><<nobr>>
/*Genuine smile / Lol*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-beam>>
<</nobr>><</widget>>
<<widget "avatar-photoSmile">><<nobr>>
/*Photo smile / Charming*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-normal>>
<</nobr>><</widget>>
<<widget "avatar-sad">><<nobr>>
/* sad */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-sad>>
<</nobr>><</widget>>
<<widget "avatar-crying">><<nobr>>
/* */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-tearful>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-sad>>
<</nobr>><</widget>>
<<widget "avatar-anguish">><<nobr>>
/* anguish / Bad Sex Face */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-pout>>
<</nobr>><</widget>>
<<widget "avatar-restingBitchFace">><<nobr>>
/* RBF */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-squint>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-sad>>
<</nobr>><</widget>>
<<widget "avatar-mildDisgust">><<nobr>>
/* Mild Disgust / Sex Face*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-frown>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-normal>>
<</nobr>><</widget>>
<<widget "avatar-anger">><<nobr>>
/* Anger / Indignation */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-frown>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-snarl>>
<</nobr>><</widget>>
<<widget "avatar-sexFace">><<nobr>>
/* Sex Face */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-snarl>>
<</nobr>><</widget>>
<<widget "avatar-orgasmFace">><<nobr>>
/* Orgasm Face */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-openWide>>
<<avatar-expr-blush>>
<</nobr>><</widget>>
<<widget "avatar-goingDown">><<nobr>>
/* Going Down on a girl */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-openWide>>
<<avatar-expr-tongue-out>>
<</nobr>><</widget>>
<<widget "avatar-horny">><<nobr>>
/* horny Face / Model Photo Face*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-squint>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-sexy>>
<</nobr>><</widget>>
<<widget "avatar-bjFace">><<nobr>>
/*Bj Face */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-openWide>>
<<avatar-expr-cheeksBJ>>
<</nobr>><</widget>>
<<widget "avatar-kissing">><<nobr>>
/* Kissing */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-calm>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-sexy>>
<</nobr>><</widget>>
<<widget "avatar-embarrassed1">><<nobr>>
/*embarrassed 1 */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-beam>>
<</nobr>><</widget>>
<<widget "avatar-embarrassed2">><<nobr>>
/* embarrassed2 */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-smirk>>
<<avatar-expr-blush>>
<</nobr>><</widget>>
<<widget "avatar-screamHelp">><<nobr>>
/* Screaming for help */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-openWide>>
<</nobr>><</widget>>
<<widget "avatar-dieMotherfucker">><<nobr>>
/* Screaming Die Motherfucker*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-frown>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-openWide>>
<</nobr>><</widget>>
<<widget "avatar-pain">><<nobr>>
/* Pain Shock */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-snarl>>
<</nobr>><</widget>>
<<widget "avatar-thrilled">><<nobr>>
/* Thrilled / On Drugs */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-beam>>
<</nobr>><</widget>>
<<widget "avatar-resentful">><<nobr>>
/* Resentful */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-frown>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-squint>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-pout>>
<</nobr>><</widget>>
<<widget "avatar-sarcastic">><<nobr>>
/*sarcastic / Ironic */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-rogerMoore>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-normal>>
<</nobr>><</widget>>
<<widget "avatar-disgusted">><<nobr>>
/* disgusted / grossed out*/
<<avatar-clearFace>>
<<avatar-expr-eyebrows-rogerMoore>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-snarl>>
<</nobr>><</widget>>
<<widget "avatar-amazed">><<nobr>>
/*Amazed / suprised */
<<avatar-clearFace>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<<avatar-expr-eyelid-normal>>
<<avatar-expr-nose-normal>>
<<avatar-expr-mouth-openWide>>
<</nobr>><</widget>>
<<widget "avatar-wetHair">><<silently>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _wetHair to "longHair-straight-wet-"+_hairColour,
_dryHair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _wetHair to "longHair-curls-wet-"+_hairColour,
_dryHair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _wetHair to "shortHair-superShort-wet-"+_hairColour,
_dryHair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _wetHair to "mediumHair-bob-wet-"+_hairColour,
_dryHair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _wetHair to "longHair-bunWithBangs-wet-"+_hairColour,
_dryHair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _wetHair to "mediumHair-wavyBob-wet-"+_hairColour,
_dryHair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.delete("/113Hair/10_"+_dryHair+"-front"),
$avatar.foreground.delete("/113Hair/10_"+_dryHair+"-rear"),
$avatar.background.delete("/113Hair/90_"+_dryHair+"-back")>>
<<set $avatar.foreground.pushUnique("/113WetLook/10_"+_wetHair+"-front"),
$avatar.foreground.pushUnique("/113WetLook/10_"+_wetHair+"-rear"),
$avatar.background.pushUnique("/113WetLook/90_"+_wetHair+"-back")>>
<</silently>><</widget>>
<<widget "avatar-wetBody">><<silently>>
<<set $avatar.body.pushUnique("/113WetLook/60_skin-wet-front")>>
<</silently>><</widget>>
<<widget "avatar-dryBody">><<silently>>
<<set $avatar.body.delete("/113WetLook/60_skin-wet-front")>>
<</silently>><</widget>>
<<widget "avatar-dryHair">><<silently>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _wetHair to "longHair-straight-wet-"+_hairColour,
_dryHair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _wetHair to "longHair-curls-wet-"+_hairColour,
_dryHair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _wetHair to "shortHair-superShort-wet-"+_hairColour,
_dryHair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _wetHair to "mediumHair-bob-wet-"+_hairColour,
_dryHair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _wetHair to "longHair-bunWithBangs-wet-"+_hairColour,
_dryHair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _wetHair to "mediumHair-wavyBob-wet-"+_hairColour,
_dryHair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.pushUnique("/113Hair/10_"+_dryHair+"-front"),
$avatar.foreground.pushUnique("/113Hair/10_"+_dryHair+"-rear"),
$avatar.background.pushUnique("/113Hair/90_"+_dryHair+"-back")>>
<<set $avatar.foreground.delete("/113WetLook/10_"+_wetHair+"-front"),
$avatar.foreground.delete("/113WetLook/10_"+_wetHair+"-rear"),
$avatar.background.delete("/113WetLook/90_"+_wetHair+"-back")>>
<</silently>><</widget>>
<<widget "avatar-getWet">><<silently>>
<<avatar-wetBody>>
<<avatar-wetHair>>
<</silently>><</widget>>
<<widget "avatar-dryOff">><<silently>>
<<avatar-dryBody>>
<<avatar-dryHair>>
<</silently>><</widget>><<widget "emote-brows-attentive">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-attentive")>>
<</silently>><</widget>>
<<widget "emote-brows-calm">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-calm")>>
<</silently>><</widget>>
<<widget "emote-brows-frown">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-frown")>>
<</silently>><</widget>>
<<widget "emote-brows-naughty">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-naughty")>>
<</silently>><</widget>>
<<widget "emote-brows-raised">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-raised")>>
<</silently>><</widget>>
<<widget "emote-brows-rogerMoore">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-rogerMoore")>>
<</silently>><</widget>>
<<widget "emote-brows-worried">><<silently>>
<<avatar-clearBrows>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<set $avatar.body.pushUnique("/113Brows/60_brows-"+_hairColour+"-worried")>>
<</silently>><</widget>>
<<widget "emote-calm">><<silently>>
<<emote-brows-calm>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<<emote-nose-calm>>
<<set $avatar.body.delete("/113Expressions/60_cheeks-blush")>>
<<set $avatar.body.delete("/113Expressions/60_chest-flushed")>>
<<set $avatar.body.delete("/113Expressions/60_cheeks-blush-75Percent")>>
<<set $avatar.body.delete("/113Expressions/60_chest-flushed-75Percent")>>
<</silently>><</widget>>
<<widget "emote-cheeks-blush">><<silently>>
<<set $avatar.body.pushUnique("/113Expressions/60_cheeks-blush")>>
<</silently>><</widget>>
<<widget "emote-cheeks-blush-fading">><<silently>>
<<set $avatar.body.delete("/113Expressions/60_cheeks-blush")>>
<<set $avatar.body.pushUnique("/113Expressions/60_cheeks-blush-75Percent")>>
<</silently>><</widget>>
<<widget "emote-chest-flush">><<silently>>
<<set $avatar.body.pushUnique("/113Expressions/60_chest-flushed")>>
<</silently>><</widget>>
<<widget "emote-chest-flush-fading">><<silently>>
<<set $avatar.body.delete("/113Expressions/60_chest-flushed")>>
<<set $avatar.body.pushUnique("/113Expressions/60_chest-flushed-75Percent")>>
<</silently>><</widget>>
<<widget "emote-eyes-big">><<silently>>
<<avatar-clearEyes>>
<<set _eyeShape to "/113Expressions/40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.pushUnique(_eyeShape)>>
<<set _eyeColour to "/113Expressions/50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()+"-big">>
<<set $avatar.body.pushUnique(_eyeColour)>>
<</silently>><</widget>>
<<widget "emote-eyes-calm">><<silently>>
<<avatar-clearEyes>>
<<set $avatar.body.delete("/113Expressions/55_eyelids-" + $kate.eyeShape.toLowerCase() + "-" + $kate.complexion + "-closed")>>
<<set $avatar.body.delete("/113Expressions/55_eyelids-" + $kate.eyeShape.toLowerCase() + "-" + $kate.complexion + "-squint")>>
<<set $avatar.body.delete("/113Expressions/55_eyelids-" + $kate.eyeShape.toLowerCase() + "-" + $kate.complexion + "-tearful")>>
<<set _eyeShape to "/113Expressions/40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_eyeShape)>>
<<set _eyeColour to "/113Expressions/50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.pushUnique(_eyeColour)>>
<<if $kate.isWearing.includes("eyeshadow")>>
<<remove-makeup-eyeshadow>>
<<= "<<apply-makeup-eyeshadow-"+$kate.lastWornEyeshadow+">>">>
<</if>>
<<if $kate.isWearing.includes("eyeliner")>>
<<remove-makeup-eyeliner>>
<<= "<<apply-makeup-eyeliner-"+$kate.lastWornEyeliner+">>">>
<</if>>
<<set $avatar.blink to true>>
<</silently>><</widget>>
<<widget "emote-eyes-closed">><<silently>>
<<emote-eyes-calm>>
<<set $avatar.blink to false>>
<<set _eyeShape to "/113Expressions/40_eyeShape-"+$kate.complexion+"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.delete(_eyeShape)>>
<<set _eyeColour to "/113Expressions/50_eyeColour-" +$kate.eyeColour.toLowerCase() +"-" +$kate.eyeShape.toLowerCase()>>
<<set $avatar.body.delete(_eyeColour)>>
<<if not $kate.isWearing.includesAny("eyeshadow", "eyeliner")>>
<<set $avatar.body.pushUnique("/113Expressions/55_eyelids-" + $kate.eyeShape.toLowerCase() + "-" + $kate.complexion + "-closed")>>
<</if>>
<<if $kate.isWearing.includes("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape)>>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</if>>
<<if $kate.isWearing.includes("eyeliner")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-" + $kate.lastWornEyeliner + "-" + $kate.eyeShape)>>
<<set $avatar.clothing.pushUnique("/makeup/eyeliner/20_eyeliner-" + $kate.lastWornEyeliner + "-" + $kate.eyeShape + "-closed")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-eyes-squint">><<silently>>
<<emote-eyes-calm>>
<<set $avatar.body.pushUnique("/113Expressions/55_eyelids-" + $kate.eyeShape.toLowerCase() + "-" + $kate.complexion + "-squint")>>
<</silently>><</widget>>
<<widget "emote-eyes-tearful">><<silently>>
<<emote-eyes-calm>>
<<set $avatar.body.pushUnique("/113Expressions/55_eyelids-" + $kate.eyeShape.toLowerCase() + "-" + $kate.complexion + "-tearful")>>
<</silently>><</widget>>
<<widget "emote-mouth-beam">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-beam")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-blowjob">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-open")>>
<<set $avatar.body.pushUnique("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-calm">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.delete("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<<set $avatar.clothing.delete("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-tongue")>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase())>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-oh">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-oh")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-open">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-open")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-pout">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-pout")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-sad">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-sad")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-sexy">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-sexy")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-smile">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-smile")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-smirk">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-smirk")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-talking">><<silently>>
<<if $avatar.body.includes("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-oh")>>
<<emote-mouth-sexy>>
<<elseif $avatar.body.includes("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-sexy")>>
<<emote-mouth-oh>>
<<else>>
<<set _coinToss to either("heads", "tails")>>
<<if _coinToss == "heads">>
<<emote-mouth-oh>>
<<else>>
<<emote-mouth-sexy>>
<</if>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-lick">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-open")>>
<<set $avatar.clothing.pushUnique("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-tongue")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-upset">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-upset")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-mouth-wideSmile">><<silently>>
<<avatar-clearMouth>>
<<set $avatar.body.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-wideSmile")>>
<<if $kate.isWearing.includes("lipstick")>>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</if>>
<</silently>><</widget>>
<<widget "emote-nose-calm">><<silently>>
<<avatar-clearNose>>
<<set $avatar.body.pushUnique("/113Expressions/50_nose-"+$kate.complexion+"-" +$kate.noseShape.toLowerCase())>>
<</silently>><</widget>>
<<widget "emote-nose-scrunch">><<silently>>
<<avatar-clearNose>>
<<set $avatar.body.pushUnique("/113Expressions/50_nose-"+$kate.complexion+"-" +$kate.noseShape.toLowerCase()+"-scrunch")>>
<</silently>><</widget>>
<<widget "emote-nose-wrinkle">><<silently>>
<<avatar-clearNose>>
<<set $avatar.body.pushUnique("/113Expressions/50_nose-"+$kate.complexion+"-" +$kate.noseShape.toLowerCase()+"-wrinkle")>>
<</silently>><</widget>>/*----------*/
/* BLUSHER */
/*--------*/
<<widget "remove-makeup-blusher">><<silently>>
<<if $kate.isWearing.includes("blusher")>>
<<= '<<remove-makeup-blusher-' + $kate.lastWornBlusher + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "apply-makeup-blusher-apricot">><<silently>>
<<remove-makeup-blusher>>
<<set $kate.isWearing.pushUnique("blusher")>>
<<set $kate.lastWornBlusher to "apricot">>
<<set $avatar.clothing.pushUnique("/makeup/blush/15_blush-apricot")>>
<</silently>><</widget>>
<<widget "remove-makeup-blusher-apricot">><<silently>>
<<set $kate.isWearing.delete("blusher")>>
<<set $avatar.clothing.delete("/makeup/blush/15_blush-apricot")>>
<</silently>><</widget>>
<<widget "apply-makeup-blusher-contour">><<silently>>
<<remove-makeup-blusher>>
<<set $kate.isWearing.pushUnique("blusher")>>
<<set $kate.lastWornBlusher to "contour">>
<<set $avatar.clothing.pushUnique("/makeup/blush/15_blush-contour")>>
<</silently>><</widget>>
<<widget "remove-makeup-blusher-contour">><<silently>>
<<set $kate.isWearing.delete("blusher")>>
<<set $avatar.clothing.delete("/makeup/blush/15_blush-contour")>>
<</silently>><</widget>>
<<widget "apply-makeup-blusher-peach">><<silently>>
<<remove-makeup-blusher>>
<<set $kate.isWearing.pushUnique("blusher")>>
<<set $kate.lastWornBlusher to "peach">>
<<set $avatar.clothing.pushUnique("/makeup/blush/15_blush-peach")>>
<</silently>><</widget>>
<<widget "remove-makeup-blusher-peach">><<silently>>
<<set $kate.isWearing.delete("blusher")>>
<<set $avatar.clothing.delete("/makeup/blush/15_blush-peach")>>
<</silently>><</widget>>
<<widget "apply-makeup-blusher-rosy">><<silently>>
<<remove-makeup-blusher>>
<<set $kate.isWearing.pushUnique("blusher")>>
<<set $kate.lastWornBlusher to "rosy">>
<<set $avatar.clothing.pushUnique("/makeup/blush/15_blush-rosy")>>
<</silently>><</widget>>
<<widget "remove-makeup-blusher-rosy">><<silently>>
<<set $kate.isWearing.delete("blusher")>>
<<set $avatar.clothing.delete("/makeup/blush/15_blush-rosy")>>
<</silently>><</widget>>
/*-----------*/
/* EYELINER */
/*---------*/
<<widget "remove-makeup-eyeliner">><<silently>>
<<if $kate.isWearing.includes("eyeliner")>>
<<= '<<remove-makeup-eyeliner-' + $kate.lastWornEyeliner + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeliner-elizabeth">><<silently>>
<<remove-makeup-eyeliner>>
<<set $kate.isWearing.pushUnique("eyeliner")>>
<<set $kate.lastWornEyeliner to "elizabeth">>
<<set $avatar.clothing.pushUnique("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeliner-elizabeth">><<silently>>
<<set $kate.isWearing.delete("eyeliner")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeliner-jessica">><<silently>>
<<remove-makeup-eyeliner>>
<<set $kate.isWearing.pushUnique("eyeliner")>>
<<set $kate.lastWornEyeliner to "jessica">>
<<set $avatar.clothing.pushUnique("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeliner-jessica">><<silently>>
<<set $kate.isWearing.delete("eyeliner")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeliner-lina">><<silently>>
<<remove-makeup-eyeliner>>
<<set $kate.isWearing.pushUnique("eyeliner")>>
<<set $kate.lastWornEyeliner to "lina">>
<<set $avatar.clothing.pushUnique("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeliner-lina">><<silently>>
<<set $kate.isWearing.delete("eyeliner")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeliner-ramona">><<silently>>
<<remove-makeup-eyeliner>>
<<set $kate.isWearing.pushUnique("eyeliner")>>
<<set $kate.lastWornEyeliner to "ramona">>
<<set $avatar.clothing.pushUnique("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeliner-ramona">><<silently>>
<<set $kate.isWearing.delete("eyeliner")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
/*------------*/
/* EYESHADOW */
/*----------*/
<<widget "remove-makeup-eyeshadow">><<silently>>
<<if $kate.isWearing.includes("eyeshadow")>>
<<= '<<remove-makeup-eyeshadow-' + $kate.lastWornEyeshadow + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-amethyst">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "amethyst">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-amethyst">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-emerald">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "emerald">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-emerald">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-emeraldFaded">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "emeraldFaded">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-emeraldFaded">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-galaxy">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "galaxy">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-galaxy">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-lust">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "lust">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-lust">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-rio">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "rio">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-rio">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-smoky">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "smoky">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-smoky">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-zoesBlueEyeshadow">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-" + $kate.lastWornEyeliner + "-" + $kate.eyeShape)>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "zoesBlueEyeshadow">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-zoesBlueEyeshadow">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
<<widget "apply-makeup-eyeshadow-zoesEyeshadow3">><<silently>>
<<remove-makeup-eyeshadow>>
<<set $avatar.clothing.delete("/makeup/eyeliner/20_eyeliner-" + $kate.lastWornEyeliner + "-" + $kate.eyeShape)>>
<<set $kate.isWearing.pushUnique("eyeshadow")>>
<<set $kate.lastWornEyeshadow to "zoesEyeshadow3">>
<<set $avatar.clothing.pushUnique("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.body.pushUnique("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.delete("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<</silently>><</widget>>
<<widget "remove-makeup-eyeshadow-zoesEyeshadow3">><<silently>>
<<set $kate.isWearing.delete("eyeshadow")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "")>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.body.pushUnique("55_eyelids-" + $kate.complexion + "-" + $kate.eyeShape.toLowerCase() + "-closed")>>
<<set $avatar.body.delete("/makeup/eyeshadow/blinkLayers/55_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>><</widget>>
/*-----------*/
/* LIPSTICK */
/*---------*/
<<widget "remove-makeup-lipstick">><<silently>>
<<if $kate.isWearing.includes("lipstick")>>
<<= '<<remove-makeup-lipstick-' + $kate.lastWornLipstick + '>>'>>
<</if>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-apricotFantasy">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "apricotFantasy">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-apricotFantasy">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-burntZellige">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "burntZellige">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-burntZellige">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-ladyDanger">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "ladyDanger">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-ladyDanger">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-missMagenta">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "missMagenta">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-missMagenta">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-pourpreEdgy">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "pourpreEdgy">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-pourpreEdgy">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-roseHip">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "roseHip">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-roseHip">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-roseTheDay">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "roseTheDay">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-roseTheDay">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-rubyWoo">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "rubyWoo">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-rubyWoo">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-soWhat">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "soWhat">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-soWhat">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-universalBiscuit">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "universalBiscuit">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-universalBiscuit">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
<<widget "apply-makeup-lipstick-violetVixen">><<silently>>
<<remove-makeup-lipstick>>
<<set $kate.isWearing.pushUnique("lipstick")>>
<<set $kate.lastWornLipstick to "violetVixen">>
<<set $avatar.clothing.pushUnique("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>
<</silently>><</widget>>
<<widget "remove-makeup-lipstick-violetVixen">><<silently>>
<<set $kate.isWearing.delete("lipstick")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape)>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-beam")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-oh")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-open")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-pout")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sad")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-sexy")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smile")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-smirk")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-upset")>>
<<set $avatar.clothing.delete("/114Lipsticks/10_lipstick-" + $kate.lastWornLipstick + "-" + $kate.mouthShape + "-wideSmile")>>
<</silently>><</widget>>
/*-----------*/
/* MANICURE */
/*---------*/
<<widget "remove-makeup-manicure">><<silently>>
<<if $kate.isWearing.includes("manicure")>>
<<set $kate.isWearing.delete("manicure")>>
<<= '<<set $avatar.foreground.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-rear")>>' >>
<</if>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure">><<silently>>
/* usage: <<apply-makeup-manicure "azureLikeIt">> */
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to $args[0]>>
<<= '<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-' + $args[0] + '")>>' >>
<<= '<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-' + $args[0] + '-rear")>>' >>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-azureLikeIt">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-azureLikeIt")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-azureLikeIt-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-azureLikeIt">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "azureLikeIt">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-azureLikeIt")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-azureLikeIt-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-azureLikeIt">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-azureLikeIt")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-azureLikeIt-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-blueMovie">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "blueMovie">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-blueMovie")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-blueMovie-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-blueMovie">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-blueMovie")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-blueMovie-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-camOh">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "camOh">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-camOh")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-camOh-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-camOh">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-camOh")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-camOh-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-cherryPopped">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "cherryPopped">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-cherryPopped")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-cherryPopped-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-cherryPopped">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-cherryPopped")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-cherryPopped-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-flamingoPunch">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "flamingoPunch">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-flamingoPunch")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-flamingoPunch-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-flamingoPunch">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-flamingoPunch")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-flamingoPunch-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-lemonBomb">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "lemonBomb">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-lemonBomb")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-lemonBomb-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-lemonBomb">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-lemonBomb")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-lemonBomb-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-midnightMission">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "midnightMission">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-midnightMission")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-midnightMission-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-midnightMission">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-midnightMission")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-midnightMission-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-manicure-redHotNights">><<silently>>
<<remove-makeup-manicure>>
<<set $kate.isWearing.pushUnique("manicure")>>
<<set $kate.lastWornManicure to "redHotNights">>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-redHotNights")>>
<<set $avatar.clothing.pushUnique("/makeup/manicure/5_manicure-redHotNights-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-manicure-redHotNights">><<silently>>
<<set $kate.isWearing.delete("manicure")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-redHotNights")>>
<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-redHotNights-rear")>>
<</silently>><</widget>>
/*-----------*/
/* PEDICURE */
/*---------*/
<<widget "remove-makeup-pedicure">><<silently>>
<<if $kate.isWearing.includes("pedicure")>>
<<set $kate.isWearing.delete("pedicure")>>
<<= '<<set $avatar.foreground.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '-rear")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '-barefoot")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '-barefoot-rear")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '-highHeels")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-' + $kate.lastWornPedicure + '-highHeels-rear")>>' >>
<</if>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure">><<silently>>
/* usage: <<apply-makeup-pedicure "azureLikeIt">> */
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to $args[0]>>
<<= '<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-' + $args[0] + '-barefoot")>>' >>
<<= '<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-' + $args[0] + '-barefoot-rear")>>' >>
<<= '<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-' + $args[0] + '-highHeels")>>' >>
<<= '<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-' + $args[0] + '-highHeels-rear")>>' >>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-azureLikeIt">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "azureLikeIt">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-azureLikeIt3-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-azureLikeIt3-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-azureLikeIt">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-azureLikeIt3-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-azureLikeIt3-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-blueMovie">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "blueMovie">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-blueMovie-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-blueMovie-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-blueMovie-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-blueMovie">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-blueMovie-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-blueMovie-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-blueMovie-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-camOh">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "camOh">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-camOh-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-camOh-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-camOh-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-camOh-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-camOh">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-camOh-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-camOh-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-camOh-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-camOh-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-cherryPopped">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "cherryPopped">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-cherryPopped-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-cherryPopped-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-cherryPopped-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-cherryPopped">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-cherryPopped-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-cherryPopped-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-cherryPopped-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-flamingoPunch">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "flamingoPunch">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-flamingoPunch-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-flamingoPunch-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-flamingoPunch">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-flamingoPunch-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-flamingoPunch-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-lemonBomb">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "lemonBomb">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-lemonBomb3-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-lemonBomb3-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-lemonBomb">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-lemonBomb3-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-lemonBomb3-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-midnightMission">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "midnightMission">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-midnightMission-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-midnightMission-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-midnightMission-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-midnightMission">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-midnightMission-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-midnightMission-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-midnightMission-highHeels-rear")>>
<</silently>><</widget>>
<<widget "apply-makeup-pedicure-redHotNights">><<silently>>
<<remove-makeup-pedicure>>
<<set $kate.isWearing.pushUnique("pedicure")>>
<<set $kate.lastWornPedicure to "redHotNights">>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-redHotNights-barefoot-rear")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-redHotNights-highHeels")>>
<<set $avatar.clothing.pushUnique("/makeup/pedicure/5_pedicure-redHotNights-highHeels-rear")>>
<</silently>><</widget>>
<<widget "remove-makeup-pedicure-redHotNights">><<silently>>
<<set $kate.isWearing.delete("pedicure")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-redHotNights-barefoot-rear")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-redHotNights-highHeels")>>
<<set $avatar.clothing.delete("/makeup/pedicure/5_pedicure-redHotNights-highHeels-rear")>>
<</silently>><</widget>><<widget "attribute-description">><<nobr>>
<<include "characterTexts">>
<div class="col col-6">
<h1> </h1>
<div class="character-editor-explanation">
<<if _selectedAttribute >>
<<set _value to $kate.attributes[_selectedAttribute] >>
<div class="explanation-inner">
<div class="name">
<<= _selectedAttribute.toUpperFirst()>>
</div>
<div class="description">
<<print setup.info.attributeExplanations[_selectedAttribute] >>
</div>
<div class="effects">
<<set _descriptionTitles to setup.info.attributeDescriptionTitles[_selectedAttribute][_value] >>
<<for _j to 0; _j lt _descriptionTitles.length; _j++>>
<div class="attribute-effect">
_descriptionTitles[_j]
</div>
<</for>>
</div>
<div class="description">
<<set _descriptions to setup.info.attributeDescriptions[_selectedAttribute][_value] >>
<<for _j to 0; _j lt _descriptions.length; _j++>>
<div class="attribute-effect">
_descriptions[_j]
</div>
<</for>>
</div>
</div>
<</if>>
</div>
</div>
<</nobr>><</widget>>
<<widget "character-creator-BreastSize">><<nobr>>
<div class="col col-5b col-highlight row">
<div class="col col-12b">
<div class="input">
<div class="label">Bra Size:</div>
<div class="radio-inputs">
<div class="radio-input">
</div>
<<set $onclick = "functionBraSize(this.value, '<<replace \"#avatar-container\">><<characterCreator-updateAvatar>><<avatar>><</replace>><<replace \"#characterCreatorBraSize\">><<character-creator-BreastSize>><</replace>>')">>
<div class="radio-input">
<<if $kate.braSize == "small">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-small" value="small" checked/>
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-small" value="small" />
<</if>>
<label for="bra-size-small">S</label>
</div>
<div class="radio-input">
<<if $kate.braSize == "medium">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-medium" value="medium" checked/>
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-medium" value="medium" />
<</if>>
<label for="bra-size-medium">M</label>
</div>
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>
/*FREE EDITION*/
<div class="radio-input">
<<if $kate.braSize == "large">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" checked />
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" />
<</if>>
<label for="bra-size-large">L</label>
</div>
<<else>>
/*Patreon Edition. DELETE THIS*/
<div class="radio-input">
<<if $kate.braSize == "large">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" checked />
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" />
<</if>>
<label for="bra-size-large">L</label>
</div>
<</if>>
</div>
</div>
</div>
</div>
<</nobr>><</widget>>
<<widget "character-creator">><<nobr>>
<<if $kate.agency eq "mi6">>
<<set _agencyTitle to "top secret strap3 ukeo",
_subtitle to "Service Personnel Record">>
<<set _ethnicityChoices to ["English"]>>
<<set _natioChoices to ["British"]>>
<<elseif $kate.agency eq "cia">>
<<set _agencyTitle to "top secret{{{//}}}hsc-o orcon/noforn",
_subtitle to "Agency Personnel File">>
<<set _ethnicityChoices to ["Anglo American", "Irish American", "Italian American", "Polish American"]>>
<<set _natioChoices to ["American"]>>
<<elseif $kate.agency eq "asis">>
<<set _agencyTitle to "top secret austeo",
_subtitle to "Personal Service Record">>
<<set _ethnicityChoices to ["Anglo Australian"]>>
<<set _natioChoices to ["Australian"]>>
<<elseif $kate.agency eq "csis">>
<<set _agencyTitle to "top secret/canadian eyes only",
_subtitle to "Trés Secret/Réservé aux Canadiens">>
<<set _ethnicityChoices to ["Anglo Canadian","French Canadian"]>>
<<set _natioChoices to ["Canadian"]>>
<<elseif $kate.agency eq "nzsis">>
<<set _agencyTitle to "top secret nzeo",
_subtitle to "Tuhinga O Mua NZEO">>
<<set _ethnicityChoices to ["NZ European"]>>
<<set _natioChoices to ["New Zealander"]>>
<<else>>
<<set _agencyTitle to "top secret strap3 walrus eyes only">>
<</if>>
<<set _ageRange to ["24","25","26","27"]>>
<div class="row">
<div class="col col-4 group contents-centered">
<<agency-logo>>
</div>
<div class="col col-8 group">
<h1>_agencyTitle</h1>
<h3>_subtitle</h3>
<hr/>
<div class="row">
<div class="col col-6">
<div class="input">
<label for="firstname">First Name: </label>
<div>
<span id="firstNameRandom"><<textbox "$kate.firstName" $kate.firstName>></span>
<span class="randomizer"><<link "">><<story-setKateFirstName>><<replace "#firstNameRandom">><<textbox "$kate.firstName" $kate.firstName>><</replace>><</link>></span>
</div>
</div>
<div class="input">
<label for="surname">Surname: </label>
<div>
<span id="surNameRandom"><<textbox "$kate.surname" $kate.surname>></span>
<span class="randomizer"><<link "">><<story-setKateSurName>><<replace "#surNameRandom">><<textbox "$kate.surname" $kate.surname>><</replace>><</link>></span>
</div>
</div>
</div>
<div class="col col-6">
<div class="input">
<label for="age">Age: </label>
<span class="input-align-left" id="age" style="font-size: 1.34375rem">
<<dropdownCustom "$kate.age" _ageRange>>
<</dropdownCustom>>
</span>
/*
<div class="label">Age:</div>
<span class="input-align-left" id="age" style="font-size: 1.34375rem">26</span>
*/
</div>
<div class="input">
<div class="label">Rank:</div>
<span class="input-align-left" id="rank" style="font-size: 1.34375rem">Intelligence Officer</span>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col col-12">
<h2 class="group-heading">Physical Description</h2>
</div>
</div>
<div class="physical-description group">
<div class="row basics">
<div class="col col-12 col-highlight row">
<div class="col col-4">
<div class="input">
<label for="nationality">Nationality: </label>
<<dropdownCustom "$kate.nationality" _natioChoices >>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
</div>
<div class="col col-4">
<div class="input">
<label for="ethnicity">Ethnicity: </label>
<<dropdownCustom "$kate.ethnicity" _ethnicityChoices >>
<<replace "#characterCreatorBraSize">><<story-setKateSurName>><<character-creator>><</replace>>
<</dropdownCustom>>
</div>
</div>
<div class="col col-4">
<div class="input">
<label for="complexion">Complexion: </label>
<select id="complexion" name="complexion">
<option value="fair">Fair</option>
</select>
</div>
</div>
</div>
</div>
<div class="row details">
<div class="col col-4 col-highlight row">
<div class="col col-12">
<div class="input">
<label for="hair">Hair: </label>
<<dropdownCustom "$kate.hairStyle" "Short bob" "Long straight" "Long curly" "Short" "Wavy bob" "Bun with bangs">>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
<div class="input">
<label for="hair-colour">Color: </label>
<<dropdownCustom "$kate.hairColour" "Brown" "Black" "Blonde" "Ginger" "Auburn" "Champagne">>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
</div>
</div>
<div class="col col-4 col-highlight row">
<div class="col col-12">
<div class="input">
<label for="eyes">Eyes: </label>
<<dropdownCustom "$kate.eyeShape" "Almond" "Cat" "Downturned" "Round" "Wide">>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
<div class="input">
<label for="eye-colour">Colour: </label>
<<dropdownCustom "$kate.eyeColour" "Blue" "Chestnut" "Emerald" "Grey" "Hazelnut" "Sapphire">>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
</div>
</div>
<div class="col col-4 col-highlight row">
<div class="col col-12">
<div class="input">
<label for="nose">Nose: </label>
<<dropdownCustom "$kate.noseShape" "Celestial" "Greek" "Nubian" "Princess" "Roman">>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
<div class="input">
<label for="mouth">Mouth: </label>
<<dropdownCustom "$kate.mouthShape" "Cupid" "Hollywood" "Pearlique" "Rubina" "Thin">>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</dropdownCustom>>
</div>
</div>
</div>
</div>
<div class="row details">
<div class="col col-7 col-highlight row">
<div class="col col-12">
<div class="input input-face-shape">
<div class="label">Face Shape:</div>
<div class="radio-inputs">
<div class="radio-input">
<<set $onclick = "functionHeadShape(this.value, '<<replace \"#avatar-container\">><<characterCreator-updateAvatar>><<avatar>><</replace>>')">>
<<if $kate.faceShape == "round">>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-round" value="round" checked/>
<<else>>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-round" value="round" />
<</if>>
<label for="face-shape-round">
Round
<svg xmlns="http://www.w3.org/2000/svg" width="21.073" height="21.073" viewBox="0 0 21.073 21.073">
<circle cx="10.537" cy="10.537" r="10.537" />
</svg>
</label>
</div>
<div class="radio-input">
<<if $kate.faceShape == "heart">>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-heart" value="heart" checked/>
<<else>>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-heart" value="heart" />
<</if>>
<label for="face-shape-heart">
Heart
<svg xmlns="http://www.w3.org/2000/svg" width="21.721" height="21.073" viewBox="0 0 21.721 21.073">
<path d="M467.919,742.948a5.843,5.843,0,0,0-5.3-3.542,5.709,5.709,0,0,0-5.183,3.324,5.709,5.709,0,0,0-5.183-3.324,5.843,5.843,0,0,0-5.3,3.542,5.748,5.748,0,0,0-.231,3.393,13.243,13.243,0,0,0,1.608,3.893,39.707,39.707,0,0,0,9.1,10.245h0a39.725,39.725,0,0,0,9.1-10.245,13.214,13.214,0,0,0,1.607-3.893A5.74,5.74,0,0,0,467.919,742.948Z" transform="translate(-446.579 -739.406)" />
</svg>
</label>
</div>
<div class="radio-input">
<<if $kate.faceShape == "square">>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-square" value="square" checked/>
<<else>>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-square" value="square" />
<</if>>
<label for="face-shape-square">
Square
<svg xmlns="http://www.w3.org/2000/svg" width="14.378" height="21.073" viewBox="0 0 14.378 21.073">
<rect width="14.378" height="21.073" />
</svg>
</label>
</div>
<div class="radio-input">
<<if $kate.faceShape == "diamond">>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-diamond" value="diamond" checked/>
<<else>>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-diamond" value="diamond" />
<</if>>
<label for="face-shape-diamond">
Diamond
<svg xmlns="http://www.w3.org/2000/svg" width="17.277" height="21.48" viewBox="0 0 17.277 21.48">
<path d="M623.586,739l-8.639,10.428,8.639,11.051,8.639-11.051Z" transform="translate(-614.947 -739)" />
</svg>
</label>
</div>
<div class="radio-input">
<<if $kate.faceShape == "oval">>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-oval" value="oval" checked/>
<<else>>
<input type="radio" name="face-shape" @onclick="$onclick" id="face-shape-oval" value="oval" />
<</if>>
<label for="face-shape-oval">
Oval
<svg xmlns="http://www.w3.org/2000/svg" width="14.378" height="21.073" viewBox="0 0 14.378 21.073">
<rect width="14.378" height="21.073" rx="7.189" />
</svg>
</label>
</div>
</div>
</div>
</div>
</div>
<div class="col col-5 col-highlight row">
<div class="col col-12">
<div class="input">
<div class="label">Bra Size:</div>
<div class="radio-inputs">
<div class="radio-input">
</div>
<<set $onclick = "functionBraSize(this.value, '<<replace \"#avatar-container\">><<characterCreator-updateAvatar>><<avatar>><</replace>><<replace \"#characterCreatorBraSize\">><<character-creator>><</replace>>')">>
<div class="radio-input">
<<if $kate.braSize == "small">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-small" value="small" checked/>
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-small" value="small" />
<</if>>
<label for="bra-size-small">S</label>
</div>
<div class="radio-input">
<<if $kate.braSize == "medium">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-medium" value="medium" checked/>
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-medium" value="medium" />
<</if>>
<label for="bra-size-medium">M</label>
</div>
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>
/*FREE EDITION*/
<div class="radio-input">
<<if $kate.braSize == "large">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" checked />
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" />
<</if>>
<label for="bra-size-large">L</label>
</div>
<<else>>
/*Patreon Edition. DELETE THIS*/
<div class="radio-input">
<<if $kate.braSize == "large">>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" checked />
<<else>>
<input type="radio" name="bra-size" @onclick="$onclick" id="bra-size-large" value="large" />
<</if>>
<label for="bra-size-large">L</label>
</div>
<</if>>
</div>
</div>
</div>
</div>
</div>
<div class="row details">
<div class="col col-12 col-highlight row">
<div class="col col-4">
<div class="input">
<button class="btn avatar-toggle">Toggle Avatar</button>
</div>
</div>
</div>
</div>
</div>
<div class="row buttons">
<div class="button-secondary">
<<button "Random Agent" character-creator >>
<<characterCreator-randomiseKate>>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</button>>
</div>
<span class="or">or</span>
<<button "Start with this agent" kinks-select>><<set $kate.age to Number($kate.age)>><</button>> /*attributes-select if you want to revert*/
</div>
<</nobr>><</widget>>
<<widget "attributes-select">><<nobr>>
<<include "characterTexts">>
<<set _attributes to [
"openness",
"conscientiousness",
"extraversion",
"agreeableness",
"neuroticism",
"intellect",
"coordination",
"height",
"beauty",
],
_attributeMin to -2,
_attributeMax to +2,
_attributeExplanations to {
"openness": "How curious, abstract and imaginative you are.",
"conscientiousness": "How organized, productive and responsible you are.",
"extraversion": "How sociable, assertive and cheery you are.",
"agreeableness": "How compassionate, respectful and trusting you are.",
"neuroticism": "Your tendencies towards anxiety and depression.",
"intellect": "Your general intelligence.",
"coordination": "Your natural grace and dexterity.",
"height": "How tall you are.",
"beauty": "How conventionally attractive you are.",
},
_attributeDescriptionTitles to {
"openness": {
"-2": [ "Orthodox (3% of people)" ],
"-1": [ "Preserver (13% of people)" ],
"0": [ "Balanced (7 in 10 people)" ],
"1": [ "Explorer (13% of people)" ],
"2": [ "Pioneer (3% of people)" ],
},
"conscientiousness": {
"-2": [ "Maverick (3% of people)" ],
"-1": [ "Spontaneous (13% of people)" ],
"0": [ "Competent (7 in 10 people)" ],
"1": [ "Focused (13% of people)" ],
"2": [ "Controlled (3% of people)" ],
},
"extraversion": {
"-2": [ "Loner (3% of people)" ],
"-1": [ "Introvert (13% of people)" ],
"0": [ "Ambivert (7 in 10 people)" ],
"1": [ "Extravert (13% of people)" ],
"2": [ "Entertainer (3% of people)" ],
},
"agreeableness": {
"-2": [ "Hostile (3% of people)" ],
"-1": [ "Challenger (13% of people)" ],
"0": [ "Sympathetic (7 in 10 people)" ],
"1": [ "Kind (13% of people)" ],
"2": [ "Martyr (3% of people)" ],
},
"neuroticism": {
"-2": [ "Fearless (3% of people)" ],
"-1": [ "Resilient (13% of people)" ],
"0": [ "Reactive (7 in 10 people)" ],
"1": [ "Worrier (13% of people)" ],
"2": [ "Unstable (3% of people)" ],
},
"intellect": {
"-2": [ "Borderline (3% of people)" ],
"-1": [ "Dull (13% of people)" ],
"0": [ "Normal (7 in 10 people)" ],
"1": [ "Bright (13% of people)" ],
"2": [ "Superior (3% of people)" ],
},
"coordination": {
"-2": [ "Dyspraxic (3% of people)" ],
"-1": [ "Clumsy (13% of people)" ],
"0": [ "Normal (7 in 10 people)" ],
"1": [ "Athletic (13% of people)" ],
"2": [ "Amazonian (3% of people)" ],
},
"height": {
"-2": [ "Very Short (3% of women)" ],
"-1": [ "Short (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Tall (13% of women)" ],
"2": [ "Very Tall (3% of women)" ],
},
"beauty": {
"-2": [ "Butterface (3% of women)" ],
"-1": [ "Plain Jane (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Hot (13% of women)" ],
"2": [ "Striking (3% of women)" ],
},
},
_attributeDescriptions to {
"openness": {
"-2": [ "Set firmly in your ways, you tend to think and do as you always have done. (Score too low to join MI6)" ],
"-1": [ "Conventional, pragmatic and traditional, you dislike change and resist new ideas. (Score too low to join MI6)" ],
"0": [ "Like most people, you're mainly down to earth, but you sometimes get excited by a new idea or seek out a new experience." ],
"1": [ "Curious and open minded, you're intrigued by new experiences and new perspectives." ],
"2": [ "An original and creative – some would say weird – thinker, you crave new ideas and experiences. You love art and find abstract ideas fascinating." ],
},
"conscientiousness": {
"-2": [ "Inconsistent, disorganised and unreliable; you don't follow rules and you ignore the requirements placed on you." ],
"-1": [ "Laid back and not very reliable; although you're aware of them, you're just not interested in following all the rules or completing every objective. You struggle to be punctual and to honour your commitments." ],
"0": [ "Like most people, when there's a job to be done you'll get on with it...eventually, sometimes after prompting from interested parties. You can mostly be relied upon to do what you've promised and to get to appointments on time." ],
"1": [ "Responsible and dependable. You're naturally inclined to pour organisation and effort into your goals, with no need for outside control." ],
"2": [ "Persistent and exacting; you focus naturally on detail and order. Hard work, organisation and innate self-discipline are the keys to your success." ],
},
"extraversion": {
"-2": [ "Painfully reserved and quiet; the ideal situation for you is alone, with no requirement to interact with other human beings. (Score too low to join MI6)" ],
"-1": [ "Groups of strangers (and sometimes even friends) are not your thing. You get much more out of spending most of your time pursuing activities quietly and alone. Reserved and passive, you rarely express your views to others." ],
"0": [ "Like most people, you like spending time with friends and family, and you enjoy meeting new people from time to time. Taking your cues from social situations, you're sometimes talkative and sometimes more inclined to listen. You're also happy to spend time alone." ],
"1": [ "Talkative, optimistic and fun, you enjoy meeting new people and are stimulated by social occasions. You're likely to sacrifice the future for the present when there's a chance of getting together with a group of people." ],
"2": [ "The center of attention in large, loud crowds of people is where you love to be. Self-disclosing and quick to speak, you aim to entertain and energise. You love to party and you get bored if you spend much time alone." ],
},
"agreeableness": {
"-2": [ "Skeptical and stubborn, what you want always comes first: you enjoy conflict and you can be ruthless to get what you want. You're antagonistic in your dealings with others, as you won't excuse their errors and their emotions won't sway your views." ],
"-1": [ "Honest and dispassionate, you're ready and willing to compete with others to get what you want. You refuse to be pushed around, and will bluntly challenge the commonly accepted views and practices. You don't sacrifice long-term stability for short-term peace." ],
"0": [ "Like most people, you're naturally kind, forgiving and affable; especially with loved ones and those whose goodwill you value. However, you dislike being taken advantage of, and will stand up for yourself when it really matters. You largely aim for peaceful relations." ],
"1": [ "Flexible and compassionate, you're quick to help others and do what you can to oil the wheels of a social situation. You're quick to forgive and naturally trusting." ],
"2": [ "Trusting, helpful and self-sacrificing, you're naturally swayed by the needs and desires of other people. You dislike competition and conflict, and prefer capitulation to confrontation. This can leave you feeling resentful or angry, but you prefer feeling that way to upsetting others." ],
},
"neuroticism": {
"-2": [ "Unemotional and self-satisfied, you confidently engage in a world containing very few things that can rattle you. You have exceptional tolerance for stress, and you accept failures and setbacks without concern. Your lack of respect for threats can lead you to take bold risks." ],
"-1": [ "You're calm and secure in your emotions, rarely feeling anxious or sad. Although you're aware of them, the negative elements of the past, present and future have little impact on your approach to the world." ],
"0": [ "Like most people, you acknowledge past negative experiences and use them to make plans to avoid the insecurities of the future. You sometimes feel worried and emotional, but this doesn't restrict your actions." ],
"1": [ "Emotionally sensitive, you're prone to stress and anxiety. You often see the worst in a situation, and feel insecurity about your past and fears for the future. Your natural caution can stultify your actions." ],
"2": [ "Painfully anxious and self-conscious. All the negative emotions in you hold sway, and you're variously racked with shame, guilt, defensive anger and self pity. (Score too high to join MI6)" ],
},
"intellect": {
"-2": [ "With an IQ below 70, you're borderline retarded. Although you can live mostly independently, very few modern jobs are open to you. (Score too low to join MI6)" ],
"-1": [ "With an IQ below 85, you're of low intelligence. You're best suited to careers involving manual labour. (Score too low to join MI6)" ],
"0": [ "With an IQ around 100, you're of average intelligence. The bulk of white- and blue-collar careers are open to you. (Score too low to join MI6)" ],
"1": [ "With an IQ above 115, you're university material. Careers you're capable of include engineering, management and teaching." ],
"2": [ "With an IQ above 130, you're the smartest person in most rooms. Careers you're capable of include STEM scientist, barrister, medical doctor, and university lecturer." ],
},
"coordination": {
"-2": [ "You're mildly dyspraxic, which means you struggle with coordination skills - like playing sports or driving - and fine motor skills, like writing or using small objects." ],
"-1": [ "You're not a very physical person. Running and catching don't come naturally to you. You're capable of being fit and healthy, but you have to work harder than most people." ],
"0": [ "You're of average natural athleticism: capable of great feats if you train hard, or great fats if you don't bother." ],
"1": [ "Naturally graceful and dextrous; you were probably attracted to sports or dance at school." ],
"2": [ "You have the genetic potential to be an Olympian athlete. Although you'd never know this without actually training like an Olympian, you do have excellent natural balance and dexterity. You pick up physical skills like climbing and shooting very quickly." ],
},
"height": {
"-2": [ "You're around 4'10 (147cm) tall." ],
"-1": [ "You're around 5' (152cm) tall." ],
"0": [ "You're around 5'4 (162cm) tall." ],
"1": [ "You're around 5'7 (170cm) tall." ],
"2": [ "You're around 5'9 (175cm) tall." ],
},
"beauty": {
"-2": [ "They say true beauty is on the inside. (Score too low to be recruited for this mission)" ],
"-1": [ "You're a bit of a butterface. (Score too low to be recruited for this mission)" ],
"0": [ "You're a 5 without makeup; the girl next door. (Score too low to be recruited for this mission)" ],
"1": [ "Naturally attractive – beautiful when you make an effort – you're the hot girl next door." ],
"2": [ "Effortlessly, strikingly beautiful, you could have been a professional model or actress." ],
},
}
>>
<div id="attributes-select" class="row character-editor">
<div class="col col-6">
<h1>Attributes</h1>
<div id="attributesSelectedCheck" class="attributes character-editor-fields">
<<set _lock to ["openness",
"conscientiousness",
"extraversion",
"agreeableness",
"neuroticism",
"intellect",
"coordination",
"height",
"beauty"]>>
<<for _i to 0; _i lt setup.info.attributes.length; _i++>>
<<set _attribute to setup.info.attributes[_i]>>
<<if _lock.includes(_attribute)>>
<<set _value to $kate.attributes[_attribute] || 0 >>
<<capture _attribute >>
<<set _class to "attribute">>
<<if _selectedAttribute == _attribute>>
<<set _class to _class + ' selected'>>
<</if>>
<<if (_attribute == 'openness' and _value lt 0) or
(_attribute == 'extraversion' and _value lte -2) or
(_attribute == 'neuroticism' and $kate.attributes.neuroticism gte 2) or
(_attribute == 'intellect' and $kate.attributes.intellect lte 0) or
(_attribute == 'beauty' and $kate.attributes.beauty lte 0)
>>
<<set _class to _class + ' invalid'>>
<</if>>
<div @class=_class>
<header>
<<link _attribute>>
<<set _selectedAttribute to _attribute>>
<<replace "#passage-attributes-select">><<attributes-select>><</replace>>
<</link>>
</header>
<div class="values" @data-value="_value">
<<for _j to setup.info.attributeMin; _j lte setup.info.attributeMax; _j++>>
<<capture _j>>
<<link "<span @data-value=_j>_j</span>">>
<<set $kate.attributes[_attribute] to _j >>
<<set _selectedAttribute to _attribute>>
<<replace "#passage-attributes-select">><<attributes-select>><</replace>>
<</link>>
<</capture>>
<</for>>
</div>
</div>
<</capture>>
<</if>>
<</for>>
</div>
</div>
<<attribute-description>>
<footer id="page-navigation" class="buttons col col-12">
<<return "Back">>
<<if $kate.attributes.beauty gt 0 and $kate.attributes.intellect gt 0 and $kate.attributes.neuroticism lt 2 and $kate.attributes.extraversion gt -2 and $kate.attributes.openness gte 0>>
<<button Kinks kinks-select>><</button>>
<<else>>
<div class="button-invalid">
<<button Alert!>>
<<script>>
Dialog.setup("Alert");
Dialog.wiki("Officer does not fit mission profile. <<attributes-check>>");
Dialog.open();
<</script>>
<</button>>
</div>
<</if>>
</footer>
</div>
<</nobr>><</widget>>
<<widget "Secondary-Attributes">><<nobr>>
/*Initial Setup*/
<<set $kate.attributes.confidence to {}>>
<<set $kate.attributes.creativity to {}>>
<<set $kate.attributes.daring to {}>>
<<set $kate.attributes.fitness to {}>>
<<set $kate.attributes.painThreshold to {}>>
<<set $kate.attributes.strength to {}>>
<<set $kate.attributes.confidence.level to (($kate.attributes.extraversion.level + $kate.attributes.beauty.level + $kate.attributes.height.level)/3)>>
<<set $kate.attributes.confidence.xp to 0>>
<<set $kate.attributes.creativity.level to $kate.attributes.openness.level>>
<<set $kate.attributes.creativity.xp to 0>>
<<set $kate.attributes.daring.level to (($kate.attributes.extraversion.level - $kate.attributes.neuroticism.level)/2)>>
<<set $kate.attributes.daring.xp to 0>>
<<set $kate.attributes.fitness.level to 0>>
<<set $kate.attributes.fitness.xp to 0>>
<<if $kate.hairColour eq "ginger">>
<<set $kate.attributes.painThreshold.level to -1>>
<<else>>
<<set $kate.attributes.painThreshold.level to 0>>
<</if>>
<<set $kate.attributes.painThreshold.level to 0>>
<<set $kate.attributes.painThreshold.xp to 0>>
<<set $kate.attributes.strength.level to ($kate.attributes.height.level-1)>>
<<set $kate.attributes.strength.xp to 0>>
<</nobr>><</widget>>
<<widget "Primary-Attributes">><<nobr>>
/*Initial Setup*/
<<set _tempAttr to $kate.attributes>>
<<set $kate.attributes to {}>>
<<set $kate.attributes.openness to {} >>
<<set $kate.attributes.openness.level to _tempAttr.openness >>
<<set $kate.attributes.openness.xp to "NaN">>
<<set $kate.attributes.conscientiousness to {} >>
<<set $kate.attributes.conscientiousness.level to _tempAttr.conscientiousness >>
<<set $kate.attributes.conscientiousness.xp to "NaN">>
<<set $kate.attributes.extraversion to {} >>
<<set $kate.attributes.extraversion.level to _tempAttr.extraversion >>
<<set $kate.attributes.extraversion.xp to "NaN">>
<<set $kate.attributes.agreeableness to {} >>
<<set $kate.attributes.agreeableness.level to _tempAttr.agreeableness >>
<<set $kate.attributes.agreeableness.xp to "NaN">>
<<set $kate.attributes.neuroticism to {} >>
<<set $kate.attributes.neuroticism.level to _tempAttr.neuroticism >>
<<set $kate.attributes.neuroticism.xp to "NaN">>
<<set $kate.attributes.intellect to {} >>
<<set $kate.attributes.intellect.level to _tempAttr.intellect >>
<<set $kate.attributes.intellect.xp to "NaN">>
<<set $kate.attributes.coordination to {} >>
<<set $kate.attributes.coordination.level to _tempAttr.coordination >>
<<set $kate.attributes.coordination.xp to "NaN">>
<<set $kate.attributes.height to {} >>
<<set $kate.attributes.height.level to _tempAttr.height >>
<<set $kate.attributes.height.xp to "NaN">>
<<set $kate.attributes.beauty to {} >>
<<set $kate.attributes.beauty.level to _tempAttr.beauty >>
<<set $kate.attributes.beauty.xp to "NaN">>
<<Secondary-Attributes>>
<</nobr>><</widget>>
<<widget "awardXP">><<nobr>>
<<script>>
let keysAttrib = Object.keys(State.variables.kate.attributes);
let keysSkills = Object.keys(State.variables.kate.skills);
let name = State.variables.args[0].toLowerCase();
let xpValue = State.variables.args[1];
let levelIncreaseValues = [0,500,1000,2000,4000,8000,16000,32000,64000,128000,256000,512000, 1024000, 2048000,4096000];
State.temporary.tempVar1 = "";
if(keysAttrib.includes(name)){
if( State.variables.kate.attributes[name].xp != "NaN"){
let newLevel = 0;
let increase = 0;
let targetXP = State.variables.kate.attributes[name].xp + xpValue;
State.variables.kate.attributes[name].xp = State.variables.kate.attributes[name].xp + xpValue;
for( let j = 0; j < levelIncreaseValues.length; j++){
if(levelIncreaseValues[j]<= targetXP && targetXP < levelIncreaseValues[j+1]){
newLevel= j;
j = 200;
}
}
if (newLevel > 0){
increase = newLevel - Math.abs(State.variables.kate.attributes[name].level);
State.variables.kate.attributes[name].level = Math.round(newLevel);
State.temporary.tempVar1 = State.variables.args[0] + " +" + increase;
State.temporary.tempVar2 = State.variables.args[0] + " increased to level " + Math.round(newLevel);
} else {
/*console.log("No level increase");*/
}
} else {
console.log(name + " is a primary attribute, you can't add xp.");
}
} else if(keysSkills.includes(name)) {
let levelingXp= [-4,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15];
let newLevel = 0;
let increase = 0;
let targetXP = State.variables.kate.skills[name].xp + xpValue;
State.variables.kate.skills[name].xp = State.variables.kate.skills[name].xp + xpValue;
for( let j = 0; j < levelIncreaseValues.length; j++){
if(levelIncreaseValues[j]<= targetXP && targetXP < levelIncreaseValues[j+1]){
newLevel= j;
j = 200;
}
}
if (newLevel > 0){
newLevel = levelingXp[newLevel];
increase = Math.abs(newLevel - Math.abs(State.variables.kate.skills[name].level));
State.variables.kate.skills[name].level =Math.round(newLevel);
State.temporary.tempVar1 = State.variables.args[0] + " +" + increase;
State.temporary.tempVar2 = State.variables.args[0] + " skill permanently increased to level " + Math.round(newLevel);
} else {
/*console.log("No level increase");*/
}
} else {
console.log("Error! -> no skill or attribute by the name: "+ name+" found!");
};
<</script>>
<<if _tempVar1 != "">>
<<addNotification _tempVar1 _tempVar2>>
<</if>>
<</nobr>><</widget>>
<<widget "attributes-check">><<nobr>>
<<if $kate.attributes.openness lt 0 >>
<br>– $kate.firstName's <b>Openness</b> is too low to be recruited to MI6.
<</if>>
<<if $kate.attributes.extraversion lte -2 >>
<br>– $kate.firstName's <b>Extraversion</b> is too low to be recruited to MI6.
<</if>>
<<if $kate.attributes.neuroticism gte 2 >>
<br>– $kate.firstName's <b>Neuroticism</b> is too high to be recruited to MI6.
<</if>>
<<if$kate.attributes.intellect lte 0 >>
<br>– $kate.firstName's <b>Intellect</b> is too low to be recruited to MI6.
<</if>>
<<if $kate.attributes.beauty lte 0 >>
<br>– $kate.firstName's <b>Beauty</b> is too low to be selected for this mission.
<</if>>
<</nobr>><</widget>>
<<widget "agency-logo">><<nobr>>
<<if $kate.agency eq "mi6">>
<img src="media/ui/agencyLogos/mi6.png" />
<<elseif $kate.agency eq "cia">>
<img src="media/ui/agencyLogos/cia.png" />
<<elseif $kate.agency eq "asis">>
<img src="media/ui/agencyLogos/asis.png" />
<<elseif $kate.agency eq "csis">>
<img src="media/ui/agencyLogos/csis.png" />
<<elseif $kate.agency eq "nzsis">>
<img src="media/ui/agencyLogos/nzsis.png" />
<<else>>
<img src="media/ui/agencyLogos/mi6.png" />
<</if>>
<</nobr>><</widget>><<widget "agency-list">><<nobr>>
<div class="row flags" id="flags">
<<set $flagClass to 'flag flag-usa'>>
<<if $kate.agency == "cia">><<set $flagClass to $flagClass + ' active'>><</if>>
<div @class="$flagClass">
<<link "USA" `passage()`>>
<<set $kate.agency to "cia">>
<</link>>
</div>
<<set $flagClass to 'flag flag-uk'>>
<<if $kate.agency == "mi6">><<set $flagClass to $flagClass + ' active'>><</if>>
<div @class="$flagClass">
<<link "UK" `passage()`>>
<<set $kate.agency to "mi6">>
<</link>>
</div>
<<set $flagClass to 'flag flag-australia'>>
<<if $kate.agency == "asis">><<set $flagClass to $flagClass + ' active'>><</if>>
<div @class="$flagClass">
<<link "Australia" `passage()`>>
<<set $kate.agency to "asis">>
<</link>>
</div>
<<set $flagClass to 'flag flag-canada'>>
<<if $kate.agency == "csis">><<set $flagClass to $flagClass + ' active'>><</if>>
<div @class="$flagClass">
<<link "Canada" `passage()`>>
<<set $kate.agency to "csis">>
<</link>>
</div>
<<set $flagClass to 'flag flag-new-zealand'>>
<<if $kate.agency == "nzsis">><<set $flagClass to $flagClass + ' active'>><</if>>
<div @class="$flagClass">
<<link "New Zealand" `passage()`>>
<<set $kate.agency to "nzsis">>
<</link>>
</div>
</div>
<<if $kate.agency == 'cia'>>
<<set _agencyName to 'Central Intelligence Agency (CIA)' >>
<<set _agencyDescription to 'The backbone of the alliance, boasting the most advanced technical capabilities and the biggest budget.' >>
<<elseif $kate.agency == 'mi6'>>
<<set _agencyName to 'Secret Intelligence Service (MI6)' >>
<<set _agencyDescription to 'Specialists in human intelligence, with a unique reach into countries that were once part of the British Empire.' >>
<<elseif $kate.agency == 'csis'>>
<<set _agencyName to 'Canadian Security Intelligence Service (CSIS)' >>
<<set _agencyDescription to 'Canadian officers can deploy on missions without attracting as much scrutiny as their American or British counterparts.' >>
<<elseif $kate.agency == 'asis'>>
<<set _agencyName to 'Australian Secret Intelligence Service (ASIS)' >>
<<set _agencyDescription to 'Specialists in regional intelligence, providing the alliance with a window into the growing might of Asia.' >>
<<elseif $kate.agency == 'nzsis'>>
<<set _agencyName to 'NZ Security Intelligence Service (NZSIS)' >>
<<set _agencyDescription to 'Kiwi officers can deploy on missions without attracting as much scrutiny as their American or British counterparts.' >>
<</if>>
<div class="agency-description">
<div class="agency-name"><<print _agencyName >></div>
<<print _agencyDescription >>
</div>
<</nobr>>
<</widget>><<widget "kink-description">><<nobr>>
<<include "characterTexts">>
<div class="col col-6">
<h1> </h1>
<div class="character-editor-explanation">
<<if _selectedKink >>
<div class="explanation-inner">
<div class="name">
<<= _selectedKink.toUpperFirst()>>
</div>
<div class="description">
<<print setup.info.kinkDescriptions[_selectedKink] >>
</div>
<div class="effects">
<<set _effects to setup.info.kinkEffects[_selectedKink] >>
<<for _j to 0; _j lt _effects.length; _j++>>
<div class="kink-effect">
_effects[_j]
</div>
<</for>>
</div>
</div>
<</if>>
</div>
</div>
<</nobr>><</widget>>
<<widget kinks-select>><<nobr>>
<<include "characterTexts">>
<div id="kinks-select" class="row character-editor">
<div class="col col-6">
<h1>Kinks</h1>
<div class="kinks character-editor-fields">
<<for _i to 0; _i lt setup.info.kinks.length; _i++>>
<<set _kink to setup.info.kinks[_i]>>
<<capture _kink >>
<<set _class to "kink">>
<<if _selectedKink == _kink>>
<<set _class to _class + ' selected'>>
<</if>>
<<if $kate.kinks.includesAny(_kink) >>
<<set _class to _class + ' owned'>>
<</if>>
<div @class=_class>
<header>
<<link _kink>>
<<set _selectedKink to _kink>>
<<replace "#passage-kinks-select">><<kinks-select>><</replace>>
<</link>>
</header>
<div class="toggle">
<<link +>>
<<set _selectedKink to _kink>>
<<if $kate.kinks.includesAny(_kink) >>
<<run $kate.kinks.delete(_kink) >>
<<else>>
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>
/*Free EDITION */
<<run $kate.kinks.delete("exhibitionist","masochist","submissive")>>
<<run $kate.kinks.push(_kink) >>
<<else>>
/*Patreon EDITION DELETE THIS*/
<<run $kate.kinks.push(_kink) >>
<</if>>
<</if>>
<<replace "#passage-kinks-select">><<kinks-select>><</replace>>
<</link>>
</div>
</div>
<</capture>>
<</for>>
</div>
</div>
<<kink-description>>
<footer id="page-navigation" class="buttons col col-12">
<<return "Back" >>
<<if $kate.kinks.length gt 0>>
<<button "Start" "AGENCY-999 Title card">><<Primary-Attributes>><<util-avatarValuesToCamel>><</button>>
<<else>>
<<button Alert>>
<<script>>
Dialog.setup("Alert");
Dialog.wiki("$kate.firstName must have at least one Kink.");
Dialog.open();
<</script>>
<</button>>
<</if>>
</footer>
</div>
<</nobr>><</widget>><<widget "quirk-description">><<nobr>>
<<include "characterTexts">>
<div class="col col-6">
<h1> </h1>
<div class="character-editor-explanation">
<<if _selectedQuirk >>
<div class="explanation-inner">
<div class="name">
<<= _selectedQuirk.toUpperFirst()>>
</div>
<div class="description">
<<print setup.info.quirkDescriptions[_selectedQuirk] >>
</div>
<div class="effects">
<<set _effects to setup.info.quirkEffects[_selectedQuirk] >>
<<for _j to 0; _j lt _effects.length; _j++>>
<div class="quirk-effect">
_effects[_j]
</div>
<</for>>
</div>
</div>
<</if>>
</div>
</div>
<</nobr>><</widget>>
<<widget "quirks-select">><<nobr>>
<<set
_quirks to {
"Appearance": [
"batarian",
"commando",
"resting bitch face",
"freckles",
],
"Social class": [
"elite",
"middle class",
"working class",
],
"Family": [
"single mum",
"big brother",
"big sister",
"kid brother",
"kid sister",
],
"Sexual": [
"easy",
"picky",
],
},
_quirkDescriptions to {
"batarian": "You wear glasses or contacts.",
"commando": "You don't habitually wear knickers.",
"resting bitch face": "Your neutral expression is a pout.",
"freckles" : "Your face is adorned with freckles.",
"elite": "Your family's part of the 1%. You had extra opportunities growing up, including a year at an elite Swiss finishing school.",
"middle class": "You're from a normal middle class background.",
"working class": "You're from a working class background. Money was tight growing up.",
"single mum": "You were raised by your mum on her own.",
"big brother": "You have a big brother.",
"big sister": "You have a big sister.",
"kid brother": "You have a kid brother.",
"kid sister": "You have a kid sister.",
"easy": "You project a slutty, attainable vibe.",
"picky": "You're choosy about who you go to bed with.",
},
_quirkEffects to {
"batarian": [
"-1 Perception (unaided vision)",
],
"commando": [
"Knickers removed from default outfits",
],
"resting bitch face": [
"-1 Approachability",
],
"freckles": [
"",
],
"elite": [
"",
],
"middle class": [
"",
],
"working class": [
"",
],
"single mum": [
"",
],
"big brother": [
"",
],
"big sister": [
"",
],
"kid brother": [
"",
],
"kid sister": [
"",
],
"easy": [
"+1 Approachability",
"More random partners generated during background"
],
"picky": [
"-1 Approachability",
"Fewer random partners generated during background"
],
}
>>
<div id="quirks-select" class="row character-editor">
<div class="col col-6">
<h1>Quirks</h1>
<div class="quirks character-editor-fields">
<<set _quirksGroups to Array.prototype.slice.call(Object.keys(_quirks)) >>
<<for _j to 0; _j < _quirksGroups.length; _j++>>
<<set _group to _quirksGroups[_j] >>
<div class="quirks-group">
<header>_group</header>
<<for _i to 0; _i lt _quirks[_group].length; _i++>>
<<set _quirk to _quirks[_group][_i]>>
<<capture _quirk >>
<<set _class to "quirk">>
<<if _selectedQuirk == _quirk>>
<<set _class to _class + ' selected'>>
<</if>>
<<if $kate.quirks.includesAny(_quirk) >>
<<set _class to _class + ' owned'>>
<</if>>
<div @class=_class>
<header>
<<link _quirk>>
<<set _selectedQuirk to _quirk>>
<<replace "#passage-quirks-select">><<quirks-select>><</replace>>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</link>>
</header>
<div class="toggle">
<<link +>>
<<set _selectedQuirk to _quirk>>
<<if $kate.quirks.includesAny(_quirk) >>
<<run $kate.quirks.delete(_quirk) >>
<<else>>
<<if _quirk eq "elite" and $kate.quirks.includesAny("working class", "middle class")>>
<<set $kate.quirks.delete("elite","working class","middle class")>>
<</if>>
<<if _quirk eq "working class" and $kate.quirks.includesAny("elite","middle class")>>
<<set $kate.quirks.delete("elite","working class","middle class")>>
<</if>>
<<if _quirk eq "middle class" and $kate.quirks.includesAny("elite","working class")>>
<<set $kate.quirks.delete("elite","working class","middle class")>>
<</if>>
<<if _quirk eq "easy" and $kate.quirks.includes("picky")>>
<<set $kate.quirks.delete("picky")>>
<</if>>
<<if _quirk eq "picky" and $kate.quirks.includes("easy")>>
<<set $kate.quirks.delete("easy")>>
<</if>>
<<run $kate.quirks.push(_quirk) >>
<</if>>
<<replace "#passage-quirks-select">><<quirks-select>><</replace>>
<<replace "#avatar-container">><<characterCreator-updateAvatar>><<avatar>><</replace>>
<</link>>
</div>
</div>
<</capture>>
<</for>>
</div>
<</for>>
</div>
</div>
<<quirk-description>>
<footer id="page-navigation" class="buttons col col-12">
<<return "Back">>
<<if $kate.quirks.includesAll("elite","working class") or $kate.quirks.includesAll("elite","middle class") or $kate.quirks.includesAll("middle class","working class") or $kate.quirks.includesAll("elite","working class", "middle class")>>
<<button Alert!>>
<<script>>
Dialog.setup("Alert");
Dialog.wiki("$kate.firstName can't be more than one social class.");
Dialog.open();
<</script>>
<</button>>
<<elseif !$kate.quirks.includesAny("elite","working class", "middle class")>>
<<button Alert!>>
<<script>>
Dialog.setup("Alert");
Dialog.wiki("$kate.firstName must have a social class.");
Dialog.open();
<</script>>
<</button>>
<<else>>
<<button "Start" "UKYOUTH-1000 Title Card">><<Primary-Attributes>><</button>>
<</if>>
</footer>
</div>
<</nobr>><</widget>><<widget "newFeatureIcon">><<nobr>>
<div class="icon icon-new-feature"></div>
<</nobr>><</widget>>
<<widget "improvementIcon">><<nobr>>
<div class="icon icon-improvement"></div>
<</nobr>><</widget>>
<<widget "fixIcon">><<nobr>>
<div class="icon icon-bugfix"></div>
<</nobr>><</widget>>
<<widget "newSceneIcon">><<nobr>>
<div class="icon icon-new-scene"></div>
<</nobr>><</widget>>
<<widget "bugreport">><<nobr>><center>
Oh no! A bug!<br>
Please copy this text → <<print State.passage>> ← <br>
and follow the instructions on <a href="https://bitbucket.org/jtfn/fa-clean-code/issues/new">bitbucket</a> on how to report it.
</center><</nobr>><</widget>>
<<widget "getKatesBirthHospital">><<nobr>>
/* creates a temp var called _hospital or _HOSPITAL with the name of the hospital in which Kate was born */
<<if $kate.agency == "mi6">>
<<set _hospital to "St Thomas' Hospital",
_HOSPITAL to "ST THOMAS' HOSPITAL">>
<</if>>
<</nobr>><</widget>>
<<widget "getKatesHighSchool">><<nobr>>
/* creates a temp var called _highSchool or _HIGHSCHOOL with the name of the high school Kate went to. _HIGHSCHOOLLOCATION is used in the header. _highSchoolShortName is used conversationally */
<<if $kate.agency == "mi6">>
<<if $kate.quirks.includes("elite")>>
<<set _highSchool to "Eaton Square Senior School",
_HIGHSCHOOL to "EATON SQUARE SENIOR SCHOOL",
_HIGHSCHOOLLOCATION to "W LONDON",
_highSchoolShortName to "Eaton Square">>
<<elseif $kate.quirks.includes("working class")>>
<<set _highSchool to "Highgate Wood Secondary School",
_HIGHSCHOOL to "HIGHGATE WOOD SECONDARY SCHOOL",
_HIGHSCHOOLLOCATION to "N LONDON",
_highSchoolShortName to "Highgate Wood">>
<<else>> /* Kate is middle class */
<<set _highSchool to "Raynes Park High School",
_HIGHSCHOOL to "RAYNES PARK HIGH SCHOOL",
_HIGHSCHOOLLOCATION to "SW LONDON",
_highSchoolShortName to "Raynes Park">>
<</if>>
<</if>>
<</nobr>><</widget>>
<<widget "getKatesPrimarySchool">><<nobr>>
/* creates a temp var called _primarySchool or _PRIMARYSCHOOL with the name of the primary school Kate went to. _primarySchoolShortName is used conversationally */
<<if $kate.agency == "mi6">>
<<if $kate.quirks.includes("elite")>>
<<set _primarySchool to "St. George's Primary School",
_PRIMARYSCHOOL to "ST. GEORGE'S PRIMARY SCHOOL",
_primarySchoolShortName to "St. Georges'">>
<<elseif $kate.quirks.includes("working class")>>
<<set _primarySchool to "Bruce Grove Primary School",
_PRIMARYSCHOOL to "BRUCE GROVE PRIMARY SCHOOL",
_primarySchoolShortName to "Bruce Grove">>
<<else>> /* Kate is middle class */
<<set _primarySchool to "All Saints' Primary School",
_PRIMARYSCHOOL to "ALL SAINTS' PRIMARY SCHOOL",
_primarySchoolShortName to "All Saints'">>
<</if>>
<</if>>
<</nobr>><</widget>>
<<widget "header">><<nobr>>
/*<<set $header.line1 to "''<span class='blinking'>_HOSPITAL,</span>'' LONDON",
$header.line2 to "APRIL 11, 1992 / 0657HRS">>*/
/*<span class='blinking'></span>*/
<header id="passage-header">
<div class="name">
<<if $kate.isUndercover>>
<<if $kate.isUsingHerStripperName>>
"$kate.stripperName"
<<else>>
"$kate.cover.firstName $kate.cover.surname"
<</if>>
<<else>>
$kate.firstName $kate.surname
<</if>>
</div>
<hr/>
<div class="location">
<span class="city">
<<if _header1Blink>>
<span class="blinking">
$header.line1
</span>
<<else>>
$header.line1
<</if>>
</span>
</div>
<div class="extra-info">
<span class="year">
$header.line2
</span>
</div>
</header>
<</nobr>><</widget>>
<<widget "characterCreator-randomiseKateAttributes">>
/* Openness (minimum 0 to join MI6) */
<<set _d100 to random(1,100)>>
<<if _d100 gte 97>>
<<set $kate.attributes.openness to 2>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.openness to 1>>
<<else>>
<<set $kate.attributes.openness to 0>>
<</if>>
/* Conscientiousness */
<<set _d100 to random(1,100)>>
<<if _d100 lte 3>>
<<set $kate.attributes.conscientiousness to -2>>
<<elseif _d100 lte 13>>
<<set $kate.attributes.conscientiousness to -1>>
<<elseif _d100 gte 97>>
<<set $kate.attributes.conscientiousness to 2>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.conscientiousness to 1>>
<<else>>
<<set $kate.attributes.conscientiousness to 0>>
<</if>>
/* Extraversion (minimum -1 to join MI6) */
<<set _d100 to random(1,100)>>
<<if _d100 lte 13>>
<<set $kate.attributes.extraversion to -1>>
<<elseif _d100 gte 97>>
<<set $kate.attributes.extraversion to 2>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.extraversion to 1>>
<<else>>
<<set $kate.attributes.extraversion to 0>>
<</if>>
/* Agreeableness */
<<set _d100 to random(1,100)>>
<<if _d100 lte 3>>
<<set $kate.attributes.agreeableness to -2>>
<<elseif _d100 lte 13>>
<<set $kate.attributes.agreeableness to -1>>
<<elseif _d100 gte 97>>
<<set $kate.attributes.agreeableness to 2>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.agreeableness to 1>>
<<else>>
<<set $kate.attributes.agreeableness to 0>>
<</if>>
/* Neuroticism (maximum +1 to join MI6) */
<<set _d100 to random(1,100)>>
<<if _d100 lte 3>>
<<set $kate.attributes.neuroticism to -2>>
<<elseif _d100 lte 13>>
<<set $kate.attributes.neuroticism to -1>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.neuroticism to 1>>
<<else>>
<<set $kate.attributes.neuroticism to 0>>
<</if>>
/* Intellect (minimum +1 to join MI6) */
<<set _d100 to random(1,100)>>
<<if _d100 gte 97>>
<<set $kate.attributes.intellect to 2>>
<<else>>
<<set $kate.attributes.intellect to 1>>
<</if>>
/* Coordination */
<<set _d100 to random(1,100)>>
<<if _d100 lte 3>>
<<set $kate.attributes.coordination to -2>>
<<elseif _d100 lte 13>>
<<set $kate.attributes.coordination to -1>>
<<elseif _d100 gte 97>>
<<set $kate.attributes.coordination to 2>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.coordination to 1>>
<<else>>
<<set $kate.attributes.coordination to 0>>
<</if>>
/* Height */
<<set _d100 to random(1,100)>>
<<if _d100 lte 3>>
<<set $kate.attributes.height to -2>>
<<elseif _d100 lte 13>>
<<set $kate.attributes.height to -1>>
<<elseif _d100 gte 97>>
<<set $kate.attributes.height to 2>>
<<elseif _d100 gte 87>>
<<set $kate.attributes.height to 1>>
<<else>>
<<set $kate.attributes.height to 0>>
<</if>>
/* Beauty (minimum +1 to be selected) */
<<set _d100 to random(1,100)>>
<<if _d100 gte 97>>
<<set $kate.attributes.beauty to 2>>
<<else>>
<<set $kate.attributes.beauty to 1>>
<</if>>
<</widget>>
<<widget "countKatesSiblings">><<silently>>
<<set _brothers to 0,
_sisters to 0>>
<<if $kate.quirks.includes("big brother")>>
<<set _brothers += 1>>
<</if>>
<<if $kate.quirks.includes("big sister")>>
<<set _sisters += 1>>
<</if>>
<<if $kate.quirks.includes("kid brother")>>
<<set _brothers += 1>>
<</if>>
<<if $kate.quirks.includes("kid sister")>>
<<set _sisters += 1>>
<</if>>
<</silently>><</widget>>
<<widget "consoleLog">><<nobr>>
<<script>>
console.log(State.variables.args[0]);
<</script>>
<</nobr>><</widget>>
<<widget "characterCreator-randomiseKate">><<nobr>>
<<set $kate.kinks to []>>
<<set $kate.quirks to []>>
<<set $kate.attributes to {}>>
<<set _startingKink to either("exhibitionist", "masochist", "submissive"),
$kate.kinks.pushUnique(_startingKink)>>
/*
<<set _randomQuirks to random(1,100)>>
<<if _randomQuirks lte 20>>
<<set $kate.quirks.pushUnique("batarian")>>
<<elseif _randomQuirks gt 20 and _randomQuirks lte 30>>
<<set $kate.quirks.pushUnique("resting bitch face")>>
<<elseif _randomQuirks gt 30 and _randomQuirks lte 5>>
<<set $kate.quirks.pushUnique("commando")>>
<<else>>
<</if>>
*/
<<set _randomClass to random(1,100)>>
<<if _randomQuirks lte 17>>
<<set $kate.quirks.pushUnique("working class")>>
<<set _randomMOM to random(1,4)>>
<<if _randomMOM eq 1>>
<<set $kate.quirks.pushUnique("single mum")>>
<</if>>
<<elseif _randomQuirks gt 17 and _randomQuirks lte 84>>
<<set $kate.quirks.pushUnique("middle class")>>
<<set _randomMOM to random(1,10)>>
<<if _randomMOM eq 1>>
<<set $kate.quirks.pushUnique("single mum")>>
<</if>>
<<else>>
<<set $kate.quirks.pushUnique("elite")>>
<</if>>
<<set _randomSiblings to random(1,100)>>
<<set _siblingArray to ["big brother","big sister","kid brother","kid sister"]>>
<<if _randomSiblings lte 45>>
/*Noting*/
<<elseif _randomSiblings gt 45 and _randomSiblings lte 83>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<elseif _randomSiblings gt 83 and _randomSiblings lte 95>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<elseif _randomSiblings gt 85 and _randomSiblings lte 99>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<else>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<</if>>
<<characterCreator-randomiseKateAttributes>>
<<set $kate.age to random(24,26)>>
<<if $kate.agency eq "mi6">>
<<set $kate.nationality to "british">>
<<set $kate.ethnicity to either("English")>>
<<elseif $kate.agency eq "cia">>
<<set $kate.nationality to "american">>
<<set $kate.ethnicity to either("Anglo American", "Irish American", "Italian American", "Polish American")>>
<<elseif $kate.agency eq "asis">>
<<set $kate.nationality to "australian">>
<<set $kate.ethnicity to either("Anglo Australian")>>
<<elseif $kate.agency eq "csis">>
<<set $kate.nationality to "canadian">>
<<set $kate.ethnicity to either("Anglo Canadian","French Canadian")>>
<<elseif $kate.agency eq "nzsis">>
<<set $kate.nationality to "New Zealander">>
<<set $kate.ethnicity to either("NZ European")>>
<</if>>
<<story-setKateName>>
<<set $kate.faceShape to either("round", "heart", "square", "diamond", "oval"),
$kate.noseShape to either("Celestial", "Greek", "Nubian", "Princess", "Roman"),
$kate.mouthShape to either("Cupid", "Hollywood", "Pearlique", "Rubina", "Thin"),
$kate.eyeShape to either("Almond", "Cat", "Downturned", "Round", "Wide"),
$kate.eyeColour to either("Blue", "Chestnut", "Emerald", "Grey", "Hazelnut", "Sapphire")>>
/* calculate Kate's hair colour */
<<set _coinToss to either("heads", "tails")>>
<<if _coinToss == "heads">>
<<set $kate.hairColour to ("Brown")>>
<<else>>
<<set $kate.hairColour to either("Brown", "Blonde", "Ginger", "Black", "Auburn", "Champagne")>>
<</if>>
<<if $kate.hairColour eq "Ginger">>
<<set _chanceFres to 80>>
<<else>>
<<set _chanceFres to 13>>
<</if>>
/*
<<set _random to random(1,100)>>
<<if _random < _chanceFres>>
<<set $kate.quirks.pushUnique("feckles")>>
<</if>>
*/
/* calculate Kate's hairstyle */
<<set $kate.hairStyle to either("Short bob","Long straight","Long curly","Short","Bun with bangs", "Wavy bob")>>
/* calculate Kate's bra size */
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>
<<set _d100 to random(1,100)>>
<<if _d100 lte 24>>
<<set $kate.braSize to "small">>
<<else>>
<<set $kate.braSize to "medium">>
<</if>>
<<else>>
<<set _d100 to random(1,100)>>
<<if _d100 lte 16>>
<<set $kate.braSize to "small">>
<<elseif _d100 gte 84>>
<<set $kate.braSize to "large">>
<<else>>
<<set $kate.braSize to "medium">>
<</if>>
<</if>>
<</nobr>><</widget>>
/*--------Notification Widgets---------*/
<<widget "notificationInfo">><<nobr>>
/*This widget will display an info notification*/
/*Takes 3 arguments, Title, text and duration*/
/*Duration is ms, default 7000*/
/*USE <<addNotification "Title" "Text">> !!!!!!!! instead of this one.*/
/*Use it in a link if you want to to appear on the next passage*/
<<set _title2 to $args[0]>>
<<set _text2 to $args[1]>>
<<if def $args[2]>>
<<set _duration2 to $args[2]>>
<<else>>
<<set _duration2 to 7000>>
<</if>>
<<if _duration2 gt 7000>>
<<set _timed2 to (_duration2 -7000-500)/1000>>
<<set _timed2 to _timed2.toString() + "s">>
<<else>>
<<set _timed2 to "0.5s">>
<</if>>
<<timed _timed2>>
<<script>>
SimpleNotification.info(State.temporary.title2, State.temporary.text2, {duration: State.temporary.duration2});
<</script>>
/*success,info,error,warning,message*/
<</timed>>
<</nobr>><</widget>>
<<widget "addNotification">><<nobr>>
/* <<addNotification "Title" "Text">> */
/*Use it in a link if you want to to appear on the next passage*/
<<set _title0 to $args[0]>>
<<set _text0 to $args[1]>>
<<set $notifications.list.push([_title0, _text0])>>
<</nobr>><</widget>>
<<widget "showNotifications">><<nobr>>
/*Widget for showing notifications. Should be placed in passage done */
/*<<set $notifications.list to [["Test1","TEST1"],["Test2","TEST2"],["Test3","TEST3"],["Test4","TEST4"],["Test5","TEST5"]]>>*/
<<set _length to $notifications.list.length>>
<<set _timings to ["0.5s","1.25s","2s","2.75s","3.5s","4.25s","5s","6.75s"]>>
<<for _i to 0; _i lt _length; _i++>>
<<set _time to _timings[_i]>>
<<timed _time>>
<<set _title to $notifications.list[0][0]>>
<<set _message to $notifications.list[0][1]>>
<<notificationInfo _title _message>>
<<set $notifications.list.deleteAt(0)>>
<</timed>>
<</for>>
<</nobr>><</widget>>
<<widget "image">><<nobr>>
/*<<image "imagePath.jpeg" 0 800 200 0>>*/
/*5 arguments, 1 string with path, 4 ints with clip from top left corner: top right bottom left. Values above are an exapmle*/
/*Specify image in image path with extention (femaleagent site is already there) so /folder/image.jpeg */
<<set _path to $imagePath.base+$args[0]>>
<div id="clipCont">
<div id="clipA"><<link [img[_path]]>><<nobr>>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[_path]]")>>
<<set Dialog.open()>>
<</nobr>><</link>></div></div>
<<timed 40ms>>
<<script>>
var top = State.variables.args[1];
var right = State.variables.args[2];
var bottom = State.variables.args[3];
var left = State.variables.args[4];
document.getElementById("clipA").style.clip = "rect("+top+"px, "+right+"px, "+bottom+"px, "+left+"px)";
document.getElementById("clipA").style.top = "-"+top+"px";
var wdth= bottom-top +50;
document.getElementById("clipCont").style.paddingTop = wdth+"px";
<</script>>
<</timed>>
<</nobr>><</widget>><<widget "KatecheckArousal">><<nobr>>
<<print $kate.arousal>>
<</nobr>><</widget>>
<<widget "kateAddArousal">><<nobr>>
<<if $kate.arousal lt 3>>
<<set $kate.arousal += 1>>
<</if>>
<</nobr>><</widget>>
<<widget "kateRemoveArousal">><<nobr>>
/*Removes one arousal*/
<<if $kate.arousal gt 0>>
<<set $kate.arousal -= 1>>
<</if>>
<</nobr>><</widget>>
<<widget "kateClearArousal">><<nobr>>
<<set $kate.arousal to 0>>
<</nobr>><</widget>>
<<widget "ukTeenRomance-bikiniLines">>\
<<update-avatar-bikinilines>>\
Wearing a bikini requires you to manage your bikini line. What style do you choose?
<<nobr>>
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Bikini lines</span></th>
</tr>
</thead>
<tbody>
<tr>
<<if $kate.bikiniLine eq "bikini">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/bikiniOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "bikini">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Bikini</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/bikiniOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "bikini">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Bikini</td>
<</if>>
<<if $kate.bikiniLine eq "brazilian">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/brazilianOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "brazilian">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Brazilian</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/brazilianOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "brazilian">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Brazilian</td>
<</if>>
<<if $kate.bikiniLine eq "georgeW">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/georgeWOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "georgeW">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">George W.</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/georgeWOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "georgeW">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>George W.</td>
<</if>>
<<if $kate.bikiniLine eq "landingStrip">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/landingStripOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "landingStrip">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Landing Strip</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/landingStripOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "landingStrip">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Landing Strip</td>
<</if>>
</tr>
<tr>
<<if $kate.bikiniLine eq "martiniGlass">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/martiniGlassOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "martiniGlass">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Martini Glass</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/martiniGlassOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "martiniGlass">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Martini Glass</td>
<</if>>
<<if $kate.bikiniLine eq "postageStamp">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/postageStampOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "postageStamp">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Postage Stamp</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/postageStampOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "postageStamp">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Postage Stamp</td>
<</if>>
<<if $kate.bikiniLine eq "hollywood">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/hollywoodOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "hollywood">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Hollywood (bare)</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/hollywoodOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "hollywood">><<ukTeenRomance-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Hollywood (bare)</td>
<</if>>
<td class="bikini-lines-Table-item"></td>
</tr>
</tbody>
</table>
<</nobr>>
<<if def $kate.bikiniLine>>
<<link "//Continue.//" "UKTEENROM-1200 Body piercing parlour">><</link>>
<<else>>
Please select a style.
<</if>>
<</widget>>
<<widget "parlour-bikiniLines">>\
<<update-avatar-bikinilines>>\
<<nobr>>
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Bikini lines</span></th>
</tr>
</thead>
<tbody>
<tr>
<<if $kate.bikiniLine eq "bikini">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/bikiniOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "bikini">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Bikini</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/bikiniOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "bikini">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Bikini</td>
<</if>>
<<if $kate.bikiniLine eq "brazilian">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/brazilianOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "brazilian">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Brazilian</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/brazilianOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "brazilian">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Brazilian</td>
<</if>>
<<if $kate.bikiniLine eq "georgeW">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/georgeWOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "georgeW">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">George W.</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/georgeWOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "georgeW">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>George W.</td>
<</if>>
<<if $kate.bikiniLine eq "landingStrip">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/landingStripOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "landingStrip">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Landing Strip</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/landingStripOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "landingStrip">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Landing Strip</td>
<</if>>
</tr>
<tr>
<<if $kate.bikiniLine eq "martiniGlass">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/martiniGlassOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "martiniGlass">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Martini Glass</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/martiniGlassOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "martiniGlass">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Martini Glass</td>
<</if>>
<<if $kate.bikiniLine eq "postageStamp">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/postageStampOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "postageStamp">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Postage Stamp</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/postageStampOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "postageStamp">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Postage Stamp</td>
<</if>>
<<if $kate.bikiniLine eq "hollywood">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/hollywoodOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "hollywood">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>><span style="color: #B1D0EF">Hollywood (bare)</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/hollywoodOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "hollywood">><<parlour-bikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><</link>>Hollywood (bare)</td>
<</if>>
<td class="bikini-lines-Table-item"></td>
</tr>
</tbody>
</table>
<</nobr>>
<</widget>>
<<widget "parlour-neatBikiniLines">>\
<<update-avatar-bikinilines>>\
<<nobr>>
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Bikini lines</span></th>
</tr>
</thead>
<tbody>
<tr>
<<if $kate.bikiniLine eq "bikini">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/bikiniOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "bikini">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>><span style="color: #B1D0EF">Bikini</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/bikiniOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "bikini">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>>Bikini</td>
<</if>>
<<if $kate.bikiniLine eq "brazilian">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/brazilianOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "brazilian">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>><span style="color: #B1D0EF">Brazilian</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/brazilianOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "brazilian">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>>Brazilian</td>
<</if>>
<<if $kate.bikiniLine eq "landingStrip">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/landingStripOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "landingStrip">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>><span style="color: #B1D0EF">Landing Strip</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/landingStripOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "landingStrip">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>>Landing Strip</td>
<</if>>
</tr>
<tr>
<<if $kate.bikiniLine eq "martiniGlass">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/martiniGlassOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "martiniGlass">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>><span style="color: #B1D0EF">Martini Glass</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/martiniGlassOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "martiniGlass">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>>Martini Glass</td>
<</if>>
<<if $kate.bikiniLine eq "postageStamp">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/postageStampOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "postageStamp">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>><span style="color: #B1D0EF">Postage Stamp</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/postageStampOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "postageStamp">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>>Postage Stamp</td>
<</if>>
<<if $kate.bikiniLine eq "hollywood">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/hollywoodOn.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "hollywood">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>><span style="color: #B1D0EF">Hollywood (bare)</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "bikiniLineMenu/hollywoodOff.png")]]>> <<replace "#bikiniLines">><<set $kate.bikiniLine to "hollywood">><<parlour-neatBikiniLines>><</replace>><<replace "#avatar-container">><<avatar>><</replace>><<replace '#exitNavigation'>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</replace>><</link>>Hollywood (bare)</td>
<</if>>
<td class="bikini-lines-Table-item"></td>
</tr>
</tbody>
</table>
<</nobr>>
<</widget>>
<<widget "parlour-perfect10Pedis">>\
<<nobr>>
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Pedis</span></th>
</tr>
</thead>
<tbody>
<tr>
<<if $chosenPedi == "candyDarts">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-candyDartsOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "candyDarts">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Dart Candy</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-candyDartsOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "candyDarts">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Dart Candy</td>
<</if>>
<<if $chosenPedi == "cantaloupeKiss">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-cantaloupeKissOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "cantaloupeKiss">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Kissing Cantaloupe</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-cantaloupeKissOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "cantaloupeKiss">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Kissing Cantaloupe</td>
<</if>>
<<if $chosenPedi == "carmineTease">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-carmineTeaseOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "carmineTease">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Crimson Red</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-carmineTeaseOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "carmineTease">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Crimson Red</td>
<</if>>
<<if $chosenPedi == "deathByChocolate">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-deathByChocolateOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "deathByChocolate">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Death Of Chocolate</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-deathByChocolateOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "deathByChocolate">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Death Of Chocolate</td>
<</if>>
</tr>
<tr>
<<if $chosenPedi == "devilInTheDita">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-devilInTheDitaOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "devilInTheDita">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Devil in Dita</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-devilInTheDitaOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "devilInTheDita">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Devil in Dita</td>
<</if>>
<<if $chosenPedi == "icedSugar">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-icedSugarOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "icedSugar">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Iced Sugar</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-icedSugarOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "icedSugar">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Iced Sugar</td>
<</if>>
<<if $chosenPedi == "inkyAssignation">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-inkyAssignationOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "inkyAssignation">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Innocent Assignment</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-inkyAssignationOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "inkyAssignation">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Innocent Assignment</td>
<</if>>
<<if $chosenPedi == "matisseDreams">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-matisseDreamsOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "matisseDreams">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Nightmare</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-matisseDreamsOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "matisseDreams">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Nightmare</td>
<</if>>
</tr>
<tr>
<<if $chosenPedi == "mothIntoFlame">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-mothIntoFlameOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "mothIntoFlame">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Moth Is Flame</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-mothIntoFlameOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "mothIntoFlame">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Moth Is Flame</td>
<</if>>
<<if $chosenPedi == "opiumMirror">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-opiumMirrorOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "opiumMirror">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Opium Glass</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-opiumMirrorOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "opiumMirror">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Opium Glass</td>
<</if>>
<<if $chosenPedi == "raspberrySwirls">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-raspberrySwirlsOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "raspberrySwirls">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Swirling Berries</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-raspberrySwirlsOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "raspberrySwirls">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Swirling Berries</td>
<</if>>
<<if $chosenPedi == "roseExplosion">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-roseExplosionOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "roseExplosion">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Explosion of Roses</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-roseExplosionOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "roseExplosion">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Explosion of Roses</td>
<</if>>
</tr>
<tr>
<<if $chosenPedi == "spats">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-spatsOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "spats">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Quarrel</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-spatsOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "spats">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Quarrel</td>
<</if>>
<<if $chosenPedi == "tuttiFrutti">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-tuttiFruttiOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "tuttiFrutti">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Tutti Frutti</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-tuttiFruttiOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "tuttiFrutti">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Tutti Frutti</td>
<</if>>
<<if $chosenPedi == "vermillionVixen">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-vermillionVixenOn.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "vermillionVixen">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Red Fox</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/pedi-vermillionVixenOff.png")]]>> <<replace "#perfect10Pedis">><<set $chosenPedi to "vermillionVixen">><<parlour-perfect10Pedis>><</replace>><<replace '#exitNavigation'>><<if def $chosenPedi>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Red Fox</td>
<</if>>
</tr>
</tbody>
</table>
<</nobr>>
<</widget>>
<<widget "parlour-perfect10ShortManis">>\
<<nobr>>
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Manis</span></th>
</tr>
</thead>
<tbody>
<tr>
<<if $chosenMani == "tuttiFrutti">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-tuttiFruttiOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "tuttiFrutti">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Tutti Frutti</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-tuttiFruttiOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "tuttiFrutti">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Tutti Frutti</td>
<</if>>
<<if $chosenMani == "vermillionVixen">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-vermillionVixenOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "vermillionVixen">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Red Fox</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-vermillionVixenOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "vermillionVixen">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Red Fox</td>
<</if>>
<<if $chosenMani == "deathByChocolate">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-deathByChocolateOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "deathByChocolate">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Death Of Chocolate</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-deathByChocolateOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "deathByChocolate">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Death Of Chocolate</td>
<</if>>
</tr>
<tr>
<<if $chosenMani == "roseExplosion">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-roseExplosionOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "roseExplosion">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Explosion of Roses</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-roseExplosionOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "roseExplosion">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Explosion of Roses</td>
<</if>>
<<if $chosenMani == "inkyAssignation">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-inkyAssignationOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "inkyAssignation">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Innocent Assignment</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-inkyAssignationOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "inkyAssignation">><<parlour-perfect10ShortManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Innocent Assignment</td>
<</if>>
</tr>
</tbody>
</table>
<</nobr>>
<</widget>>
<<widget "parlour-perfect10GelManis">>\
<<nobr>>
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Gel Manis</span></th>
</tr>
</thead>
<tbody>
<tr>
<<if $chosenMani == "raspberrySwirls">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-raspberrySwirlsOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "raspberrySwirls">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Swirling Berries</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-raspberrySwirlsOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "raspberrySwirls">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Swirling Berries</td>
<</if>>
<<if $chosenMani == "spats">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-spatsOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "spats">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Quarrel</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-spatsOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "spats">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Quarrel</td>
<</if>>
<<if $chosenMani == "matisseDreams">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-matisseDreamsOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "matisseDreams">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Nightmare</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-matisseDreamsOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "matisseDreams">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Nightmare</td>
<</if>>
<<if $chosenMani == "candyDarts">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-candyDartsOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "candyDarts">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Dart Candy</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-candyDartsOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "candyDarts">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Dart Candy</td>
<</if>>
</tr>
<tr>
<<if $chosenMani == "opiumMirror">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-opiumMirrorOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "opiumMirror">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Opium Glass</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-opiumMirrorOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "opiumMirror">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Opium Glass</td>
<</if>>
<<if $chosenMani == "mothIntoFlame">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-mothIntoFlameOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "mothIntoFlame">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Moth Is Flame</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-mothIntoFlameOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "mothIntoFlame">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Moth Is Flame</td>
<</if>>
<<if $chosenMani == "cantaloupeKiss">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-cantaloupeKissOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "cantaloupeKiss">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Cantaloupe Kiss</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-cantaloupeKissOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "cantaloupeKiss">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Cantaloupe Kiss</td>
<</if>>
<<if $chosenMani == "icedSugar">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-icedSugarOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "icedSugar">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Iced Sugar</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-icedSugarOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "icedSugar">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Iced Sugar</td>
<</if>>
</tr>
<tr>
<<if $chosenMani == "carmineTease">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-carmineTeaseOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "carmineTease">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Crimson Red</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-carmineTeaseOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "carmineTease">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Crimson Red</td>
<</if>>
<<if $chosenMani == "devilInTheDita">>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-devilInTheDitaOn.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "devilInTheDita">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>><span style="color: #B1D0EF">Devil In Dita</span></td>
<<else>>
<td class="bikini-lines-Table-item"><<link [img[($imagePath.ui + "perfect10NailSalonMenu/mani-devilInTheDitaOff.png")]]>> <<replace "#perfect10Manis">><<set $chosenMani to "devilInTheDita">><<parlour-perfect10GelManis>><</replace>><<replace '#exitNavigation'>><<if def $chosenMani>><<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">><</if>><</replace>><</link>>Devil In Dita</td>
<</if>>
</tr>
</tbody>
</table>
<</nobr>>
<</widget>>
<<widget "ukTeenRomance-tattooParlour">><<nobr>>
<<update-avatar-tattoo-piercing>>
<<if ndef $kate.tattoos>>
<<set $kate.tattoos to []>>
<</if>>
<table class="wardrobe-Table">
<thead>
<tr>
<th class="wardrobe-Table-item-header" colspan="6"><span style="font-weight:bold"> Tattoo Parlour </span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="wardrobe-Table-spacer-row" colspan="6"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Upper Torso</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("chestBohoMandela")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestBohoMandelaOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("chestBohoMandela")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Boho Mandela</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestBohoMandelaOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("chestBohoMandela")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Boho Mandela</td>
<</if>>
<<if $kate.tattoos.includes("chestSwallows")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestSwallowsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("chestSwallows")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Swallows</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestSwallowsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightNeckStars","leftCollarbone8BitHearts","chestSwallows","leftCollarboneCaffeineStructure")>><<set $kate.tattoos.push("chestSwallows")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Swallows</td>
<</if>>
<<if $kate.tattoos.includes("rightNeckStars")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightNeckStarsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightNeckStars")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Stars</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightNeckStarsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightNeckStars","chestSwallows")>><<set $kate.tattoos.push("rightNeckStars")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Stars</td>
<</if>>
<<if $kate.tattoos.includes("rightUnderboobWave")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightUnderboobWaveOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightUnderboobWave")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Wave</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightUnderboobWaveOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("rightUnderboobWave")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Wave</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("leftCollarbone8BitHearts")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarbone8BitHeartsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftCollarbone8BitHearts")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">8 Bit Hearts</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarbone8BitHeartsOff.png")]]>><<replace "#wardrobeStore">><<if $kate.quirks.includes("geekGirl")>><<set $kate.tattoos.delete("leftCollarbone8BitHearts","chestSwallows","leftCollarboneCaffeineStructure")>><<set $kate.tattoos.push("leftCollarbone8BitHearts")>><<else>><</if>><<ukTeenRomance-tattooParlour>><</replace>><</link>>8 Bit Hearts<<if !$kate.quirks.includes("geekGirl")>><br><span style="font-size:10px;">(Geek girl quirk required)</span><</if>></td>
<</if>>
<<if $kate.tattoos.includes("leftCollarboneCaffeineStructure")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarboneCaffeineStructureOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftCollarboneCaffeineStructure")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">8 Bit Hearts</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarboneCaffeineStructureOff.png")]]>><<replace "#wardrobeStore">><<if $kate.quirks.includes("geekGirl")>><<set $kate.tattoos.delete("leftCollarbone8BitHearts","chestSwallows","leftCollarboneCaffeineStructure")>><<set $kate.tattoos.push("leftCollarboneCaffeineStructure")>><<else>><</if>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Caffeine structure<<if !$kate.quirks.includes("geekGirl")>><br><span style="font-size:10px;">(Geek girl quirk required)</span><</if>></td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Lower Torso</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("rightHipRose")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHipRoseOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightHipRose")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Rose</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHipRoseOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("rightHipRose")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Rose</td>
<</if>>
<<if $kate.tattoos.includes("leftHipBoneJacob")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipBoneJacobOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftHipBoneJacob")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Jacob</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipBoneJacobOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftHipTribal","pubicMoundHotZoneSlogan","pubicMoundTribalLoveCrest","leftHipBoneJacob")>><<set $kate.tattoos.push("leftHipBoneJacob")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Jacob</td>
<</if>>
<<if $kate.tattoos.includes("leftHipTribal")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipTribalOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftHipTribal")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipTribalOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftHipTribal","pubicMoundHotZoneSlogan","pubicMoundTribalLoveCrest","leftHipBoneJacob")>><<set $kate.tattoos.push("leftHipTribal")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Tribal</td>
<</if>>
<<if $kate.tattoos.includes("pubicMoundHotZoneSlogan")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundHotZoneSloganOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("pubicMoundHotZoneSlogan")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Hot Zone</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundHotZoneSloganOff.png")]]>><<replace "#wardrobeStore">><<if $kate.quirks.includes("easy")>><<set $kate.tattoos.delete("pubicMoundHotZoneSlogan","leftHipTribal","pubicMoundTribalLoveCrest","leftHipBoneJacob")>><<set $kate.tattoos.push("pubicMoundHotZoneSlogan")>><<else>><<set $temp.easyAlert to true>><</if>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Hot Zone <<if $temp.easyAlert>><span style="font-size:10px;">(Easy quirk required)</span><</if>> </td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("pubicMoundTribalLoveCrest")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundTribalLoveCrestOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("pubicMoundTribalLoveCrest")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal Love Crest</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundTribalLoveCrestOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("pubicMoundTribalLoveCrest","leftHipTribal","pubicMoundHotZoneSlogan","leftHipBoneJacob")>><<set $kate.tattoos.push("pubicMoundTribalLoveCrest")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Tribal Love Crest</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Arms</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("leftUpperArmStayGoldSlogan")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmStayGoldSloganOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftUpperArmStayGoldSlogan")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Stay Gold</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmStayGoldSloganOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftUpperArmStayGoldSlogan","leftUpperArmTribal")>><<set $kate.tattoos.push("leftUpperArmStayGoldSlogan")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Stay Gold</td>
<</if>>
<<if $kate.tattoos.includes("leftUpperArmTribal")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmTribalOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftUpperArmTribal")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmTribalOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftUpperArmStayGoldSlogan","leftUpperArmTribal")>><<set $kate.tattoos.push("leftUpperArmTribal")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Tribal</td>
<</if>>
<<if $kate.tattoos.includes("leftForearmAeroplane")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmAeroplaneOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftForearmAeroplane")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Aeroplane</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmAeroplaneOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftForearmElvish","leftForearmAeroplane")>><<set $kate.tattoos.push("leftForearmAeroplane")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Aeroplane</td>
<</if>>
<<if $kate.tattoos.includes("rightForearmD10Die")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmD10DieOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightForearmD10Die")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">D10 Die</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmD10DieOff.png")]]>><<replace "#wardrobeStore">><<if $kate.quirks.includes("geekGirl")>><<set $kate.tattoos.delete("rightForearmD10Die","rightForearmRosesSleeve")>><<set $kate.tattoos.push("rightForearmD10Die")>><</if>><<ukTeenRomance-tattooParlour>><</replace>><</link>>D10 Die <<if !$kate.quirks.includes("geekGirl")>><span style="font-size:10px;">(Geek girl quirk required)</span><</if>></td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("rightForearmRosesSleeve")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmRosesSleeveOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightForearmRosesSleeve")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Roses Sleeve</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmRosesSleeveOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightForearmD10Die","rightForearmRosesSleeve")>><<set $kate.tattoos.push("rightForearmRosesSleeve")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Roses Sleeve</td>
<</if>>
<<if $kate.tattoos.includes("rightHandPaperPlane")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHandPaperPlaneOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightHandPaperPlane")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Paper Plane</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHandPaperPlaneOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("rightHandPaperPlane")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Paper Plane</td>
<</if>>
<<if $kate.tattoos.includes("leftForearmElvish")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmElvishOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftForearmElvish")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Elvish</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmElvishOff.png")]]>><<replace "#wardrobeStore">><<if $kate.quirks.includes("geekGirl")>><<set $kate.tattoos.delete("leftForearmElvish","leftForearmAeroplane")>><<set $kate.tattoos.push("leftForearmElvish")>><<else>><</if>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Elvish <<if !$kate.quirks.includes("geekGirl")>><span style="font-size:10px;">(Geek girl quirk required)</span><</if>></td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Legs</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("rightThighTribal")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighTribalOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightThighTribal")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighTribalOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightThighTribal","rightThighAshley")>><<set $kate.tattoos.push("rightThighTribal")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Tribal</td>
<</if>>
<<if $kate.tattoos.includes("rightThighAshley")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighAshleyOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightThighAshley")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Ashley</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighAshleyOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightThighTribal","rightThighAshley")>><<set $kate.tattoos.push("rightThighAshley")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Ashley</td>
<</if>>
<<if $kate.tattoos.includes("rightCalfCowgirl")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightCalfCowgirlOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightCalfCowgirl")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Cowgirl</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightCalfCowgirlOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("rightCalfCowgirl")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Cowgirl</td>
<</if>>
<<if $kate.tattoos.includes("rightAnkleDove")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightAnkleDoveOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("rightAnkleDove")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Dove</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightAnkleDoveOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("rightAnkleDove")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Dove</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("leftThighTribalBand")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftThighTribalBandOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftThighTribalBand")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal Band</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftThighTribalBandOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("leftThighTribalBand")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Tribal Band</td>
<</if>>
<<if $kate.tattoos.includes("leftAnkleDiamond")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleDiamondOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftAnkleDiamond")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Diamond</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleDiamondOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("leftAnkleDiamond")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Diamond</td>
<</if>>
<<if $kate.tattoos.includes("leftAnkleTriyang")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleTriyangOn.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.delete("leftAnkleTriyang")>><<ukTeenRomance-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Triyang</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleTriyangOff.png")]]>><<replace "#wardrobeStore">><<set $kate.tattoos.push("leftAnkleTriyang")>><<ukTeenRomance-tattooParlour>><</replace>><</link>>Triyang</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
</tbody>
</table>
<</nobr>><</widget>>
<<widget "parlour-tattooParlour">><<nobr>>
<<update-avatar-tattoo-piercing>>
<<replace "#avatar-container">><<avatar>><</replace>>
<<if ndef $kate.tattoos>>
<<set $kate.tattoos to []>>
<</if>>
<table class="wardrobe-Table">
<thead>
<tr>
<th class="wardrobe-Table-item-header" colspan="6"><span style="font-weight:bold"> Tattoo Parlour </span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="wardrobe-Table-spacer-row" colspan="6"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Upper Torso</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
/* <<if $kate.tattoos.includes("chestBohoMandela")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestBohoMandelaOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("chestBohoMandela")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Boho Mandela</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestBohoMandelaOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("chestBohoMandela")>><<parlour-tattooParlour>><</replace>><</link>>Boho Mandela</td>
<</if>>
<<if $kate.tattoos.includes("chestSwallows")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestSwallowsOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("chestSwallows")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Swallows</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/chestSwallowsOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightNeckStars","leftCollarbone8BitHearts","chestSwallows","leftCollarboneCaffeineStructure")>><<set $kate.tattoos.push("chestSwallows")>><<parlour-tattooParlour>><</replace>><</link>>Swallows</td>
<</if>>
<<if $kate.tattoos.includes("rightNeckStars")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightNeckStarsOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightNeckStars")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Stars</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightNeckStarsOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightNeckStars","chestSwallows")>><<set $kate.tattoos.push("rightNeckStars")>><<parlour-tattooParlour>><</replace>><</link>>Stars</td>
<</if>> */
<<if $kate.tattoos.includes("rightUnderboobWave")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightUnderboobWaveOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightUnderboobWave")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Wave</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightUnderboobWaveOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("rightUnderboobWave")>><<parlour-tattooParlour>><</replace>><</link>>Wave</td>
<</if>>
<<if $kate.tattoos.includes("leftCollarbone8BitHearts")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarbone8BitHeartsOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftCollarbone8BitHearts")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">8 Bit Hearts</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarbone8BitHeartsOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftCollarbone8BitHearts","chestSwallows","leftCollarboneCaffeineStructure")>><<set $kate.tattoos.push("leftCollarbone8BitHearts")>><<parlour-tattooParlour>><</replace>><</link>>8 Bit Hearts</td>
<</if>>
<<if $kate.tattoos.includes("leftCollarboneCaffeineStructure")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarboneCaffeineStructureOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftCollarboneCaffeineStructure")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Caffeine structure</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftCollarboneCaffeineStructureOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftCollarbone8BitHearts","chestSwallows","leftCollarboneCaffeineStructure")>><<set $kate.tattoos.push("leftCollarboneCaffeineStructure")>><<parlour-tattooParlour>><</replace>><</link>>Caffeine structure</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Lower Torso</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
/* <<if $kate.tattoos.includes("rightHipRose")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHipRoseOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightHipRose")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Rose</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHipRoseOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("rightHipRose")>><<parlour-tattooParlour>><</replace>><</link>>Rose</td>
<</if>> */
<<if $kate.tattoos.includes("leftHipBoneJacob")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipBoneJacobOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftHipBoneJacob")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Jacob</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipBoneJacobOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftHipTribal","pubicMoundHotZoneSlogan","pubicMoundTribalLoveCrest","leftHipBoneJacob")>><<set $kate.tattoos.push("leftHipBoneJacob")>><<parlour-tattooParlour>><</replace>><</link>>Jacob</td>
<</if>>
<<if $kate.tattoos.includes("leftHipTribal")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipTribalOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftHipTribal")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftHipTribalOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftHipTribal","pubicMoundHotZoneSlogan","pubicMoundTribalLoveCrest","leftHipBoneJacob")>><<set $kate.tattoos.push("leftHipTribal")>><<parlour-tattooParlour>><</replace>><</link>>Tribal</td>
<</if>>
/* <<if $kate.tattoos.includes("pubicMoundHotZoneSlogan")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundHotZoneSloganOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("pubicMoundHotZoneSlogan")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Hot Zone</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundHotZoneSloganOff.png")]]>><<replace "#wardrobeStore1">><<if $kate.quirks.includes("easy")>><<set $kate.tattoos.delete("pubicMoundHotZoneSlogan","leftHipTribal","pubicMoundTribalLoveCrest","leftHipBoneJacob")>><<set $kate.tattoos.push("pubicMoundHotZoneSlogan")>><<else>><<set $temp.easyAlert to true>><</if>><<parlour-tattooParlour>><</replace>><</link>>Hot Zone <<if $temp.easyAlert>><span style="font-size:10px;">(Easy quirk required)</span><</if>> </td>
<</if>> */
<td class="wardrobe-Table-spacer-left"></td>
</tr>
/* <tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("pubicMoundTribalLoveCrest")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundTribalLoveCrestOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("pubicMoundTribalLoveCrest")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal Love Crest</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/pubicMoundTribalLoveCrestOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("pubicMoundTribalLoveCrest","leftHipTribal","pubicMoundHotZoneSlogan","leftHipBoneJacob")>><<set $kate.tattoos.push("pubicMoundTribalLoveCrest")>><<parlour-tattooParlour>><</replace>><</link>>Tribal Love Crest</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr> */
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Arms</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("leftUpperArmStayGoldSlogan")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmStayGoldSloganOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftUpperArmStayGoldSlogan")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Stay Gold</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmStayGoldSloganOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftUpperArmStayGoldSlogan","leftUpperArmTribal")>><<set $kate.tattoos.push("leftUpperArmStayGoldSlogan")>><<parlour-tattooParlour>><</replace>><</link>>Stay Gold</td>
<</if>>
<<if $kate.tattoos.includes("leftUpperArmTribal")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmTribalOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftUpperArmTribal")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftUpperArmTribalOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftUpperArmStayGoldSlogan","leftUpperArmTribal")>><<set $kate.tattoos.push("leftUpperArmTribal")>><<parlour-tattooParlour>><</replace>><</link>>Tribal</td>
<</if>>
/* <<if $kate.tattoos.includes("leftForearmAeroplane")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmAeroplaneOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftForearmAeroplane")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Aeroplane</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmAeroplaneOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftForearmElvish","leftForearmAeroplane")>><<set $kate.tattoos.push("leftForearmAeroplane")>><<parlour-tattooParlour>><</replace>><</link>>Aeroplane</td>
<</if>>
<<if $kate.tattoos.includes("rightForearmD10Die")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmD10DieOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightForearmD10Die")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">D10 Die</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmD10DieOff.png")]]>><<replace "#wardrobeStore1">><<if $kate.quirks.includes("geekGirl")>><<set $kate.tattoos.delete("rightForearmD10Die","rightForearmRosesSleeve")>><<set $kate.tattoos.push("rightForearmD10Die")>><</if>><<parlour-tattooParlour>><</replace>><</link>>D10 Die <<if !$kate.quirks.includes("geekGirl")>><span style="font-size:10px;">(Geek girl quirk required)</span><</if>></td>
<</if>>
<<if $kate.tattoos.includes("leftForearmElvish")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmElvishOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftForearmElvish")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Elvish</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftForearmElvishOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftForearmElvish","leftForearmAeroplane")>><<set $kate.tattoos.push("leftForearmElvish")>><<parlour-tattooParlour>><</replace>><</link>>Elvish</td>
<</if>> */
<td class="wardrobe-Table-spacer-left"></td>
</tr>
/* <tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("rightForearmRosesSleeve")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmRosesSleeveOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightForearmRosesSleeve")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Roses Sleeve</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightForearmRosesSleeveOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightForearmD10Die","rightForearmRosesSleeve")>><<set $kate.tattoos.push("rightForearmRosesSleeve")>><<parlour-tattooParlour>><</replace>><</link>>Roses Sleeve</td>
<</if>>
<<if $kate.tattoos.includes("rightHandPaperPlane")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHandPaperPlaneOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightHandPaperPlane")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Paper Plane</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightHandPaperPlaneOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("rightHandPaperPlane")>><<parlour-tattooParlour>><</replace>><</link>>Paper Plane</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr> */
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Legs</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
/* <<if $kate.tattoos.includes("rightThighTribal")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighTribalOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightThighTribal")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighTribalOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightThighTribal","rightThighAshley")>><<set $kate.tattoos.push("rightThighTribal")>><<parlour-tattooParlour>><</replace>><</link>>Tribal</td>
<</if>> */
<<if $kate.tattoos.includes("rightThighAshley")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighAshleyOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightThighAshley")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Ashley</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightThighAshleyOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightThighTribal","rightThighAshley")>><<set $kate.tattoos.push("rightThighAshley")>><<parlour-tattooParlour>><</replace>><</link>>Ashley</td>
<</if>>
<<if $kate.tattoos.includes("leftThighTribalBand")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftThighTribalBandOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftThighTribalBand")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Tribal Band</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftThighTribalBandOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("leftThighTribalBand")>><<parlour-tattooParlour>><</replace>><</link>>Tribal Band</td>
<</if>>
/* <<if $kate.tattoos.includes("rightCalfCowgirl")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightCalfCowgirlOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightCalfCowgirl")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Cowgirl</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightCalfCowgirlOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("rightCalfCowgirl")>><<parlour-tattooParlour>><</replace>><</link>>Cowgirl</td>
<</if>>
<<if $kate.tattoos.includes("rightAnkleDove")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightAnkleDoveOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("rightAnkleDove")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Dove</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/rightAnkleDoveOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("rightAnkleDove")>><<parlour-tattooParlour>><</replace>><</link>>Dove</td>
<</if>> */
<td class="wardrobe-Table-spacer-left"></td>
</tr>
/* <tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.tattoos.includes("leftAnkleDiamond")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleDiamondOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftAnkleDiamond")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Diamond</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleDiamondOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("leftAnkleDiamond")>><<parlour-tattooParlour>><</replace>><</link>>Diamond</td>
<</if>>
<<if $kate.tattoos.includes("leftAnkleTriyang")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleTriyangOn.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.delete("leftAnkleTriyang")>><<parlour-tattooParlour>><</replace>><</link>><span style="color: #B1D0EF">Triyang</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "tattoosMenu/leftAnkleTriyangOff.png")]]>><<replace "#wardrobeStore1">><<set $kate.tattoos.push("leftAnkleTriyang")>><<parlour-tattooParlour>><</replace>><</link>>Triyang</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr> */
</tbody>
</table>
<</nobr>><</widget>>
<<widget "parlour-piercingParlour">><<nobr>>
<<update-avatar-tattoo-piercing>>
<<replace "#avatar-container">><<avatar>><</replace>>
<table class="wardrobe-Table">
<thead>
<tr>
<th class="wardrobe-Table-item-header" colspan="6"><span style="font-weight:bold"> Piercing Parlour </span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="wardrobe-Table-spacer-row" colspan="6"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Ears</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("earSilverHighLobeRings")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHighLobeRingsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earSilverHighLobeRings")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver High Lobe Rings</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHighLobeRingsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earSilverHighLobeRings")>><<parlour-piercingParlour>><</replace>><</link>>Silver High Lobe Rings</td>
<</if>>
<<if $kate.piercings.includes("earSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>>Silver Barbell</td>
<</if>>
<<if $kate.piercings.includes("earDiamondHelixStud")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earDiamondHelixStudOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earDiamondHelixStud")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Diamond Helix Stud</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earDiamondHelixStudOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earDiamondHelixStud")>><<parlour-piercingParlour>><</replace>><</link>>Diamond Helix Stud</td>
<</if>>
<<if $kate.piercings.includes("earSilverHelixRing")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHelixRingOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earSilverHelixRing")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Helix Ring</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHelixRingOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earSilverHelixRing")>><<parlour-piercingParlour>><</replace>><</link>>Silver Helix Ring</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Face</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/browSilverSpikedBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("browSilverSpikedBarbell")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Spiked Barbell</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/browSilverSpikedBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("browSilverSpikedBarbell")>><<parlour-piercingParlour>><</replace>><</link>>Silver Spiked Barbell</td>
<</if>>
<<if $kate.piercings.includes("nosesilverSeptumRingWithBall")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverSeptumRingOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("nosesilverSeptumRingWithBall")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Septum Ring</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverSeptumRingOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang","nosesilverSeptumRingWithBall")>><<set $kate.piercings.push("nosesilverSeptumRingWithBall")>><<parlour-piercingParlour>><</replace>><</link>>Silver Septum Ring</td>
<</if>>
/* <<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceMedusaDiamondStudOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Medusa Diamond Stud</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceMedusaDiamondStudOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceMedusaDiamondStud")>><<parlour-piercingParlour>><</replace>><</link>>Medusa Diamond Stud</td>
<</if>>
<<if $kate.piercings.includes("faceSilverDimpleStuds")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverDimpleStudsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceSilverDimpleStuds")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Dimple Studs</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverDimpleStudsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceSilverDimpleStuds")>><<parlour-piercingParlour>><</replace>><</link>>Silver Dimple Studs</td>
<</if>>
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverSpikedLabretOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceSilverSpikedLabret")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Spiked Labret</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverSpikedLabretOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceSilverSpikedLabret")>><<parlour-piercingParlour>><</replace>><</link>>Silver Spiked Labret</td>
<</if>> */
<td class="wardrobe-Table-spacer-left"></td>
</tr>
/* <tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("faceThirdEyeDiamondStud")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceThirdEyeDiamondStudOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceThirdEyeDiamondStud")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Third Eye Diamond Stud</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceThirdEyeDiamondStudOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceThirdEyeDiamondStud")>><<parlour-piercingParlour>><</replace>><</link>>Third Eye Diamond Stud</td>
<</if>>
<<if $kate.piercings.includes("noseBlackNasalang")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseBlackNasalangOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Black Nasalang</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseBlackNasalangOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang","noseSilverBarbell","nosesilverSeptumRingWithBall")>><<set $kate.piercings.push("noseBlackNasalang")>><<parlour-piercingParlour>><</replace>><</link>>Black Nasalang</td>
<</if>>
<<if $kate.piercings.includes("noseSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang","noseSilverBarbell","nosesilverSeptumRingWithBall")>><<set $kate.piercings.push("noseSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>>Silver Barbell</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr> */
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Body</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
/* <<if $kate.piercings.includes("chestSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/chestSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("chestSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell (Chest)</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/chestSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("chestSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>>Silver Barbell (Chest)</td>
<</if>> */
<<if $kate.piercings.includes("navelSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/navelSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("navelSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell (Navel)</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/navelSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("navelSilverBarbell")>><<parlour-piercingParlour>><</replace>><</link>>Silver Barbell (Navel)</td>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/nipplesSilverBarbellsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("nipplesSilverBarbells")>><<parlour-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell (Nipples)</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/nipplesSilverBarbellsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("nipplesSilverBarbells")>><<parlour-piercingParlour>><</replace>><</link>>Silver Barbell (Nipples)</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
</tbody>
</table>
<</nobr>><</widget>>
<<widget "ukTeenRomance-piercingParlour">><<nobr>>
<<update-avatar-tattoo-piercing>>
<table class="wardrobe-Table">
<thead>
<tr>
<th class="wardrobe-Table-item-header" colspan="6"><span style="font-weight:bold"> Piercing Parlour </span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="wardrobe-Table-spacer-row" colspan="6"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Ears</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("earSilverHighLobeRings")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHighLobeRingsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earSilverHighLobeRings")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver High Lobe Rings</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHighLobeRingsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earSilverHighLobeRings")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver High Lobe Rings</td>
<</if>>
<<if $kate.piercings.includes("earSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Barbell</td>
<</if>>
<<if $kate.piercings.includes("earDiamondHelixStud")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earDiamondHelixStudOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earDiamondHelixStud")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Diamond Helix Stud</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earDiamondHelixStudOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earDiamondHelixStud")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Diamond Helix Stud</td>
<</if>>
<<if $kate.piercings.includes("earSilverHelixRing")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHelixRingOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("earSilverHelixRing")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Helix Ring</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/earSilverHelixRingOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("earSilverHelixRing")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Helix Ring</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Face</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("browSilverSpikedBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/browSilverSpikedBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("browSilverSpikedBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Spiked Barbell</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/browSilverSpikedBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("browSilverSpikedBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Spiked Barbell</td>
<</if>>
<<if $kate.piercings.includes("faceMedusaDiamondStud")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceMedusaDiamondStudOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Medusa Diamond Stud</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceMedusaDiamondStudOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceMedusaDiamondStud")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Medusa Diamond Stud</td>
<</if>>
<<if $kate.piercings.includes("faceSilverDimpleStuds")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverDimpleStudsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceSilverDimpleStuds")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Dimple Studs</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverDimpleStudsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceSilverDimpleStuds")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Dimple Studs</td>
<</if>>
<<if $kate.piercings.includes("faceSilverSpikedLabret")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverSpikedLabretOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceSilverSpikedLabret")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Spiked Labret</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceSilverSpikedLabretOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceSilverSpikedLabret")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Spiked Labret</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("faceThirdEyeDiamondStud")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceThirdEyeDiamondStudOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceThirdEyeDiamondStud")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Third Eye Diamond Stud</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/faceThirdEyeDiamondStudOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("faceMedusaDiamondStud","faceSilverDimpleStuds","faceSilverSpikedLabret","faceThirdEyeDiamondStud")>><<set $kate.piercings.push("faceThirdEyeDiamondStud")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Third Eye Diamond Stud</td>
<</if>>
<<if $kate.piercings.includes("noseBlackNasalang")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseBlackNasalangOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Black Nasalang</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseBlackNasalangOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang","noseSilverBarbell","nosesilverSeptumRingWithBall")>><<set $kate.piercings.push("noseBlackNasalang")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Black Nasalang</td>
<</if>>
<<if $kate.piercings.includes("noseSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang","noseSilverBarbell","nosesilverSeptumRingWithBall")>><<set $kate.piercings.push("noseSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Barbell</td>
<</if>>
<<if $kate.piercings.includes("nosesilverSeptumRingWithBall")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverSeptumRingOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("nosesilverSeptumRingWithBall")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Septum Ring</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/noseSilverSeptumRingOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("noseBlackNasalang","nosesilverSeptumRingWithBall")>><<set $kate.piercings.push("nosesilverSeptumRingWithBall")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Septum Ring</td>
<</if>>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<td class="wardrobe-Table-item-subheader" colspan="4">Body</td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
<tr>
<td class="wardrobe-Table-spacer-right"></td>
<<if $kate.piercings.includes("chestSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/chestSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("chestSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell (Chest)</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/chestSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("chestSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Barbell (Chest)</td>
<</if>>
<<if $kate.piercings.includes("navelSilverBarbell")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/navelSilverBarbellOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("navelSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell (Navel)</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/navelSilverBarbellOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("navelSilverBarbell")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Barbell (Navel)</td>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/nipplesSilverBarbellsOn.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.delete("nipplesSilverBarbells")>><<ukTeenRomance-piercingParlour>><</replace>><</link>><span style="color: #B1D0EF">Silver Barbell (Nipples)</span></td>
<<else>>
<td class="wardrobe-Table-item"><<link [img[($imagePath.ui + "piercingsMenu/nipplesSilverBarbellsOff.png")]]>><<replace "#wardrobeStore">><<set $kate.piercings.push("nipplesSilverBarbells")>><<ukTeenRomance-piercingParlour>><</replace>><</link>>Silver Barbell (Nipples)</td>
<</if>>
<td class="wardrobe-Table-item"></td>
<td class="wardrobe-Table-spacer-left"></td>
</tr>
</tbody>
</table>
<</nobr>><</widget>>
<<widget "character-sheet-statusEffect">><<nobr>>
/*This widget will make a temporary object: _statusEffects to which images and descriptions can be assigned */
/*It will take the argument out of the statusEffects variable*/
<<if $args[0] eq "Tipsy" or $args[0] eq "tipsy">>
<<set _statusEffects to {}>>
<<set _statusEffects.name to "Tipsy",
_statusEffects.description to "You're a little drunk ",
_statusEffects.effects to "+1 Confidence, +1 Daring, -1 Coordination",
_statusEffects.image to "/Main/CharacterProfile/sample-image.svg">>
<</if>>
<<if $args[0] eq "Test" or $args[0] eq "test">>
<<set _statusEffects to {}>>
<<set _statusEffects.name to "Test",
_statusEffects.description to "This is a test effect ",
_statusEffects.effects to "NO EFFECTS",
_statusEffects.image to "/Main/CharacterProfile/sample-image.svg">>
<</if>>
<</nobr>><</widget>>
<<widget "character-sheet-achievements">><<nobr>>
/*This widget will make a temporary object: _cheevos to which images and descriptions can be assigned */
/*It will take the argument out of the achievements variable*/
<<if $args[0] eq "Test1" or $args[0] eq "test1">>
<<set _cheevos to {}>>
<<set _cheevos.name to "Test1",
_cheevos.description to "This is a placeholder test achievement 1 ",
_cheevos.image to "/Main/CharacterProfile/achievement-1.svg">>
<</if>>
<<if $args[0] eq "Test2" or $args[0] eq "test2">>
<<set _cheevos to {}>>
<<set _cheevos.name to "Test2",
_cheevos.description to "This is a placeholder test achievement 1 ",
_cheevos.image to "/Main/CharacterProfile/achievement-4.svg">>
<</if>>
<</nobr>><</widget>>
<<widget "dice-showModifiers">><<nobr>>
/*This widget expects an array with some nice modifiers*/
<<set _posMod to "">>
<<set _negMod to "">>
<<for _i to 0; _i lt _diceRollModifiers.length; _i++>>
<<if _diceRollModifiers[_i][0] gte 0>>
<<set _posMod to _posMod + " +" +_diceRollModifiers[_i][0] + " " + _diceRollModifiers[_i][1]>>
<<else>>
<<set _negMod to _negMod + " -" +_diceRollModifiers[_i][0] + " " + _diceRollModifiers[_i][1]>>
<</if>>
<</for>>
<i>Modifiers</i><br>
<span class="diceResultPositiveColor">_posMod</span> <span class="diceResultNegativeColor">_negMod</span>
<</nobr>><</widget>>
<<widget "dice-showDiceImage">><<nobr>>
/*This widget will show the correct dice image based on the supplied argument (e.g. <<dice-showDiceImage "d10">>) */
/*or will default to showing a d10 (and an error message in the console if the argument was misstyped*/
<<if $args.length gt 0>>
<<set _die to $args[0]>>
<<else>>
<<set _die to "d10">>
<</if>>
<<set _possibleDie to ["d10","d8","d6","d4"]>>
<<if !_possibleDie.includes(_die)>>
<<consoleLog "Wrong dice number!!! Choose d10, d8, d6 or d4."
<<set _die to "d10">>
<</if>>
<<set _diceImg to $imagePath.ui +"dice/"+_die+".png">>
<<= '<img src='+_diceImg+' style="float:left;">'>>
<</nobr>><</widget>>
<<widget "story-setKateName">><<nobr>>
/*This widget will set the name depending on the agency*/
<<if $kate.agency eq "mi6">>
<<if $kate.ethnicity eq "English" or $kate.ethnicity eq "english">>
<<set $kate.firstName to setup.englishFemaleFirstnames1990s.random(),
$kate.surname to setup.englishSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<if $kate.ethnicity eq "Anglo American" or $kate.ethnicity eq "angloAmerican">>
<<set $kate.firstName to setup.usFirstname.random(),
$kate.surname to setup.usSurname.random()>>
<<elseif $kate.ethnicity eq "Irish American" or $kate.ethnicity eq "irishAmerican">>
<<set $kate.firstName to setup.irishAmercanSurnames.random()>>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Italian American" or $kate.ethnicity eq "italianAmerican">>
<<set $kate.firstName to setup.italianAmericanSurnames.random()>>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Polish American" or $kate.ethnicity eq "polishAmerican">>
<<set $kate.firstName to setup.usFirstname.random(),
$kate.surname to setup.polishAmercanSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<if $kate.ethnicity eq "Anglo Australian" or $kate.ethnicity eq "angloAustralian">>
<<set $kate.firstName to setup.ausNZFirstname.random(),
$kate.surname to setup.ausNZSurname.random()>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<if $kate.ethnicity eq "Anglo Canadian" or $kate.ethnicity eq "angloCanadian">>
<<set $kate.firstName to setup.canadianFirstname.random(),
$kate.surname to setup.canadianSurname.random()>>
<<elseif $kate.ethnicity eq "French Canadian" or $kate.ethnicity eq "frenchCanadian">>
<<set $kate.firstName to setup.canadianFirstname.random(),
$kate.surname to setup.frenchCanadianSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<if $kate.ethnicity eq "NZ European" or $kate.ethnicity eq "nzEuropean">>
<<set $kate.firstName to setup.ausNZFirstname.random(),
$kate.surname to setup.ausNZSurname.random()>>
<</if>>
<<else>>
<<set $kate.firstName to "Walrus",
$kate.surname to "Walrusson">>
<</if>>
<</nobr>><</widget>>
<<widget "story-setKateFirstName">><<nobr>>
<<if $kate.agency eq "mi6">>
<<if $kate.ethnicity eq "English">>
<<set $kate.firstName to setup.englishFemaleFirstnames1990s.random()>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<if $kate.ethnicity eq "Anglo American">>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Irish American">>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Italian American">>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Polish American">>
<<set $kate.firstName to setup.usFirstname.random()>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<if $kate.ethnicity eq "Anglo Australian">>
<<set $kate.firstName to setup.ausNZFirstname.random()>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<if $kate.ethnicity eq "Anglo Canadian">>
<<set $kate.firstName to setup.canadianFirstname.random()>>
<<elseif $kate.ethnicity eq "French Canadian">>
<<set $kate.firstName to setup.canadianFirstname.random()>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<if $kate.ethnicity eq "NZ European">>
<<set $kate.firstName to setup.ausNZFirstname.random()>>
<</if>>
<<else>>
<<set $kate.firstName to "Walrus",
$kate.surname to "Walrusson">>
<</if>>
<</nobr>><</widget>>
<<widget "story-setKateSurName">><<nobr>>
<<if $kate.agency eq "mi6">>
<<set $kate.nationality to "british">>
<<if $kate.ethnicity eq "English">>
<<set $kate.surname to setup.englishSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<if $kate.ethnicity eq "Anglo American">>
<<set $kate.surname to setup.usSurname.random()>>
<<elseif $kate.ethnicity eq "Irish American">>
<<set $kate.surname to setup.irishAmercanSurnames.random()>>
<<elseif $kate.ethnicity eq "Italian American">>
<<set $kate.surname to setup.italianAmericanSurnames.random()>>
<<elseif $kate.ethnicity eq "Polish American">>
<<set $kate.surname to setup.polishAmercanSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<if $kate.ethnicity eq "Anglo Australian">>
<<set $kate.surname to setup.ausNZSurname.random()>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<if $kate.ethnicity eq "Anglo Canadian">>
<<set $kate.surname to setup.canadianSurname.random()>>
<<elseif $kate.ethnicity eq "French Canadian">>
<<set $kate.surname to setup.frenchCanadianSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<if $kate.ethnicity eq "NZ European">>
<<set $kate.surname to setup.ausNZSurname.random()>>
<</if>>
<<else>>
<<set $kate.firstName to "Walrus",
$kate.surname to "Walrusson">>
<</if>>
<</nobr>><</widget>>
<<widget "dataTab2">>
<div class="tab" data-tab="tab-2">
<div class="accordion-item">
<header>Psych Profile</header>
<div class="accordion-item-content">
<<set _PsychProfile to ["openness","conscientiousness","extraversion","agreeableness","neuroticism"]>>
<<for _i to 0; _i lt setup.info.attributes.length; _i++>>
<<set _attribute to setup.info.attributes[_i]>>
<<if _PsychProfile.includes(_attribute)>>
<<if def $kate.attributes[_attribute]>>
<<set _value to ($kate.attributes[_attribute]['level'] || 0).toString() >>
<div class="character-stat">
<header>
<<=_attribute.toUpperFirst()>>:
<strong>
<<= setup.info.attributeDescriptionTitles[_attribute][_value] >>
</strong>
</header>
<<set _descriptions to setup.info.attributeDescriptions[_attribute][_value] >>
<<for _j to 0; _j lt _descriptions.length; _j++>>
<div class="stat-description">
_descriptions[_j]
</div>
<</for>>
</div>
<</if>>
<</if>>
<</for>>
</div>
</div>
<div class="accordion-item">
<header>Stable Attributes</header>
<div class="accordion-item-content">
<<set _StableAttr to ["intellect","coordination","height","beauty"]>>
<<for _i to 0; _i lt setup.info.attributes.length; _i++>>
<<set _attribute to setup.info.attributes[_i]>>
<<if _StableAttr.includes(_attribute)>>
<<if def $kate.attributes[_attribute]>>
<<set _value to ($kate.attributes[_attribute]['level'] || 0).toString() >>
<div class="character-stat">
<header>
<<=_attribute.toUpperFirst()>>:
<strong>
<<= setup.info.attributeDescriptionTitles[_attribute][_value] >>
</strong>
</header>
<<set _descriptions to setup.info.attributeDescriptions[_attribute][_value] >>
<<for _j to 0; _j lt _descriptions.length; _j++>>
<div class="stat-description">
_descriptions[_j]
</div>
<</for>>
</div>
<</if>>
<</if>>
<</for>>
</div>
</div>
<div class="accordion-item">
<header>Fluid Attributes</header>
<div class="accordion-item-content">
<<set _fluidAttr to ["confidence","creativity","daring","fitness","painThreshold","strength"]>>
<<for _i to 0; _i lt setup.info.attributes.length; _i++>>
<<set _attribute to setup.info.attributes[_i]>>
<<if _fluidAttr.includes(_attribute)>>
<<if def $kate.attributes[_attribute]>>
<<set _value to (Math.round($kate.attributes[_attribute]['level'] || 0)).toString() >>
<div class="character-stat">
<header>
<<=_attribute.toUpperFirst()>>:
<strong>
_value
</strong>
</header>
<div class="stat-description">
Insert Description of fluid attribute here.
</div>
<<set _XP to $kate.attributes[_attribute]['xp'] >>
<<set _targetXP to 500 >> /*Calculations for target xp.*/
<<for _l to 0; _l lt 51; _l++>>
<<if _targetXP lte _XP>>
<<set _targetXP to _targetXP*2>>
<<else>>
<<break>>
<</if>>
<</for>>
<<set _width to 100 * (_XP-(_targetXP /2)) / _targetXP>>
<div class="progress-bar-container">
<div class="progress-bar">
<<= '<div class="progress-bar-filled" style="width:'+ _width +'%"></div>'>>
</div>
<div class="progress-bar-label">
_XP / _targetXP
</div>
</div>
</div>
<</if>>
<</if>>
<</for>>
</div>
</div>
</div>
<</widget>>
<<widget "corinth-dressup">><<nobr>>
<div class="wrapperAccordion">
<div class="wrap-1">
<input type="radio" id="tab-1" name="tabs">
<label for="tab-1"><div>Bras</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="bra-container">
<<corinth-bras>>
</span>
</div>
</div>
<div class="wrap-2">
<input type="radio" id="tab-2" name="tabs">
<label for="tab-2"><div>Pants</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="pants-container">
<<corinth-pants>>
</span>
</div>
</div>
<div class="wrap-3">
<input type="radio" id="tab-3" name="tabs">
<label for="tab-3"><div>Tops</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="tops-container">
<<corinth-tops>>
</span>
</div>
</div>
<div class="wrap-4">
<input type="radio" id="tab-4" name="tabs">
<label for="tab-4"><div>Shirts</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="shirts-container">
<<corinth-shirts>>
</span>
</div>
</div>
<div class="wrap-5">
<input type="radio" id="tab-5" name="tabs">
<label for="tab-5"><div>Jackets</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="jackets-container">
<<corinth-jackets>>
</span>
</div>
</div>
<div class="wrap-6">
<input type="radio" id="tab-6" name="tabs">
<label for="tab-6"><div>Shoes</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="shoes-container">
<<corinth-shoes>>
</span>
</div>
</div>
<div class="wrap-7">
<input type="radio" id="tab-7" name="tabs">
<label for="tab-7"><div>Trousers</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="trousers-container">
<<corinth-trousers>>
</span>
</div>
</div>
<div class="wrap-8">
<input type="radio" id="tab-8" name="tabs">
<label for="tab-8"><div>Skirts</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="skirts-container">
<<corinth-skirts>>
</span>
</div>
</div>
<div class="wrap-9">
<input type="radio" id="tab-9" name="tabs">
<label for="tab-9"><div>Dresses</div><div class="cross"></div></label>
<div class="contentAccordion">
<span id="dresses-container">
<<corinth-dresses>>
</span>
</div>
</div>
</div>
Once $kate.firstName is presetable
<span id="corinth-end">
(Wear either a dress or top and bottom, plus shoes)
</span>
<</nobr>><</widget>>
<<widget "corinth-bras">><<nobr>>
<br>
<<if !$avatar.underwear.includes("clothing/underwear/blackPlungeBraWithPinkBow/30_bra-blackPlungeWithPinkBow-rear")>>
<<link "Wear Black plunge bra with pink bow">>
<<avatar-clothing-removeConflict "bra">>
<<wear-bra-blackPlungeWithPinkBow>>
<<replace "#bra-container">>
<<corinth-bras>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove Black plunge bra with pink bow">>
<<remove-bra-blackPlungeWithPinkBow>>
<<replace "#bra-container">>
<<corinth-bras>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.underwear.includes("clothing/underwear/whiteHalfCupBraCentralDart/30_bra-whiteHalfCupCentralDart-rear")>>
<<link "Wear white halfcup central dart bra">>
<<avatar-clothing-removeConflict "bra">>
<<wear-bra-whiteHalfCupCentralDart>>
<<replace "#bra-container">>
<<corinth-bras>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove white halfcup central dart bra">>
<<remove-bra-whiteHalfCupCentralDart>>
<<replace "#bra-container">>
<<corinth-bras>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedPlungeBra/30_bra-cherryRedPlunge-rear")>>
<<link "Wear cherry red plunge bra">>
<<avatar-clothing-removeConflict "bra">>
<<wear-bra-cherryRedPlunge>>
<<replace "#bra-container">>
<<corinth-bras>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove cherry red plunge bra">>
<<remove-bra-cherryRedPlunge>>
<<replace "#bra-container">>
<<corinth-bras>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-pants">><<nobr>>
<br>
<br>
<<if !$avatar.underwear.includes("clothing/underwear/blackStringWithPinkPolkaDots/30_pants-blackWithPinkPolkaDotsString-rear")>>
<<link "Wear black with pink polkadots string">>
<<avatar-clothing-removeConflict "pants">>
<<wear-knickers-blackWithPinkPolkaDotsString>>
<<replace "#pants-container">>
<<corinth-pants>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black with pink polkadots string">>
<<remove-knickers-blackWithPinkPolkaDotsString>>
<<replace "#pants-container">>
<<corinth-pants>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.underwear.includes("clothing/underwear/whiteBrazilianCutPantiesWithLaceHem/30_pants-whiteBrazilianCutWithLaceHem-rear")>>
<<link "Wear white Brazilian Cut With Lace Hem pants">>
<<avatar-clothing-removeConflict "pants">>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<replace "#pants-container">>
<<corinth-pants>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove white Brazilian Cut With Lace Hem pants">>
<<remove-knickers-whiteBrazilianCutWithLaceHem>>
<<replace "#pants-container">>
<<corinth-pants>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedMidiKnickers/30_pants-cherryRedMidiWithSplitSide-rear")>>
<<link "Wear cherry Red Midi With Split Side pants">>
<<avatar-clothing-removeConflict "pants">>
<<wear-knickers-cherryRedMidiWithSplitSide>>
<<replace "#pants-container">>
<<corinth-pants>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove cherry Red Midi With Split Side pants">>
<<remove-knickers-cherryRedMidiWithSplitSide>>
<<replace "#pants-container">>
<<corinth-pants>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-tops">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/30_jumper-blackTurtleNeckWithRolledUpSleeves-rear")>>
<<link "Wear black Turtleneck With Rolled Up Sleeves">>
<<avatar-clothing-removeConflict "top">>
<<wear-jumper-blackTurtleNeckWithRolledUpSleeves>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Turtleneck With Rolled Up Sleeves">>
<<remove-jumper-blackTurtleNeckWithRolledUpSleeves>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/sweaters/greyHoodlessSweater/30_sweater-greyHoodlessSweater-rear")>>
<<link "Wear grey Hoodless Sweater">>
<<avatar-clothing-removeConflict "top">>
<<wear-sweater-greyHoodlessSweater>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove grey Hoodless Sweater">>
<<remove-sweater-greyHoodlessSweater>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/tops/shellPinkVNeckWrapLongSleevedBlouse/30_top-shellPinkVNeckWrapLongSleevedBlouse-rear")>>
<<link "Wear shell Pink V Neck Wrap Long Sleeved Blouse">>
<<avatar-clothing-removeConflict "top">>
<<wear-top-shellPinkVNeckWrapLongSleevedBlouse>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove shell Pink V Neck Wrap Long Sleeved Blouse">>
<<remove-top-shellPinkVNeckWrapLongSleevedBlouse>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/tops/whiteBacklessSatinHalterCropTopWithBigBow/20_top-whiteBacklessSatinHalterCropTopWithBigBow-rear")>>
<<link "Wear white Backless Satin Halter CropTop With Big Bow">>
<<avatar-clothing-removeConflict "top">>
<<wear-top-whiteBacklessSatinHalterCropTopWithBigBow>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove white Backless Satin Halter CropTop With Big Bow">>
<<remove-top-whiteBacklessSatinHalterCropTopWithBigBow>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/tops/darkGreyVNeckLongSleevedFlaredTop/30_top-darkGreyVNeckLongSleevedFlared-rear")>>
<<link "Wear dark Grey VNeck LongSleeved Flared top">>
<<avatar-clothing-removeConflict "top">>
<<wear-top-darkGreyVNeckLongSleevedFlared>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove dark Grey VNeck LongSleeved Flared top">>
<<remove-top-darkGreyVNeckLongSleevedFlared>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/tops/whiteFlaredVestWithSpaghettiStraps/30_top-whiteFlaredVestWithSpaghettiStraps-rear")>>
<<link "Wear white Flared Vest With Spaghettistraps">>
<<avatar-clothing-removeConflict "top">>
<<wear-top-whiteFlaredVestWithSpaghettiStraps>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove white Flared Vest With Spaghettistraps">>
<<remove-top-whiteFlaredVestWithSpaghettiStraps>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/tops/mustardYellowVNeckLongSleevedFlaredTop/30_top-mustardYellowVNeckLongSleevedFlared-rear")>>
<<link "Wear mustard Yellow VNeck LongSleeved Flared top">>
<<avatar-clothing-removeConflict "top">>
<<wear-top-mustardYellowVNeckLongSleevedFlared>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove mustard Yellow VNeck LongSleeved Flared top">>
<<remove-top-mustardYellowVNeckLongSleevedFlared>>
<<replace "#tops-container">>
<<corinth-tops>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-shirts">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/shirts/paleGreyAndWhiteShirtWithRolledUpSleeves/20_shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves-rear")>>
<<link "Wear paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves">>
<<avatar-clothing-removeConflict "top">>
<<wear-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves>>
<<replace "#shirts-container">>
<<corinth-shirts>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves">>
<<remove-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves>>
<<replace "#shirts-container">>
<<corinth-shirts>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-jackets">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/50_jacket-tanTwinButtonSuitJacketWithRolledUpSleeves-rear")>>
<<link "Wear tan Twin Button Suit Jacket With RolledUp Sleeves">>
<<avatar-clothing-removeConflict "jacket">>
<<wear-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves>>
<<replace "#jackets-container">>
<<corinth-jackets>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove tan Twin Button Suit Jacket With RolledUp Sleeves">>
<<remove-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves>>
<<replace "#jackets-container">>
<<corinth-jackets>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/jackets/blackShortLeatherJacketWithRolledUpSleeves/50_jacket-blackShortLeatherJacketWithSleevesRolledUp-rear")>>
<<link "Wear black Short Leather Jacket With Sleeves RolledUp">>
<<avatar-clothing-removeConflict "jacket">>
<<wear-jacket-blackShortLeatherJacketWithSleevesRolledUp>>
<<replace "#jackets-container">>
<<corinth-jackets>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Short Leather Jacket With Sleeves RolledUp">>
<<remove-jacket-blackShortLeatherJacketWithSleevesRolledUp>>
<<replace "#jackets-container">>
<<corinth-jackets>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-shoes">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/shoes/blackPatentHeels/20_shoes-blackPatentHeels-rear")>>
<<link "Wear black Patent Heels">>
<<avatar-clothing-removeConflict "shoes">>
<<wear-shoes-blackPatentHeels>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Patent Heels">>
<<remove-shoes-blackPatentHeels>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/shoes/brownPatentHeelsWithBlackToe/20_shoes-brownPatentHeelsWithBlackToe-rear")>>
<<link "Wear brown Patent Heels With Black Toe">>
<<avatar-clothing-removeConflict "shoes">>
<<wear-shoes-brownPatentHeelsWithBlackToe>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<</link>><br>
<<else>>
<<link "Remove brown Patent Heels With Black Toe">>
<<remove-shoes-brownPatentHeelsWithBlackToe>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/shoes/blackSuedeAnkleStilettosWithBuckles/20_boots-blackSuedeAnkleStillettosWithBuckles-rear")>>
<<link "Wear black Suede Ankle Stillettos With Buckles">>
<<avatar-clothing-removeConflict "shoes">>
<<wear-boots-blackSuedeAnkleStillettosWithBuckles>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Suede Ankle Stillettos With Buckles">>
<<remove-boots-blackSuedeAnkleStillettosWithBuckles>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/shoes/blackSuedeAnklePlatformHeels/20_boots-blackSuedeAnklePlatformHeels-rear")>>
<<link "Wear black Suede Ankle Platform Heels">>
<<avatar-clothing-removeConflict "shoes">>
<<wear-boots-blackSuedeAnklePlatformHeels>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Suede Ankle Platform Heels">>
<<remove-boots-blackSuedeAnklePlatformHeels>>
<<replace "#shoes-container">>
<<corinth-shoes>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-trousers">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/trousers/bootcutBlueJeans/30_trousers-darkBlueDenimBootcutJeans-highHeels-rear")>>
<<link "Wear dark Blue Denim Bootcut Jeans">>
<<avatar-clothing-removeConflict "trousers">>
<<wear-trousers-darkBlueDenimBootcutJeans>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove dark Blue Denim Bootcut Jeans">>
<<remove-trousers-darkBlueDenimBootcutJeans>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/trousers/blackStraightcutTrousers/30_trousers-blackStraightcutTrousers-highHeels-rear")>>
<<link "Wear black Straightcut Trousers">>
<<avatar-clothing-removeConflict "trousers">>
<<wear-trousers-blackStraightcutTrousers>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Straightcut Trousers">>
<<remove-trousers-blackStraightcutTrousers>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/trousers/skinnyBlueJeans/20_trousers-darkBlueDenimSkinnyJeans-highHeels-rear")>>
<<link "Wear dark Blue Denim Skinny Jeans">>
<<avatar-clothing-removeConflict "trousers">>
<<wear-trousers-darkBlueDenimSkinnyJeans>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove dark Blue Denim Skinny Jeans">>
<<remove-trousers-darkBlueDenimSkinnyJeans>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/trousers/blackCottonLeggings/10_leggings-blackCottonLeggings-rear")>>
<<link "Wear black Cotton Leggings">>
<<avatar-clothing-removeConflict "leggings">>
<<wear-leggings-blackCottonLeggings>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Cotton Leggings">>
<<remove-leggings-blackCottonLeggings>>
<<replace "#trousers-container">>
<<corinth-trousers>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-skirts">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/skirts/blackMiniPencil/20_skirt-blackMiniPencil-rear")>>
<<link "Wear black Mini Pencil skirt">>
<<avatar-clothing-removeConflict "skirt">>
<<wear-skirt-blackMiniPencil>>
<<replace "#skirts-container">>
<<corinth-skirts>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Mini Pencil skirt">>
<<remove-skirt-blackMiniPencil>>
<<replace "#skirts-container">>
<<corinth-skirts>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/skirts/blackSideSlitMini/20_skirt-blackSideSlitMini-rear")>>
<<link "Wear black Side Slit Mini Skirt">>
<<avatar-clothing-removeConflict "skirt">>
<<wear-skirt-blackSideSlitMini>>
<<replace "#skirts-container">>
<<corinth-skirts>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Side Slit Mini Skirt">>
<<remove-skirt-blackSideSlitMini>>
<<replace "#skirts-container">>
<<corinth-skirts>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-dresses">><<nobr>>
<br>
<<if !$avatar.clothing.includes("clothing/dresses/blackBodyconSleevelessMiniDress/20_dress-blackBodyconSleevelessMiniDress-rear")>>
<<link "Wear black Bodycon Sleeveless MiniDress">>
<<avatar-clothing-removeConflict "dress">>
<<wear-dress-blackBodyconSleevelessMiniDress>>
<<replace "#dresses-container">>
<<corinth-dresses>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Bodycon Sleeveless MiniDress">>
<<remove-dress-blackBodyconSleevelessMiniDress>>
<<replace "#dresses-container">>
<<corinth-dresses>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<<if !$avatar.clothing.includes("clothing/dresses/blackSleevelessSkaterDress/30_dress-blackSleevelessSkater-rear")>>
<<link "Wear black Sleeveless Skaterdress">>
<<avatar-clothing-removeConflict "dress">>
<<wear-dress-blackSleevelessSkater>>
<<replace "#dresses-container">>
<<corinth-dresses>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<<else>>
<<link "Remove black Sleeveless Skaterdress">>
<<remove-dress-blackSleevelessSkater>>
<<replace "#dresses-container">>
<<corinth-dresses>>
<</replace>>
<<replace "#avatar-container">>
<<avatar>>
<</replace>>
<<corinth-check-ending>>
<</link>><br>
<</if>>
<br>
<</nobr>><</widget>>
<<widget "corinth-check-ending">><<nobr>>
<<if ($kate.isWearing.includes("dress") or ($kate.isWearing.includesAny("top","sweater","jumper","shirt") and $kate.isWearing.includesAny("trousers","leggings","skirt"))) and $kate.isWearing.includesAny("shoes","boots")>>
<<replace "#corinth-end">>
<<link "//they can meet $corinthian.partner.name at Corinthian//" "CORINTH-16000 Arrival">><</link>>.
<</replace>>
<<else>>
<<replace "#corinth-end">>
(Wear either a dress or top and bottom, plus shoes)
<</replace>>
<</if>>
<</nobr>><</widget>>
<<widget "showRear">><<nobr>>
<<set $avatar.showRear to true>>
<<replace "#avatar-container">><<avatar>><</replace>>
<</nobr>><</widget>>
<<widget "showFront">><<nobr>>
<<set $avatar.showRear to false>>
<<replace "#avatar-container">><<avatar>><</replace>>
<</nobr>><</widget>>
<<widget "cover-setCoverFirstName">><<nobr>>
<<if $kate.agency eq "mi6">>
<<if $kate.ethnicity eq "English">>
<<set $kate.cover.firstname to setup.englishFemaleFirstnames1990s.random()>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<if $kate.ethnicity eq "Anglo American">>
<<set $kate.cover.firstname to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Irish American">>
<<set $kate.cover.firstname to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Italian American">>
<<set $kate.cover.firstname to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Polish American">>
<<set $kate.cover.firstname to setup.usFirstname.random()>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<if $kate.ethnicity eq "Anglo Australian">>
<<set $kate.cover.firstname to setup.ausNZFirstname.random()>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<if $kate.ethnicity eq "Anglo Canadian">>
<<set $kate.cover.firstname to setup.canadianFirstname.random()>>
<<elseif $kate.ethnicity eq "French Canadian">>
<<set $kate.cover.firstname to setup.canadianFirstname.random()>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<if $kate.ethnicity eq "NZ European">>
<<set $kate.cover.firstname to setup.ausNZFirstname.random()>>
<</if>>
<<else>>
<<set $kate.cover.firstname to "Walrus",
$kate.cover.surname to "Walrusson">>
<</if>>
<</nobr>><</widget>>
<<widget "cover-setCoverSurName">><<nobr>>
<<if $kate.agency eq "mi6">>
<<set $kate.nationality to "british">>
<<if $kate.ethnicity eq "English">>
<<set $kate.cover.surname to setup.englishSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<if $kate.ethnicity eq "Anglo American">>
<<set $kate.cover.surname to setup.usSurname.random()>>
<<elseif $kate.ethnicity eq "Irish American">>
<<set $kate.cover.surname to setup.irishAmercanSurnames.random()>>
<<elseif $kate.ethnicity eq "Italian American">>
<<set $kate.cover.surname to setup.italianAmericanSurnames.random()>>
<<elseif $kate.ethnicity eq "Polish American">>
<<set $kate.cover.surname to setup.polishAmercanSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<if $kate.ethnicity eq "Anglo Australian">>
<<set $kate.cover.surname to setup.ausNZSurname.random()>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<if $kate.ethnicity eq "Anglo Canadian">>
<<set $kate.cover.surname to setup.canadianSurname.random()>>
<<elseif $kate.ethnicity eq "French Canadian">>
<<set $kate.cover.surname to setup.frenchCanadianSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<if $kate.ethnicity eq "NZ European">>
<<set $kate.cover.surname to setup.ausNZSurname.random()>>
<</if>>
<<else>>
<<set $kate.cover.firstname to "Walrus",
$kate.cover.surname to "Walrusson">>
<</if>>
<<if $kate.cover.surname eq $kate.surname>>
<<cover-setCoverSurName>>
<</if>>
<</nobr>><</widget>>
<<widget "cover-setKnownAs">><<nobr>>
<<if $kate.cover.firstname eq "Elizabeth">>
<<set $kate.cover.knownAs to either("Elizabeth", "Ellie", "Liz", "Beth")>>
<<else>>
<<set $kate.cover.knownAs to $kate.cover.firstname>>
<</if>>
<</nobr>><</widget>>
<<widget "cover-OperationName">><<nobr>>
<<set $kate.codename to setup.codeNames.random()>>
<</nobr>><</widget>>
<<widget "cover-names">>
<span class="colourclass">
CODENAME: <<textbox "$kate.codename" $kate.codename>>
\ <<link "(random)">><<cover-OperationName>><<replace "#coverNames">><<cover-names>><</replace>><</link>>
COVER FIRST NAME: <<textbox "$kate.cover.firstname" $kate.cover.firstname>>
\ <<link "(random)">><<cover-setCoverFirstName>><<cover-setKnownAs>><<replace "#coverNames">><<cover-names>><</replace>><</link>>
KNOWN AS: <span style="color: #212226; border:#212226; border-style:solid; border-width:thin; width:250px; padding-left:5px; padding-right:200px;">$kate.cover.knownAs</span>
\ <<link "(random)">><<cover-setKnownAs>><<replace "#coverNames">><<cover-names>><</replace>><</link>>
COVER SURNAME: <<textbox "$kate.cover.surname" $kate.cover.surname>>
\ <<link "(random)">><<cover-setCoverSurName>><<replace "#coverNames">><<cover-names>><</replace>><</link>>
</span>
<</widget>>
<<widget "setDominantArchetype">><<silently>><<nobr>>
<<if ($kate.crusaderRep gte $kate.waifRep) and ($kate.crusaderRep gte $kate.alphaRep) and ($kate.crusaderRep gte $kate.fataleRep)>>
<<set $kate.dominantArchetype to "crusader">>
<<elseif ($kate.waifRep gte $kate.crusaderRep) and ($kate.waifRep gte $kate.alphaRep) and ($kate.waifRep gte $kate.fataleRep)>>
<<set $kate.dominantArchetype to "waif">>
<<elseif ($kate.alphaRep gte $kate.crusaderRep) and ($kate.alphaRep gte $kate.waifRep) and ($kate.alphaRep gte $kate.fataleRep)>>
<<set $kate.dominantArchetype to "alpha">>
<<elseif ($kate.fataleRep gte $kate.crusaderRep) and ($kate.fataleRep gte $kate.waifRep) and ($kate.fataleRep gte $kate.alphaRep)>>
<<set $kate.dominantArchetype to "fatale">>
<</if>>
<</nobr>><</silently>><</widget>><<silently>>
<</silently>>\
<<page>>\
''** BETA TEST VERSION **''
This is a beta test of an upcoming sex scene from Female Agent. ''It's not the actual game.''
You can play the full game (for free!) <a href="https://www.femaleagentgame.com">here</a>.
[[Test the new scene.|BETA-2000 Beta briefing]]
<</page>><<silently>>
<</silently>>\
<<page>>\
You're 18-year old <b>Charlotte Drake.</b> In the future, you'll join MI6 as an officer; for now you're just a normal teenager.
The next scene is a test of a new kind of sex scene in Female Agent. In previous versions, sex scenes have focused purely on physical descriptions. We're trying to create scenes that are more about characters and situations.
This scene demonstrates a few new mechanics:
<ul>
<li>Dice rolls and player decisions change how the scene plays out</li>
<li>Charlotte's Arousal impacts her decisionmaking</li>
</ul>\
<<link "Begin" "BJFORTB-1000 Setup">>
<<set $kate.firstName to "Charlotte",
$kate.surname to "Drake",
$kate.faceShape to "round",
$kate.noseShape to "Greek",
$kate.mouthShape to "Pearlique",
$kate.eyeShape to "Round",
$kate.eyeColour to "Blue">>
/* calculate Kate's hair colour */
<<set $kate.hairColour to ("Blonde")>>
/* calculate Kate's hairstyle */
<<set $kate.hairStyle to "Short bob">>
<<set $kate.braSize to "small">>
<<set $kate.quirks.push("sportsStar", "elite")>>
<<set $header.line1 to "''MARK'S ROOM,'' W LONDON",
$header.line2 to "2010 / Age 18">>
<<lifepath-18yrAvatarBirthday>>
<<set $kate.attributes.openness to {},
$kate.attributes.conscientiousness to {},
$kate.attributes.extraversion to {},
$kate.attributes.agreeableness to {},
$kate.attributes.neuroticism to {}>>
<<set $kate.attributes.openness.level to 0,
$kate.attributes.conscientiousness.level to 0,
$kate.attributes.extraversion.level to 0,
$kate.attributes.agreeableness.level to 0,
$kate.attributes.neuroticism.level to 0,
$kate.arousal to 0>>
<</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''*** END OF BETA TEST CONTENT ***''
You've reached the end of the test. We're aiming to implement this scene into the next version (release target: Nov 30 2020).
If you're playing this before the release, you've got time to suggest changes and improvements! Please give us feedback on <a href="https://discord.gg/eeXEnBS4S8">Discord</a> or <a href="https://www.patreon.com/crushstation">Patreon</a>.
<</page>><<silently>>
<<set setup.info = {}>>
<<set setup.info.quirkDescriptions to {
"batarian": "You wear glasses or contacts.",
"commando": "You don't habitually wear knickers.",
"resting bitch face": "Your neutral expression is a pout.",
"freckles": "You have freckles on your face.",
"elite": "Your family's part of the 1%. You had extra opportunities growing up, including a year at an elite Swiss finishing school.",
"middle class": "You're from a normal middle class background.",
"working class": "You're from a working class background. Money was tight growing up.",
"single mum": "You were raised by your mum on her own.",
"big brother": "You have a big brother.",
"big sister": "You have a big sister.",
"kid brother": "You have a kid brother.",
"kid sister": "You have a kid sister.",
"easy": "You project a slutty, attainable vibe.",
"picky": "You're choosy about who you go to bed with.",
}>>
<<set setup.info.quirkEffects to {
"batarian": [
"-1 Perception (unaided vision)",
],
"commando": [
"Knickers removed from default outfits",
],
"resting bitch face": [
"-1 Approachability",
],
"freckles": [
"",
],
"elite": [
"",
],
"middle class": [
"",
],
"working class": [
"",
],
"single mum": [
"",
],
"big brother": [
"",
],
"big sister": [
"",
],
"kid brother": [
"",
],
"kid sister": [
"",
],
"easy": [
"+1 Approachability",
"More random partners generated during background"
],
"picky": [
"-1 Approachability",
"Fewer random partners generated during background"
],
}>>
<<set setup.info.attributes to [
"openness",
"conscientiousness",
"extraversion",
"agreeableness",
"neuroticism",
"intellect",
"coordination",
"height",
"beauty",
"confidence",
"creativity",
"daring",
"fitness",
"painThreshold",
"strength",
],
setup.info.attributeMin to -2,
setup.info.attributeMax to +2,
setup.info.attributeExplanations to {
"openness": "How curious, abstract and imaginative you are.",
"conscientiousness": "How organized, productive and responsible you are.",
"extraversion": "How sociable, assertive and cheery you are.",
"agreeableness": "How compassionate, respectful and trusting you are.",
"neuroticism": "Your tendencies towards anxiety and depression.",
"intellect": "Your general intelligence.",
"coordination": "Your natural grace and dexterity.",
"height": "How tall you are.",
"beauty": "How conventionally attractive you are.",
"confidence": "Confidence description.Placeholder",
"creativity": "creativity description Placeholder",
"daring": "Daring description.Placeholder",
"fitness": "Fitness description Placeholder",
"painThreshold": "Pain Thershold description Placeholder.",
"strength": "Strength description Placeholder.",
},
setup.info.attributeDescriptionTitles to {
"openness": {
"-2": [ "Orthodox (3% of people)" ],
"-1": [ "Preserver (13% of people)" ],
"0": [ "Balanced (7 in 10 people)" ],
"1": [ "Explorer (13% of people)" ],
"2": [ "Pioneer (3% of people)" ],
},
"conscientiousness": {
"-2": [ "Maverick (3% of people)" ],
"-1": [ "Spontaneous (13% of people)" ],
"0": [ "Competent (7 in 10 people)" ],
"1": [ "Focused (13% of people)" ],
"2": [ "Controlled (3% of people)" ],
},
"extraversion": {
"-2": [ "Loner (3% of people)" ],
"-1": [ "Introvert (13% of people)" ],
"0": [ "Ambivert (7 in 10 people)" ],
"1": [ "Extravert (13% of people)" ],
"2": [ "Entertainer (3% of people)" ],
},
"agreeableness": {
"-2": [ "Hostile (3% of people)" ],
"-1": [ "Challenger (13% of people)" ],
"0": [ "Sympathetic (7 in 10 people)" ],
"1": [ "Kind (13% of people)" ],
"2": [ "Martyr (3% of people)" ],
},
"neuroticism": {
"-2": [ "Fearless (3% of people)" ],
"-1": [ "Resilient (13% of people)" ],
"0": [ "Reactive (7 in 10 people)" ],
"1": [ "Worrier (13% of people)" ],
"2": [ "Unstable (3% of people)" ],
},
"intellect": {
"-2": [ "Borderline (3% of people)" ],
"-1": [ "Dull (13% of people)" ],
"0": [ "Normal (7 in 10 people)" ],
"1": [ "Bright (13% of people)" ],
"2": [ "Superior (3% of people)" ],
},
"coordination": {
"-2": [ "Dyspraxic (3% of people)" ],
"-1": [ "Clumsy (13% of people)" ],
"0": [ "Normal (7 in 10 people)" ],
"1": [ "Athletic (13% of people)" ],
"2": [ "Amazonian (3% of people)" ],
},
"height": {
"-2": [ "Very Short (3% of women)" ],
"-1": [ "Short (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Tall (13% of women)" ],
"2": [ "Very Tall (3% of women)" ],
},
"beauty": {
"-2": [ "Butterface (3% of women)" ],
"-1": [ "Plain Jane (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Hot (13% of women)" ],
"2": [ "Striking (3% of women)" ],
},
"confidence": {
"-2": [ "confidence desc" ],
"-1": [ "confidence desc" ],
"0": [ "confidence desc" ],
"1": [ "confidence desc" ],
"2": [ "confidence desc" ],
},
"beauty": {
"-2": [ "Butterface (3% of women)" ],
"-1": [ "Plain Jane (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Hot (13% of women)" ],
"2": [ "Striking (3% of women)" ],
},
"beauty": {
"-2": [ "Butterface (3% of women)" ],
"-1": [ "Plain Jane (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Hot (13% of women)" ],
"2": [ "Striking (3% of women)" ],
},
"beauty": {
"-2": [ "Butterface (3% of women)" ],
"-1": [ "Plain Jane (13% of women)" ],
"0": [ "Average (7 in 10 women)" ],
"1": [ "Hot (13% of women)" ],
"2": [ "Striking (3% of women)" ],
},
},
setup.info.attributeDescriptions to {
"openness": {
"-2": [ "Set firmly in your ways, you tend to think and do as you always have done. (Score too low to join MI6)" ],
"-1": [ "Conventional, pragmatic and traditional, you dislike change and resist new ideas. (Score too low to join MI6)" ],
"0": [ "Like most people, you're mainly down to earth, but you sometimes get excited by a new idea or seek out a new experience." ],
"1": [ "Curious and open minded, you're intrigued by new experiences and new perspectives." ],
"2": [ "An original and creative – some would say weird – thinker, you crave new ideas and experiences. You love art and find abstract ideas fascinating." ],
},
"conscientiousness": {
"-2": [ "Inconsistent, disorganised and unreliable; you don't follow rules and you ignore the requirements placed on you." ],
"-1": [ "Laid back and not very reliable; although you're aware of them, you're just not interested in following all the rules or completing every objective. You struggle to be punctual and to honour your commitments." ],
"0": [ "Like most people, when there's a job to be done you'll get on with it...eventually, sometimes after prompting from interested parties. You can mostly be relied upon to do what you've promised and to get to appointments on time." ],
"1": [ "Responsible and dependable. You're naturally inclined to pour organisation and effort into your goals, with no need for outside control." ],
"2": [ "Persistent and exacting; you focus naturally on detail and order. Hard work, organisation and innate self-discipline are the keys to your success." ],
},
"extraversion": {
"-2": [ "Painfully reserved and quiet; the ideal situation for you is alone, with no requirement to interact with other human beings. (Score too low to join MI6)" ],
"-1": [ "Groups of strangers (and sometimes even friends) are not your thing. You get much more out of spending most of your time pursuing activities quietly and alone. Reserved and passive, you rarely express your views to others." ],
"0": [ "Like most people, you like spending time with friends and family, and you enjoy meeting new people from time to time. Taking your cues from social situations, you're sometimes talkative and sometimes more inclined to listen. You're also happy to spend time alone." ],
"1": [ "Talkative, optimistic and fun, you enjoy meeting new people and are stimulated by social occasions. You're likely to sacrifice the future for the present when there's a chance of getting together with a group of people." ],
"2": [ "The center of attention in large, loud crowds of people is where you love to be. Self-disclosing and quick to speak, you aim to entertain and energise. You love to party and you get bored if you spend much time alone." ],
},
"agreeableness": {
"-2": [ "Skeptical and stubborn, what you want always comes first: you enjoy conflict and you can be ruthless to get what you want. You're antagonistic in your dealings with others, as you won't excuse their errors and their emotions won't sway your views." ],
"-1": [ "Honest and dispassionate, you're ready and willing to compete with others to get what you want. You refuse to be pushed around, and will bluntly challenge the commonly accepted views and practices. You don't sacrifice long-term stability for short-term peace." ],
"0": [ "Like most people, you're naturally kind, forgiving and affable; especially with loved ones and those whose goodwill you value. However, you dislike being taken advantage of, and will stand up for yourself when it really matters. You largely aim for peaceful relations." ],
"1": [ "Flexible and compassionate, you're quick to help others and do what you can to oil the wheels of a social situation. You're quick to forgive and naturally trusting." ],
"2": [ "Trusting, helpful and self-sacrificing, you're naturally swayed by the needs and desires of other people. You dislike competition and conflict, and prefer capitulation to confrontation. This can leave you feeling resentful or angry, but you prefer feeling that way to upsetting others." ],
},
"neuroticism": {
"-2": [ "Unemotional and self-satisfied, you confidently engage in a world containing very few things that can rattle you. You have exceptional tolerance for stress, and you accept failures and setbacks without concern. Your lack of respect for threats can lead you to take bold risks." ],
"-1": [ "You're calm and secure in your emotions, rarely feeling anxious or sad. Although you're aware of them, the negative elements of the past, present and future have little impact on your approach to the world." ],
"0": [ "Like most people, you acknowledge past negative experiences and use them to make plans to avoid the insecurities of the future. You sometimes feel worried and emotional, but this doesn't restrict your actions." ],
"1": [ "Emotionally sensitive, you're prone to stress and anxiety. You often see the worst in a situation, and feel insecurity about your past and fears for the future. Your natural caution can stultify your actions." ],
"2": [ "Painfully anxious and self-conscious. All the negative emotions in you hold sway, and you're variously racked with shame, guilt, defensive anger and self pity. (Score too high to join MI6)" ],
},
"intellect": {
"-2": [ "With an IQ of around 70, you're borderline retarded. Although you can live mostly independently, very few modern jobs are open to you. (Score too low to join MI6)" ],
"-1": [ "With an IQ of around 80, you're of low intelligence. You're best suited to careers involving manual labour. (Score too low to join MI6)" ],
"0": [ "With an IQ of around 100, you're of average intelligence. The bulk of white- and blue-collar careers are open to you. (Score too low to join MI6)" ],
"1": [ "With an IQ of around 120, you're university material. Careers you're capable of include engineering, management and teaching." ],
"2": [ "With an IQ of around 130, you're the smartest person in most rooms. Careers you're capable of include STEM scientist, barrister, medical doctor, and university lecturer." ],
},
"coordination": {
"-2": [ "You're mildly dyspraxic, which means you struggle with coordination skills - like playing sports or driving - and fine motor skills, like writing or using small objects." ],
"-1": [ "You're not a very physical person. Running and catching don't come naturally to you. You're capable of being fit and healthy, but you have to work harder than most people." ],
"0": [ "You're of average natural athleticism: capable of great feats if you train hard, or great fats if you don't bother." ],
"1": [ "Naturally graceful and dextrous; you were probably attracted to sports or dance at school." ],
"2": [ "You have the genetic potential to be an Olympian athlete. Although you'd never know this without actually training like an Olympian, you do have excellent natural balance and dexterity. You pick up physical skills like climbing and shooting very quickly." ],
},
"height": {
"-2": [ "You're around 4'10 (147cm) tall." ],
"-1": [ "You're around 5' (152cm) tall." ],
"0": [ "You're around 5'4 (162cm) tall." ],
"1": [ "You're around 5'7 (170cm) tall." ],
"2": [ "You're around 5'9 (175cm) tall." ],
},
"beauty": {
"-2": [ "They say true beauty is on the inside. (Score too low to be recruited for this mission)" ],
"-1": [ "You're a bit of a butterface. (Score too low to be recruited for this mission)" ],
"0": [ "You're a 5 without makeup; the girl next door. (Score too low to be recruited for this mission)" ],
"1": [ "Naturally attractive – beautiful when you make an effort – you're the hot girl next door." ],
"2": [ "Effortlessly, strikingly beautiful, you could have been a professional model or actress." ],
},
}
>>
<<set
setup.info.kinks to [
"exhibitionist",
"masochist",
"submissive",
],
setup.info.kinkDescriptions to {
"exhibitionist": "You fantasise about being exposed and desired.",
"masochist": "You fantasise about rough sex and being physically dominated.",
"submissive": "You fantasise about being emotionally dominated and controlled.",
},
setup.info.kinkEffects to {
"exhibitionist": [
"+1 Arousal (public sex)",
"+1 Daring (public sex)",
"Extra dialogue options",
],
"masochist": [
"+1 Arousal (rough sex)",
"+2 Pain Threshold (rough sex)",
"Extra dialogue options"
],
"submissive": [
"+1 Arousal (domination)",
"+1 Pain Threshold (rough sex)",
"Extra dialogue options"
],
}
>>
<<set
setup.info.skillDescriptions to {
"academic": "skill description",
"agent": "skill description",
"athlete": "skill description",
"brawler": "skill description",
"charmer": "skill description",
"cook": "skill description",
"dancer": "skill description",
"driver": "skill description",
"musician": "skill description",
"partyAnimal": "skill description",
"sexpert": "skill description",
"shooter": "skill description",
"singer": "skill description",
"writer": "skill description",
},
setup.info.skillDescriptionTitles to {
"academic": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"agent": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"athlete": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"brawler": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"charmer": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"cook": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"dancer": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"driver": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"musician": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"partyAnimal": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"sexpert": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"shooter": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"singer": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
"writer": {
"-2": "level -2 description",
"-1": "level -1 description",
"0": "(amateur)",
"1": "(experienced)",
"2": "(veteran)",
"3": "(elite)",
"4": "(expert)",
"5": "(expert)",
"6": "(expert)",
"7": "(expert)",
"8": "(expert)",
"9": "(expert)",
"10": "(expert)"
},
}
>>
<</silently>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<b>Oh no!</b> You've reached the end of this episode, //White Russian!//
$kate.firstName went on a double date with $zoe.firstName, <<if hasVisited("WR-4280 Yeah")>>and spent a night in a Russian businessman's hotel room<<if hasVisited("WR-240 Not planning on sex with Kolya")>>, despite her best intentions<</if>>. She got closer to $zoe.firstName, in prep for recruiting her as an <div class="tooltip">agent<span class="tooltiptext">a person working for an intelligence service, not always knowingly</span></div> in the future.<<else>>but went home early. If you like, you can <<link "jump back to the decision point" "WR-4270 Ladies room">><<avatar-stripNaked>><<wear-bracelet-friendshipBraceletsLeftWrist>><<wear-dress-emeraldGreenSatinMiniDress>><<apply-makeup-eyeshadow-emerald>><<apply-makeup-eyeliner-lina>><<apply-makeup-lipstick-soWhat>><<wear-shoes-silverStrappyStilettoSandals>><</link>> and make a different choice.<</if>>
<b>What now?</b>
We're currently working on the next episode. It will continue $kate.firstName's story.
In the meantime, you can:
<ul>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.11</a> (which is focused on $kate.firstName's youth and university years, before she joined <<if $kate.agency == "cia">>the <<else>><<= $kate.agency.toUpperCase()>><</if>>).</li>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.6</a> (which uses the old engine).</li>
<li>Find out more about the game at our <a href="https://www.femaleagentgame.com/">website</a>.</li>
<li>Give us feedback and ideas on <a href="https://discord.gg/eeXEnBS4S8">Discord</a>.</li>
</ul>\
<b>Development is 100% funded by fans</b>
Writing, illustrating and coding the game takes many many hours! We wouldn't be able to do it without the support of our great fans on <a href="https://www.patreon.com/crushstation">Patreon</a> and <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>.
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>\
If you love the game and can afford $1 or more, please support us at <a href="https://www.patreon.com/crushstation">Patreon</a> or <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>. You'll be able to download a supporter version with some extra features (like the largest bra size, and a very cheaty back button). More importantly, you'll be directly funding development of the game.
<b>Thanks for playing this episode of Female Agent!</b>
<<else>>\
Thank you humbly for making this game possible. I promise to always do my best. 😔
<b>And thanks for playing this episode of Female Agent!</b>
<</if>>\
$kate.firstName $kate.surname will always remember you.
– 🦀 <i>Crushstation, October 2023</i>
<small>//<<back "Back to game">>//</small>
<</page>><div id="game">
<header id="header">
<a href="#" data-target='#logo-dropdown' class="dropdown-toggle logo"></a>
<div id="logo-dropdown" class="dropdown-content">
<a id="websiteId" href="https://www.femaleagentgame.com/" target="_blank">Website</a>
<a id="supportusId" href="https://www.patreon.com/crushstation" target="_blank">Support Us</a>
<a id="discordId" href="https://discord.gg/eeXEnBS4S8" target="_blank">Discord</a>
<a id="devToolsId" href="#">Dev Tools </a>
<a id="restartId" href="#">Restart</a>
</div>
<div id="ui-bar-history">
<button id="history-backward" tabindex="0"><</button>
<button id="history-forward" tabindex="0">></button>
</div>
<div id="menu">
<a id="turnAvatar" href="#">Turn avatar</a>
<a id="characterId" href="#">Character sheet</a>
<a id="savesId" href="#">Saves</a>
<a id="settingsId" href="#">Settings</a>
<a id="debugId" href="#">Bug Report</a>
</div>
</header>
<div id="game-inner">
<div id="avatar" class="avatar">
<div class="avatar-inner">
<div class="avatar-abs">
<div id="avatar-container" data-passage="StoryCaption" class="avatar-image">
</div>
</div>
</div>
</div>
<div id="passages" class="game-main detail-marker-container"></div>
</div>
<footer id="footer">
</footer>
</div><<nobr>>
<<avatar>>
<</nobr>><<set setup to {}>>
<<include "namelists">><<showNotifications>><<nobr>>
<<silently>><<include "variables">><</silently>>
<<silently>><<include "characterTexts">><</silently>>
<div id="page" class="page page-adult-content-warning">
<div class="page-inner">
<h1>Adult content warning</h1>
<h3>You must be 18 or older to play this game.</h3>
<div class="decisions">
<a class="yes" data-passage="changelog">
I confirm that I'm over 18, that I know this game contains nudity and sexually explicit content, and that I'm not offended by such content.
</a>
<a class="no" href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">
I am under 18 and/or don't want to play this game
</a>
</div>
</div>
</div><</nobr>><<nobr>>
<<= "<img class='hero-image' src='" + $imagePath.base + "ui/changelogBanner.jpg'>" >>
<<page>>
<div class="buttons">
<<button "Create a Character" "country-select">><</button>>
</div>
<div class="news-box">
<h1>What's new?</h1>
This is ''Episode 1.20, //White Russian.//'' Go on a double date with Zoe and two Russian businessmen.
</div>
<ul class="legend">
<li>
<<newSceneIcon>>
New scene
</li>
<li>
<<newFeatureIcon>>
New feature
</li>
<li>
<<improvementIcon>>
Improvement
</li>
<li>
<<fixIcon>>
Bug fix
</li>
</ul>
<div class="release">
<header>
<br />
Episode 1.20 (31 Oct 2023)
<small>Early access version for $5+ supporters. Happy Halloween, baby 🎃</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>White Russian –</b> Go on a double date with Zoe and two Russian businessmen.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Changing faces –</b> Fixed Amanda's artwork showing up when you click Zoe's name during a scene in Girls' Night Out (thanks <s>Mozart</s> gg).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.19 (27 Aug 2023)
<small>General release of episode 1.19, "The New Girl"</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Scene revisions –</b> Revised two club scenes based on user feedback, adding additional context and player decision options.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Yoginis –</b> Fixed the game forgetting that the heroine had been invited to yoga during Girls' Night Out (thanks Khal, XG, glcOn and Lady Alexa).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Dani Dani –</b> Changed Emilia's stage name so it can't be the same as the heroine's (thanks Sam Rainer, bos and Steve C).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Zoe calling –</b> Fixed Zoe's phone call to the heroine at the hostel triggering on the //wrong// condition (thanks glcOn).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Broken link –</b> Fixed broken link in a bar scene with Emilia (thanks Bread Pitt, MacMichael and MFW Safety always off).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Mix up –</b> Fixed some name mix-ups with some regular customers (thanks Bread Pitt).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Missing help text –</b> Fixed an error with mouseover text explaining what a bargirl is not displaying correctly (thanks Zephyrous both for the bug fix and confirming that people are still checking this in episode 1.19).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.19 (11 Aug 2023)
<small>Early access version for $5+ supporters. Sorry the editing took more hours than expected, guys, this one was tricky to write 😔</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>The New Girl –</b> Go undercover in the Hard Cock Cafe, and take on some new responsibilities for the enigmatic Miss Nin.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Minor bugfixes –</b> Fixed some minor bugs (with help from Q5). Corrected some typos (thanks Jenna).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.18.1 (13 Apr 2023)
<small>General release of episode 1.18</small>
</header>
<table><<nobr>>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Sorry boys –</b> Prevented the heroine returning to the skybar topless after her bathroom visit in //Girls' Night Out// (thanks chico3812).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Make the bed –</b> Fixed visual glitch with bedsheets appearing in wrong layer (thanks for the //excellent// bug report Lawhorn).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>False modesty –</b> Fixed heroine not taking off her trousers when changing with the bargirls in Amanda's apartment (thanks Miky and playsafe).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Too hot –</b> Adjusted the Malaysia hotel arrival scene so the heroine takes a cool, refreshing shower not a hot, steamy one (thanks SuperMaxo).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Stop trying to make fëtch happen –</b> Fixed many instances of my annoying, futile attempts to bring back the diaeresis (coördination, preärranged etc; thanks spark75).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Dead End –</b> Fixed broken link in the nightclub girl/girl kiss dare during //Girls' Night Out// (thanks Aetherial).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>The old Ping –</b> Fixed instance of Ping using her old AI-generated avatar in Amanda's condo (thanks Aetherial).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Tricksy bargirlses –</b> Fixed an instance of Zoe talking like Gollum (thanks DESpear).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Glove up –</b> Adjusted manicure layers so they shouldn't appear above gloves anymore (thanks Bread Pitt). Something tells me I am going to have to fix this fix again later 😬.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Typos –</b> Fixed typo describing colours as 'brith' not 'bright' (thanks Aetherial). Fixed typo 'designed for designed for' when filing down long nails (thanks spark75).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.18 (30 Mar 2023)
<small>Early access version for $5+ supporters. Thank you for making this possible 🥰</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Weekend Warrior –</b> Carry out a spy mission and a strip club shift, back to back.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Illustrated sex scenes –</b> Check out two new illustrated sex scenes in the club. This is an experiment, let us know if you want more!
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.17.2 (24 Jan 2023)
<small>General release of episode 1.17</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Three's Company –</b> Added a new path, written by ''The Lost Engineer,'' allowing an exhibitionist heroine to join in when Zoe and Amanda are sending topless selfies to Zoe's boyfriend.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Just Say No –</b> Added a new path to Kob's sex scene, allowing the heroine to avoid giving him a BJ.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Typos & corrections –</b> Renamed the Joint Task Force as a Combined Task Force, in line with US military conventions //(Joint// normally means two US services working together, ally nations are //Combined)// - thanks spark75. Removed extra "on" from dialogue set on on Faslane base (thanks spark75). Fixed Zoe disliking it twice if the heroine refuses MDMA (thanks Mike the Red). Fixed placeholder text about the heroine's fingernails from the date with Mr Kriangsak (thanks Salisria). Sold unnecessary closing <small></div></small> tags in one scene, and used the proceeds to buy a missing space needed in a later one (thanks playsafe).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.17.1 (28 Dec 2022)
<small>Bug fixes during Early Access</small>
</header>
<table><<nobr>>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Dead end girl –</b> Fixed a dead end for good girls who say no to coke at the party (thanks Nanaru and MD21). Fixed a dead end after failing your Sex Appeal check with Chonny (thanks RuSt). Fixed a dead end when choosing some not-yet-implemented dialogue with Zoe (thanks Maid Queen Mariam).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Red flags –</b> Fixed red errors when automatically applying or removing the new nail polishes in this episode (thanks Maid Queen Mariam, gg, Wildtexan, Lady Alexa, Swift and Salisria).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>What kind of model –</b> Fixed broken links when Kolya challenges the heroine on her modelling snap cover (thanks Maid Queen Mariam and Lady Alexa).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Mem is not Moo –</b> Fixed a few instances where the bargirl Mem got confused with the bargirl Moo (thanks Miky).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Code name –</b> Fixed a few instances of the heroine being addressed as $kate.strippername instead of her actual stage name (thanks Wildtexan and gg).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Masochism is no longer compulsory –</b> Fixed an issue where the game could turn the heroine masochist after a shift in the Hard Cock Cafe.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Crush can't count –</b> Potential agents now have six key qualities, not five (thanks Emm4rmstrong).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Maybe Danny //is// Mossad –</b> Fixed an error in the Ghost Tower where Danny addresses the heroine by her real name in dialogue, not her cover name.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Visible code –</b> Removed visible </span> tag during the second taxi ride with Max in Kuala Lumpur (thanks QA for the fix).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Typing with claws is hard –</b> Corrected several typos (thanks Lady Alexa).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.17 "Girls' Night Out" (23 Dec 2022)
<small>Early access version for $5+ supporters. Sorry this took so long 😔</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Girls' Night Out –</b> hit the town for a night out with some Hard Cock Cafe bargirls!
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Dynamic bargirl avatars –</b> all new art for Amanda, Zoe, Gina, Ping, Mem and Jib! Their appearance will update throughout the scene. This is an experiment, let us know if you want more dynamic avatars!
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Weather report –</b> fixed unlikely description of March weather in Canberra as being blazing hot (thanks chimpy321).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bug fixes & typos –</b> Fixed a bug that applied an extra layer of eyeshadow when the avatar's eyes are closed. Removed extra "for" in scene where Connor interviews the heroine for for a job (thanks Lady Alexa). Fixed an instance in Max's hotel room where the game doesn't recognise if the heroine is naked or topless (thanks Heresiarch). Tweaked dialogue between Miss Nin and Miss Lu for blonde heroines (thanks Candi34dd and Heresiarch).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.16.1 (14 Sep 2022)
<small>General release of Episode 1.16, "Fallout"</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Proper classified –</b> updated the NEPTUNE dossier in the first scene to carry correct US classification markings. (Thanks Jim S)
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bug fixes & typos –</b> changed "margaritas, margaritas and daiquiris" to "margaritas, mai tais and daiquiris" (thanks BD72). Corrected British slang "scrip" for US "script" in dialogue with Commander Perry (thanks jkl). Corrected wrong dialogue choice appearing in Signal chat with Ian (thanks playsafe). Removed extra "with" during dinner with with Max (thanks MacMichael).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Episode 1.16 "Fallout" (31 Aug 2022)
<small>Early access version for $5+ supporters. Thank you for supporting us 🥰</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Fallout –</b> deal with the consequences of the black bag job. Includes a dialogue scene written by The Lost Engineer, involving a new character invented by XIII-Death, translated by HollyGrail! Thanks guys! It takes a village to help an idiot 🤡
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Moar make up –</b> added //Apricot Fantasy, Burnt Zellige, Lady Danger, Pourpre Edgy, Rose Hip, Rose the Day, So What?, Universal Biscuit// and //Violet Vixen// lipsticks. Added //Azure Like It// and //Lemon Bomb// nail polishes.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Coming back from a game over –</b> added a back button to the end of content page, so players who save on this page can navigate back from it.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Bambi meets the boss –</b> changed the header during the date with Kriangsak to reflect if the heroine uses her stage name (thanks Nymphonomicon).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bug fixes –</b> Fixed red error during the taxi ride home in Malaysia (thanks TH and JusticeLover). Fixed typo in Yacht Guy's name (thanks playsafe). Fixed mis-spelling of "Quebecois" (merci Murmur). Corrected dialogue error referring to Sweden as a NATO member (thanks Salisria). Corrected typos in this very changelog (thanks Fishy).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.15.1 (29 Apr 2022)
<small>General release of 1.15.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Nail polish –</b> paint those piggies before a date or a work shift.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Malaysia inner monologue tweaks –</b> various subtle tweaks to the heroine's inner monologue during her encounter with Max in Malaysia, based on her kinks. These edits were written by Corneel.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Scene edits –</b> various scene edits based on player feedback.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bug fixes –</b> Stomped many bugs reported during Early Access, including the one where amethyst eyeshadow can turn her eyes demonic after orgasm. Thanks OperatorE, Sten, Sam R, Player58273, playsafe, JusticeLover69, Curious, Zariaswell, Sorter and Mister B for the bug reports!
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.15 Early Access (15 Apr 2022)
<small>Early access version of 1.15 to $5 supporters. Thank you for continuing to support Female Agent, we'll keep making it as long as you want it 🥰</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Girl On Film –</b> go deeper undercover at the Hard Cock Cafe.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.14.1 (24 Dec 2021)
<small>General release of 1.14. Merry Christmas, everybody!</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Dynamic dresses –</b> the appearance of the dress your heroine wears to meet Mr Kriangsak can change as the scene progresses.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Lipstick –</b> added two lipsticks to the makeup options. More lipsticks coming Soon™!
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Body glitter –</b> added body glitter avatar art (available sometimes in the club).
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Makeup in Malaysia –</b> added makeup options for the dinner date with Max.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Pôot paa-săa tai mâi gàyng kà-nàat nán –</b> added Thai translations to placeholder text. Thanks so much HollyGrail!
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bug fixes –</b> Stomped many bugs reported during Early Access. Thanks OperatorE, Samantha Louise, playsafe, evanthebruce, US v. Fokker Servs, Strigon888, James Malaprop, ArsenalJacob, imma-monster, Thalion, boobthief and Scottish PePe for the bug reports!
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.14 Early Access (12 Dec 2021)
<small>Early access version of 1.14 to $5 supporters. You guys made this happen, thank you so much for supporting us 🥰</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>F.N.G. –</b> the heroine strips down for her first undercover mission.
</td>
</tr>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Dinner with the Boss –</b> get to know the owner of the Hard Cock Cafe.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Makeup –</b> customise the avatar's look with mascara, eyeshadow and blusher! Because you're worth it. Lipstick coming Soon™.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Backward save compatability –</b> load your saved game from 1.13 instead of starting over from scratch.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>It sounds better in Swedish –</b> improvements to Max's Swedish dialogue (thanks to Akrane and ArsenalJacob).
</td>
</tr>
<</nobr>></table>
</div>
<div class="changelog">
<div class="release">
<header>
<br />
Version 1.13.1 (28 Sep 2021)
<small>General release of 1.13.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Wet look –</b> the avatar now gets wet skin and hair in shower & pool scenes.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Better underwiring –</b> we made some technical improvements (image preloading, script minification, server side image compression, tailored image loading 🤓) that should make the game load faster and run more smoothly.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bug fixes –</b> fixed a whole bunch of bugs and typos reported during Early Access. Thanks to YH Lin, shphinx, OperatorE, Thalion, Samantha Louise, Bread Pitt, Z794, Thorson and esclavage!
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.13 Early Access (14 Sep 2021)
<small>Early access version of 1.13 to $5 supporters. Guys ''thank you'' for making this game possible, we love you 😔 </small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Welcome to Bangkok –</b> land in Bangkok and infiltrate the Hard Cock Cafe.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>New avatar emotions –</b> we did a big visual and technical upgrade of the avatar emotions. She can now carry out a wider and subtler range of facial expressions, using 80% fewer art assets than before. This upgrade makes the avatar ready to support makeup and new skin tones (coming Soon™).
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>New hair colours –</b> added auburn and champagne/dirty blonde hair colours.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.12.1 (13 June 2021)
<small>General release of 1.12.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Sweet emotion –</b> added avatar facial expressions to scenes.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Piercing issues –</b> fixed tattoos and piercings vanishing in Max's hotel room (thanks Falloutbabe and Thorson). Choosing a nose piercing no longer breaks body customisation in the shower scene.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Me and my Shadow, Mk IV –</b> Fixed the shadow not turning around when the heroine does. (Imagine how freaky that would be in real life!) Also fixed the UI halo/glow behind the heroine sometimes disappearing.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Dialogue tweaks –</b> Max now mistakes a French Canadian agents for a Frenchwoman, not an American (thanks Antilles). The CIA chief of station in Malaysia's dialogue has been finessed to sound more American (thanks Plagioclase).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Wardrobe malfunctions –</b> The turtleneck sweater now fits all necks. After the shower, the heroine now wears one towel of the correct size, rather than all three towels at once.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.12 (31 May 2021)
<small>Early access version of 1.12 to $5 supporters. Thank you for making //Female Agent// possible, guys, we humbly appreciate it. 😔 </small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Welcome to the Task Force –</b> new story scene to set up the main mission.
</td>
</tr>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Acclimatisation Phase –</b> a revamped 1.6 side quest, featuring a nude scene and a sex scene.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>All Five Eyes –</b> added US, Australian, Canadian and Kiwi nationality options.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Wardrobe control –</b> pick your heroine's outfit for the new side quest.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Dat ass doe –</b> check out your heroine from behind using //Turn avatar// (in the top menu).
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Skinny dice roll UI –</b> redesigned the dice roll menu to be less intrusive.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.11.1 (14 Mar 2021)
<small>General release of version 1.11. Lots of bug fixes!</small>
</header>
<table><<nobr>>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Floating earrings –</b> Fixed earrings not fitting certain head shapes. Thanks Bread Pitt (who wrote an exceptionally high quality bug report).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>What did you just call me? –</b> Changed kate.shortname to kate.uni.shortname. Thanks TimF.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Top Secret –</b> Lots of <b>CLASSIFIED</b> bugfixes, Thanks Cooldevo, Tommy N, Thorson!
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Level Up! –</b> Improved level calculation logic and display in the Character Sheet.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Cold and Calculating –</b> Fixed wrong emotion in uni selection. Thanks Mister B.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Content Division Elements? –</b> Fixed Multiple Divs in hottub scene. Thanks CoolDevo!
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Spring Cleaning –</b> Removed many unnecessary files to keep file size down. Cleaned up variables used in Character Sheet.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Moving Day –</b> Restructered and moved many internal folders.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Loss of Face –</b> Fixed bug where the age18 avatar would not have a faceshape. Thanks Bread Pitt!
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.11 (28 Feb 2021)
<small>Early access version of 1.11 to $5 supporters.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Freshman Year –</b> your heroine's going to university! Experience her first year at either Cardiff, Durham or Oxford, including three optional sex scenes.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Emotional avatar –</b> the avatar now reacts emotionally to scenes.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Six pack –</b> sporty & conscientious heroines can develop six pack abs! Join the volleyball squad at uni to unlock this option.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Character sheet –</b> keep track of your Attributes and Skills on the all-new character sheet! More features coming soon.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>New dice roll UI –</b> made the dice roll information clearer for you (thanks Etceterotica).
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Freckles –</b> added a new Freckles quirk that...well, click it and see.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Old school D4s –</b> changed the appearance of the 4-sided dice to be more readable to grognards.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Age 16 nose job –</b> fixed a visual glitch with the heroine's nose at age 16.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Pardon my French –</b> further improved the French language dialogue in Montreux. (Thanks Corneel and Al2001 – it has now taken three people to fix my bad French).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.10.1 (14 Jan 2021)
<small>General release of version 1.10. Lots of bug fixes!</small>
</header>
<table><<nobr>>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Floating tattoos –</b> fixed certain tattoos and piercings floating in mid-air when Lena puts Kate into bondage (thanks Danny Cal and others).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Je m'appelle Crushstation –</b> corrected some of my bad French in the Montreux scenes (thanks Tuko).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Diamond Eyes –</b> fixed a graphics glitch when combining //wide// eyes with the //diamond// face shape (thanks Bread Pitt).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Hold still while I do this, sweetie –</b> repositioned the left nipple piercing for agents with //medium// boobs.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Montreux partners roll –</b> fixed dice roll for random partners in Montreux not happening (thanks Stefan K).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Montreux is not in London –</b> fixed location header not updating when the heroine moves to Montreux (thanks Stefan K).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Bethan is not Stacey –</b> fixed text referring to the wrong NPC in the Prom Queen scene (thanks Stefan K).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.10 (31 Dec 2020)
<small>Early access release to $5+ supporters. Adds three new foreign adventures.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Finishing School –</b> added one nude scene and one sex scene for heroines from the //elite// social class.
</td>
</tr>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Bless the Rains –</b> added one nude scene and one sex scene for //middle class// heroines.
</td>
</tr>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Confessions of a Holiday Rep –</b> added one nude scene and one sex scene for //working class// heroines.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Worth 1,000 words –</b> added location photography to various scenes.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.9.1 (14 Dec 2020)
<small>General release of version 1.9.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Dynamic heels –</b> wearing high heels now boosts the avatar's height.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.9 (30 Nov 2020)
<small>Age 18 scenes, new avatar customisation options, and popup notifications.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>18 and I Like It –</b> your heroine turns 18 in this update! Develop her backstory, and play through her first sex scene.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>For life –</b> ink up with 25 new tattoo options.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Bling Bling –</b> puncture your body in up to 15 places with the new body piercing options.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Best kept lady garden 2010 –</b> choose from 7 bikini line styles.
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>You have 25 new notifications!</b> Critical Update Notification Tool added.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>New avatar artwork –</b> added more than 170 avatar artwork items.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Supersize me –</b> new XXL and XXS avatar size options added to the Settings menu.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>New Quirks –</b> added new Quirks you can select during character creation.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Studying's for nerds –</b> the number of GCSE exams your heroine takes will vary based on her Conscientiousness score.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Hidden start button –</b> fixed a bug that hid the "Create a Character" button on very wide screens.
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Edgware Road –</b> fixed the spelling of this famous road in London (thanks Lyn-chan).
</td>
</tr>
<tr>
<td>
<<fixIcon>>
</td>
<td>
<b>Permanent Buns –</b> no more permanent Leia buns for you! (thanks Lyn-chan).
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.8 (31 Oct 2020)
<small>Early backstory scenes and dice roller.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newSceneIcon>>
</td>
<td>
<b>Early backstory –</b> play through your heroine's childhood and teens. We added new mini-quests and lots of avatar art for <i>sports stars, geek girls, alpha females</i> and <i>rock chicks.</i>
</td>
</tr>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>That's how we roll –</b> rolling dice is one of the most fun parts of a tabletop roleplaying game! We added a dice roller to make action scenes more engaging.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Version 1.7 (6 Oct 2020)
<small>Launch of new UI, avatar and refactored source code.</small>
</header>
<table><<nobr>>
<tr>
<td>
<<newFeatureIcon>>
</td>
<td>
<b>Quirks –</b> a new system, offering more ways to customise your heroine at the start of the game.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Low Maintenance Avatar –</b> we redrew the avatar so she's more beautiful, but much easier for us to create clothes and makeup for.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>New user interface –</b> we redesigned the UI, to make the whole game look and play better.
</td>
</tr>
<tr>
<td>
<<improvementIcon>>
</td>
<td>
<b>Refactored source code –</b> we rebuilt the source code, so we can add new scenes faster.
</td>
</tr>
<</nobr>></table>
</div>
<div class="release">
<header>
<br />
Earlier versions
</header>
<div class="changelog-link">
You can still play the <a href="https://www.femaleagentgame.com/download/">previous version</a> (1.6), which has all the old story content.
</div>
</div>
</div>
<</page>>
<</nobr>><<set setup.englishSurnames to [
'Adams',
'Allen',
'Anderson',
'Atkinson',
'Bailey',
'Baker',
'Barker',
'Barnes',
'Bell',
'Bennett',
'Brooks',
'Brown',
'Burton',
'Butler',
'Campbell',
'Carnarvon',
'Carter',
'Chapman',
'Clarke',
'Cole',
'Collins',
'Cook',
'Cooper',
'Cox',
'Davies',
'Dawson',
'Day',
'Edwards',
'Ellis',
'Evans',
'Fisher',
'Fletcher',
'Ford',
'Foster',
'Frost',
'Gibson',
'Graham',
'Gray',
'Green',
'Griffiths',
'Hall',
'Harris',
'Harrison',
'Harvey',
'Hill',
'Holmes',
'Hughes',
'Hunt',
'Jackson',
'James',
'Jenkins',
'Johnson',
'Jones',
'King',
'Knight',
'Lee',
'Lewis',
'Lloyd',
'Lowe',
'Marshall',
'Martin',
'Mason',
'Matthews',
'Miller',
'Mills',
'Mitchell',
'Moore',
'Morgan',
'Morris',
'Murphy',
'Murray',
'Owen',
'Palmer',
'Parker',
'Payne',
'Pearson',
'Phillips',
'Powell',
'Price',
'Reid',
'Reynolds',
'Richardson',
'Roberts',
'Robinson',
'Rogers',
'Russell',
'Saunders',
'Scott',
'Sharpe',
'Shaw',
'Simpson',
'Smith',
'Stevens',
'Stewart',
'Taylor',
'Thomas',
'Thompson',
'Turner',
'Walker',
'Walsh',
'Ward',
'Watson',
'Webb',
'West',
'White',
'Wilkinson',
'Williams',
'Wilson',
'Wood',
'Wright',
'Yates',
'Yeoman',
'Young'
]>>
<<set setup.englishFemaleFirstnames1990s to [
'Abbie',
'Aimee',
'Alexandra',
'Alice',
'Amelia',
'Amy',
'Anna',
'Ashleigh',
'Beth',
'Bethan',
'Caitlyn',
'Catherine',
'Chantelle',
'Charlotte',
'Chloe',
'Claire',
'Courtney',
'Danielle',
'Demi',
'Eleanor',
'Ellen',
'Ellie',
'Emily',
'Emma',
'Francesca',
'Gabrielle',
'Gemma',
'Georgina',
'Harriet',
'Heather',
'Helen',
'Hollie',
'Holly',
'Imogen',
'Jade',
'Jasmine',
'Jennifer',
'Jessica',
'Joanna',
'Jodie',
'Jordan',
'Katherine',
'Kate',
'Katie',
'Kayleigh',
'Kelly',
'Kerry',
'Kimberley',
'Kirsty',
'Lauren',
'Leah',
'Leanne',
'Lily',
'Lisa',
'Louise',
'Lucy',
'Lydia',
'Maria',
'Megan',
'Melissa',
'Molly',
'Naomi',
'Natalie',
'Natasha',
'Nicola',
'Nicole',
'Olivia',
'Paige',
'Rachael',
'Rebecca',
'Robyn',
'Rosie',
'Samantha',
'Sian',
'Sophie',
'Stacey',
'Stephanie',
'Toni',
'Victoria',
'Yasmin',
'Zoe'
]>>
<<set setup.canadianFirstname to [
'Alexis',
'Allison',
'Amy',
'Angélique',
'Annabelle',
'Annalise',
'Anne',
'Christine',
'Courtney',
'Crystal',
'Daina',
'Darlene',
'Deanna',
'Devon',
'Elise',
'Emily',
'Erin',
'Eva',
'Evelyn',
'Ginny',
'Holly',
'Janine',
'Jeananne',
'Jennifer',
'Jessica',
'Jill',
'Jo',
'Joanne',
'Kate',
'Keeley',
'Kelly',
'Kelsey',
'Kimberlyn',
'Leanne',
'Lindsay',
'Lisa',
'Lizzie',
'Lizzy',
'Lynda',
'Megan',
'Melissa',
'Modesty',
'Monica',
'Paige',
'Peggy',
'Rachel',
'Ramona',
'Renee',
'Rose',
'Ruth',
'Sadie',
'Samantha',
'Sarah',
'Sarah-Jayne',
'Sharon',
'Stacey',
'Stella',
'Susie',
'Tanya'
]>>
<<set setup.canadianSurname to [
'Belbin',
'Bettrill',
'Blaise',
'Borden',
'Boudrais',
'Brown',
'Brydon',
'Cartwright',
'Cockburn',
'Crawford',
'Daniels',
'Finch',
'Foster',
'Flowers',
'Frechette',
'Gough',
'Groves',
'Gregg',
'Greene',
'Hail',
'Haliwell',
'Hartley',
'Hefford',
'Heymans',
'Holmes',
'Hughes',
'Humphries',
'Hunter',
'Irwin',
'James',
'Johnston',
'Jones',
'Kellar',
'Kingsbury',
'Klassen',
'Knight',
'Labonte',
'Lauscher',
'Leroux',
'MacLeod',
'McCoy',
'McCrow',
'McIvor',
'May',
'Mikkelson',
'Moyse',
'Murphy',
'Nesbitt',
'Oullette',
'Overland',
'Perreault',
'Poulin',
'Pierce',
'Premont',
'Renner',
'Ricker',
'Roberge',
'Robichaud',
'Rochette',
'Sanchez',
'St-Gelais',
'St-Pierre',
'Stoddard',
'Sutherland',
'Upperton',
'Vaillancourt',
'van Halden',
'van Houten',
'Verbeek',
'Vincent',
'Waldorf',
'Walker',
'Ward',
'Watson',
'Weatherston',
'Webb',
'Whitney',
'Wickenheiser'
]>>
<<set setup.ausNZFirstname to [
'Alexis',
'Ally',
'Amy',
'Anna',
'Annabelle',
'Becky',
'Bella',
'Beth',
'Beverly',
'Bronwyn',
'Caitlin',
'Carla',
'Caroline',
'Cat',
'Cathy',
'Catherine',
'Charlene',
'Chloe',
'Chris',
'Christina',
'Christine',
'Colette',
'Courtney',
'Daisy',
'Daphne',
'Debbie',
'Dee',
'Donna',
'Elise',
'Elly',
'Emily',
'Emma',
'Erin',
'Eva',
'Eve',
'Evelyn',
'Fay',
'Gayle',
'Gemma',
'Georgia',
'Gillian',
'Hannah',
'Helen',
'Holly',
'Hope',
'Isabella',
'Jackie',
'Jade',
'Jaime',
'Jasmine',
'Jess',
'Jessica',
'Jo',
'Joanna',
'Jody',
'Kate',
'Katie',
'Katya',
'Keeley',
'Kendall',
'Kerry',
'Kimberlyn',
'Krista',
'Kim',
'Lara',
'Laura',
'Lauren',
'Libby',
'Linda',
'Lily',
'Lisa',
'Lizzie',
'Lizzy',
'Lorraine',
'Lucy',
'Madeleine',
'Melissa',
'Miranda',
'Natalie',
'Nell',
'Nicola',
'Nicolette',
'Nikki',
'Paige',
'Phoebe',
'Piper',
'Rachel',
'Raelee',
'Ramona',
'Rebecca',
'Rose',
'Rosie',
'Ruth',
'Sadie',
'Sarah',
'Saskia',
'Scarlett',
'Serena',
'Sharon',
'Sheila',
'Sheridan',
'Sienna',
'Simone',
'Sky',
'Sonya',
'Sophie',
'Stella',
'Steph',
'Stephanie',
'Summer',
'Susan',
'Tabitha',
'Teresa',
'Tessa',
'Tess',
'Tiffany',
'Zoe'
]>>
<<set setup.ausNZSurname to [
'Allen',
'Anderson',
'Atkins',
'Barnes',
'Beaumont',
'Bell',
'Bishop',
'Borden',
'Brennan',
'Bright',
'Brooks',
'Brown',
'Buckingham',
'Burke',
'Canning',
'Carpenter',
'Cartwright',
'Clarke',
'Cole',
'Daniels',
'Davies',
'Dennison',
'Duncan',
'Elliot',
'Finch',
'Fitzgerald',
'Flowers',
'Foster',
'Freedman',
'Gannon',
'Greenwood',
'Griggs',
'Haliwell',
'Hancock',
'Handley',
'Harris',
'Hartman',
'Healey',
'Holmes',
'Hyland',
'Hudson',
'Hunter',
'Jarrett',
'Jones',
'Kennedy',
'Kirk',
'Knight',
'Landers',
'Lawson',
'Maloney',
'Marshall',
'Martin',
'McClain',
'McCoy',
'McCrow',
'McLachlan',
'Mitchell',
'Napier',
'O\'Brien',
'O\'Neill',
'Parker',
'Pearson',
'Ramsay',
'Reeves',
'Rhodes',
'Riley',
'Robinson',
'Samuels',
'Sanchez',
'Scully',
'Stark',
'Steiger',
'Stoddard',
'Timmins',
'Tucker',
'Turner',
'Tyler',
'Upton',
'van Halden',
'van Houten',
'Villante',
'Waldorf',
'Walker',
'Watson',
'Watts',
'Webb',
'Wells',
'West',
'Whitney',
'Wilkinson',
'Williams',
'Willis',
'Yeats',
'Young'
]>>
<<set setup.usFirstname to [
'Abi',
'Abigail',
'Addison',
'Alex',
'Alexis',
'Allison',
'Amelia',
'Amy',
'Anna',
'Annabelle',
'Aria',
'Ava',
'Avery',
'Ash',
'Ashley',
'Autumn',
'Bella',
'Brianna',
'Britney',
'Brooklyn',
'Charlie',
'Charlotte',
'Chloe',
'Chris',
'Christine',
'Claire',
'Cora',
'Denise',
'Elise',
'Elizabeth',
'Ella',
'Ellie',
'Emma',
'Emily',
'Eva',
'Evelyn',
'Faith',
'Gabrielle',
'Gianna',
'Grace',
'Hadley',
'Hailey',
'Hannah',
'Harper',
'Hazel',
'Holly',
'Ivy',
'Jessica',
'Kat',
'Kate',
'Kayla',
'Kaylee',
'Keeley',
'Kendall',
'Kennedy',
'Kimberlyn',
'Kinsley',
'Kylie',
'Layla',
'Leah',
'Lillian',
'Lily',
'Liv',
'Liz',
'Lizzie',
'Lizzy',
'Lucy',
'Mackenzie',
'Madelyn',
'Madison',
'Maya',
'Mia',
'Mila',
'Molly',
'Monica',
'Morgan',
'Naomi',
'Natalie',
'Nicole',
'Norah',
'Olivia',
'Peyton',
'Piper',
'Phoebe',
'Rachel',
'Ramona',
'Riley',
'Rose',
'Ruth',
'Sadie',
'Samantha',
'Sara',
'Sarah',
'Savannah',
'Scarlett',
'Skylar',
'Sophia',
'Stella',
'Taylor',
'Teagan',
'Tori',
'Vanessa',
'Victoria',
'Willow',
'Zoe',
'Zoey'
]>>
<<set setup.usSurname to [
'Adams',
'Allen',
'Anderson',
'Bailey',
'Baker',
'Bennett',
'Borden',
'Brown',
'Campbell',
'Carter',
'Cartwright',
'Clark',
'Clayton',
'Collins',
'Cook',
'Cooper',
'Daniels',
'Davis',
'Edwards',
'Evans',
'Finch',
'Fisher',
'Flowers',
'Foster',
'Green',
'Haliwell',
'Hall',
'Hill',
'Harris',
'Holmes',
'Hughes',
'Hunter',
'Jackson',
'Kelly',
'King',
'Knight',
'Jones',
'Lee',
'Lewis',
'Long',
'Martin',
'McCoy',
'McCrow',
'Miller',
'Mitchell',
'Moore',
'Morris',
'Murphy',
'Myers',
'Nelson',
'North',
'Parker',
'Peterson',
'Phillips',
'Johnson',
'Jones',
'Reed',
'Roberts',
'Robinson',
'Rogers',
'Sanchez',
'Scott',
'Smith',
'Stewart',
'Stoddard',
'Sullivan',
'Taylor',
'Thomas',
'Thompson',
'Turner',
'Waldorf',
'Walker',
'Ward',
'Webb',
'Weiland',
'Watson',
'White',
'Whitney',
'Williams',
'Wilson',
'Wood',
'Wright',
'Young'
]>>
<<set setup.britFirstname to [
'Abbey',
'Abi',
'Addison',
'Alexis',
'Alice',
'Amanda',
'Amelia',
'Amy',
'Andrea',
'Angela',
'Angelica',
'Angelina',
'Anna',
'Annabelle',
'Antonia',
'Aria',
'Ashley',
'Ashlyn',
'Audrey',
'Bailey',
'Becky',
'Bella',
'Bethany',
'Beverley',
'Billie',
'Brittany',
'Brooke',
'Bryony',
'Callie',
'Camilla',
'Caroline',
'Cassandra',
'Cat',
'Catherine',
'Charley',
'Charlie',
'Charlotte',
'Chelsea',
'Chloe',
'Chris',
'Christine',
'Christy',
'Claire',
'Clare',
'Clarissa',
'Claudia',
'Daisy',
'Dawn',
'Diane',
'Edie',
'Eleanor',
'Elise',
'Eliza',
'Elizabeth',
'Ella',
'Ellen',
'Ellie',
'Emilia',
'Emily',
'Emma',
'Eva',
'Eve',
'Evelyn',
'Fawn',
'Fay',
'Fern',
'Florence',
'Freya',
'Gail',
'Gemma',
'Georgia',
'Grace',
'Hadley',
'Haley',
'Hannah',
'Harper',
'Harriet',
'Hazel',
'Hayley',
'Heather',
'Helen',
'Holly',
'Hunter',
'Imogen',
'Isabelle',
'Isla',
'Ivy',
'Jane',
'Jasmine',
'Jayne',
'Jess',
'Jessica',
'Jill',
'Jo',
'Julia',
'Juliet',
'Kat',
'Kate',
'Katherine',
'Katie',
'Katy',
'Kaye',
'Keeley',
'Kelly',
'Kendall',
'Kimberly',
'Kirsty',
'Laura',
'Leah',
'Leanne',
'Libby',
'Lily',
'Linda',
'Lindsay',
'Lisa',
'Liz',
'Lizzie',
'Lizzy',
'Louise',
'Lucy',
'Maddie',
'Madison',
'Maisie',
'Maitland',
'Marissa',
'Maggie',
'Megan',
'Melanie',
'Michelle',
'Millie',
'Molly',
'Olivia',
'Paige',
'Peony',
'Penny',
'Piper',
'Polly',
'Poppy',
'Queenie',
'Rachel',
'Ramona',
'Rebecca',
'Riley',
'Robyn',
'Rosa',
'Rose',
'Rosie',
'Rowan',
'Ruby',
'Ruth',
'Sadie',
'Saffron',
'Sally',
'Sam',
'Samantha',
'Sara',
'Sarah',
'Scarlett',
'Sidney',
'Skylar',
'Sophia',
'Sophie',
'Stella',
'Summer',
'Susannah',
'Vanessa',
'Veronica',
'Victoria',
'Virginia',
'Wednesday',
'Whitney',
'Willow',
'Zara',
'Zoe'
]>>
<<set setup.britSurname to [
'Abbott',
'Ackland',
'Adair',
'Adams',
'Addams',
'Adderley',
'Addington',
'Addison',
'Ainsworth',
'Aitken',
'Aldrich',
'Allen',
'Allport',
'Allsopp',
'Anderson',
'Andrews',
'Armstrong',
'Atkinson',
'Bailey',
'Baker',
'Barker',
'Barnes',
'Bell',
'Bennett',
'Berry',
'Booth',
'Borden',
'Bradley',
'Brooks',
'Brown',
'Butler',
'Campbell',
'Carnarvon',
'Carter',
'Cartwright',
'Chambers',
'Chapman',
'Clark',
'Clarke',
'Cole',
'Collins',
'Cooper',
'Cox',
'Cunningham',
'Daniels',
'Davies',
'Davis',
'Dawson',
'Dean',
'Dixon',
'Edwards',
'Ellis',
'Evans',
'Finch',
'Fisher',
'Flowers',
'Foster',
'Fox',
'Gardner',
'Gibson',
'Gill',
'Gordon',
'Graham',
'Grant',
'Gray',
'Green',
'Griffiths',
'Haliwell',
'Hall',
'Hamilton',
'Harris',
'Harrison',
'Hart',
'Harvey',
'Hill',
'Holmes',
'Hudson',
'Hughes',
'Hunt',
'Hunter',
'Jackson',
'James',
'Jenkins',
'Johnson',
'Johnston',
'Jones',
'Kelly',
'Kennedy',
'King',
'Knight',
'Lane',
'Lawrence',
'Lawson',
'Lee',
'Lewis',
'Lloyd',
'Macdonald',
'Marshall',
'Martin',
'Mason',
'Matthews',
'McCoy',
'McCrow',
'Miller',
'Mills',
'Mitchell',
'Moore',
'Morgan',
'Morris',
'Murphy',
'Murray',
'Norton',
'Owen',
'Palmer',
'Parker',
'Pearce',
'Pearson',
'Phillips',
'Poole',
'Powell',
'Price',
'Reid',
'Reynolds',
'Richards',
'Roberts',
'Robertson',
'Robinson',
'Rogers',
'Ross',
'Russell',
'Ryan',
'Sanchez',
'Saunders',
'Scott',
'Shaw',
'Simpson',
'Smith',
'Spencer',
'Stevens',
'Stewart',
'Stoddard',
'Stone',
'Taylor',
'Thomas',
'Thompson',
'Thomson',
'Turner',
'van Halden',
'van Houten',
'Waldorf',
'Walker',
'Walsh',
'Ward',
'Watson',
'Watts',
'Webb',
'Wells',
'West',
'White',
'Whitney',
'Wilkinson',
'Williams',
'Williamson',
'Wilson',
'Wood',
'Wright',
'Young'
]>>
<<set setup.maleScottishFirstnames to [
'Jack',
'Ollie',
'James',
'Jimmy',
'Lewis',
'Alex',
'Charlie',
'Lucas',
'Luke',
'Dan',
'Fin',
'Jake',
'Leo',
'Harry',
'Alfie',
'Callum',
'Aaron',
'Adam',
'Tom',
'Ethan',
'Rory',
'Oscar',
'Matt',
'Nate',
'Josh',
'Brodie',
'Will',
'Billy',
'Liam',
'Ryan',
'Jamie',
'Joe',
'Dylan',
'Sam',
'David',
'Dave',
'Andy',
'Connor',
'Ben',
'Michael',
'Mike',
'Angus',
'Jude',
'Robbie',
'Paul',
'Peter',
'Pete',
'Jim']>>
<<set setup.scottishSurnames to [
'Smith',
'Brown',
'Wilson',
'Thomson',
'Robertson',
'Campbell',
'Anderson',
'Macdonald',
'Reid',
'Murray',
'Taylor',
'Clark',
'Mitchell',
'Ross',
'Walker',
'Paterson',
'Young',
'Watson',
'Morrison',
'Miller',
'Fraser',
'Davidson',
'Gray',
'McDonald',
'Henderson',
'Johnston',
'Hamilton',
'Kerr',
'Simpson',
'Martin',
'Ferguson',
'Cameron',
'Duncan',
'Hunter',
'Kelly',
'Bell',
'Mackenzie',
'Mackay',
'Allan',
'Black',
'Macleod',
'Maclean',
'Russell',
'Gibson',
'Wallace',
'Gordon']>>
<<set setup.swedishMaleFirstnames to [
"Acke",
"Adam",
"Adrian",
"Ake",
"Albin",
"Alex",
"Alexander",
"Alfred",
"Algot",
"Alvar",
"Alvin",
"Ame",
"Anderson",
"Andreas",
"Ansgar",
"Anton",
"Aron",
"Arvid",
"August",
"Axel",
"Balder",
"Baldhere",
"Beck",
"Bengt",
"Benjamin",
"Birger",
"Boje",
"Bore",
"Bosse",
"Bota",
"Botild",
"Brictwen",
"Burr",
"Caj",
"Calle",
"Carl",
"Casper",
"Caspian",
"Cenn",
"Charlie",
"Christer",
"Claes",
"Colin",
"Daavid",
"Dag",
"Daniel",
"David",
"Didrik",
"Dolph",
"Ebbe",
"Eddie",
"Edvard",
"Edvin",
"Edward",
"Egil",
"Egonia",
"Ehrenfried",
"Eidef",
"Eilhard",
"Einar",
"Elfred",
"Elias",
"Elimar",
"Elis",
"Elling",
"Elliot",
"Elof",
"Elton",
"Elvin",
"Emil",
"Engelard",
"Enok",
"Erik",
"Erling",
"Eugen",
"Eyvind",
"Felix",
"Filip",
"Finnick",
"Fiske",
"Flor",
"Folke",
"Frank",
"Frans",
"Fredrik",
"Fritjof",
"Gabriel",
"Geat",
"Georg",
"Gerhard",
"Gjord",
"Gosta",
"Gottfrid",
"Greger",
"Gudmund",
"Gunne",
"Guppa",
"Gustaff",
"Gustav",
"Gustave",
"Gusten",
"Haldo",
"Halen",
"Halvar",
"Hampus",
"Hannus",
"Harald",
"Hariulf",
"Harry",
"Hasse",
"Helmar",
"Hemming",
"Hendrik",
"Henke",
"Henry",
"Heorrenda",
"Hilmar",
"Hjalmar",
"Holger",
"Hugo",
"Ingemar",
"Ingolf",
"Isak",
"Ivar",
"Jack",
"Jacob",
"Jager",
"Janne",
"Jerk",
"Jerker",
"Joel",
"Joh",
"John",
"Jonathan",
"Josef",
"Julian",
"Jurdik",
"Kare",
"Kettil",
"Kevin",
"Kian",
"Kjell",
"Klas",
"Lasse",
"Lau",
"Lennart",
"Leo",
"Leon",
"Levi",
"Liam",
"Lias",
"Lindbergh",
"Linnaeus",
"Linne",
"Linnel",
"Linus",
"Loke",
"Lorens",
"Loui",
"Love",
"Lucas",
"Ludde",
"Ludvig",
"Magnar",
"Magne",
"Malte",
"Marric",
"Mats",
"Matteo",
"Max",
"Maximilian",
"Melker",
"Melvin",
"Mikkel",
"Milian",
"Milo",
"Milton",
"Mio",
"Nichlas",
"Nicolas",
"Niklas",
"Nils",
"Noah",
"Noel",
"Ohthere",
"Olander",
"Olaus",
"Olin",
"Oliver",
"Olle",
"Ollen",
"Olof",
"Omar",
"Ongentheow",
"Onlaf",
"Orpheus",
"Oscar",
"Oskar",
"Otto",
"Peder",
"Peer",
"Peik",
"Pelle",
"Per",
"Povel",
"Ragnar",
"Randulf",
"Rasmus",
"Regitze",
"Reimond",
"Reno",
"Rikke",
"Rikki",
"Roffe",
"Ruben",
"Rubert",
"Runar",
"Rurik",
"Salomon",
"Sam",
"Samuel",
"Sebastian",
"Sellen",
"Siger",
"Sigge",
"Sigstein",
"Sigvard",
"Simme",
"Simon",
"Sivert",
"Sixten",
"Staffan",
"Stefan",
"Stellan",
"Sten",
"Stian",
"Stieg",
"Stig",
"Stigr",
"Strom",
"Sture",
"Svante",
"Sven",
"Tage",
"Theo",
"Theodor",
"Thobias",
"Thor",
"Torbjorn",
"Tordis",
"Tore",
"Torgny",
"Ture",
"Ulf",
"Valter",
"Vidar",
"Viggo",
"Viktor",
"Vilgot",
"Ville",
"Vincent",
"Wilhelm",
"William",
"Wilmer"]>>
<<set setup.italianMaleFirstnames to [
"Adalberto",
"Agatho",
"Ale",
"Alessandro",
"Alessio",
"Alfio",
"Amadeo",
"Ambrogio",
"Amedeo",
"Amerigo",
"Andrea",
"Angelo",
"Antonio",
"Aretino",
"Aristide",
"Armani",
"Arrigo",
"Arsenio",
"Attilio",
"Aurelio",
"Benedetto",
"Benito",
"Benvenuto",
"Biaggio",
"Biondello",
"Bonavento",
"Borachio",
"Braulio",
"Bronze",
"Cajetan",
"Carmelo",
"Carmine",
"Celesto",
"Celso",
"Cesare",
"Christian",
"Cirrillo",
"Colombo",
"Colonel",
"Constanzo",
"Cornelio",
"Corrado",
"Cosimo",
"Cristian",
"Cristiano",
"Daniel",
"Daniele",
"Danilo",
"Dante",
"Davide",
"Demarco",
"Demonte",
"Deusdedit",
"Diego",
"Dino",
"Domenico",
"Donatello",
"Donato",
"Donus",
"Durante",
"Edoardo",
"Elia",
"Emanuele",
"Emilio",
"Enzo",
"Ercole",
"Eriberto",
"Ermanno",
"Ettore",
"Eugenio",
"Fabio",
"Fabrizio",
"Falito",
"Faustino",
"Fausto",
"Federico",
"Filippo",
"Fiorello",
"Flavio",
"Fleance",
"Floritzel",
"Fortino",
"Francesco",
"Franco",
"Gabriel",
"Gabriele",
"Gaetano",
"Galileo",
"Genovese",
"Geronimo",
"Giacomo",
"Giambattista",
"Giancarlo",
"Gianni",
"Gino",
"Gioacchino",
"Gioele",
"Giorgio",
"Giovanni",
"Giuliano",
"Giulio",
"Giuseppe",
"Gratiano",
"Honorius",
"Hormisdas",
"Hortensio",
"Indro",
"Jacopo",
"Jenoah",
"Lando",
"Lazzaro",
"Leonardo",
"Lombardi",
"Lorenzo",
"Luca",
"Luciano",
"Lucio",
"Luigi",
"Manuel",
"Marcello",
"Marco",
"Mariano",
"Marino",
"Mario",
"Martino",
"Massimo",
"Matteo",
"Mattia",
"Maurizio",
"Mauro",
"Maury",
"Mercury",
"Messala",
"Michelangelo",
"Michele",
"Napoleon",
"Nazario",
"Nek",
"Nero",
"Nicola",
"Nicolo",
"Nino",
"Nuncio",
"Othello",
"Ottavio",
"Paco",
"Palmiro",
"Pancrazio",
"Paolo",
"Paris",
"Pasquale",
"Philario",
"Pietro",
"Pino",
"Pisano",
"Placido",
"Porfirio",
"Primo",
"Proculeius",
"Prospero",
"Raffaele",
"Renato",
"Renzo",
"Riccardo",
"Rocco",
"Romano",
"Romeo",
"Romolo",
"Ruggerio",
"Salvatore",
"Samuel",
"Samuele",
"Santino",
"Santo",
"Saverio",
"Sebastiano",
"Sergio",
"Severin",
"Severino",
"Severo",
"Silvano",
"Silvestro",
"Silvio",
"Simone",
"Solanio",
"Soren",
"Stefano",
"Taddeo",
"Tancredo",
"Thomas",
"Tito",
"Tommaso",
"Tonio",
"Ugo",
"Umberto",
"Valentino",
"Valerio",
"Venezio",
"Ventura",
"Venturo",
"Vesuvio",
"Vincenzo",
"Vitale",
"Vitalian",
"Vito",
"Vittorio",
"Zanebono",
"Zanipolo"]>>
<<set setup.japaneseMaleFirstnames to [
"Aito",
"Akio",
"Akira",
"Aoto",
"Banko",
"Banzan",
"Bassui",
"Benjiro",
"Botan",
"Chimon",
"Chotan",
"Dai",
"Daichi",
"Daido",
"Dai-In",
"Daiki",
"Daisuke",
"Doryo",
"Eiichi",
"Eiji",
"Eita",
"Eito",
"Engu",
"Enki",
"Enmei",
"Eryu",
"Fudoki",
"Fujita",
"Fumihiro",
"Genko",
"Giichi",
"Goro",
"Hakaku",
"Hansuke",
"Haru",
"Haruki",
"Haruma",
"Haruto",
"Hayato",
"Hibiki",
"Hideaki",
"Hideo",
"Hikaru",
"Hinata",
"Hiroaki",
"Hirohito",
"Hiroki",
"Hiromasa",
"Hiromichi",
"Hiromitsu",
"Hironori",
"Hiroshi",
"Hiroto",
"Hiroyuki",
"Hisao",
"Hisashi",
"Hisato",
"Hisoka",
"Hitomu",
"Hitoshi",
"Hoshi",
"Hyousuke",
"Iachima",
"Ibuki",
"Ichiro",
"Ikki",
"Isao",
"Itsu",
"Itsuki",
"Itsuo",
"Izumi",
"Jikai",
"Jiro",
"Jiryu",
"Joben",
"Joji",
"Jomei",
"Junichiro",
"Kado",
"Kaisha",
"Kaito",
"Kakumyo",
"Kanaye",
"Kando",
"Kane",
"Kaori",
"Katsumi",
"Kazue",
"Kazumi",
"Kazuo",
"Keitaro",
"Kentaro",
"Kenzou",
"Kin",
"Kishi",
"Kisho",
"Kiyoshi",
"Kobe",
"Kogen",
"Koichi",
"Koji",
"Koki",
"Kosei",
"Kosuke",
"Kota",
"Kouichi",
"Kousuke",
"Kozan",
"Makoto",
"Mamoru",
"Manato",
"Manzo",
"Mareo",
"Maro",
"Masahiro",
"Masakazu",
"Masao",
"Masato",
"Masatoshi",
"Michio",
"Minato",
"Minoru",
"Mitsue",
"Montaro",
"Morio",
"Mugen",
"Mu-nan",
"Nan Shin",
"Naoki",
"Naoko",
"Naoyuki",
"Naozumi",
"Natsuo",
"Noritaka",
"Oki",
"Raiden",
"Raidon",
"Rei",
"Reiji",
"Ren",
"Rento",
"Riichi",
"Riku",
"Rikuto",
"Ringo",
"Roka",
"Ronin",
"Rui",
"Ryo",
"Ryogi",
"Ryoichi",
"Ryota",
"Ryozo",
"Ryuga",
"Ryuichi",
"Ryuki",
"Ryusei",
"Ryuto",
"Saburo",
"Sachihiro",
"Seiichi",
"Seiko",
"Senichi",
"Shinichi",
"Shiro",
"Shoichi",
"Shoma",
"Shota",
"Shuichi",
"Shunichi",
"Shunsuke",
"Shusuke",
"Soma",
"Sora",
"Soshi",
"Sosuke",
"Sota",
"Souji",
"Subaru",
"Tadaaki",
"Tadashi",
"Taichi",
"Taiga",
"Taisei",
"Takahiro",
"Takeru",
"Takeshi",
"Taku",
"Takumi",
"Taro",
"Tatsuki",
"Tatsuo",
"Tatsuya",
"Tetsu",
"Toma",
"Tomiichi",
"Tomo",
"Tomohiro",
"Tomomi",
"Toshiro",
"Toyo",
"Tsubasa",
"Tsukiya",
"Unkan",
"Usaku",
"Washi",
"Yamato",
"Yasahiro",
"Yasashiku",
"Yasuhiro",
"Yasuo",
"Yemon",
"Yo",
"Yogi",
"Yokuto",
"Yoshi",
"Yoshiaki",
"Yoshifumi",
"Yoshihiro",
"Yoshiki",
"Yoshimi",
"Yoshio",
"Yosuke",
"Yousuke",
"Yuito",
"Yuki",
"Yukio",
"Yuma",
"Yusei",
"Yushin",
"Yuta",
"Yutaka",
"Yuto",
"Zen"]>>
<<set setup.germanMaleFirstnames to [
"Aadne",
"Aaron",
"Aart",
"Abbe",
"Abbey",
"Abbot",
"Abbott",
"Abelard",
"Abelino",
"Abell",
"Abidin",
"Abie",
"Abijah",
"Abramo",
"Absalom",
"Absalon",
"Aby",
"Achaz",
"Achim",
"Acwulf",
"Ad",
"Adaire",
"Adal",
"Adalbeorht",
"Adalbert",
"Adalbrecht",
"Adalbrechta",
"Adalfieri",
"Adalgar",
"Adalhard",
"Adalheid",
"Adaliz",
"Adalric",
"Adalrik",
"Adalwen",
"Adalwin",
"Adalwine",
"Adalwolf",
"Adalwolfa",
"Adar",
"Addaley",
"Addie",
"Addler",
"Ade",
"Adelar",
"Adelard",
"Adelbert",
"Adelbrecht",
"Adelgund",
"Adelgunde",
"Adelhard",
"Adelhild",
"Adelis",
"Adeliz",
"Adelky",
"Adelmar",
"Adelmund",
"Adelram",
"Adelredus",
"Adelric",
"Adelrik",
"Adem",
"Ademar",
"Adie",
"Adim",
"Adima",
"Adiran",
"Adison",
"Adisson",
"Adken",
"Adkins",
"Adkyn",
"Adlar",
"Adlard",
"Adler",
"Adne",
"Ado",
"Adoff",
"Adolf",
"Adolph",
"Adolphe",
"Adolpho",
"Adolphus",
"Adorjan",
"Adrean",
"Adrian",
"Adriano",
"Adrianus",
"Adrien",
"Adrion",
"Adron",
"Adulf",
"Ady",
"Aebbe",
"Aebi",
"Aedilbert",
"Aedilburh",
"Aedilhum",
"Aedilhun",
"Aedwulf",
"Aegenwulf",
"Aelbehrt",
"Aelbert",
"Aelfa",
"Aelfryth",
"Affonso",
"Agilbert",
"Ahren",
"Ahti",
"Ailbert",
"Ailbriht",
"Ailwyn",
"Aimery",
"Alard",
"Alaric",
"Alasdair",
"Alaster",
"Albano",
"Alberic",
"Albern",
"Albert",
"Albertus",
"Albrecht",
"Alburn",
"Alburt",
"Alcuin",
"Aldous",
"Aldric",
"Aldrik",
"Aldrin",
"Ales",
"Alexander",
"Alexius",
"Alger",
"Alisann",
"Allard",
"Allin",
"Allon",
"Almar",
"Almaric",
"Almund",
"Alnoth",
"Aloin",
"Alois",
"Aloisio",
"Alon",
"Alonso",
"Aloysisus",
"Alpheus",
"Alphie",
"Altherr",
"Alvyn",
"Alwar",
"Alwin",
"Alwyn",
"Alwyne",
"Amacker",
"Ambros",
"Ambrosius",
"Ame",
"Americus",
"Amerigo",
"Amet",
"Amory",
"Anastasius",
"Anatol",
"Ancel",
"Andries",
"Angelus",
"Anna",
"Anno",
"Anse",
"Ansell",
"Anselm",
"Anselmi",
"Anselmo",
"Ansgar",
"Anshelm",
"Anton",
"Apollonius",
"Archibold",
"Ard",
"Are",
"Arent",
"Arland",
"Arlen",
"Armand",
"Armands",
"Armin",
"Armino",
"Armon",
"Armond",
"Armondo",
"Arnald",
"Arnaud",
"Arndt",
"Arnel",
"Arno",
"Arnold",
"Arnoldus",
"Arnott",
"Arrick",
"Arrigo",
"Artur",
"Arvy",
"Arwin",
"Ascher",
"Asmus",
"Asser",
"Astan",
"Aswine",
"Athanasius",
"Atre",
"Atreyu",
"Auberi",
"Audric",
"Audwin",
"August",
"Augustinus",
"Aurick",
"Aurik",
"Austell",
"Auster",
"Autry",
"Avicus",
"Axell",
"Axil",
"Bahr",
"Baldemar",
"Baldewin",
"Baldewyn",
"Baldovino",
"Baldrik",
"Baldwin",
"Baldwine",
"Baldwynn",
"Balldwin",
"Baltasar",
"Bamard",
"Bamey",
"Bannan",
"Bannruod",
"Bardric",
"Barduwulf",
"Barend",
"Baret",
"Barnard",
"Barnardel",
"Barnardo",
"Barnhard",
"Barnhardo",
"Barnim",
"Barny",
"Baron",
"Barrant",
"Barrat",
"Barratt",
"Barrey",
"Bartholome",
"Bartold",
"Bas",
"Basilius",
"Bastein",
"Bastian",
"Bau",
"Baudouin",
"Baudric",
"Baumar",
"Baumer",
"Bawer",
"Bayerd",
"Bearnard",
"Beat",
"Beltran",
"Beltrano",
"Bemot",
"Ben",
"Benedict",
"Benedicto",
"Benedikte",
"Benediktus",
"Beneger",
"Benek",
"Benjamin",
"Benjy",
"Bennet",
"Benny",
"Beno",
"Benz",
"Ber",
"Berchtwald",
"Berdy",
"Berengar",
"Berenger",
"Berg",
"Bergelmir",
"Bergen",
"Bergh",
"Berinhard",
"Berlinger",
"Berlyn",
"Berman",
"Bernald",
"Bernard",
"Bernardyn",
"Bernarr",
"Bernez",
"Bernhardo",
"Bernhold",
"Berno",
"Bernstein",
"Berowalt",
"Bert",
"Bertel",
"Berthoud",
"Bertie",
"Bertil",
"Bertram",
"Bertrando",
"Bertschy",
"Bertwin",
"Billy",
"Bingham",
"Bittan",
"Bitten",
"Blixa",
"Bogart",
"Bonifaz",
"Borris",
"Bosel",
"Botulf",
"Bracken",
"Brandeis",
"Brando",
"Branson",
"Brant",
"Bren",
"Brenner",
"Brohomaglus",
"Bronson",
"Bruno",
"Brunon",
"Bud",
"Burchard",
"Burckhard",
"Burg",
"Burhardt",
"Burke",
"Burkhardt",
"Burkhart",
"Burle",
"Burlin",
"Burnard",
"Burnell",
"Cariel",
"Carl",
"Carper",
"Carsten",
"Ceorl",
"Chlodwig",
"Christoph",
"Chuckie",
"Claus",
"Clay",
"Clemens",
"Clovis",
"Colbert",
"Colin",
"Conerad",
"Conrad",
"Conrade",
"Conradin",
"Conrado",
"Constantin",
"Corbinian",
"Cord",
"Corrado",
"Corty",
"Cramer",
"Cuma",
"Currau",
"Curt",
"Cusick",
"Dagobert",
"Dagoberto",
"Dahl",
"Dalbert",
"Dale",
"Damian",
"Daneal",
"Daniel",
"David",
"Dearil",
"Decker",
"Deiter",
"Delmar",
"Denzill",
"Denzin",
"Derek",
"Derrer",
"Dewitt",
"Dian",
"Dicca",
"Dicel",
"Dick",
"Dickinson",
"Dicky",
"Didyu",
"Diederich",
"Diedrich",
"Diedrick",
"Dierck",
"Diesel",
"Dietbald",
"Dieter",
"Dietmar",
"Dietrich",
"Dietz",
"Dik",
"Dillinger",
"Disler",
"Dolf",
"Dolphus",
"Dominic",
"Donar",
"Drake",
"Dresden",
"Drexel",
"Drogo",
"Drud",
"Durr",
"Dust",
"Dustan",
"Dutch",
"Eadwin",
"Earda",
"Earnest",
"Eawart",
"Eberhard",
"Eberhardt",
"Eberhart",
"Eberly",
"Ebersold",
"Ebert",
"Eburhardt",
"Ecgmund",
"Ecgwald",
"Ecgwulf",
"Eckard",
"Eckardt",
"Eckart",
"Eckbert",
"Ecke",
"Eckehard",
"Eckehardt",
"Eckerd",
"Eckert",
"Eckhard",
"Eckhardt",
"Eckhart",
"Edel",
"Edelhard",
"Edelmar",
"Edid",
"Ediline",
"Ediltrudis",
"Edina",
"Edingu",
"Edlyn",
"Edmon",
"Edmond",
"Edmonde",
"Edmondo",
"Edolf",
"Edsel",
"Edvinas",
"Egelbert",
"Eggen",
"Eginhard",
"Eginhardt",
"Egmont",
"Egon",
"Ehren",
"Eilert",
"Einhard",
"Einhardt",
"Eino",
"Ekerd",
"Ekhard",
"Ekkehard",
"Elbert",
"Eldredge",
"Eldrege",
"Elias",
"Ellard",
"Eller",
"Elman",
"Elsinger",
"Eluard",
"Elwald",
"Elys",
"Emeri",
"Emeric",
"Emerson",
"Emery",
"Emest",
"Emet",
"Emil",
"Emmerson",
"Emmersyn",
"Emmery",
"Emmet",
"Emmete",
"Emmit",
"Emmitt",
"Emo",
"Emond",
"Emory",
"Empa",
"Emps",
"Ems",
"Enando",
"Engel",
"Engelard",
"Engelbert",
"Enno",
"Eno",
"Enrico",
"Enzo",
"Eorcenbehrt",
"Eorcna",
"Eorconbeald",
"Eorconbehrt",
"Eorcongota",
"Eorconweald",
"Erardo",
"Erchanbold",
"Erchanhardt",
"Erchebald",
"Erchembaut",
"Erhard",
"Erhardt",
"Erhart",
"Erik",
"Erisman",
"Erkerd",
"Erl",
"Erland",
"Erman",
"Ermengild",
"Ernest",
"Ernst",
"Ernulf",
"Ernwyd",
"Erryn",
"Erth",
"Ervyn",
"Escher",
"Ethelard",
"Ethelheard",
"Ethelred",
"Etwald",
"Etzel",
"Eugen",
"Eugered",
"Eugeret",
"Everett",
"Everhardt",
"Evers",
"Evert",
"Everten",
"Everton",
"Evraud",
"Ewald",
"Fabian",
"Fadri",
"Fahrni",
"Falk",
"Falke",
"Falken",
"Falkner",
"Fassnacht",
"Faxon",
"Fedde",
"Felix",
"Ferd",
"Ferdinand",
"Ferdo",
"Fernand",
"Fessler",
"Fillip",
"Finn",
"Flak",
"Flora",
"Florian",
"Fonz",
"Fonzell",
"Fonzie",
"Fonzo",
"Fonzy",
"Franck",
"Franco",
"Franek",
"Frank",
"Franke",
"Franki",
"Frankie",
"Frants",
"Frantz",
"Franz",
"Franzen",
"Franziskus",
"Franzl",
"Fred",
"Freddie",
"Freddy",
"Fredek",
"Frederic",
"Frederich",
"Frederick",
"Frederico",
"Frederik",
"Frederyk",
"Fredi",
"Fredo",
"Fredric",
"Fredrick",
"Fredy",
"Freed",
"Freedman",
"Fremi",
"Fremont",
"Friederich",
"Friedhelm",
"Friedman",
"Friedmann",
"Friedrich",
"Friethjof",
"Frimunt",
"Frithebert",
"Frithegod",
"Frithel",
"Fritheswith",
"Frithswith",
"Frithugar",
"Frithugyth",
"Frithuric",
"Frithuwald",
"Frits",
"Fritz",
"Fritzchen",
"Fritzi",
"Fritzl",
"Fritzroy",
"Frod",
"Froda",
"Fryderyk",
"Fulbert",
"Fulhert",
"Fulk",
"Fur",
"Gabriel",
"Galfridus",
"Garald",
"Garet",
"Garis",
"Garit",
"Garold",
"Garven",
"Gary",
"Geert",
"Gehrig",
"Gellan",
"Gelle",
"Genevieve",
"Geofa",
"Geoffery",
"Geoffraie",
"Geoffrey",
"Geoffry",
"Geofrey",
"Geofry",
"Geomar",
"Georg",
"Ger",
"Gerald",
"Geralde",
"Geraldo",
"Gerard",
"Gerardo",
"Gerdt",
"Gere",
"Gereke",
"Gereon",
"Gerhard",
"Gerhardt",
"Gerhart",
"Gerik",
"Gerlac",
"Gerlach",
"Gerold",
"Geron",
"Gerrald",
"Gerran",
"Gerrell",
"Gerrit",
"Gerry",
"Gert",
"Gervase",
"Geuecok",
"Gherman",
"Gibbons",
"Gibbs",
"Gijsbert",
"Gilbert",
"Gilburt",
"Gilman",
"Giomar",
"Godbert",
"Godefridus",
"Godfrey",
"Godofredo",
"Gofraidh",
"Gösta",
"Gottfried",
"Gotthard",
"Gottlieb",
"Govert",
"Grentel",
"Grimbeald",
"Grimwold",
"Griswald",
"Griswold",
"Guenter",
"Gustav",
"Gustave",
"Gustavo",
"Gustavus",
"Gustaw",
"Gusztav",
"Haedda",
"Haegel",
"Hafis",
"Hagan",
"Hahn",
"Hamblin",
"Hamlyn",
"Hammet",
"Hannes",
"Hansh",
"Hansl",
"Hany",
"Hanz",
"Harbert",
"Harbin",
"Harlan",
"Harri",
"Harry",
"Harti",
"Hartmann",
"Hartwig",
"Hasse",
"Headda",
"Hega",
"Hegelina",
"Heibert",
"Heine",
"Heino",
"Heinrich",
"Heinrick",
"Heinz",
"Heliap",
"Heller",
"Hellewell",
"Helliwell",
"Helmand",
"Helmfried",
"Hemma",
"Henry",
"Henya",
"Heorstan",
"Herb",
"Herbert",
"Herbst",
"Herebert",
"Herman",
"Hernan",
"Herrick",
"Herrik",
"Hershel",
"Hersz",
"Herz",
"Heutte",
"Hilbrand",
"Hildebrand",
"Hildehrand",
"Hobart",
"Hoh",
"Hohberht",
"Hoppe",
"Hopson",
"Horsa",
"Horst",
"Hubert",
"Hubertus",
"Huey",
"Hugh",
"Hughe",
"Hughoc",
"Hugiet",
"Hugon",
"Hulbard",
"Hulbart",
"Huldiberaht",
"Hum",
"Humbert",
"Humfrey",
"Humfried",
"Humfry",
"Humph",
"Humphrey",
"Humphrie",
"Humphry",
"Humur",
"Hun",
"Hunfredo",
"Hunfried",
"Huni",
"Hurman",
"Hutch",
"Hyldeiard",
"Ing",
"Ingram",
"Ivo",
"Jaakob",
"Jacob",
"Jakobe",
"Jakobi",
"Jannes",
"Jannik",
"Jannis",
"Jans",
"Jantis",
"January",
"Jarell",
"Jarem",
"Jaret",
"Jarett",
"Jarman",
"Jarmann",
"Jarrad",
"Jarrell",
"Jaryl",
"Jayden",
"Jeff",
"Jefferie",
"Jefferies",
"Jeffery",
"Jeffree",
"Jeffrey",
"Jeffry",
"Jefri",
"Jefry",
"Jeorg",
"Jer",
"Jerald",
"Jerardo",
"Jeri",
"Jerri",
"Jerry",
"Jesaja",
"Jette",
"Joab",
"Joachim",
"Joah",
"Joakim",
"Joel",
"Johan",
"Johann",
"Johannes",
"John",
"Jona",
"Jonah",
"Jonas",
"Jonathan",
"Joram",
"Joseph",
"Joshua",
"Juanito",
"Jukka",
"Juku",
"Julian",
"Julius",
"Justus",
"Kagan",
"Kaiser",
"Kaizer",
"Kajetan",
"Kant",
"Karcher",
"Karl",
"Kasch",
"Kass",
"Kauzlarich",
"Kearn",
"Kellen",
"Kennen",
"Kepler",
"Kesler",
"Kettil",
"Kiefer",
"Kiker",
"Kilian",
"Kinchen",
"Kite",
"Klaus",
"Klein",
"Knut",
"Knute",
"Kolten",
"Konrad",
"Kord",
"Kurt",
"Kurtis",
"Lance",
"Lando",
"Lang",
"Lasse",
"Laverick",
"Lear",
"Leica",
"Lekso",
"Len",
"Lennard",
"Lennerd",
"Lennox",
"Lenny",
"Leo",
"Leon",
"Leonard",
"Leonhards",
"Leopoldo",
"Leorad",
"Levi",
"Levin",
"Liam",
"Lieb",
"Lindberg",
"Lindburg",
"Lindsai",
"Lindsay",
"Linfred",
"Linus",
"Liudolf",
"Lorencz",
"Lorentz",
"Lorenz",
"Loring",
"Louis",
"Luca",
"Ludwig",
"Lueis",
"Luis",
"Lukas",
"Luke",
"Luther",
"Lydon",
"Lynde",
"Lynsai",
"Lyo",
"Lyulf",
"Maiti",
"Malfred",
"Mallory",
"Malte",
"Malthe",
"Mandel",
"Manfred",
"Manfredo",
"Manfrid",
"Manfrit",
"Manheim",
"Mann",
"Manne",
"Mannes",
"Mannfred",
"Mannfryd",
"Mannis",
"Mannleah",
"Mannton",
"Mannus",
"Mansfeld",
"Mansfield",
"Mantel",
"Margit",
"Markell",
"Markus",
"Marlen",
"Marlon",
"Martell",
"Marvin",
"Marx",
"Mathe",
"Mathias",
"Mats",
"Matteo",
"Matthaus",
"Mattis",
"Mauer",
"Mauritius",
"Max",
"Maxim",
"Maximilian",
"Mayeer",
"Mayer",
"Maynard",
"Mayne",
"Maynhard",
"Mayor",
"Medard",
"Meier",
"Meinhard",
"Meinke",
"Meino",
"Meinolf",
"Meinrad",
"Meinyard",
"Memo",
"Menard",
"Meyer",
"Mika",
"Miles",
"Milo",
"Milou",
"Moritz",
"Nando",
"Napoleon",
"Nef",
"Nefen",
"Nevin",
"Nick",
"Nicklaus",
"Nicko",
"Niclaus",
"Nico",
"Niklas",
"Nils",
"Nisse",
"Noah",
"Noel",
"Norbert",
"Nordman",
"Oberon",
"Oberron",
"Obert",
"Obrecht",
"Ochs",
"Odaliz",
"Odall",
"Odalric",
"Odalys",
"Odalyz",
"Odard",
"Odell",
"Odette",
"Odie",
"Odilio",
"Odilo",
"Odis",
"Odolf",
"Odolff",
"Odwolf",
"Oeberon",
"Oethelwald",
"Olav",
"Olbrecht",
"Oldrik",
"Ole",
"Onfre",
"Onfroi",
"Onofredo",
"Orbert",
"Orlain",
"Orlan",
"Orland",
"Ormand",
"Ormanda",
"Osbald",
"Osbaldo",
"Osborn",
"Oskar",
"Osten",
"Otek",
"Othmann",
"Othmar",
"Othomann",
"Othon",
"Otis",
"Otmar",
"Otte",
"Ottis",
"Ottmar",
"Otto",
"Packer",
"Paco",
"Paris",
"Parsafal",
"Parsefal",
"Pasak",
"Paul",
"Paull",
"Paulos",
"Pennsylvania",
"Penrod",
"Penu",
"Pepe",
"Peppin",
"Percard",
"Pertti",
"Phil",
"Philbert",
"Philipp",
"Pippin",
"Porsche",
"Prailes",
"Primin",
"Quene",
"Rab",
"Rae",
"Rafael",
"Ragin",
"Raimon",
"Raimonds",
"Raimund",
"Rainar",
"Rainart",
"Raine",
"Rainer",
"Rainhard",
"Rainhardt",
"Rainier",
"Rainor",
"Rajmund",
"Rald",
"Ralf",
"Ralph",
"Rambert",
"Rami",
"Ramiro",
"Ramon",
"Ramonde",
"Ramos",
"Rand",
"Randal",
"Randall",
"Randell",
"Randle",
"Randolph",
"Randulfus",
"Randulph",
"Randwulf",
"Randy",
"Rashard",
"Raulf",
"Raulfe",
"Raulo",
"Ray",
"Raylan",
"Raylon",
"Rayman",
"Rayment",
"Raymund",
"Raynard",
"Raynor",
"Reamonn",
"Redmond",
"Reel",
"Reggie",
"Reginheraht",
"Reichard",
"Rein",
"Reinaldo",
"Reince",
"Reiner",
"Reinhard",
"Reinhardt",
"Reinhart",
"Reinhold",
"Renaldo",
"Renardo",
"Rence",
"Rendel",
"Renke",
"Renner",
"Renny",
"Renold",
"Reyen",
"Reymond",
"Reymundo",
"Reynardo",
"Reyne",
"Reyner",
"Reynold",
"Reynolds",
"Rezso",
"Rhen",
"Rhodri",
"Rhudi",
"Rhymer",
"Riccardo",
"Rich",
"Richan",
"Richard",
"Richenda",
"Richerd",
"Richmond",
"Richrit",
"Rigoberto",
"Rigocatus",
"Rihards",
"Rikard",
"Riker",
"Riku",
"Ring",
"Riobard",
"Riocard",
"Ripkin",
"Ritch",
"Ritchy",
"Ritter",
"Roald",
"Rob",
"Robb",
"Robbe",
"Robbey",
"Robbi",
"Robbie",
"Robert",
"Roberto",
"Roberts",
"Robin",
"Robley",
"Robrecht",
"Roburts",
"Robyn",
"Roch",
"Rochus",
"Rock",
"Rockford",
"Roden",
"Roderick",
"Roderik",
"Roderyck",
"Rodi",
"Rodman",
"Rodolf",
"Rodrik",
"Rodryk",
"Rody",
"Roger",
"Roland",
"Rolf",
"Rolfe",
"Rolla",
"Rollins",
"Rolph",
"Romuald",
"Romualdo",
"Romy",
"Roney",
"Roparzh",
"Ross",
"Roswald",
"Roswalt",
"Roswell",
"Roth",
"Rowland",
"Rozlyn",
"Rubo",
"Rudeger",
"Rudiger",
"Rudolf",
"Rudolph",
"Rudy",
"Rueben",
"Rune",
"Rupert",
"Ruprecht",
"Ryker",
"Ryszard",
"Ryter",
"Saacha",
"Saelac",
"Samuel",
"Saxan",
"Saxe",
"Saxons",
"Saxton",
"Scenwulf",
"Schaeffer",
"Schaffer",
"Schatzi",
"Schmidt",
"Schneider",
"Schroder",
"Schroeder",
"Schuler",
"Sebastian",
"Seifred",
"Seigmund",
"Selda",
"Selig",
"Selik",
"Senta",
"Sente",
"Sepp",
"Serle",
"Shadley",
"Shermon",
"Sherye",
"Sibert",
"Siegbert",
"Siegfrid",
"Siegfried",
"Sieghard",
"Siegmund",
"Sievert",
"Sig",
"Sigbert",
"Sige",
"Sigelac",
"Sigerith",
"Sigewulf",
"Sigfreda",
"Sigfried",
"Sigfriede",
"Sigfryd",
"Sighard",
"Sigismund",
"Sigmond",
"Sigmund",
"Sigreda",
"Sigwalt",
"Siler",
"Silvester",
"Simon",
"Sinbad",
"Siward",
"Siwardus",
"Somerhild",
"Sonnen",
"Spangler",
"Spengler",
"Stadler",
"Stadtler",
"Stark",
"Stefan",
"Steffen",
"Stein",
"Steiner",
"Stendre",
"Steno",
"Streiter",
"Strom",
"Sunqur",
"Tab",
"Tabb",
"Tabbart",
"Tahbert",
"Talebot",
"Tallbot",
"Tallbott",
"Tamino",
"Tancred",
"Tancredi",
"Tankred",
"Tannen",
"Tasman",
"Terel",
"Terrall",
"Terrelle",
"Terriel",
"Thebaldus",
"Thedric",
"Thedrick",
"Thelonius",
"Theo",
"Theobald",
"Theobaldus",
"Theobold",
"Theodbald",
"Theodgar",
"Theodlac",
"Theodoric",
"Theodulf",
"Thibaud",
"Thibaut",
"Thilo",
"Tidwulf",
"Tihalt",
"Til",
"Till",
"Tillo",
"Tillot",
"Tillote",
"Tilmund",
"Tim",
"Timo",
"Tinder",
"Tipp",
"Tiziana",
"Tobias",
"Tom",
"Toni",
"Topp",
"Toralf",
"Torhtsige",
"Torkel",
"Tota",
"Totavali",
"Totavalus",
"Traugott",
"Trayger",
"Treffen",
"Trost",
"Trott",
"Twilliam",
"Tybalt",
"Tyler",
"Tyson",
"Uben",
"Uberto",
"Ubrig",
"Ubrigens",
"Udo",
"Uhr",
"Ulas",
"Ulbrecht",
"Ulbrich",
"Ulexite",
"Ulgar",
"Ulman",
"Ulriah",
"Ulrich",
"Unser",
"Urs",
"Uwe",
"Vaduz",
"Valdermar",
"Valentin",
"Valters",
"Varick",
"Varner",
"Verile",
"Verner",
"Vid",
"Vilem",
"Vilmos",
"Vincent",
"Volker",
"Waggoner",
"Wagner",
"Walbert",
"Waldemar",
"Walden",
"Waldron",
"Walmond",
"Walten",
"Walter",
"Waltraut",
"Warner",
"Warren",
"Wes",
"Wilbert",
"Willermus",
"William",
"Willis",
"Wilmer",
"Wilson",
"Winfield",
"Wojciech",
"Wolfgang",
"Wolfram",
"Yale",
"Yohann",
"Zamael",
"Zelig"]>>
<<set setup.swissMaleFirstnames to [
"Aaron",
"Accola",
"Adalheid",
"Adam",
"Adank",
"Adolfus",
"Adrien",
"Aebi",
"Agon",
"Alessandro",
"Alessio",
"Alex",
"Alexander",
"Alexis",
"Altherr",
"Amacker",
"Andrea",
"Andrin",
"Anett",
"Anna",
"Antonio",
"Aram",
"Ardit",
"Armend",
"Arnborg",
"Balthis",
"Basile",
"Bastein",
"Bastien",
"Beat",
"Ben",
"Benjamin",
"Benziger",
"Beranger",
"Berlinger",
"Bertschy",
"Billeter",
"Blerim",
"Bryan",
"Caflisch",
"Camenzind",
"Caspari",
"Cedric",
"Charles",
"Chet",
"Chris",
"Christian",
"Colin",
"Dani luca",
"Daniel",
"Danuser",
"Dario",
"David",
"Davide",
"Derrer",
"Dettwiler",
"Diego",
"Dietiker",
"Disler",
"Dorian",
"Dritan",
"Dylan",
"Eberly",
"Ebersold",
"Eggen",
"Ehlii",
"Eiger",
"Elia",
"Elias",
"Eliott",
"Elov",
"Elsinger",
"Emanuele",
"Enea",
"Eric",
"Erisman",
"Ethan",
"Evan",
"Fabio",
"Fahrni",
"Fassnacht",
"Federico",
"Fessler",
"Filander",
"Filippo",
"Finn",
"Fisnik",
"Flamur",
"Florian",
"Francesco",
"Frédéric",
"Fricker",
"Frutiger",
"Gabriel",
"Gabriele",
"Giacomo",
"Gian",
"Gioele",
"Giona",
"Giuliano",
"Gösta",
"Guillaume",
"Hugo",
"Ives",
"Jacopo",
"Jan",
"Jason",
"Jérémie",
"Jérôme",
"Jessy",
"Jetmir",
"Jeton",
"Joachim",
"Joao",
"Joel",
"Johan",
"Jonas",
"Jonathan",
"Jorim",
"Julian",
"Julien",
"Juni",
"Kettil",
"Kevin",
"Kreshnik",
"Kushtrim",
"Kyledrick",
"Laurin",
"Leandro",
"Lenny",
"Leo",
"Leon",
"Leonardo",
"Léopold",
"Leutrim",
"Levin",
"Liam",
"Lian",
"Lionel",
"Livio",
"Lorenzo",
"Loris",
"Louis",
"Luca",
"Lucas",
"Luis",
"Lukas",
"Manuel",
"Marc",
"Markus",
"Marti",
"Martí",
"Marwan",
"Mathieu",
"Matteo",
"Matthias",
"Matthieu",
"Mattia",
"Max",
"Maxime",
"Maximilian",
"Michele",
"Miguel",
"Nathan",
"Nathanaël",
"Nevio",
"Nick",
"Nico",
"Nicola",
"Nicolas",
"Nicolo",
"Nils",
"Nino",
"Nisse",
"Noah",
"Noel",
"Oliver",
"Orell",
"Oscar",
"Patrick",
"Patrik",
"Philippe",
"Pierre",
"Pietro",
"Primin",
"Quentin",
"Rafael",
"Ramone",
"Raphael",
"Reto",
"Riccardo",
"Robin",
"Romain",
"Ruben",
"Ryan",
"Samuel",
"Samuele",
"Sebastian",
"Sebastiano",
"Sergio",
"Silvan",
"Simon",
"Simone",
"Stefano",
"Steffen",
"Steven",
"Sven",
"Theo",
"Théo",
"Thierry",
"Thomas",
"Tim",
"Timo",
"Tommaso",
"Toni",
"Torkel",
"Udo",
"Ulrich",
"Urs",
"Valentin",
"Walden",
"Wendell",
"Wilbur",
"Willard",
"Willermus",
"William",
"Wolfgang",
"Wubshet",
"Yacine",
"Yann",
"Yannick",
"Yohan",
"Yolan"]>>
<<set setup.frenchMaleFirstnames to [
"Aaron",
"Abel",
"Achille",
"Adam",
"Adrien",
"Aleron",
"Alexandre",
"Alexis",
"Algernon",
"Ames",
"Amiens",
"Amine",
"Antoine",
"Antonin",
"Aramis",
"Arthur",
"Audric",
"Auguste",
"Augustin",
"Axel",
"Baptiste",
"Basile",
"Beau",
"Benjamin",
"Blaise",
"Bonar",
"Boniface",
"Boyce",
"Briar",
"Bruce",
"Byron",
"Cabal",
"Cade",
"Camille",
"Campbell",
"Canaan",
"Canon",
"Carolus",
"Carvell",
"Chainey",
"Charles",
"Chevy",
"Ciel",
"Circinus",
"Clement",
"Colar",
"Colville",
"Côme",
"Courvoisier",
"Coyne",
"Dabney",
"Daniel",
"Dashiell",
"David",
"Dax",
"Delano",
"Demont",
"Destin",
"Didier",
"Dior",
"Donatien",
"Eden",
"Edgar",
"Elias",
"Eliott",
"Enzo",
"Ethan",
"Etienne",
"Evan",
"Fabron",
"Felix",
"Ferrand",
"Franchot",
"Francois",
"Frasier",
"Gabin",
"Gabriel",
"Gage",
"Garen",
"Gareth",
"Garland",
"Garner",
"Garrison",
"Gaspard",
"Gaston",
"Gaylord",
"Gerald",
"Germain",
"Geron",
"Giles",
"Glanville",
"Gower",
"Granger",
"Grant",
"Granville",
"Gustave",
"Guy",
"Hackett",
"Hadrien",
"Hector",
"Hello",
"Henri",
"Holland",
"Honore",
"Hugo",
"Isaac",
"Jacques",
"Jasper",
"Javier",
"Jean",
"Jemond",
"Jesper",
"Joseph",
"Joshua",
"Jules",
"Kaïs",
"Labaron",
"Lance",
"Landry",
"Laramie",
"Laron",
"Larrimore",
"Launcelot",
"Laurent",
"Leggett",
"Leo",
"Leon",
"Leonard",
"Leverett",
"Liam",
"Lionel",
"Louis",
"Luc",
"Lucas",
"Lucien",
"Maël",
"Mallory",
"Marceau",
"Marcel",
"Mardian",
"Marin",
"Marius",
"Marshall",
"Martin",
"Marvel",
"Mason",
"Mathis",
"Maxence",
"Maxime",
"Mehdi",
"Merrill",
"Milo",
"Montague",
"Montgomery",
"Montrell",
"Montrose",
"Mortimer",
"Naël",
"Nathan",
"Nazaire",
"Neville",
"Nicolas",
"Noah",
"Noam",
"Noe",
"Noel",
"Nolan",
"Odil",
"Odilon",
"Odo",
"Olier",
"Oliver",
"Olympe",
"Orane",
"Orleans",
"Orson",
"Orville",
"Oscar",
"Ouida",
"Page",
"Paris",
"Pascal",
"Paul",
"Percy",
"Pernell",
"Pierre",
"Platt",
"Porter",
"Quincy",
"Rafael",
"Rance",
"Ranger",
"Raphael",
"Raul",
"Ray",
"Rayan",
"Raynard",
"Remi",
"Robin",
"Romain",
"Ross",
"Royal",
"Ruben",
"Rupert",
"Rush",
"Russel",
"Saber",
"Sacha",
"Samuel",
"Sargent",
"Satch",
"Senior",
"Sennett",
"Sergeant",
"Severin",
"Seymour",
"Sezni",
"Sid",
"Similien",
"Simon",
"Sinclair",
"Sinjon",
"Solal",
"Sorrel",
"Sumner",
"Talbot",
"Telford",
"Tenenan",
"Theo",
"Theodore",
"Thibaud",
"Thomas",
"Timothée",
"Tom",
"Travis",
"Tremeur",
"Tugdual",
"Tujan",
"Turiau",
"Tyson",
"Ulysse",
"Umber",
"Vachel",
"Vadim",
"Valentin",
"Valeray",
"Varden",
"Varil",
"Varocher",
"Verdun",
"Vere",
"Verity",
"Vermont",
"Vernon",
"Verrier",
"Verrill",
"Victor",
"Villard",
"Villiers",
"William",
"Xebec",
"Yanis",
"Yannick"]>>
<<set setup.spanishMaleFirstnames to [
"Aaron",
"Abelardo",
"Abraham",
"Adalberto",
"Adam",
"Adelmo",
"Ademar",
"Adolfo",
"Adrià",
"Adrian",
"Agapetus",
"Aimar",
"Aimon",
"Aitor",
"Alberto",
"Aldo",
"Aleix",
"Alejandro",
"Alex",
"Alexandro",
"Alfonso",
"Alfredo",
"Alonso",
"Alonzo",
"Alvaro",
"Ambrosio",
"Amelio",
"Amias",
"Anastacio",
"Ander",
"Andres",
"Angel",
"Anselmo",
"Anso",
"Antonio",
"Apolonio",
"Archibaldo",
"Armando",
"Arnaldo",
"Arnau",
"Arsenio",
"Arturo",
"Asier",
"Aurelio",
"Bartolo",
"Beltran",
"Benito",
"Bernardo",
"Berto",
"Biel",
"Bolivar",
"Bonito",
"Bronco",
"Bruno",
"Calderon",
"Carlito",
"Carlitos",
"Carlos",
"Celso",
"Cesar",
"Chavez",
"Che",
"Cipriano",
"Cisco",
"Colorado",
"Conrado",
"Cordero",
"Cornelio",
"Cortez",
"Cristian",
"Cruz",
"Cuba",
"Damarion",
"Daniel",
"Danilo",
"Dario",
"David",
"Dejuan",
"Delmar",
"Desiderio",
"Diego",
"Dimos",
"Domingo",
"Dylan",
"Eberardo",
"Edgardo",
"Eduardo",
"Elonso",
"Emberto",
"Emilio",
"Enrico",
"Enrique",
"Enzo",
"Erardo",
"Eric",
"Erik",
"Ernesto",
"Esteban",
"Estefan",
"Eugenio",
"Eustacio",
"Everardo",
"Ezequias",
"Fabio",
"Fanuco",
"Faustino",
"Fausto",
"Federico",
"Felipe",
"Fernando",
"Flavio",
"Fraco",
"Francisco",
"Frisco",
"Gabriel",
"Gael",
"Geraldo",
"Gerard",
"Gerardo",
"Geronimo",
"Gervasio",
"Gig",
"Gilberto",
"Gonzalo",
"Gregorio",
"Guido",
"Guillermo",
"Gustavo",
"Hector",
"Henio",
"Hernan",
"Hilario",
"Hugo",
"Humberto",
"Ian",
"Ibai",
"Ignacio",
"Ignado",
"Iker",
"Isaac",
"Isandro",
"Isidro",
"Ismael",
"Ivan",
"Izador",
"Izan",
"Jaguar",
"Jaime",
"Jair",
"Jan",
"Javier",
"Jeronimo",
"Jerrold",
"Jesus",
"Joan",
"Joel",
"Jon",
"Jorge",
"Jose",
"José",
"Jose-luis",
"Josue",
"Juan",
"Julen",
"Lando",
"Larenzo",
"Lasaro",
"Leo",
"Leonardo",
"Lisandro",
"Loredo",
"Lorenzo",
"Luca",
"Lucas",
"Luciano",
"Lucio",
"Luis",
"Macario",
"Malvolio",
"Manfredo",
"Manolo",
"Manuel",
"Marc",
"Marco",
"Marcos",
"Marino",
"Mario",
"Marjun",
"Markel",
"Martí",
"Martin",
"Mateo",
"Mauro",
"Miguel",
"Mikel",
"Milo",
"Montana",
"Montego",
"Montel",
"Montenegro",
"Narciso",
"Nasario",
"Nazario",
"Nemesio",
"Neper",
"Neron",
"Nevada",
"Nicandro",
"Nicolas",
"Nil",
"Noah",
"Noe",
"Oier",
"Oihane",
"Oleos",
"Olindo",
"Oliver",
"Omar",
"Onofre",
"Ora",
"Orlando",
"Oro",
"Oscar",
"Osias",
"Ovidio",
"Pablo",
"Paco",
"Pancho",
"Pau",
"Pedro",
"Pol",
"Ponce",
"Porfio",
"Porfirio",
"Prospero",
"Quico",
"Quinto",
"Quiqui",
"Quito",
"Rafael",
"Ramiro",
"Ramon",
"Raul",
"Rayan",
"Raymundo",
"Rejinaldo",
"Renaldo",
"Renato",
"Reyes",
"Reynaldo",
"Rico",
"Rio",
"Roberto",
"Rodolfo",
"Rodrigo",
"Rogelio",
"Rolando",
"Roldan",
"Roman",
"Roque",
"Rosario",
"Ruben",
"Ryo",
"Sagaz",
"Salvador",
"Samuel",
"Sancho",
"Sandro",
"Santana",
"Santiago",
"Santos",
"Saturnin",
"Saul",
"Seferino",
"Selestino",
"Senon",
"Sergio",
"Severino",
"Severo",
"Sierra",
"Silvio",
"Socorro",
"Tajo",
"Tavares",
"Teodoro",
"Thiago",
"Timoteo",
"Tito",
"Tomas",
"Ugo",
"Umberto",
"Unai",
"Urvano",
"Valdez",
"Valerio",
"Vegas",
"Venacio",
"Vicente",
"Victor",
"Vidal",
"Vito",
"Xabat",
"Xalvador",
"Xaver",
"Xaverius",
"Xavier",
"Xavion",
"Xeres",
"Ximen",
"Yago",
"Youssef",
"Zelipe",
"Zenon"]>>
<<set setup.africanAmericanMaleFirstnames to [
"Aabinus",
"Aaron",
"Abanus",
"Abnus",
"Absolan",
"Adelram",
"Adie",
"Adiran",
"Adrean",
"Adrian",
"Adriano",
"Adrianus",
"Adric",
"Adrien",
"Adrik",
"Adrion",
"Adron",
"Adryan",
"Ajou",
"Akil",
"Akmad",
"Akrsna",
"Algernon",
"Alphonse",
"Alwan",
"Amadom",
"Aman",
"Amani",
"Amber",
"Amos",
"Andra",
"Andre",
"Andreas",
"Andrew",
"Andri",
"Andrian",
"Anjisnu",
"Anogopta",
"Antama",
"Anthone",
"Antiere",
"Antoine",
"Antonio",
"Aray",
"Arcus",
"Armstrong",
"Arold",
"Asitvaran",
"Atiyama",
"Autry",
"Azibo",
"Baron",
"Barrington",
"Bartt",
"Bellinor",
"Benjamin",
"Benton",
"Beorhtsige",
"Bevaun",
"Bisman",
"Blac",
"Black",
"Blagden",
"Blakey",
"Blamore",
"Booker",
"Bowie",
"Brendon",
"Bron",
"Bruns",
"Busta",
"Cahya",
"Calbert",
"Calvin",
"Cameron",
"Canard",
"Carl",
"Carnell",
"Cartier",
"Casim",
"Cassius",
"Cavin",
"Cerne",
"Chante",
"Christopher",
"Ciar",
"Ciaran",
"Cica",
"Cippa",
"Citoc",
"Clacc",
"Claec",
"Clarence",
"Clayton",
"Cleavant",
"Cleavon",
"Clement",
"Clendon",
"Clester",
"Cleveland",
"Clifton",
"Clinton",
"Cody",
"Cofa",
"Cofsi",
"Colby",
"Colemann",
"Coleridge",
"Coley",
"Colis",
"Collby",
"Collis",
"Colt",
"Colten",
"Colton",
"Colvin",
"Colys",
"Cordell",
"Corey",
"Cornelius",
"Cornell",
"Cornia",
"Cors",
"Cronan",
"Cufa",
"Cula",
"Curtiss",
"D\'andre",
"D\'angelo",
"D\'ante",
"D\'lon",
"D\'marco",
"D\'marcus",
"D\'marreio",
"D\'Sean",
"D\'shaun",
"Dade",
"Daegel",
"Daevin",
"Daevon",
"Dagen",
"Daghishat",
"Dajon",
"Da-Jon",
"Dajuan",
"Da-Juan",
"Dallan",
"Dallen",
"Dalton",
"Damarco",
"Damon",
"Damone",
"Dandrae",
"Dandras",
"Dangelo",
"Daquain",
"Daray",
"Darce",
"Darcio",
"Darel",
"Darell",
"Darik",
"Darius",
"Darnay",
"Darnel",
"Darnell",
"Darrian",
"Darryl",
"Daruk",
"Daryn",
"Da-Shawn",
"Dauntay",
"Davian",
"Davion",
"Dawayne",
"Dayton",
"De\'ron",
"De\'Shane",
"De\'vegas",
"Deaengelo",
"Deagan",
"Deandra",
"Deandrae",
"DeAndre",
"Deangelo",
"De-Angelo",
"Deaundra",
"Deaven",
"Dedrian",
"Deelon",
"Deion",
"Deiondre",
"Dejohn",
"De-John",
"Delane",
"Delaney",
"Delano",
"Delaynie",
"Dele",
"Delford",
"Dell",
"Delmar",
"Delon",
"Delonn",
"Delroy",
"Demaine",
"Demarion",
"Demery",
"Demetrius",
"Demonde",
"Demont",
"De-Morris",
"Dennard",
"Denzel",
"Deole",
"Deon",
"Dequain",
"Deron",
"Derrick",
"Deshane",
"DeShawn",
"Devain",
"Deval",
"Devan",
"Deven",
"Devondre",
"Devontae",
"Dewain",
"Dewan",
"Dewayne",
"Dexter",
"Dikembe",
"Diondre",
"Diron",
"Dixon",
"Dominique",
"Don",
"Donahue",
"Donall",
"Donavan",
"Donner",
"Donovan",
"Dontrell",
"Doogie",
"Dooley",
"Dorjan",
"Dorrin",
"Dorsey",
"Doue",
"Doughlas",
"Dougie",
"Douglas",
"Douglass",
"Dove",
"Dow",
"Duana",
"Duane",
"Duante",
"Dubal",
"Duff",
"Dugan",
"Duglas",
"Dulamah",
"Duncan",
"Dunn",
"Dunnere",
"Dunstan",
"Duron",
"Duval",
"Duwayne",
"Dwade",
"Dwain",
"Dwaine",
"Dwane",
"Dwayne",
"Eason",
"Ebany",
"Eddie",
"Edgerin",
"Edhem",
"Edward",
"Edwyn",
"Eldrick",
"Elroy",
"Elton",
"Emmet",
"Ennis",
"Ernard",
"Erskine",
"Ervan",
"Evander",
"Fayard",
"Ferric",
"Fiadh",
"Fie",
"Finias",
"Finneas",
"Fosco",
"Garfield",
"Garlan",
"Garon",
"Gerain",
"Geroy",
"Gethrude",
"Gethwine",
"Getla",
"Ghadra",
"Ghana",
"Glenden",
"Glendin",
"Glendon",
"Glover",
"Godrell",
"Gotam",
"Gotama",
"Goutam",
"Goutham",
"Grant",
"Gurutej",
"Guyton",
"Haben",
"Hades",
"Hareem",
"Harkan",
"Harken",
"Harkyn",
"Harnish",
"Hasan",
"Hethin",
"Hosea",
"Hraefn",
"Hunapo",
"Indíbil",
"Indigo",
"Isiah",
"Ivory",
"Jacoury",
"Jaedyn",
"Jahquil",
"Jalen",
"Jamaall",
"Jamaar",
"Jamal",
"Jamar",
"Jamarco",
"Jamarr",
"Jamel",
"Jamero",
"Janard",
"Janile",
"Jaquin",
"Jared",
"Jarek",
"Jarel",
"Jarell",
"Jaric",
"Jarmarr",
"Ja-ron",
"Jarrick",
"Jarvis",
"Jason",
"Jaumar",
"Javan",
"Jefferson",
"Jemarcus",
"Jenell",
"Jermain",
"Jermaine",
"Jerom",
"Jerome",
"Jeron",
"Jerrick",
"Jessan",
"Jevonte",
"Jimar",
"Jimarcus",
"John",
"Jolice",
"Jomo",
"Jonathon",
"Jorell",
"Jovan",
"Judean",
"Judge",
"Kaanan",
"Kadeem",
"Kadema",
"Kalmali",
"Kamau",
"Karam",
"Karlus",
"Karvannan",
"Kaseko",
"Kasen",
"Kaval",
"Kaven",
"Kaynard",
"Keandre",
"Kearney",
"Keary",
"Kedron",
"Keenan",
"Keeria",
"Keifer",
"Kenard",
"Kendell",
"Kendis",
"Kendrick",
"Kentay",
"Kenton",
"Kenyata",
"Keon",
"Kerr",
"Kerrim",
"Kerryn",
"Kerwinn",
"Keshawn",
"Keyair",
"Keyon",
"Khalon",
"Kier",
"Kieran",
"Kierian",
"Kieron",
"Kimbel",
"Kiralescense",
"Kirryn",
"Kofi",
"Kojo",
"Kol",
"Kolby",
"Kordae",
"Kordal",
"Kordell",
"Krishan",
"Krishay",
"Kristion",
"Kunta",
"Kuraim",
"Kwamie",
"Kwamin",
"Kyan",
"Kyrin",
"Kyrone",
"La Vonn",
"La-corey",
"Lado",
"Ladrus",
"Laken",
"Lakista",
"Lamar",
"Lamark",
"Lamarr",
"Lamech",
"Lamont",
"Lance",
"Laran",
"Larent",
"Larice",
"Larmar",
"Laron",
"La-Ron",
"Lasean",
"Lashawn",
"Lasil",
"Lason",
"Lathan",
"Latrell",
"Latrivis",
"Lavan",
"Lavar",
"Lavaughan",
"Lavaughn",
"Lavernus",
"Lavon",
"Lavonne",
"LeBron",
"Ledell",
"Lee-Ron",
"Lemar",
"Lemarr",
"Lemuel",
"Leron",
"Lester",
"Le-Vaughan",
"Levon",
"Lincoln",
"Liron",
"Lisimba",
"Lloyd",
"Louis",
"Lovell",
"Lucius",
"Ludacris",
"Lugobi",
"Luther",
"Lyron",
"Mablevi",
"Major",
"Malik",
"Mancel",
"Marcus",
"Maron",
"Marques",
"Marquis",
"Martel",
"Martin",
"Marvin",
"Mashawn",
"Maurica",
"Maurice",
"Mauricio",
"Maurilio",
"Maurin",
"Mauritius",
"Maurizio",
"Maurus",
"Maury",
"Mauryen",
"Mavra",
"Mavriki",
"Melaina",
"Merick",
"Merik",
"Merric",
"Meurig",
"Michael",
"Mikal",
"Minas",
"Mo",
"Mohtadi",
"Moise",
"Montel",
"Montell",
"Montez",
"Montraie",
"Morie",
"Moris",
"Morison",
"Moritz",
"Moriz",
"Morkere",
"Morly",
"Morris",
"Morrisey",
"Morse",
"Mouric",
"Mykelti",
"Nabulung",
"Napoleon",
"Nasr",
"Natrick",
"Neeshika",
"Nelson",
"Nero",
"Nigel",
"Nisang",
"Noah",
"Norrece",
"Nox",
"Obiajulu",
"Odell",
"Omari",
"Omarr",
"Onyx",
"Onzi",
"Orlando",
"Orpheus",
"Otis",
"Ovishkar",
"Patrice",
"Pearson",
"Peran",
"Perry",
"Pinye",
"Quaashie",
"Quaddus",
"Quadrees",
"Quannell",
"Quarren",
"Quashawn",
"Quenton",
"Quincy",
"Quintavius",
"Quinton",
"Quoitrel",
"Rachard",
"Radd",
"Raimy",
"Ramell",
"Randall",
"Rashan",
"Rashard",
"Rashon",
"Raymone",
"Raynard",
"Razi",
"Reggie",
"Reggis",
"Reginald",
"Reidel",
"Reshay",
"Revon",
"Rhashan",
"Robaire",
"Rodell",
"Rodney",
"Romain",
"Romeo",
"Romon",
"Romone",
"Romy",
"Rondall",
"Rondy",
"Roscoe",
"Roshaun",
"Rufus",
"Runako",
"Salim",
"Sammy",
"Samuel",
"Santana",
"Sayon",
"Sean",
"Sebastion",
"Serek",
"Shadow",
"Shan",
"Shandrel",
"Shantie",
"Shaquille",
"Shawnte",
"Sheik",
"Sherwin",
"Shevon",
"Shontae",
"Shyam",
"Siavash",
"Sidell",
"Simeon",
"Smokey",
"Souley",
"Spike",
"Steadman",
"Sterlin",
"Steve",
"Sulaiman",
"Sullivan",
"Suwayd",
"Sylvester",
"Tabansi",
"Tabari",
"Talin",
"Tamal",
"Tamarius",
"Tameron",
"Tamesis",
"Tamish",
"Tavarius",
"Tavon",
"Taye",
"Taylan",
"Terell",
"Terrance",
"Terrell",
"Terris",
"Tevaughn",
"Tevin",
"Tion",
"Todney",
"Travanis",
"Travaughn",
"Travon",
"Trayvon",
"Trece",
"Trejean",
"Tremaine",
"Trenton",
"Treshaun",
"Treven",
"Trevon",
"Trone",
"Trory",
"Tupac",
"Turell",
"Twain",
"Ty",
"Tyjon",
"Tyreck",
"Tyree",
"Tyreese",
"Tyrek",
"Tyrell",
"Tyrone",
"Tyrus",
"Uba",
"Ulan",
"Umar",
"Uzoma",
"Vance",
"Vandwon",
"Vashan",
"Vashon",
"Veltry",
"Verlyn",
"Vishon",
"Voshon",
"Wardell",
"Warwick",
"Waverly",
"Wayan",
"Wendell",
"Wesley",
"Wilburn",
"Willie",
"Winton",
"Wyclef",
"Xavier",
"Xayvion",
"Xyshaun",
"Yemane",
"Yobachi",
"Zachary",
"Zaid",
"Zareb",
"Zashawn",
"Zchon",
"Zeffross",
"Zeshaun",
"Zeshon",
"Zyshonne"]>>
<<set setup.swedishFemaleFirstnames to [
"Adahlia",
"Adele",
"Affton",
"Agata",
"Agda",
"Agnes",
"Agneta",
"Alfhild",
"Alice",
"Alicia",
"Alma",
"Alva",
"Alvinia",
"Amanda",
"Amelia",
"Andrine",
"Aninna",
"Anja",
"Anna",
"Annali",
"Annalies",
"Annaliese",
"Annalisa",
"Anneli",
"Annelie",
"Anneline",
"Annelis",
"Annelisa",
"Annely",
"Annica",
"Ase",
"Asta",
"Astrid",
"Atalie",
"Aurela",
"Axelina",
"Barbro",
"Bele",
"Bengta",
"Bianca",
"Bim",
"Blida",
"Bobba",
"Bodil",
"Borghild",
"Brigetta",
"Brite",
"Britt",
"Cajsa",
"Camilla",
"Caren",
"Carin",
"Carita",
"Carola",
"Celine",
"Christana",
"Cilla",
"Clara",
"Cleo",
"Cornelia",
"Dahlia",
"Duve",
"Ebba",
"Edeltrud",
"Edit",
"Edith",
"Edrit",
"Effe",
"Egefride",
"Egelfride",
"Eija",
"Eiji",
"Eina",
"Eira",
"Eldis",
"Eleonora",
"Elin",
"Elina",
"Elisabet",
"Elise",
"Ella",
"Ellen",
"Ellie",
"Ellinor",
"Elsa",
"Elvan",
"Elvinia",
"Elvira",
"Embla",
"Emeliana",
"Emelie",
"Emilia",
"Emma",
"Emmy",
"Engla",
"Erny",
"Errika",
"Ester",
"Felicia",
"Filippa",
"Fredrika",
"Freja",
"Germund",
"Gittan",
"Greta",
"Gull",
"Gunborg",
"Gunda",
"Gunhild",
"Gunilla",
"Gunvor",
"Gusten",
"Haidi",
"Haifa",
"Hanna",
"Hannus",
"Hedda",
"Hella",
"Helmi",
"Helvi",
"Hilda",
"Hildur",
"Hillevi",
"Hilma",
"Ida",
"Ines",
"Inez",
"Ingrid",
"Iris",
"Isabella",
"Isabelle",
"Jannicke",
"Jasmine",
"Joline",
"Jonna",
"Julia",
"Julie",
"Juni",
"Kajsa",
"Karina",
"Kerry",
"Kerstin",
"Kerstina",
"Kerstine",
"Kjerstin",
"Klara",
"Lajla",
"Laura",
"Leah",
"Leia",
"Leva",
"Lexandra",
"Lilly",
"Linn",
"Linna",
"Linnae",
"Linnaea",
"Linnea",
"Lisa",
"Liv",
"Livia",
"Lo",
"Lotta",
"Lova",
"Lovis",
"Lovisa",
"Luna",
"Lykke",
"Magna",
"Maj",
"Maja",
"Majken",
"Malena",
"Margareta",
"Maria",
"Marikka",
"Marriba",
"Marta",
"Märta",
"Matilda",
"Medeleine",
"Meja",
"Melissa",
"Mila",
"Minna",
"Mira",
"Moa",
"Molly",
"My",
"Nalle",
"Nathalie",
"Nea",
"Nellie",
"Nicole",
"Noah",
"Nora",
"Nova",
"Novalie",
"Olivia",
"Penny",
"Pernilla",
"Pixie",
"Quenby",
"Ragna",
"Rita",
"Ronja",
"Ronya",
"Ros",
"Rosel",
"Runa",
"Rut",
"Saga",
"Sally",
"Sanna",
"Sara",
"Sassa",
"Selma",
"Sidsel",
"Sigfrid",
"Signe",
"Signy",
"Sigrid",
"Sigrunn",
"Sire",
"Siri",
"Sissela",
"Siv",
"Sofia",
"Solvig",
"Stella",
"Stina",
"Sunni",
"Svea",
"Tekla",
"Teresia",
"Thea",
"Tilda",
"Tilde",
"Tindra",
"Trind",
"Tuva",
"Tyra",
"Ulla",
"Valborg",
"Vera",
"Victoria",
"Wilma"]>>
<<set setup.italianFemaleFirstnames to [
"Abriana",
"Adele",
"Agata",
"Alba",
"Alessa",
"Alessandra",
"Alessia",
"Alice",
"Allegra",
"Alma",
"Amanda",
"Anastasia",
"Angela",
"Angelica",
"Angelina",
"Anna",
"Antonia",
"Aria",
"Ariana",
"Arianna",
"Armida",
"Asia",
"Augusta",
"Aurelia",
"Aurora",
"Bambi",
"Barbara",
"Beatrice",
"Benedetta",
"Berenice",
"Bianca",
"Bibiana",
"Bice",
"Camilla",
"Capriana",
"Caprice",
"Cara",
"Carin",
"Carlotta",
"Carola",
"Cassandra",
"Caterina",
"Cecilia",
"Celeste",
"Celia",
"Cettina",
"Chiara",
"Clara",
"Clarissa",
"Claudia",
"Contessa",
"Cornelia",
"Cosima",
"Damiana",
"Daria",
"Delia",
"Diana",
"Domani",
"Donatella",
"Donna",
"Elena",
"Eleonora",
"Elisa",
"Emilia",
"Emily",
"Emma",
"Eugenia",
"Eulalia",
"Fabia",
"Fabiana",
"Fabiola",
"Faustina",
"Febe",
"Filippa",
"Fiorella",
"Fiorenza",
"Flavia",
"Flora",
"Francesca",
"Fulvia",
"Gaetana",
"Gaia",
"Giada",
"Gina",
"Ginevra",
"Gioia",
"Giordana",
"Giorgia",
"Giovanna",
"Giulia",
"Giustina",
"Gloria",
"Graziella",
"Greta",
"Ilaria",
"Irene",
"Isa",
"Isabella",
"Itala",
"Justina",
"Ladonna",
"Lanza",
"Laura",
"Lauretta",
"Lave",
"Lia",
"Liona",
"Lorena",
"Lorenza",
"Luca",
"Lucia",
"Luciana",
"Ludovica",
"Madonna",
"Marcella",
"Margherita",
"Maria",
"Mariabella",
"Marietta",
"Marina",
"Marissa",
"Marsala",
"Marta",
"Martina",
"Matilde",
"Melissa",
"Mia",
"Micaela",
"Michelle",
"Mila",
"Miriam",
"Natalia",
"Neroli",
"Nicole",
"Noemi",
"Nora",
"Olivia",
"Oriana",
"Ornella",
"Paola",
"Perla",
"Prima",
"Primavera",
"Priscilla",
"Quorra",
"Rebecca",
"Regina",
"Renata",
"Ricarda",
"Rita",
"Rocio",
"Roma",
"Romana",
"Rosa",
"Rosalia",
"Rosetta",
"Ruffina",
"Rufina",
"Sabina",
"Sabrina",
"Sara",
"Scilla",
"Serena",
"Sidonia",
"Sienna",
"Sistine",
"Sofia",
"Speranza",
"Stella",
"Tatiana",
"Tessa",
"Trilby",
"Uberta",
"Urbana",
"Valentina",
"Vedette",
"Venecia",
"Venetia",
"Verona",
"Veronica",
"Vincenza",
"Viola",
"Virginia",
"Vita",
"Vittoria",
"Zita",
"Zola"]>>
<<set setup.spanishFemaleFirstnames to [
"Abril",
"Adalia",
"Adora",
"Adoracion",
"Adriana",
"Africa",
"Agata",
"Agueda",
"Aidia",
"Aina",
"Ainara",
"Ainhoa",
"Aitana",
"Alba",
"Alejandra",
"Alexia",
"Alicia",
"Alma",
"Alva",
"Amparo",
"Ana",
"Anahi",
"Anastasia",
"Andrea",
"Ane",
"Angela",
"Anna",
"Antonia",
"Ariadna",
"Arlet",
"Aroa",
"Aureliano",
"Aurora",
"Aya",
"Azahara",
"Belinda",
"Berta",
"Bettina",
"Bibiana",
"Blanca",
"Bonita",
"Buena",
"Candela",
"Carey",
"Carla",
"Carlota",
"Carlotta",
"Carmen",
"Carolina",
"Cassandra",
"Cayetana",
"Cecilia",
"Celia",
"Charo",
"Chelo",
"Chiquita",
"Chloe",
"Cierra",
"Clara",
"Claudia",
"Cloe",
"Coco",
"Concepcion",
"Concetta",
"Concha",
"Conchita",
"Consolata",
"Consuelo",
"Cristina",
"Cruz",
"Damita",
"Daniela",
"Delfina",
"Delia",
"Delores",
"Diana",
"Dolores",
"Dores",
"Duena",
"Duenna",
"Dulce",
"Dulcie",
"Eldora",
"Elena",
"Elia",
"Elsa",
"Elvira",
"Emilia",
"Emma",
"Enriqua",
"Esmerelda",
"Esperanza",
"Estela",
"Eugenia",
"Eulalia",
"Eva",
"Fabiola",
"Fe",
"Febe",
"Flavia",
"Fonda",
"Frida",
"Friera",
"Gabriela",
"Genoveva",
"Gertrudes",
"Gitana",
"Gloria",
"Gotzone",
"Guadalupe",
"Haizea",
"Helena",
"Hermosa",
"Ines",
"Irati",
"Irene",
"Iria",
"Iris",
"Isa",
"Isabel",
"Itzel",
"Jade",
"Jana",
"Jardena",
"Jesenia",
"Jimena",
"Julia",
"Julitta",
"June",
"Kesare",
"Lacienega",
"Ladonna",
"Laia",
"Landrada",
"Lara",
"Laura",
"Lavada",
"Leire",
"Lela",
"Lenora",
"Leonor",
"Leya",
"Leyre",
"Lia",
"Liani",
"Linda",
"Lluvia",
"Lola",
"Lolita",
"Loma",
"Lorena",
"Lorenza",
"Lucia",
"Luisa",
"Lujuana",
"Luna",
"Lupita",
"Lux",
"Luz",
"Madeira",
"Madra",
"Maitane",
"Maitea",
"Majondra",
"Malak",
"Manda",
"Manuela",
"Mar",
"Mara",
"Maria",
"Maricruz",
"Marina",
"Mariola",
"Mariposa",
"Marisa",
"Marisol",
"Marissa",
"Marta",
"Martina",
"Melosa",
"Mercedes",
"Merche",
"Mia",
"Micaela",
"Milagros",
"Mio",
"Mira",
"Mireia",
"Miriam",
"Montana",
"Mora",
"Nadia",
"Nahia",
"Naia",
"Naiara",
"Natalia",
"Nayara",
"Neiva",
"Nerea",
"Nerita",
"Neva",
"Nevada",
"Neves",
"Nieve",
"Nieves",
"Nina",
"Noa",
"Noelia",
"Nora",
"Novia",
"Novyanna",
"Nuria",
"Oihane",
"Olivia",
"Ona",
"Ora",
"Osana",
"Paca",
"Palma",
"Palmira",
"Paloma",
"Paola",
"Paula",
"Perla",
"Placida",
"Puma",
"Querida",
"Queta",
"Quinceanos",
"Raeka",
"Rafaela",
"Ramona",
"Rana",
"Reyes",
"Ria",
"Rigoberta",
"Roana",
"Rocio",
"Rocío",
"Rosa",
"Rosalind",
"Rosalynda",
"Rosario",
"Rufina",
"Sally",
"Salma",
"Sancha",
"Sancho",
"Sandia",
"Santana",
"Santina",
"Sara",
"Savana",
"Savanna",
"Savannah",
"Seina",
"Senalda",
"Senona",
"Sierra",
"Silvia",
"Socorro",
"Sofia",
"Sofiel",
"Sol",
"Solana",
"Soledad",
"Sonora",
"Taina",
"Tea",
"Tejana",
"Terceiro",
"Teresa",
"Texcean",
"Tia",
"Tierra",
"Tina",
"Tranquilia",
"Trella",
"Triana",
"Tulia",
"Ursulina",
"Uxue",
"Valentina",
"Valeria",
"Vega",
"Vera",
"Verda",
"Verdad",
"Veta",
"Victoria",
"Vina",
"Virginia",
"Xalbadora",
"Xevera",
"Xiao",
"Xiomara",
"Yadra",
"Yesenia",
"Yomaris",
"Zaneta",
"Zarela",
"Zarita",
"Zavanna",
"Zaviera",
"Zequinha",
"Zoe",
"Zuriaa",
"Zurine"]>>
<<set setup.japaneseFemaleFirstnames to [
"Ai",
"Aiko",
"Airi",
"Akako",
"Akanah",
"Akari",
"Aki",
"Akina",
"Akira",
"Akiyama",
"Amarante",
"Amaya",
"Andrea",
"Aneko",
"Anna",
"Anzan",
"Anzu",
"Aoi",
"Asa",
"Ayaka",
"Ayame",
"Ayane ",
"Bankei",
"Chika",
"Chinshu",
"Chiyo",
"Cho",
"Chorei",
"Dai",
"Eido",
"Etsu",
"Fuka",
"Fuyo",
"Gyo Shin",
"Hakue",
"Hama",
"Hana",
"Hanako",
"Haruka",
"Haya",
"Hikaru",
"Himari",
"Hina",
"Hinata",
"Hisa",
"Hiyori",
"Honoka",
"Hoshi",
"Ichika",
"Ima",
"Ishi",
"Iva",
"Jakushitsu",
"Jimin",
"Jin",
"JoMei",
"Kaede",
"Kagami",
"Kaho",
"Kaida",
"Kaiya",
"Kameko",
"Kamin",
"Kane",
"Kanon",
"Kaori",
"Kaoru",
"Karin",
"Kata",
"Kaya",
"Kei",
"Keiko",
"Kiaria",
"Kichi",
"Kiku",
"Kimi",
"Kin",
"Kioko",
"Kira",
"Kita",
"Kiwa",
"Kiyoshi",
"Koge",
"Kogen",
"Kohana",
"Koharu",
"Kokona",
"Koto",
"Kozue",
"Kuma",
"Kumi",
"Kumiko",
"Kuniko",
"Kura",
"Kyoko",
"Leiko",
"Machi",
"Machiko",
"Maeko",
"Maemi",
"Mai",
"Maiko",
"Makiko",
"Mamiko",
"Mao",
"Mariko",
"Masago",
"Masako",
"Matsuko",
"Mayako",
"Mayuko",
"Mei",
"Michi",
"Michiko",
"Midori",
"Mieko",
"Mihoko",
"Mika",
"Miki",
"Minako",
"Mine",
"Mio",
"Misaki",
"Misako",
"Mitsuko",
"Miwa",
"Miya",
"Miyoko",
"Miyu",
"Miyuki",
"Momoka",
"Momoko",
"Mutsuko",
"Myoki",
"Nahoko",
"Nami",
"Nana",
"Nanako",
"Nanami",
"Naoko",
"Nariko",
"Natsuki",
"Natsuko",
"Nayoko",
"Nishi",
"Noa",
"Nori",
"Noriko",
"Nozomi",
"Nyoko",
"Oki",
"Rai",
"Raku",
"Rei",
"Reiko",
"Reina",
"Ren",
"Renora",
"Ría",
"Rieko",
"Rikako",
"Riko",
"Riku",
"Rin",
"Rina",
"Rinako",
"Rini",
"Rino",
"Rio",
"Risa",
"Risako",
"Roshin",
"Ruka",
"Rumiko",
"Ruri",
"Ryoko",
"Sachi",
"Sachiko",
"Sada",
"Saeko",
"Saiun",
"Saki",
"Sakiko",
"Sakuko",
"Sakura",
"Sakurako",
"Sana",
"Sanako",
"Sara",
"Sasa",
"Sashi",
"Sato",
"Satoko",
"Sawa",
"Sayo",
"Sayoko",
"Seki",
"Shika",
"Shikah",
"Shina",
"Shinko",
"Shiori",
"Shoko",
"Sora",
"Sorano",
"Suki",
"Sumi",
"Tadako",
"Taido",
"Taka",
"Takako",
"Takara",
"Taki",
"Tamaka",
"Tamiko",
"Tanaka",
"Taney",
"Tani",
"Taree",
"Tazu",
"Tennen",
"Tetsu",
"Tokiko",
"Tomi",
"Tomiko",
"Tora",
"Tori",
"Toyo",
"Umeko",
"Usagi",
"Wakana",
"Washi",
"Yachi",
"Yaki",
"Yama",
"Yasu",
"Yayoi",
"Yei",
"Yoi",
"Yoko",
"Yori",
"Yoshiko",
"Yua",
"Yui",
"Yuka",
"Yukako",
"Yukiko",
"Yume",
"Yumi",
"Yumiko",
"Yuna",
"Yuri",
"Yuriko",
"Yutsuko",
"Yuzuki",
"Zadhiya"]>>
<<set setup.germanFemaleFirstnames to [
"Aada",
"Aadelheide",
"Aalis",
"Ada",
"Adabelle",
"Adahlia",
"Adalaide",
"Adalee",
"Adaleigh",
"Adalena",
"Adalgisa",
"Adalheida",
"Adali",
"Adalia",
"Adalie",
"Adalina",
"Adallina",
"Adaly",
"Adalyn",
"Adalynn",
"Addalla",
"Addelyne",
"Addie",
"Addilyn",
"Addler",
"Adelade",
"Adelaid",
"Adelaide",
"Adelaine",
"Adelajda",
"Adeldreda",
"Adele",
"Adeleine",
"Adelena",
"Adelgunda",
"Adelheid",
"Adelheide",
"Adelia",
"Adelice",
"Adelicia",
"Adelid",
"Adelie",
"Adelien",
"Adelin",
"Adelind",
"Adelinda",
"Adeline",
"Adelisa",
"Adelise",
"Adelita",
"Adeliza",
"Adell",
"Adella",
"Adellah",
"Adellene",
"Adellufu",
"Adelredus",
"Adeluin",
"Adelyn",
"Adelyne",
"Adelynn",
"Adelyte",
"Aderine",
"Aderyn",
"Adette",
"Adhelina",
"Adilene",
"Adolfina",
"Adolpha",
"Adolphine",
"Aebba",
"Aelf",
"Aelfrun",
"Aelish",
"Aelive",
"Aemilia",
"Aerin",
"Ailne",
"Aimiliona",
"Alberta",
"Alberteen",
"Albertina",
"Albertine",
"Albertyna",
"Albertyne",
"Aldith",
"Aldona",
"Aldus",
"Aldys",
"Aleece",
"Aleesha",
"Aleksandra",
"Aleshia",
"Alice",
"Alicja",
"Alina",
"Aline",
"Aliosha",
"Alis",
"Alisanne",
"Alise",
"Alisha",
"Alishay",
"Alishia",
"Alisia",
"Aliska",
"Alisone",
"Alissandre",
"Alisse",
"Alisun",
"Alisz",
"Alita",
"Alitheea",
"Alitia",
"Aliz",
"Alize",
"Alla",
"Allar",
"Allaryce",
"Allcen",
"Allcenne",
"Allecia",
"Alleece",
"Alles",
"Alless",
"Allice",
"Allicea",
"Allicen",
"Allicenne",
"Allie",
"Alliree",
"Allis",
"Allisann",
"Allisanne",
"Allissa",
"Allisun",
"Allisunne",
"Allisyn",
"Allvar",
"Ally",
"Allys",
"Allyse",
"Allyssa",
"Almarine",
"Almas",
"Almeena",
"Almena",
"Almut",
"Aloisa",
"Aloisia",
"Alonsa",
"Alphie",
"Alvarie",
"Alverta",
"Alwyne",
"Alyana",
"Alyce",
"Alys",
"Alyse",
"Alysha",
"Alyshia",
"Alysia",
"Alysone",
"Alysse",
"Alyssia",
"Amelia",
"Amelie",
"Americus",
"Amerie",
"Amilia",
"Amy",
"Ann",
"Annabell",
"Anneliese",
"Annemarie",
"Annerose",
"Anni",
"Annika",
"Annmarie",
"Antje",
"Antonia",
"Arabella",
"Arabelle",
"Aria",
"Arla",
"Arlana",
"Arleana",
"Arleena",
"Arleene",
"Arlena",
"Arlenna",
"Arlette",
"Arlina",
"Arlinda",
"Arline",
"Arlyn",
"Arlyne",
"Armanda",
"Arnelle",
"Arnola",
"Arrietty",
"Arthurina",
"Arthurine",
"Auberi",
"Auberon",
"Aubrey",
"Aubriana",
"Aubrianne",
"Aubrielle",
"Aubry",
"Aude",
"Audene",
"Audre",
"Audrea",
"Audreana",
"Audreanna",
"Audri",
"Audria",
"Audriana",
"Audrianna",
"Audrie",
"Audrielle",
"Audris",
"Audry",
"Auelina",
"Ava",
"Avah",
"Avalee",
"Avaleigh",
"Avaley",
"Avalie",
"Avanda",
"Avas",
"Aveson",
"Avia",
"Aviana",
"Aviance",
"Avianna",
"Avicia",
"Avie",
"Avila",
"Avilina",
"Avlynn",
"Avys",
"Awilda",
"Aydia",
"Azelice",
"Azilis",
"Baldhild",
"Baldith",
"Balsam",
"Barbetta",
"Barrett",
"Bathilda",
"Bathilde",
"Belynda",
"Berendina",
"Berit",
"Berlynn",
"Bernadine",
"Berni",
"Bertha",
"Bertina",
"Betelgeuse",
"Betia",
"Billie",
"Binney",
"Bluma",
"Bobbe",
"Bruna",
"Callan",
"Caree",
"Carla",
"Carlotta",
"Catinka",
"Catja",
"Cecania",
"Charilette",
"Charla",
"Charlotte",
"Charoline",
"Cheryl",
"Cheryle",
"Chiara",
"Chole",
"Chriselda",
"Christianitye",
"Christin",
"Chryssi",
"Clara",
"Clarae",
"Claral",
"Clarimonda",
"Clarimonde",
"Claudette",
"Clay",
"Cleotilde",
"Clotild",
"Clotilda",
"Clotilde",
"Conradina",
"Constanze",
"Cordula",
"Cramer",
"Crescentia",
"Criseyde",
"Dagmar",
"Dale",
"Dame",
"Delaina",
"Delana",
"Delina",
"Delinda",
"Della",
"Delli",
"Delly",
"Deloise",
"Denica",
"Didrika",
"Dolf",
"Due",
"Dustan",
"Dustin",
"Eadaion",
"Eagle",
"Eamma",
"Earnestine",
"Eartha",
"Eatta",
"Ebba",
"Eberta",
"Edeline",
"Edelle",
"Edelmar",
"Edelot",
"Edeltraud",
"Edeltraut",
"Edeltrude",
"Edi",
"Edid",
"Edida",
"Edie",
"Edied",
"Edihe",
"Edith",
"Edony",
"Edvig",
"Edvige",
"Edwina",
"Eevonne",
"Egelina",
"Ehren",
"Eidel",
"Eidith",
"Eih",
"Eiichi",
"Eilieua",
"Eilieue",
"Eilika",
"Einilda",
"Elberthina",
"Elena",
"Elfreeda",
"Elfriede",
"Elica",
"Elif",
"Elina",
"Elisa",
"Elisabeth",
"Elita",
"Elke",
"Ella",
"Ellea",
"Ellfreeda",
"Ellfrida",
"Ellfrieda",
"Ellfrydah",
"Ellina",
"Ellsa",
"Elmeena",
"Elom",
"Elouise",
"Elsabe",
"Elsbeth",
"Else",
"Elsha",
"Elsje",
"Elske",
"Elvah",
"Elysant",
"Elza",
"Em",
"Emaline",
"Emallie",
"Emalyn",
"Emayn",
"Embe",
"Ember",
"Embeth",
"Emelie",
"Emeline",
"Emely",
"Emelyne",
"Emersyn",
"Emestine",
"Emilia",
"Emilie",
"Emily",
"Emm",
"Emma",
"Emmajean",
"Emmaleah",
"Emmaline",
"Emmalise",
"Emmaly",
"Emmalyn",
"Emmalynn",
"Emmeline",
"Emmer",
"Emmilene",
"Emmylou",
"Emota",
"Ems",
"Enelise",
"Engel",
"Engelbertha",
"Englbehrt",
"Enna",
"Enrica",
"Eorcengota",
"Eormenhilde",
"Eraman",
"Eramana",
"Erda",
"Ericka",
"Erla",
"Erma",
"Ermegarde",
"Ermengarda",
"Ermengarde",
"Ermengild",
"Ermine",
"Ermingard",
"Ermintrude",
"Ermyntrude",
"Ernesha",
"Ernestina",
"Ernestine",
"Erth",
"Ertha",
"Erykah",
"Escher",
"Estrild",
"Ethel",
"Ethelinde",
"Etta",
"Eva",
"Everleigh",
"Everley",
"Everly",
"Everlynn",
"Evi",
"Evon",
"Ewe",
"Fabienne",
"Faiga",
"Farica",
"Federica",
"Fenja",
"Ferda",
"Fernanda",
"Filiberta",
"Filma",
"Finja",
"Fiona",
"Firuz",
"Franka",
"Franziska",
"Freda",
"Freddi",
"Frederica",
"Fredericka",
"Frederika",
"Frederique",
"Fredricka",
"Fredrika",
"Freeda",
"Freedah",
"Freida",
"Frida",
"Frieda",
"Friederike",
"Frig",
"Frija",
"Frithela",
"Frithestan",
"Fritzie",
"Fuchsia",
"Galiana",
"Gari",
"Gartrude",
"Gena",
"Genevieve",
"Geoffrey",
"Gerald",
"Geralda",
"Geraldene",
"Geraldine",
"Geralyn",
"Gerardo",
"Gerda",
"Gerdi",
"Gerianne",
"Gerla",
"Gerri",
"Gerrianne",
"Gerrie",
"Gertraud",
"Gertrude",
"Gerty",
"Gesine",
"Geua",
"Geue",
"Ghislaine",
"Gilda",
"Gilly",
"Gresilda",
"Greta",
"Gretal",
"Gretchen",
"Gretel",
"Gretha",
"Grethe",
"Gretta",
"Grisel",
"Griselda",
"Gritt",
"Grizel",
"Grizelda",
"Grizelle",
"Gromer",
"Gronw",
"Guðrún",
"Haak",
"Hallam",
"Hannabelle",
"Hannah",
"Hanneli",
"Hannelore",
"Harriett",
"Harriette",
"Hattie",
"Hawisa",
"Hawise",
"Hawisia",
"Hawys",
"Haydee",
"Hedda",
"Hedi",
"Hedvig",
"Hedvika",
"Hehilde",
"Hei",
"Heida",
"Heide",
"Heidi",
"Heidie",
"Heidy",
"Heike",
"Heiko",
"Heila",
"Heilewis",
"Helena",
"Helene",
"Helevisa",
"Helewisa",
"Helewise",
"Helewys",
"Helewyse",
"Helmet",
"Henny",
"Henria",
"Henrienna",
"Henrietta",
"Herlinda",
"Herlinde",
"Herma",
"Hermelinda",
"Hermia",
"Hermila",
"Hermina",
"Herminia",
"Hettie",
"Hetty",
"Hida",
"Hilda",
"Hilde",
"Hildegard",
"Hildegarde",
"Hildegunn",
"Hildie",
"Hildreth",
"Hildur",
"Hildy",
"Hilma",
"Hiltrude",
"Hollye",
"Honey",
"Huberta",
"Hylda",
"Hylde",
"Ida",
"Idaia",
"Ilina",
"Ilsa",
"Imelda",
"Irma",
"Isabell",
"Isabella",
"Isela",
"Jakobie",
"Jana",
"Jarvia",
"Jaselle",
"Jasmin",
"Jauslyn",
"Jenell",
"Jeralee",
"Jeri",
"Jerolyn",
"Jerri",
"Jerrie",
"Jerrileen",
"Jette",
"Jo",
"Joaida",
"Joan",
"Joana",
"Joane",
"Joanelle",
"Johanna",
"Johannah",
"Jolaife",
"Jolanda",
"Jolina",
"Jolinn",
"Joona",
"Josephine",
"Joss",
"Jozette",
"Judeth",
"Jule",
"Julia",
"Julieann",
"Juliette",
"Kaja",
"Kalona",
"Kamrie",
"Karel",
"Karla",
"Karlotta",
"Kateri",
"Katharina",
"Katrin",
"Katrina",
"Kelby",
"Kerstin",
"Klarissa",
"Kornelia",
"Kreszentia",
"Kristol",
"Landra",
"Lara",
"Laura",
"Lawanda",
"Lea",
"Leisel",
"Lena",
"Leni",
"Lenna",
"Leoma",
"Leona",
"Leonie",
"Léonie",
"Leopoldina",
"Leota",
"Lerissa",
"Lia",
"Libelle",
"Liesa",
"Liese",
"Liesei",
"Liesel",
"Lieselotte",
"Liesi",
"Liesl",
"Liezel",
"Liezl",
"Lilly",
"Lina",
"Linda",
"Linde",
"Lindsai",
"Lindsay",
"Lindsea",
"Lindsee",
"Lisa",
"Lise",
"Liuete",
"Lizzet",
"Lizzette",
"Loralai",
"Loralee",
"Loralei",
"Loralie",
"Loralyn",
"Loranna",
"Lore",
"Lorelai",
"Lorelei",
"Loreley",
"Lorelii",
"Lorella",
"Lorenza",
"Lorilee",
"Lotta",
"Lotte",
"Louanna",
"Louisa",
"Louise",
"Loyce",
"Luana",
"Lucina",
"Lucy",
"Ludwiga",
"Luijzika",
"Luisa",
"Luisana",
"Luise",
"Luisina",
"Luna",
"Lurlene",
"Lurline",
"Luvisa",
"Lynda",
"Lynde",
"Lyndee",
"Lysa",
"Mactilda",
"Mactildis",
"Maddalen",
"Maddalene",
"Madelhari",
"Mafalda",
"Maganhildi",
"Magdalena",
"Magnhilda",
"Magnhilde",
"Magnild",
"Magnilda",
"Magnilde",
"Mahald",
"Mahalt",
"Mahault",
"Mahaut",
"Mahenyld",
"Maila",
"Maja",
"Malene",
"Malkyn",
"Mallory",
"Mandel",
"Manel",
"Maneld",
"Manild",
"Mara",
"Marai",
"Marelda",
"Margetud",
"Marhilda",
"Marhildi",
"Maria",
"Mariateresa",
"Marie",
"Mariel",
"Maritza",
"Markella",
"Marlana",
"Marlayna",
"Marleena",
"Marleina",
"Marleisha",
"Marlene",
"Marlenie",
"Marlenne",
"Marlina",
"Marlinda",
"Marlisa",
"Marliss",
"Marlynn",
"Martha",
"Mary",
"Mathila",
"Mathild",
"Mathilda",
"Mathilde",
"Mathildis",
"Matild",
"Matilda",
"Matilde",
"Matildis",
"Matilldis",
"Matthildur",
"Matti",
"Matylda",
"Maude",
"Maudie",
"Mautild",
"Mawde",
"Maysaunt",
"Mazie",
"Mechtild",
"Mehpare",
"Meika",
"Melda",
"Meliah",
"Melina",
"Melinda",
"Melisande",
"Melissa",
"Mendie",
"Merle",
"Meryl",
"Meta",
"Mette",
"Metti",
"Mia",
"Miata",
"Miette",
"Mila",
"Milena",
"Milicent",
"Milita",
"Milla",
"Millicent",
"Millie",
"Milly",
"Mimi",
"Mina",
"Mine",
"Minea",
"Minna",
"Minne",
"Minni",
"Minnie",
"Minny",
"Mira",
"Miriam",
"Mittie",
"Mitzie",
"Moana",
"Moanna",
"Moll",
"Molleigh",
"Mollye",
"Morgen",
"Nadja",
"Nanetta",
"Nanina",
"Nastassja",
"Nedra",
"Nele",
"Nina",
"Nixie",
"Noah",
"Nora",
"Norberta",
"Nordica",
"Notburga",
"Ode",
"Odela",
"Odelette",
"Odelia",
"Odelina",
"Odell",
"Odella",
"Odetta",
"Odilia",
"Odolina",
"Olaia",
"Olie",
"Olinda",
"Oma",
"Oriholt",
"Oriold",
"Oriolda",
"Orlanda",
"Orlantha",
"Ormanda",
"Otha",
"Othelia",
"Otilia",
"Ottie",
"Ottilia",
"Ottilie",
"Otway",
"Otylia",
"Patra",
"Paula",
"Paulina",
"Pauline",
"Pavia",
"Petri",
"Petronilla",
"Pia",
"Pietronella",
"Pippi",
"Porsche",
"Porsha",
"Priska",
"Quartz",
"Rae",
"Rainah",
"Ramonda",
"Randilyn",
"Rapunzel",
"Rayla",
"Rayma",
"Rayna",
"Raynel",
"Raynelle",
"Raynne",
"Reia",
"Reinheld",
"Reinhild",
"Reinhilde",
"Renilda",
"Reyna",
"Reynae",
"Reyne",
"Rhine",
"Rhoslyn",
"Richa",
"Richarda",
"Richel",
"Richella",
"Richelle",
"Richia",
"Richil",
"Richild",
"Richilene",
"Richmal",
"Richmalle",
"Ricka",
"Rieka",
"Rigmor",
"Rilla",
"Rillia",
"Rillie",
"Riqua",
"Rixa",
"Robbey",
"Robena",
"Roberte",
"Robertena",
"Robertene",
"Robette",
"Roderica",
"Rohine",
"Rokilda",
"Rolanda",
"Rolande",
"Rollande",
"Romilda",
"Romy",
"Ronja",
"Rory",
"Rosamond",
"Rosamund",
"Rosine",
"Roswitha",
"Rothais",
"Rowena",
"Roysia",
"Roz",
"Rozalia",
"Rozi",
"Rozlyn",
"Rozlynn",
"Rozmonda",
"Rudi",
"Rudie",
"Rudina",
"Rudolfa",
"Ruomhildi",
"Ruperta",
"Rupetta",
"Rycca",
"Saacha",
"Sarah",
"Sarilda",
"Sarlote",
"Sarohildi",
"Saskia",
"Saxa",
"Schatzi",
"Schmetterling",
"Sedehanna",
"Sedemai",
"Selina",
"Selma",
"Selmah",
"Senta",
"Serhild",
"Serhilda",
"Serhilde",
"Serihilda",
"Serihilde",
"Serilda",
"Serilde",
"Serrilda",
"Shadley",
"Sieglind",
"Sieglinde",
"Sigfreida",
"Sigfrieda",
"Sigfryda",
"Sigilwig",
"Sigismunda",
"Siglinda",
"Siglinde",
"Sigmonda",
"Sigmunda",
"Silke",
"Silko",
"Sina",
"Sofia",
"Sommer",
"Sonnenschein",
"Sophia",
"Sophie",
"Stanze",
"Stark",
"Steffi",
"Steffie",
"Stella",
"Sunhild",
"Sunhilde",
"Swanhilda",
"Swanhilde",
"Swanild",
"Swanilda",
"Tabea",
"Taleja",
"Talicia",
"Tamina",
"Tatjana",
"Tawanda",
"Tawanna",
"Teigra",
"Terrie",
"Theresa",
"Tila",
"Tilda",
"Tilles",
"Tilli",
"Tillie",
"Tilly",
"Tresa",
"Treza",
"Trianna",
"Trissa",
"Trude",
"Trudi",
"Trudie",
"Trudy",
"Trula",
"Truvy",
"Ulla",
"Ulrika",
"Ulva",
"Uschi",
"Uta",
"Valentina",
"Victoria",
"Viveka",
"Vreneli",
"Vreni",
"Walda",
"Wanda",
"Wibeke",
"Wibke",
"Wilhelmina",
"Wilma",
"Winola",
"Zelda",
"Zelinda",
"Zelma",
"Zenzi",
"Zipporah",
"Zoe",
"Zoey"]>>
<<set setup.swissFemaleFirstnames to [
"Adelheid",
"Agata",
"Agnetta",
"Alessandra",
"Alessia",
"Alexandra",
"Alexia",
"Alice",
"Alicia",
"Alina",
"Alyssa",
"Amanda",
"Ambra",
"Amelia",
"Amelie",
"Amélie",
"Amina",
"Amy",
"Anaïs",
"Anna",
"Annagret",
"Anne",
"Arianna",
"Arjeta",
"Asia",
"Audrey",
"Aurélia",
"Aurora",
"Babetta",
"Barbara",
"Barbel",
"Blanda",
"Blerina",
"Bothild",
"Cajsa",
"Camilla",
"Camille",
"Caroline",
"Caterina",
"Catherine",
"Célia",
"Celine",
"Céline",
"Charlotte",
"Chiara",
"Chloe",
"Chloé",
"Christelle",
"Christine",
"Clara",
"Dagmar",
"Deborah",
"Delphine",
"Diellza",
"Ehlii",
"Elena",
"Eleonora",
"Éléonore",
"Eliana",
"Elin",
"Elina",
"Elisa",
"Elizabeth",
"Ella",
"Emilia",
"Émilie",
"Emily",
"Emma",
"Erika",
"Estelle",
"Eva",
"Evia",
"Fabienne",
"Fiona",
"Floke",
"Friede",
"Gabriel",
"Gaëlle",
"Gaia",
"Giada",
"Ginevra",
"Gioia",
"Giorgia",
"Gittan",
"Giulia",
"Greta",
"Grete",
"Hanna",
"Heidi",
"Heilwig",
"Helga",
"Ines",
"Inge",
"Ingegerd",
"Ingram",
"Irene",
"Isabel",
"Jacqui",
"Jade",
"Jael",
"Jana",
"Jessica",
"Jolanda",
"Julia",
"Julie",
"Juliette",
"Justine",
"Karen",
"Kelly",
"kenza",
"Kristin",
"Ladina",
"Laetitia",
"Lara",
"Larissa",
"Laura",
"Lea",
"Léane",
"Leïla",
"Lena",
"Léna",
"Léonie",
"Lia",
"Liesl",
"Lili",
"Lina",
"Liridona",
"Lisa",
"Livia",
"Lorena",
"Louise",
"Luana",
"Lucie",
"Luisa",
"Lynn",
"Maeva",
"Magdalena",
"Manon",
"Manuela",
"Mara",
"Maria",
"Marie",
"Marine",
"Marion",
"Martina",
"Mary",
"Mathilde",
"Matilde",
"Maude",
"Meia",
"Mélanie",
"Melina",
"Melissa",
"Mélissa",
"Mia",
"Michelle",
"Mila",
"Monika",
"Morgane",
"Nadia",
"Nathalie",
"Nicole",
"Nina",
"Noah",
"Noemi",
"Noémi",
"Noémie",
"Nora",
"Océane",
"Olga",
"Olivia",
"Patricia",
"Pauline",
"Rachel",
"Rahel",
"Rebecca",
"Romane",
"Ronja",
"Sabrina",
"salomé",
"Samantha",
"Sandra",
"Sara",
"Sarah",
"Selina",
"Serena",
"Sira",
"Sofia",
"Sonja",
"Sophia",
"Sophie",
"Stephanie",
"Susanne",
"Sylvette",
"Sylvia",
"Sylviane",
"Tania",
"Tiffany",
"Uland",
"Ursel",
"Uschi",
"Ushi",
"Valentina",
"Vanessa",
"Verena",
"Verene",
"Victoria",
"Viola",
"Vittoria",
"Vreneli",
"Vreni",
"Waltraud",
"Xenia",
"Yasmina",
"Yasmine",
"Yves",
"Yvonne",
"Zoe",
"Zuna"]>>
<<set setup.frenchFemaleFirstnames to [
"Abril",
"Agathe",
"Aïcha",
"Alair",
"Alberta",
"Alize",
"Alma",
"Amour",
"Ava",
"Avril",
"Babette",
"Bailey",
"Bedelia",
"Bernadette",
"Caroline",
"Caron",
"Celia",
"Cerise",
"Chablis",
"Chanel",
"Charlotte",
"Cheriss",
"Cheryl",
"Claudette",
"Colette",
"Constance",
"Courtesy",
"Cydney",
"Daphne",
"Darcie",
"Darlene",
"Deja",
"Denise",
"Desiree",
"Destiny",
"Didina",
"Dior",
"Djab",
"Dominique",
"Doreen",
"Elaine",
"Elise",
"Elita",
"Elle",
"Eloise",
"Emeraude",
"Etoile",
"Eva",
"Evonne",
"Fifine",
"Fleur",
"Fontanna",
"Fortune",
"Gabrielle",
"Garance",
"Garland",
"Gay",
"Geneva",
"Gervaise",
"Ghislaine",
"Harriet",
"Heloise",
"Honor",
"Iris",
"Isabeau",
"Ivette",
"Jacqueline",
"Jaimie",
"Janel",
"Jolie",
"Juliet",
"Kadence",
"Kalet",
"Kordell",
"Kyrielle",
"Larue",
"Lauren",
"Laverne",
"Lea",
"Leala",
"Lena",
"Léonie",
"Leontyne",
"Lesh",
"Lisa",
"Lisette",
"Lisle",
"Lois",
"L\'Oréal",
"Loring",
"Louise",
"Lucetta",
"Lucie",
"Lunette",
"Lyla",
"Lyle",
"Maëlys",
"Maine",
"Mallory",
"Manon",
"Mardi",
"Margo",
"Mariam",
"Marianne",
"Maribel",
"Marie",
"Marion",
"Marvelle",
"Maureen",
"Mauve",
"Mavis",
"Maya",
"Melisenda",
"Merane",
"Merla",
"Merle",
"Merlyn",
"Meryl",
"Miette",
"Mignon",
"Monique",
"Moselle",
"Nadia",
"Naeva",
"Nanette",
"Narcisse",
"Nathaly",
"Ninon",
"Noella",
"Odetta",
"Odette",
"Odil",
"Opaline",
"Orane",
"Oriel",
"Ouida",
"Page",
"Pascale",
"Perry",
"Prunella",
"Purvis",
"Questa",
"Quiterie",
"Raylene",
"Remy",
"Renee",
"Riva",
"Rochelle",
"Roslin",
"Ruby",
"Rui",
"Sage",
"Salene",
"Sarotte",
"Satin",
"Scout",
"Searlait",
"Sebastiona",
"Sennett",
"Shannelle",
"Shantay",
"Shanton",
"Sharice",
"Shyann",
"Sidonie",
"Sigourney",
"Solange",
"Soleil",
"Sorrel",
"Sosie",
"Stella",
"Susie",
"Suzanne",
"Suzette",
"Sydney",
"Sydni",
"Symone",
"Tallis",
"Tallys",
"Tayce",
"Taylar",
"Tempest",
"Therese",
"Tiffany",
"Tilda",
"Tolena",
"Toni",
"Tracy",
"Troy",
"Turquoise",
"Vedette",
"Vilette",
"Violette",
"Yasmine",
"Yvonne",
"Zanette"]>>
<<set setup.spanishFemaleFirstnames to [
"Abril",
"Adalia",
"Adora",
"Adoracion",
"Adriana",
"Africa",
"Agata",
"Agueda",
"Aidia",
"Aina",
"Ainara",
"Ainhoa",
"Aitana",
"Alba",
"Alejandra",
"Alexia",
"Alicia",
"Alma",
"Alva",
"Amparo",
"Ana",
"Anahi",
"Anastasia",
"Andrea",
"Ane",
"Angela",
"Anna",
"Antonia",
"Ariadna",
"Arlet",
"Aroa",
"Aureliano",
"Aurora",
"Aya",
"Azahara",
"Belinda",
"Berta",
"Bettina",
"Bibiana",
"Blanca",
"Bonita",
"Buena",
"Candela",
"Carey",
"Carla",
"Carlota",
"Carlotta",
"Carmen",
"Carolina",
"Cassandra",
"Cayetana",
"Cecilia",
"Celia",
"Charo",
"Chelo",
"Chiquita",
"Chloe",
"Cierra",
"Clara",
"Claudia",
"Cloe",
"Coco",
"Concepcion",
"Concetta",
"Concha",
"Conchita",
"Consolata",
"Consuelo",
"Cristina",
"Cruz",
"Damita",
"Daniela",
"Delfina",
"Delia",
"Delores",
"Diana",
"Dolores",
"Dores",
"Duena",
"Duenna",
"Dulce",
"Dulcie",
"Eldora",
"Elena",
"Elia",
"Elsa",
"Elvira",
"Emilia",
"Emma",
"Enriqua",
"Esmerelda",
"Esperanza",
"Estela",
"Eugenia",
"Eulalia",
"Eva",
"Fabiola",
"Fe",
"Febe",
"Flavia",
"Fonda",
"Frida",
"Friera",
"Gabriela",
"Genoveva",
"Gertrudes",
"Gitana",
"Gloria",
"Gotzone",
"Guadalupe",
"Haizea",
"Helena",
"Hermosa",
"Ines",
"Irati",
"Irene",
"Iria",
"Iris",
"Isa",
"Isabel",
"Itzel",
"Jade",
"Jana",
"Jardena",
"Jesenia",
"Jimena",
"Julia",
"Julitta",
"June",
"Kesare",
"Lacienega",
"Ladonna",
"Laia",
"Landrada",
"Lara",
"Laura",
"Lavada",
"Leire",
"Lela",
"Lenora",
"Leonor",
"Leya",
"Leyre",
"Lia",
"Liani",
"Linda",
"Lluvia",
"Lola",
"Lolita",
"Loma",
"Lorena",
"Lorenza",
"Lucia",
"Luisa",
"Lujuana",
"Luna",
"Lupita",
"Lux",
"Luz",
"Madeira",
"Madra",
"Maitane",
"Maitea",
"Majondra",
"Malak",
"Manda",
"Manuela",
"Mar",
"Mara",
"Maria",
"Maricruz",
"Marina",
"Mariola",
"Mariposa",
"Marisa",
"Marisol",
"Marissa",
"Marta",
"Martina",
"Melosa",
"Mercedes",
"Merche",
"Mia",
"Micaela",
"Milagros",
"Mio",
"Mira",
"Mireia",
"Miriam",
"Montana",
"Mora",
"Nadia",
"Nahia",
"Naia",
"Naiara",
"Natalia",
"Nayara",
"Neiva",
"Nerea",
"Nerita",
"Neva",
"Nevada",
"Neves",
"Nieve",
"Nieves",
"Nina",
"Noa",
"Noelia",
"Nora",
"Novia",
"Novyanna",
"Nuria",
"Oihane",
"Olivia",
"Ona",
"Ora",
"Osana",
"Paca",
"Palma",
"Palmira",
"Paloma",
"Paola",
"Paula",
"Perla",
"Placida",
"Puma",
"Querida",
"Queta",
"Quinceanos",
"Raeka",
"Rafaela",
"Ramona",
"Rana",
"Reyes",
"Ria",
"Rigoberta",
"Roana",
"Rocio",
"Rocío",
"Rosa",
"Rosalind",
"Rosalynda",
"Rosario",
"Rufina",
"Sally",
"Salma",
"Sancha",
"Sancho",
"Sandia",
"Santana",
"Santina",
"Sara",
"Savana",
"Savanna",
"Savannah",
"Seina",
"Senalda",
"Senona",
"Sierra",
"Silvia",
"Socorro",
"Sofia",
"Sofiel",
"Sol",
"Solana",
"Soledad",
"Sonora",
"Taina",
"Tea",
"Tejana",
"Terceiro",
"Teresa",
"Texcean",
"Tia",
"Tierra",
"Tina",
"Tranquilia",
"Trella",
"Triana",
"Tulia",
"Ursulina",
"Uxue",
"Valentina",
"Valeria",
"Vega",
"Vera",
"Verda",
"Verdad",
"Veta",
"Victoria",
"Vina",
"Virginia",
"Xalbadora",
"Xevera",
"Xiao",
"Xiomara",
"Yadra",
"Yesenia",
"Yomaris",
"Zaneta",
"Zarela",
"Zarita",
"Zavanna",
"Zaviera",
"Zequinha",
"Zoe",
"Zuriaa",
"Zurine"]>>
<<set setup.africanAmericanSurnames to [
"Aaron",
"Abbott",
"Abdullah",
"Abernathy",
"Abney",
"Abraham",
"Abram",
"Abrams",
"Adams",
"Addison",
"Adkins",
"Agee",
"Agnew",
"Ahmed",
"Aiken",
"Aikens",
"Akins",
"Albert",
"Aldridge",
"Alexander",
"Alexis",
"Alford",
"Alfred",
"Ali",
"Allen",
"Alleyne",
"Allison",
"Alston",
"Ambrose",
"Amos",
"Anderson",
"Andre",
"Andrews",
"Anthony",
"Antoine",
"Applewhite",
"Arceneaux",
"Archer",
"Archie",
"Armour",
"Armstead",
"Armstrong",
"Arnold",
"Arrington",
"Arthur",
"Artis",
"Ash",
"Ashby",
"Ashe",
"Ashford",
"Ashley",
"Askew",
"Atkins",
"Atkinson",
"Auguste",
"Augustin",
"Augustine",
"Austin",
"Avant",
"Avery",
"Ayers",
"Bacon",
"Bagley",
"Bailey",
"Baines",
"Baker",
"Baldwin",
"Ball",
"Ballard",
"Bankhead",
"Banks",
"Bankston",
"Bannister",
"Baptiste",
"Barbee",
"Barber",
"Barbour",
"Barfield",
"Barker",
"Barkley",
"Barksdale",
"Barlow",
"Barner",
"Barnes",
"Barnett",
"Barney",
"Barr",
"Barrett",
"Barron",
"Barrow",
"Barry",
"Bartley",
"Barton",
"Baskerville",
"Baskin",
"Bass",
"Bassett",
"Bates",
"Batiste",
"Battle",
"Battles",
"Batts",
"Baugh",
"Baxter",
"Baylor",
"Beal",
"Beamon",
"Bean",
"Beard",
"Beasley",
"Beatty",
"Beavers",
"Beck",
"Beckett",
"Beckford",
"Bedford",
"Belcher",
"Bell",
"Bellamy",
"Belle",
"Belton",
"Bender",
"Benford",
"Benjamin",
"Bennett",
"Benoit",
"Benson",
"Bentley",
"Benton",
"Bernard",
"Berry",
"Bess",
"Best",
"Bethea",
"Bethel",
"Betts",
"Beverly",
"Bey",
"Bibbs",
"Biggs",
"Billings",
"Billingsley",
"Billups",
"Bingham",
"Bishop",
"Bivens",
"Bivins",
"Black",
"Blackburn",
"Blackman",
"Blackmon",
"Blackshear",
"Blackwell",
"Blair",
"Blake",
"Blakely",
"Blanchard",
"Bland",
"Blanding",
"Blanks",
"Blanton",
"Bledsoe",
"Blocker",
"Blount",
"Blue",
"Blunt",
"Boatwright",
"Bobo",
"Boddie",
"Bogan",
"Bolden",
"Boles",
"Bolling",
"Bolton",
"Bond",
"Bonds",
"Bonner",
"Booker",
"Boone",
"Booth",
"Borden",
"Borders",
"Bostic",
"Bostick",
"Boston",
"Boswell",
"Bowden",
"Bowen",
"Bowens",
"Bowers",
"Bowie",
"Bowles",
"Bowman",
"Bowser",
"Boyce",
"Boyd",
"Boyer",
"Boykin",
"Boykins",
"Bracey",
"Bradford",
"Bradley",
"Bradshaw",
"Brady",
"Bragg",
"Braggs",
"Branch",
"Brandon",
"Brannon",
"Brantley",
"Braswell",
"Brathwaite",
"Braxton",
"Bray",
"Breaux",
"Brent",
"Brewer",
"Brewington",
"Brewster",
"Brice",
"Bridges",
"Briggs",
"Bright",
"Brinkley",
"Brinson",
"Briscoe",
"Britt",
"Britton",
"Broadnax",
"Broadway",
"Brock",
"Brockington",
"Bronson",
"Brookins",
"Brooks",
"Broughton",
"Broussard",
"Brown",
"Browne",
"Browning",
"Brownlee",
"Bruce",
"Brumfield",
"Brunson",
"Bryan",
"Bryant",
"Bryson",
"Buchanan",
"Buck",
"Buckley",
"Buckner",
"Buford",
"Buggs",
"Buie",
"Bullard",
"Bullock",
"Bunch",
"Burch",
"Burden",
"Burgess",
"Burke",
"Burks",
"Burley",
"Burnett",
"Burnette",
"Burney",
"Burns",
"Burnside",
"Burrell",
"Burris",
"Burroughs",
"Burt",
"Burton",
"Burwell",
"Busby",
"Bush",
"Bussey",
"Butcher",
"Butler",
"Butts",
"Byers",
"Bynum",
"Byrd",
"Cade",
"Cadet",
"Caesar",
"Cage",
"Cain",
"Caldwell",
"Calhoun",
"Callahan",
"Callaway",
"Callender",
"Calloway",
"Calvin",
"Cameron",
"Camp",
"Campbell",
"Canada",
"Canady",
"Cannady",
"Cannon",
"Canty",
"Capers",
"Carey",
"Carlisle",
"Carlton",
"Carmichael",
"Carney",
"Carpenter",
"Carr",
"Carrington",
"Carroll",
"Carson",
"Carswell",
"Carter",
"Cartwright",
"Casey",
"Cash",
"Cason",
"Caston",
"Cathey",
"Cato",
"Causey",
"Ceasar",
"Celestin",
"Celestine",
"Chambers",
"Chambliss",
"Champion",
"Chance",
"Chandler",
"Chaney",
"Chapman",
"Chappell",
"Charles",
"Charleston",
"Chase",
"Chatman",
"Chavis",
"Cheatham",
"Cheek",
"Cheeks",
"Cherry",
"Chery",
"Chester",
"Chestnut",
"Childress",
"Childs",
"Chisholm",
"Chism",
"Chisolm",
"Choice",
"Christian",
"Christie",
"Christmas",
"Christopher",
"Church",
"Claiborne",
"Clanton",
"Clark",
"Clarke",
"Clay",
"Clayton",
"Clement",
"Clements",
"Clemmons",
"Clemons",
"Cleveland",
"Clifton",
"Clinton",
"Cloud",
"Coates",
"Coats",
"Cobb",
"Cobbs",
"Cochran",
"Cockrell",
"Cody",
"Coffey",
"Cofield",
"Cohen",
"Coker",
"Colbert",
"Cole",
"Coleman",
"Coles",
"Coley",
"Collier",
"Collins",
"Colvin",
"Combs",
"Comer",
"Compton",
"Coney",
"Conley",
"Conner",
"Connor",
"Conway",
"Conyers",
"Cook",
"Cooke",
"Cooks",
"Cooley",
"Cooper",
"Copeland",
"Corbett",
"Corbin",
"Corley",
"Cormier",
"Cornelius",
"Cornish",
"Cosby",
"Coston",
"Cotton",
"Coulter",
"Council",
"Courtney",
"Cousin",
"Cousins",
"Covington",
"Cowan",
"Coward",
"Cox",
"Craft",
"Craig",
"Crawford",
"Crawley",
"Crayton",
"Crenshaw",
"Crews",
"Crockett",
"Cromwell",
"Croom",
"Crosby",
"Cross",
"Crowder",
"Crowell",
"Crump",
"Crutcher",
"Crutchfield",
"Cruz",
"Culpepper",
"Culver",
"Cummings",
"Cunningham",
"Cureton",
"Currie",
"Curry",
"Curtis",
"Dabney",
"Dailey",
"Dale",
"Daley",
"Dallas",
"Dalton",
"Dancy",
"Dandridge",
"Daniel",
"Daniels",
"Dantzler",
"Darby",
"Darden",
"Davenport",
"David",
"Davidson",
"Davis",
"Davison",
"Dawkins",
"Dawson",
"Day",
"Daye",
"Deal",
"Dean",
"Deas",
"Deberry",
"Debose",
"Delaney",
"Deloach",
"Deloatch",
"Dennis",
"Denson",
"Dent",
"Denton",
"Desir",
"Dewberry",
"Diallo",
"Diaz",
"Dickens",
"Dickerson",
"Dickey",
"Dickson",
"Diggs",
"Dillard",
"Dillon",
"Dilworth",
"Dingle",
"Dinkins",
"Dix",
"Dixon",
"Dobbins",
"Dobbs",
"Dobson",
"Dockery",
"Dodd",
"Dodson",
"Doe",
"Donald",
"Donaldson",
"Dorsey",
"Dortch",
"Doss",
"Dotson",
"Douglas",
"Dove",
"Dowdell",
"Dowdy",
"Dowell",
"Downing",
"Downs",
"Doyle",
"Dozier",
"Drake",
"Draper",
"Drayton",
"Drew",
"Driver",
"Drummond",
"Dubose",
"Duckett",
"Dudley",
"Duke",
"Dukes",
"Dumas",
"Dunbar",
"Duncan",
"Dunham",
"Dunlap",
"Dunn",
"Dunson",
"Dunston",
"Dupree",
"Durant",
"Durden",
"Durham",
"Durr",
"Dye",
"Dyer",
"Dykes",
"Dyson",
"Eaddy",
"Eady",
"Ealy",
"Earl",
"Early",
"Easley",
"Eason",
"Easter",
"Easterling",
"Eaton",
"Echols",
"Edmond",
"Edmonds",
"Edmondson",
"Edward",
"Edwards",
"Elam",
"Elder",
"Eldridge",
"Eley",
"Ellington",
"Elliott",
"Ellis",
"Ellison",
"Elmore",
"Emanuel",
"Emerson",
"English",
"Epps",
"Ervin",
"Estes",
"Etheridge",
"Etienne",
"Eubanks",
"Eugene",
"Evans",
"Everett",
"Ewing",
"Ezell",
"Fair",
"Fairley",
"Faison",
"Farley",
"Farmer",
"Farr",
"Farrar",
"Farrell",
"Farris",
"Farrow",
"Faulk",
"Faulkner",
"Favors",
"Fears",
"Feaster",
"Felder",
"Felix",
"Felton",
"Fennell",
"Ferguson",
"Fernandez",
"Ferrell",
"Fields",
"Finch",
"Finley",
"Finney",
"Fisher",
"Fitzgerald",
"Fitzpatrick",
"Flagg",
"Flanagan",
"Fleming",
"Flemming",
"Fletcher",
"Flood",
"Florence",
"Flournoy",
"Flowers",
"Floyd",
"Fluellen",
"Fluker",
"Fontenot",
"Foote",
"Forbes",
"Ford",
"Forde",
"Foreman",
"Forrest",
"Fort",
"Forte",
"Fortson",
"Fortune",
"Foster",
"Fountain",
"Fowler",
"Fowlkes",
"Fox",
"Foy",
"France",
"Francis",
"Francois",
"Frank",
"Franklin",
"Franks",
"Fraser",
"Frasier",
"Frazier",
"Frederick",
"Freeman",
"French",
"Friday",
"Frierson",
"Frost",
"Frye",
"Fuller",
"Fulton",
"Fuqua",
"Gabriel",
"Gaddis",
"Gaddy",
"Gadsden",
"Gadson",
"Gage",
"Gaines",
"Gainey",
"Gaither",
"Gales",
"Galloway",
"Gamble",
"Gandy",
"Gant",
"Gantt",
"Garcia",
"Gardner",
"Garland",
"Garner",
"Garnett",
"Garrett",
"Garrison",
"Garvin",
"Gary",
"Gaskin",
"Gaskins",
"Gaston",
"Gates",
"Gatewood",
"Gatlin",
"Gatling",
"Gause",
"Gavin",
"Gay",
"Gayle",
"Gee",
"Gentry",
"George",
"Gerald",
"German",
"Germany",
"Geter",
"Gholston",
"Gibbons",
"Gibbs",
"Gibson",
"Gilbert",
"Gilchrist",
"Giles",
"Gill",
"Gillard",
"Gillespie",
"Gilliam",
"Gilliard",
"Gillis",
"Gilmore",
"Gipson",
"Gist",
"Gittens",
"Givens",
"Gladden",
"Gladney",
"Glasper",
"Glass",
"Glenn",
"Glover",
"Godfrey",
"Godwin",
"Goff",
"Goins",
"Golden",
"Goldsmith",
"Gomez",
"Gonzalez",
"Gooch",
"Good",
"Goode",
"Gooden",
"Goodman",
"Goodson",
"Goodwin",
"Goolsby",
"Gordon",
"Gore",
"Gorham",
"Goss",
"Gould",
"Govan",
"Grace",
"Grady",
"Graham",
"Granger",
"Grant",
"Graves",
"Gray",
"Grays",
"Grayson",
"Green",
"Greene",
"Greenwood",
"Greer",
"Gregg",
"Gregory",
"Gresham",
"Grey",
"Grice",
"Grier",
"Griffin",
"Griffith",
"Griggs",
"Grigsby",
"Grimes",
"Grooms",
"Gross",
"Groves",
"Guidry",
"Guillory",
"Gulley",
"Gunn",
"Gunter",
"Guy",
"Guyton",
"Hackett",
"Hadley",
"Haile",
"Hailey",
"Hairston",
"Hale",
"Haley",
"Hall",
"Ham",
"Hamilton",
"Hamlin",
"Hamm",
"Hammond",
"Hammonds",
"Hampton",
"Hancock",
"Handy",
"Haney",
"Hankerson",
"Hankins",
"Hanna",
"Hannah",
"Hanson",
"Hardaway",
"Hardeman",
"Harden",
"Hardin",
"Harding",
"Hardison",
"Hardwick",
"Hardy",
"Hargrove",
"Harley",
"Harmon",
"Harper",
"Harrell",
"Harrington",
"Harris",
"Harrison",
"Harry",
"Hart",
"Hartfield",
"Harvey",
"Haskins",
"Hassan",
"Hatcher",
"Hatchett",
"Hatten",
"Hawkins",
"Hawthorne",
"Hayden",
"Hayes",
"Haynes",
"Hayward",
"Haywood",
"Head",
"Heard",
"Hearn",
"Heath",
"Hebert",
"Hector",
"Hemingway",
"Hemphill",
"Henderson",
"Hendricks",
"Hendrix",
"Henley",
"Henry",
"Henson",
"Herbert",
"Hernandez",
"Herndon",
"Herring",
"Herron",
"Hester",
"Hewitt",
"Heyward",
"Hickman",
"Hicks",
"Hickson",
"Higgins",
"Higgs",
"High",
"Hightower",
"Hill",
"Hilliard",
"Hillman",
"Hills",
"Hilton",
"Hinds",
"Hines",
"Hinson",
"Hinton",
"Hobbs",
"Hobson",
"Hodge",
"Hodges",
"Hogan",
"Holden",
"Holder",
"Holiday",
"Holland",
"Holley",
"Holliday",
"Hollingsworth",
"Hollins",
"Hollis",
"Holloman",
"Holloway",
"Holly",
"Holman",
"Holmes",
"Holt",
"Hood",
"Hooker",
"Hooks",
"Hooper",
"Hoover",
"Hope",
"Hopkins",
"Hopson",
"Horn",
"Horne",
"Horton",
"Hoskins",
"House",
"Houston",
"Howard",
"Howell",
"Howze",
"Hubbard",
"Hudgins",
"Hudson",
"Huff",
"Huffman",
"Huggins",
"Hughes",
"Hughley",
"Hull",
"Humphrey",
"Humphries",
"Hunt",
"Hunter",
"Huntley",
"Hurd",
"Hurst",
"Hurt",
"Hutcherson",
"Hutchins",
"Hutchinson",
"Hutton",
"Hyde",
"Hylton",
"Hyman",
"Ingram",
"Irby",
"Irvin",
"Irving",
"Isaac",
"Isom",
"Ivery",
"Ivey",
"Ivory",
"Ivy",
"Jack",
"Jackson",
"Jacob",
"Jacobs",
"Jacques",
"Jamerson",
"James",
"Jamison",
"Jarrett",
"Jarvis",
"Jasper",
"Jean",
"Jeanbaptiste",
"Jeanlouis",
"Jeanpierre",
"Jefferies",
"Jeffers",
"Jefferson",
"Jeffery",
"Jeffries",
"Jemison",
"Jenkins",
"Jennings",
"Jernigan",
"Jeter",
"Jett",
"Jiles",
"Joe",
"John",
"Johns",
"Johnson",
"Johnston",
"Joiner",
"Jolly",
"Jones",
"Jordan",
"Jordon",
"Joseph",
"Joyce",
"Joyner",
"Julien",
"Justice",
"Kamara",
"Kearney",
"Keaton",
"Kee",
"Keith",
"Keller",
"Kelley",
"Kelly",
"Kemp",
"Kendall",
"Kendrick",
"Kennedy",
"Kenney",
"Kent",
"Kerr",
"Key",
"Keyes",
"Keys",
"Kidd",
"Kilgore",
"Kilpatrick",
"Kimble",
"Kimbrough",
"Kinard",
"King",
"Kinney",
"Kinsey",
"Kirby",
"Kirk",
"Kirkland",
"Kirksey",
"Kirkwood",
"Kitchen",
"Knight",
"Knowles",
"Knox",
"Kornegay",
"Kyle",
"Kyles",
"Lacey",
"Lackey",
"Lacy",
"Ladson",
"Lake",
"Lamar",
"Lamb",
"Lambert",
"Lampkin",
"Lancaster",
"Land",
"Landers",
"Landrum",
"Landry",
"Lane",
"Lang",
"Langford",
"Langley",
"Langston",
"Lanier",
"Larkin",
"Larkins",
"Larry",
"Lassiter",
"Laster",
"Latham",
"Latimer",
"Latimore",
"Lattimore",
"Law",
"Lawrence",
"Laws",
"Lawson",
"Lawton",
"Layne",
"Leach",
"Leak",
"Leary",
"Leblanc",
"Ledbetter",
"Lee",
"Leflore",
"Leggett",
"Lemon",
"Lemons",
"Leon",
"Leonard",
"Leslie",
"Lester",
"Lett",
"Levy",
"Lewis",
"Liddell",
"Liggins",
"Lightfoot",
"Ligon",
"Lilly",
"Lincoln",
"Lindsay",
"Lindsey",
"Linton",
"Lipscomb",
"Little",
"Littlejohn",
"Littles",
"Littleton",
"Livingston",
"Lloyd",
"Locke",
"Lockett",
"Lockhart",
"Lofton",
"Logan",
"Lomax",
"London",
"Long",
"Lopez",
"Lott",
"Louis",
"Love",
"Lovelace",
"Lovett",
"Loving",
"Lowe",
"Lowery",
"Loyd",
"Lucas",
"Luckett",
"Luckey",
"Luke",
"Lumpkin",
"Lundy",
"Luster",
"Lyles",
"Lynch",
"Lynn",
"Lyons",
"Mabry",
"Mack",
"Mackey",
"Macklin",
"Macon",
"Madden",
"Maddox",
"Madison",
"Magee",
"Mahone",
"Major",
"Majors",
"Malcolm",
"Mallard",
"Mallory",
"Malloy",
"Malone",
"Mangum",
"Manley",
"Mann",
"Manning",
"Manns",
"Manson",
"Manuel",
"Mapp",
"Marable",
"Marcus",
"Marion",
"Mark",
"Marks",
"Marsh",
"Marshall",
"Martin",
"Martinez",
"Mason",
"Massey",
"Mathews",
"Mathis",
"Matlock",
"Matthew",
"Matthews",
"Mattox",
"Maxey",
"Maxwell",
"May",
"Mayberry",
"Maye",
"Mayers",
"Mayes",
"Mayfield",
"Maynard",
"Mayo",
"Mays",
"Mcafee",
"Mcallister",
"Mcarthur",
"Mcbride",
"Mccain",
"Mccall",
"Mccallum",
"Mccann",
"Mccants",
"Mccarter",
"Mccarthy",
"Mccarty",
"Mccaskill",
"Mccauley",
"Mcclain",
"Mcclary",
"Mcclellan",
"Mcclendon",
"Mcclinton",
"Mccloud",
"Mcclure",
"Mccollum",
"Mcconnell",
"Mccord",
"Mccormick",
"Mccoy",
"Mccrary",
"Mccray",
"Mccree",
"Mccullough",
"Mccullum",
"Mcdade",
"Mcdaniel",
"Mcdaniels",
"Mcdonald",
"Mcdowell",
"Mcduffie",
"Mcelroy",
"Mcfadden",
"Mcfarland",
"Mcfarlane",
"Mcgee",
"Mcghee",
"Mcgill",
"Mcginnis",
"Mcgowan",
"Mcgraw",
"Mcgregor",
"Mcgriff",
"Mcgruder",
"Mcguire",
"Mchenry",
"Mcintosh",
"Mcintyre",
"Mciver",
"Mckay",
"Mckee",
"Mckenzie",
"Mckinley",
"Mckinney",
"Mckinnon",
"Mcknight",
"Mckoy",
"Mclaughlin",
"Mclaurin",
"Mclean",
"Mclemore",
"Mclendon",
"Mcleod",
"Mcmillan",
"Mcmillian",
"Mcmullen",
"Mcnair",
"Mcneal",
"Mcneil",
"Mcneill",
"Mcpherson",
"Mcqueen",
"Mcrae",
"Mcwilliams",
"Meadows",
"Means",
"Medley",
"Meeks",
"Melton",
"Melvin",
"Mensah",
"Mercer",
"Merchant",
"Meredith",
"Merritt",
"Merriweather",
"Metcalf",
"Meyers",
"Michael",
"Michel",
"Mickens",
"Middlebrooks",
"Middleton",
"Miles",
"Mill",
"Miller",
"Milligan",
"Mills",
"Milner",
"Milton",
"Mims",
"Mincey",
"Mingo",
"Minor",
"Minter",
"Mitchel",
"Mitchell",
"Mixon",
"Mobley",
"Moffett",
"Mohamed",
"Mohammed",
"Moise",
"Monroe",
"Montague",
"Montgomery",
"Moody",
"Moon",
"Moore",
"Moorer",
"Moran",
"Moreland",
"Morgan",
"Morris",
"Morrison",
"Morrow",
"Morse",
"Morton",
"Mosby",
"Moseley",
"Mosely",
"Moses",
"Mosley",
"Moss",
"Moten",
"Motley",
"Moton",
"Moultrie",
"Mouton",
"Moye",
"Muhammad",
"Muldrow",
"Mullen",
"Mullins",
"Murdock",
"Murphy",
"Murray",
"Murrell",
"Murry",
"Muse",
"Myers",
"Myles",
"Myrick",
"Nance",
"Napier",
"Narcisse",
"Nash",
"Nathan",
"Naylor",
"Neal",
"Nealy",
"Neely",
"Nelson",
"Nesbitt",
"Nesmith",
"Nettles",
"Newby",
"Newell",
"Newkirk",
"Newman",
"Newsom",
"Newsome",
"Newson",
"Newton",
"Nicholas",
"Nichols",
"Nicholson",
"Nickerson",
"Nix",
"Nixon",
"Noble",
"Nobles",
"Noel",
"Nolan",
"Norfleet",
"Norman",
"Norris",
"North",
"Norton",
"Norwood",
"Nunn",
"Oates",
"Oden",
"Odom",
"Oglesby",
"Ogletree",
"Oliver",
"Oneal",
"Oneil",
"Orange",
"Orr",
"Osborne",
"Outlaw",
"Overstreet",
"Overton",
"Owens",
"Pace",
"Pack",
"Page",
"Paige",
"Palmer",
"Pannell",
"Parham",
"Paris",
"Parker",
"Parks",
"Parnell",
"Parris",
"Parrish",
"Parson",
"Parsons",
"Pate",
"Patrick",
"Patterson",
"Patton",
"Paul",
"Payne",
"Payton",
"Peace",
"Peacock",
"Pearson",
"Peebles",
"Peeples",
"Pegues",
"Pendleton",
"Penn",
"Pennington",
"Penny",
"Peoples",
"Perdue",
"Perez",
"Perkins",
"Perry",
"Perryman",
"Person",
"Pete",
"Peters",
"Peterson",
"Pettaway",
"Pettiford",
"Pettigrew",
"Pettis",
"Pettus",
"Pettway",
"Petty",
"Peyton",
"Phelps",
"Phifer",
"Phillip",
"Phillips",
"Phipps",
"Pickens",
"Pickett",
"Pierce",
"Pierre",
"Pierrelouis",
"Pierson",
"Pinckney",
"Pinkney",
"Pinkston",
"Pitt",
"Pittman",
"Pitts",
"Pleasant",
"Plummer",
"Poe",
"Poindexter",
"Pointer",
"Polite",
"Polk",
"Pollard",
"Ponder",
"Poole",
"Pope",
"Porter",
"Portis",
"Posey",
"Potter",
"Potts",
"Powe",
"Powell",
"Powers",
"Prater",
"Prather",
"Pratt",
"Prescott",
"Presley",
"Pressley",
"Preston",
"Price",
"Pride",
"Prince",
"Pringle",
"Pritchett",
"Proctor",
"Pruitt",
"Pryor",
"Pugh",
"Pulley",
"Pulliam",
"Purnell",
"Purvis",
"Qualls",
"Quarles",
"Queen",
"Quick",
"Quinn",
"Radford",
"Ragin",
"Ragland",
"Raines",
"Rainey",
"Ramey",
"Ramos",
"Ramsey",
"Randall",
"Randle",
"Randolph",
"Rankin",
"Rankins",
"Ransom",
"Ratcliff",
"Ratliff",
"Rawls",
"Ray",
"Rayford",
"Raymond",
"Reaves",
"Redd",
"Reddick",
"Redding",
"Redmond",
"Reece",
"Reed",
"Reeder",
"Reese",
"Reeves",
"Reid",
"Rembert",
"Reynolds",
"Rhodes",
"Rhone",
"Rice",
"Rich",
"Richard",
"Richards",
"Richardson",
"Richmond",
"Ricketts",
"Ricks",
"Riddick",
"Riddle",
"Ridley",
"Riggins",
"Riggs",
"Riley",
"Rivera",
"Rivers",
"Roach",
"Robbins",
"Roberson",
"Robert",
"Roberts",
"Robertson",
"Robins",
"Robinson",
"Roby",
"Rodgers",
"Rodriguez",
"Rogers",
"Roland",
"Rolle",
"Rollins",
"Rooks",
"Roper",
"Rose",
"Ross",
"Rosser",
"Roundtree",
"Rouse",
"Rowe",
"Rowell",
"Rowland",
"Roy",
"Royal",
"Royster",
"Rozier",
"Rucker",
"Rudd",
"Rudolph",
"Ruff",
"Ruffin",
"Rumph",
"Rush",
"Rushing",
"Russ",
"Russell",
"Rutherford",
"Rutledge",
"Ryan",
"Saddler",
"Sadler",
"Sales",
"Salley",
"Salmon",
"Salter",
"Sam",
"Sample",
"Sampson",
"Sams",
"Samuel",
"Samuels",
"Sanchez",
"Sanders",
"Sandifer",
"Sands",
"Sanford",
"Santos",
"Sapp",
"Sargent",
"Satterwhite",
"Saunders",
"Savage",
"Savoy",
"Sawyer",
"Sayles",
"Scales",
"Scott",
"Scroggins",
"Scruggs",
"Seals",
"Searcy",
"Sears",
"Seay",
"Sellers",
"Session",
"Sessoms",
"Settles",
"Seward",
"Sewell",
"Seymore",
"Seymour",
"Shabazz",
"Shackelford",
"Shanks",
"Shannon",
"Sharp",
"Sharpe",
"Shavers",
"Shaw",
"Sheffield",
"Shelby",
"Shell",
"Shelton",
"Shepard",
"Shephard",
"Shepherd",
"Sheppard",
"Sherman",
"Sherrod",
"Shields",
"Shine",
"Shipman",
"Shipp",
"Shirley",
"Shivers",
"Short",
"Shorter",
"Shuler",
"Sibley",
"Silas",
"Silver",
"Simmons",
"Simms",
"Simon",
"Simons",
"Simpkins",
"Simpson",
"Sims",
"Sinclair",
"Singh",
"Singletary",
"Singleton",
"Skinner",
"Skipper",
"Slade",
"Slater",
"Slaughter",
"Sledge",
"Sloan",
"Small",
"Smalls",
"Smallwood",
"Smart",
"Smiley",
"Smith",
"Smoot",
"Smothers",
"Snead",
"Sneed",
"Snell",
"Snipes",
"Snow",
"Snowden",
"Snyder",
"Solomon",
"Sowell",
"Spain",
"Spann",
"Sparks",
"Sparrow",
"Spearman",
"Spears",
"Speed",
"Speight",
"Speller",
"Spence",
"Spencer",
"Spicer",
"Spikes",
"Spivey",
"Spriggs",
"Springer",
"Spruill",
"Stafford",
"Staley",
"Stallings",
"Stallworth",
"Stamps",
"Stanford",
"Stanley",
"Stanton",
"Staples",
"Starks",
"Starling",
"Starr",
"Staten",
"Staton",
"Steed",
"Steele",
"Stephen",
"Stephens",
"Stephenson",
"Sterling",
"Stevens",
"Stevenson",
"Steward",
"Stewart",
"Stinson",
"Stith",
"Stokes",
"Stone",
"Story",
"Stovall",
"Strange",
"Street",
"Streeter",
"Strickland",
"Stringer",
"Stroman",
"Strong",
"Strother",
"Stroud",
"Stuart",
"Stubblefield",
"Stubbs",
"Stuckey",
"Sturdivant",
"Styles",
"Suber",
"Suggs",
"Sullivan",
"Summers",
"Summerville",
"Sumpter",
"Sutherland",
"Sutton",
"Swain",
"Swan",
"Swann",
"Swanson",
"Sweeney",
"Sweet",
"Swift",
"Swinton",
"Sykes",
"Sylvester",
"Tabb",
"Talbert",
"Talley",
"Tanner",
"Tarver",
"Tate",
"Tatum",
"Taylor",
"Teague",
"Teasley",
"Temple",
"Terrell",
"Terry",
"Thames",
"Thibodeaux",
"Thigpen",
"Thomas",
"Thompkins",
"Thompson",
"Thorne",
"Thornton",
"Thorpe",
"Threatt",
"Thrower",
"Thurman",
"Thurmond",
"Tibbs",
"Tidwell",
"Tillery",
"Tillman",
"Timmons",
"Tinsley",
"Tisdale",
"Titus",
"Todd",
"Tolbert",
"Toliver",
"Tolliver",
"Tomlin",
"Tomlinson",
"Tompkins",
"Toney",
"Toomer",
"Torrence",
"Torres",
"Toussaint",
"Townes",
"Towns",
"Townsend",
"Trammell",
"Travis",
"Traylor",
"Trent",
"Trice",
"Trimble",
"Triplett",
"Tripp",
"Trotter",
"Truitt",
"Tubbs",
"Tucker",
"Tunstall",
"Turner",
"Tutt",
"Tyler",
"Tyson",
"Tyus",
"Underwood",
"Upshaw",
"Usher",
"Valentine",
"Vance",
"Vann",
"Varner",
"Vaughan",
"Vaughn",
"Veal",
"Venable",
"Vereen",
"Vernon",
"Vickers",
"Victor",
"Vincent",
"Vines",
"Vinson",
"Waddell",
"Wade",
"Wagner",
"Wakefield",
"Walden",
"Walker",
"Wall",
"Wallace",
"Waller",
"Walls",
"Walter",
"Walters",
"Walton",
"Ward",
"Ware",
"Warfield",
"Warner",
"Warren",
"Wash",
"Washington",
"Waters",
"Watkins",
"Watson",
"Watt",
"Watts",
"Way",
"Weathers",
"Weathersby",
"Weatherspoon",
"Weaver",
"Webb",
"Webber",
"Webster",
"Weeks",
"Weems",
"Welch",
"Weldon",
"Wellington",
"Wells",
"Wesley",
"West",
"Westbrook",
"Weston",
"Whaley",
"Wharton",
"Whatley",
"Wheeler",
"Whitaker",
"White",
"Whitehead",
"Whitehurst",
"Whiteside",
"Whitfield",
"Whiting",
"Whitley",
"Whitlock",
"Whitmore",
"Whitney",
"Whittaker",
"Whitted",
"Whittington",
"Whyte",
"Wicks",
"Wigfall",
"Wiggins",
"Wilborn",
"Wilburn",
"Wilcox",
"Wilder",
"Wiley",
"Wilkerson",
"Wilkes",
"Wilkins",
"Wilkinson",
"Wilks",
"William",
"Williams",
"Williamson",
"Willingham",
"Willis",
"Willoughby",
"Wills",
"Wilson",
"Wimberly",
"Wimbush",
"Winfield",
"Winfrey",
"Wingate",
"Wingfield",
"Winn",
"Winston",
"Winters",
"Wise",
"Witcher",
"Withers",
"Witherspoon",
"Wofford",
"Wolfe",
"Womack",
"Wood",
"Woodard",
"Wooden",
"Woodley",
"Woodruff",
"Woods",
"Woodson",
"Woody",
"Woolfolk",
"Wooten",
"Word",
"Worrell",
"Wortham",
"Worthy",
"Wren",
"Wright",
"Wyatt",
"Wyche",
"Wynn",
"Yancey",
"Yancy",
"Yarborough",
"Yarbrough",
"Yates",
"York",
"Young",
"Youngblood",
"Younger",
"Zeigler",
"Zimmerman"]>>
<<set setup.swedishSurnames to [
"Åberg",
"Abrahamsson",
"Adell",
"Adolfson",
"Adolphson",
"Ahl",
"Ahlberg",
"Ahlborn",
"Ahlgren",
"Ahlin",
"Ahlman",
"Ahlquist",
"Ahlstedt",
"Ahlstrand",
"Ahlstrom",
"Ahmed",
"Akerman",
"Akerson",
"Åkesson",
"Al",
"Alberg",
"Ali",
"Allender",
"Allin",
"Allinder",
"Alm",
"Alman",
"Almen",
"Almer",
"Almgren",
"Almquist",
"Alms",
"Alquist",
"Alstrom",
"Alvin",
"Ameen",
"Anderberg",
"Andersson",
"Andre",
"Andreasson",
"Andren",
"Anfinson",
"Angerman",
"Ansell",
"Antell",
"Appell",
"Ardell",
"Arn",
"Arnell",
"Arning",
"Arvidsson",
"Ask",
"Aslin",
"Asp",
"Asplund",
"Åström",
"Axelson",
"Axelsson",
"Backlund",
"Backman",
"Bagge",
"Balstad",
"Bankson",
"Barkman",
"Beckius",
"Beckman",
"Beckstrand",
"Bengtsson",
"Bennick",
"Berg",
"Bergdahl",
"Bergen",
"Bergendahl",
"Bergerson",
"Bergeson",
"Berggren",
"Bergin",
"Berglin",
"Berglund",
"Bergman",
"Bergmark",
"Bergner",
"Bergquist",
"Bergqvist",
"Bergstedt",
"Bergsten",
"Bergstrand",
"Bergstrom",
"Bergström",
"Bernson",
"Billing",
"Birger",
"Birke",
"Bjork",
"Björk",
"Bjorklund",
"Björklund",
"Bjorkman",
"Bjorkquist",
"Bjornberg",
"Bjur",
"Bjurstrom",
"Blaustein",
"Blink",
"Blix",
"Blixt",
"Blohm",
"Blom",
"Blomberg",
"Blome",
"Blomgren",
"Blomquist",
"Blomqvist",
"Blomstrom",
"Blondell",
"Blondin",
"Bloom",
"Bloome",
"Bloss",
"Blum",
"Blume",
"Blundell",
"Bly",
"Bobek",
"Boberg",
"Bockman",
"Bodeen",
"Bodell",
"Boden",
"Bodin",
"Boe",
"Boehmer",
"Boesen",
"Bogren",
"Bohl",
"Bohlander",
"Bohlen",
"Bohlender",
"Bohlin",
"Bohman",
"Bohner",
"Bohren",
"Bok",
"Bolander",
"Bold",
"Bolden",
"Boldin",
"Bolen",
"Bolin",
"Bolinder",
"Boll",
"Bolle",
"Bollin",
"Bolling",
"Bolten",
"Boman",
"Bond",
"Bondeson",
"Boner",
"Bong",
"Bonner",
"Boquist",
"Boren",
"Borgman",
"Borgstrom",
"Borr",
"Borreson",
"Bostrom",
"Boven",
"Braff",
"Brand",
"Brandel",
"Brandell",
"Branden",
"Brandin",
"Branstad",
"Branstrom",
"Branting",
"Bratt",
"Bratten",
"Brauner",
"Breden",
"Bredenberg",
"Broberg",
"Brodd",
"Broden",
"Brodin",
"Brogren",
"Brolin",
"Broman",
"Brostrom",
"Brunell",
"Brunn",
"Bruse",
"Bryngelson",
"Bursell",
"Byland",
"Bylund",
"Byman",
"Bystrom",
"Callander",
"Carbin",
"Carby",
"Carlberg",
"Carlin",
"Carling",
"Carlquist",
"Carlsson",
"Carlstedt",
"Carlstrom",
"Carnell",
"Casten",
"Castner",
"Cato",
"Ceder",
"Cederberg",
"Cedergren",
"Cederholm",
"Cederquist",
"Cederstrom",
"Charles",
"Christerson",
"Christoferson",
"Claesson",
"Clarin",
"Classon",
"Collin",
"Cornell",
"Corvin",
"Cronquist",
"Curlin",
"Dahlberg",
"Dahlen",
"Dahlgren",
"Dahlin",
"Dahlman",
"Dahlquist",
"Dahlstrom",
"Dahmen",
"Dalberg",
"Dalen",
"Dalin",
"Dalman",
"Danielsson",
"Degn",
"Dovell",
"Eck",
"Eckdahl",
"Edberg",
"Edelberg",
"Edgren",
"Edholm",
"Edlund",
"Edquist",
"Edstrom",
"Ehn",
"Ek",
"Ekberg",
"Ekblad",
"Ekdahl",
"Ekholm",
"Eklof",
"Eklund",
"Ekman",
"Ekstrand",
"Ekstrom",
"Ekström",
"Ekwall",
"Elander",
"Eld",
"Elg",
"Eliason",
"Eliasson",
"Ellstrom",
"Elm",
"Elmquist",
"Elofson",
"Enberg",
"Eng",
"Engberg",
"Engblom",
"Engdahl",
"Engelson",
"Engeman",
"Engh",
"Engholm",
"England",
"Englander",
"Englund",
"Engman",
"Engquist",
"Engstrand",
"Engstrom",
"Engström",
"Engwall",
"Enquist",
"Enstrom",
"Ericsson",
"Eriksson",
"Erland",
"Fager",
"Fagerstrom",
"Fahlgren",
"Fahlstrom",
"Falk",
"Farin",
"Farstad",
"Fellin",
"Ferm",
"Fernelius",
"Fernstrom",
"Finberg",
"Flink",
"Floberg",
"Floden",
"Flodin",
"Floren",
"Florin",
"Florman",
"Flygare",
"Fogelberg",
"Follin",
"Fors",
"Forsberg",
"Forsell",
"Forsgren",
"Forslund",
"Forsman",
"Forss",
"Forstrom",
"Fosberg",
"Fosburg",
"Fransson",
"Franzen",
"Freberg",
"Fred",
"Fredell",
"Fredenberg",
"Fredin",
"Fredlund",
"Fredman",
"Fredriksson",
"Frid",
"Fridell",
"From",
"Frykman",
"Gard",
"Garde",
"Gedman",
"Germundson",
"Göransson",
"Gradin",
"Grahn",
"Gran",
"Granat",
"Granath",
"Granberg",
"Granholm",
"Graning",
"Granlund",
"Granquist",
"Granstrom",
"Gren",
"Grendahl",
"Grinberg",
"Gronberg",
"Grondahl",
"Gronlund",
"Gronquist",
"Grundstrom",
"Gudmundson",
"Gullickson",
"Gullikson",
"Gunnarson",
"Gunnarsson",
"Gustafsson",
"Gustavsson",
"Haaf",
"Haag",
"Haak",
"Haake",
"Hagberg",
"Hagelin",
"Hageman",
"Hagen",
"Hagg",
"Hagge",
"Hagglund",
"Haggstrom",
"Haglund",
"Hagman",
"Hagstrom",
"Hak",
"Hakanson",
"Håkansson",
"Halberg",
"Halgren",
"Hallberg",
"Hallen",
"Hallgren",
"Hallin",
"Hallman",
"Hallquist",
"Hallstrom",
"Hammar",
"Hammarstrom",
"Hammerberg",
"Hamner",
"Hansen",
"Hansson",
"Hassan",
"Hassel",
"Hast",
"Hedberg",
"Hedeen",
"Hedeman",
"Hedin",
"Hedlund",
"Hedman",
"Hedquist",
"Hedstrom",
"Helander",
"Helgerson",
"Helgren",
"Helin",
"Hellberg",
"Hellen",
"Hellstrom",
"Hellström",
"Helsing",
"Helstrom",
"Henning",
"Henriksson",
"Hermansson",
"Hertzberg",
"Hessel",
"Hildahl",
"Hilding",
"Hillen",
"Hillstrom",
"Hjelm",
"Hjerpe",
"Hjort",
"Hogberg",
"Hogen",
"Hogland",
"Hoglund",
"Holm",
"Holmbeck",
"Holmberg",
"Holmer",
"Holmgren",
"Holmlund",
"Holmquist",
"Holmstrom",
"Holstrom",
"Hoog",
"Hook",
"Horn",
"Horne",
"Hoving",
"Hult",
"Hultberg",
"Hultgren",
"Hultin",
"Hultman",
"Hultquist",
"Hurtig",
"Huss",
"Hyland",
"Hylen",
"Ingerman",
"Ingerson",
"Isackson",
"Isakson",
"Isaksson",
"Isberg",
"Isenberg",
"Ivarsson",
"Jakobsson",
"Jansson",
"Jernberg",
"Joens",
"Johansson",
"Johnsson",
"Jonasson",
"Jonsson",
"Jönsson",
"Josefsson",
"Juhlin",
"Julin",
"Kahr",
"Kalberg",
"Kall",
"Kallberg",
"Kallen",
"Kallenberg",
"Kallgren",
"Kallin",
"Kallman",
"Kallstrom",
"Kalm",
"Kalmar",
"Karlberg",
"Karlen",
"Karlin",
"Karlsson",
"Karlstad",
"Karm",
"Kask",
"Kasten",
"Kernell",
"Kielman",
"Kilburg",
"Kindberg",
"Kindell",
"Kjar",
"Kjellberg",
"Klang",
"Kling",
"Klinge",
"Kolberg",
"Kring",
"Kronholm",
"Krook",
"Kroon",
"Kulberg",
"Kullberg",
"Kvistad",
"Lager",
"Lagergren",
"Lagerman",
"Lagerquist",
"Lagerstrom",
"Lagman",
"Lamberg",
"Lampa",
"Landberg",
"Landeen",
"Landen",
"Landgren",
"Landin",
"Landsberg",
"Landstrom",
"Larsson",
"Latt",
"Lauren",
"Ledin",
"Ledman",
"Leiman",
"Levander",
"Lidberg",
"Liden",
"Lidstrom",
"Lilja",
"Liljedahl",
"Liljegren",
"Liljenquist",
"Lillquist",
"Lind",
"Lindahl",
"Lindbeck",
"Lindberg",
"Lindblad",
"Lindblom",
"Lindbo",
"Lindborg",
"Lindeen",
"Lindell",
"Lindelof",
"Linden",
"Linder",
"Lindfors",
"Lindgren",
"Lindh",
"Lindholm",
"Lindland",
"Lindman",
"Lindmark",
"Lindquist",
"Lindqvist",
"Lindroth",
"Lindskog",
"Lindstedt",
"Lindstrand",
"Lindstrom",
"Lindström",
"Lindvall",
"Lindwall",
"Lingren",
"Linne",
"Linner",
"Linquist",
"Litle",
"Lo",
"Loden",
"Lofdahl",
"Loff",
"Lofgren",
"Löfgren",
"Lofquist",
"Lofstrom",
"Loften",
"Loftin",
"Lonn",
"Loren",
"Lorentson",
"Lovgren",
"Loving",
"Lubell",
"Lund",
"Lundahl",
"Lundberg",
"Lundblad",
"Lundborg",
"Lundeen",
"Lundell",
"Lunden",
"Lundgren",
"Lundholm",
"Lundin",
"Lundmark",
"Lundquist",
"Lundqvist",
"Lundstedt",
"Lundsten",
"Lundstrom",
"Lundström",
"Lundvall",
"Luthman",
"Magnusson",
"Mahlberg",
"Malberg",
"Malm",
"Malmberg",
"Malmborg",
"Malmgren",
"Malmquist",
"Malmstrom",
"Malstrom",
"Månsson",
"Marken",
"Markstrom",
"Markus",
"Markuson",
"Mårtensson",
"Martinsson",
"Mathiason",
"Mattsson",
"Melander",
"Melberg",
"Meldahl",
"Melin",
"Mellberg",
"Mellgren",
"Mellman",
"Melquist",
"Meske",
"Moberg",
"Moden",
"Moder",
"Modin",
"Modine",
"Moe",
"Mogren",
"Molander",
"Molen",
"Molin",
"Moman",
"Moren",
"Morton",
"Mossberg",
"Munsen",
"Naslund",
"Nilsson",
"Nobel",
"Nolen",
"Norberg",
"Norby",
"Nordahl",
"Nordberg",
"Nordby",
"Nordeen",
"Nordell",
"Norden",
"Norder",
"Nordgren",
"Nordholm",
"Nordin",
"Nordling",
"Nordlund",
"Nordmark",
"Nordquist",
"Nordstrand",
"Nordstrom",
"Nordström",
"Nordwall",
"Noreen",
"Norell",
"Noren",
"Norenberg",
"Norgaard",
"Norgren",
"Norin",
"Nork",
"Norlander",
"Norlin",
"Norling",
"Norman",
"Norquist",
"Norr",
"Norrell",
"Norstrom",
"Norum",
"Nyberg",
"Nygren",
"Nyholm",
"Nylander",
"Nylen",
"Nylin",
"Nyman",
"Nyquist",
"Nyren",
"Nystrom",
"Nyström",
"Oberg",
"Öberg",
"Ode",
"Oden",
"Ogren",
"Ohland",
"Ohlin",
"Ohlsson",
"Ohlund",
"Ohman",
"Ohrn",
"Ohs",
"Olan",
"Oland",
"Olander",
"Olden",
"Olen",
"Olin",
"Olofsson",
"Olsson",
"Oman",
"Oquist",
"Orell",
"Orn",
"Orne",
"Orrell",
"Osbeck",
"Oscarson",
"Osen",
"Oslin",
"Ostberg",
"Osteen",
"Osten",
"Oster",
"Osterberg",
"Ostergren",
"Osterholm",
"Osterling",
"Osterlund",
"Osterman",
"Ostling",
"Ostlund",
"Ostman",
"Ostrom",
"Otterstrom",
"Over",
"Overbeck",
"Overberg",
"Overgaard",
"Overgard",
"Palm",
"Palmberg",
"Palme",
"Palmer",
"Palmgren",
"Palmquist",
"Pålsson",
"Pehrson",
"Personius",
"Persson",
"Petersson",
"Petre",
"Pettersson",
"Piehl",
"Plahn",
"Quarnstrom",
"Quist",
"Rahr",
"Ramstad",
"Rank",
"Ranstrom",
"Rapp",
"Reierson",
"Ren",
"Renberg",
"Rendahl",
"Renstrom",
"Restad",
"Ringdahl",
"Ringquist",
"Roberg",
"Roden",
"Rodin",
"Rodine",
"Romm",
"Ron",
"Roos",
"Ros",
"Rosander",
"Rosberg",
"Rosdahl",
"Roseen",
"Rosell",
"Roselle",
"Rosen",
"Rosenberg",
"Rosendahl",
"Rosengard",
"Rosengren",
"Rosenlund",
"Rosenquist",
"Rosenson",
"Rosing",
"Roslund",
"Rozelle",
"Rubendall",
"Ruberg",
"Rudberg",
"Rudeen",
"Rudell",
"Ruden",
"Rudin",
"Rundberg",
"Rundell",
"Rundquist",
"Runquist",
"Rydberg",
"Rydeen",
"Rydell",
"Ryden",
"Rydman",
"Rylander",
"Ryman",
"Rystrom",
"Saam",
"Safstrom",
"Sahlberg",
"Sahlin",
"Sahlstrom",
"Salin",
"Sall",
"Salstrom",
"Samberg",
"Samuelsson",
"Sandahl",
"Sandau",
"Sandberg",
"Sandborn",
"Sandburg",
"Sandeen",
"Sandel",
"Sandelin",
"Sandell",
"Sanden",
"Sanderlin",
"Sandgren",
"Sandholm",
"Sandin",
"Sandlin",
"Sandman",
"Sando",
"Sandquist",
"Sandstedt",
"Sandstrom",
"Sandström",
"Sandvik",
"Sanner",
"Satterlund",
"Schelin",
"Sederstrom",
"Segerson",
"Segerstrom",
"Selander",
"Selberg",
"Selin",
"Sellen",
"Sellin",
"Selling",
"Setterberg",
"Settergren",
"Setterlund",
"Sidman",
"Silberg",
"Silverberg",
"Siren",
"Sjoberg",
"Sjöberg",
"Sjoblom",
"Sjodin",
"Sjogren",
"Sjögren",
"Sjolander",
"Sjoquist",
"Sjostrand",
"Sjostrom",
"Skarin",
"Skog",
"Skoglund",
"Skogman",
"Skold",
"Skoog",
"Slott",
"Smedberg",
"Soder",
"Soderberg",
"Söderberg",
"Sodergren",
"Soderholm",
"Soderlind",
"Soderlund",
"Soderman",
"Soderquist",
"Soderstrom",
"Söderström",
"Solberg",
"Solin",
"Solomonson",
"Spong",
"Spongberg",
"Stahlberg",
"Stahle",
"Steen",
"Sten",
"Stenberg",
"Stendahl",
"Stenlund",
"Stenquist",
"Stenstrom",
"Sternhagen",
"Stomberg",
"Strandberg",
"Strandell",
"Strid",
"Strom",
"Ström",
"Stromberg",
"Strömberg",
"Stromgren",
"Stromquist",
"Strutz",
"Sund",
"Sundahl",
"Sundberg",
"Sundblad",
"Sundell",
"Sunderlin",
"Sundgren",
"Sundholm",
"Sundin",
"Sundling",
"Sundman",
"Sundquist",
"Sundstrom",
"Sundström",
"Svensson",
"Swahn",
"Swanberg",
"Swanstrom",
"Swedberg",
"Swedlund",
"Sylvan",
"Tapper",
"Telander",
"Thelander",
"Thelen",
"Thelin",
"Tholl",
"Thomasson",
"Thorell",
"Thoren",
"Thornberg",
"Thorne",
"Thornell",
"Thorner",
"Thorngren",
"Thornquist",
"Thorsell",
"Thron",
"Thulin",
"Thull",
"Thun",
"Thunberg",
"Thunstrom",
"Thur",
"Tolleson",
"Torborg",
"Torell",
"Toren",
"Torkelson",
"Tornberg",
"Tornquist",
"Torstenson",
"Trana",
"Trest",
"Tulin",
"Turnquist",
"Underberg",
"Utter",
"Vaden",
"Vallin",
"Vardeman",
"Varn",
"Vass",
"Viklund",
"Wadell",
"Wahlgren",
"Wahlin",
"Wahlman",
"Wahlquist",
"Wahlstrom",
"Walberg",
"Walin",
"Wall",
"Wallander",
"Wallar",
"Wallen",
"Wallenberg",
"Wallerstedt",
"Wallgren",
"Wallin",
"Wallman",
"Wangberg",
"Wass",
"Weberg",
"Wedin",
"Wedman",
"Welander",
"Wellman",
"Wenberg",
"Wenman",
"Wennberg",
"Wenner",
"Wennerberg",
"Wennerstrom",
"Wenstrom",
"Westby",
"Westerberg",
"Westerdahl",
"Westergren",
"Westerholm",
"Westerlund",
"Westgard",
"Westin",
"Westling",
"Westlund",
"Westman",
"Westrom",
"Wiberg",
"Wiborg",
"Wickland",
"Wicklander",
"Wickstrom",
"Widell",
"Widen",
"Wider",
"Widing",
"Widman",
"Widmark",
"Wieberg",
"Wigren",
"Wiker",
"Wiklund",
"Wikman",
"Wikstrom",
"Wikström",
"Wilden",
"Wiman",
"Winberg",
"Wind",
"Windell",
"Wingard",
"Winge",
"Winger",
"Winquist",
"Wisell",
"Wist",
"Wistrom",
"Wolin",
"Younggren",
"Zetterberg"]>>
<<set setup.italianSurnames to [
"Abate",
"Abato",
"Abbruzzese",
"Abela",
"Abella",
"Abramo",
"Abruzzese",
"Abruzzo",
"Accardi",
"Accardo",
"Accetta",
"Accomando",
"Accordino",
"Aceto",
"Achille",
"Acierno",
"Acquaviva",
"Acquisto",
"Acri",
"Adami",
"Adamo",
"Addonizio",
"Adduci",
"Adinolfi",
"Adornetto",
"Adorno",
"Adragna",
"Affinito",
"Agnello",
"Agosta",
"Agosti",
"Agostinelli",
"Agostini",
"Agostino",
"Agosto",
"Agrella",
"Agresta",
"Agresti",
"Agro",
"Agrusa",
"Ajello",
"Alagna",
"Alaimo",
"Alario",
"Albani",
"Albano",
"Albergo",
"Alberici",
"Alberta",
"Albertelli",
"Alberti",
"Albertini",
"Albini",
"Albino",
"Aldi",
"Ale",
"Aleo",
"Ales",
"Alesi",
"Alessandrini",
"Alessandro",
"Alessi",
"Alessio",
"Alfano",
"Alfieri",
"Alfonsi",
"Alfonso",
"Algiere",
"Aliberti",
"Alioto",
"Allegra",
"Allegretti",
"Allegretto",
"Allegro",
"Allesi",
"Allessi",
"Allessie",
"Alleva",
"Allocca",
"Alma",
"Alo",
"Aloise",
"Aloisi",
"Aloisio",
"Alonge",
"Alongi",
"Altadonna",
"Altamura",
"Altavilla",
"Altera",
"Altieri",
"Altimari",
"Altobelli",
"Altobello",
"Altomare",
"Alu",
"Amabile",
"Amadeo",
"Amadio",
"Amalfitano",
"Amante",
"Amantea",
"Amara",
"Amarante",
"Amari",
"Amaro",
"Amato",
"Amatucci",
"Ambrogi",
"Ambrogio",
"Ambrosi",
"Ambrosia",
"Ambrosini",
"Ambrosino",
"Ambrosio",
"Amedeo",
"Amelio",
"Amici",
"Amico",
"Amicone",
"Amidei",
"Ammirati",
"Amodei",
"Amodeo",
"Amodio",
"Amore",
"Amorosi",
"Amoroso",
"Anastasi",
"Anastasia",
"Anastasio",
"Ancona",
"Andolina",
"Andrea",
"Andreano",
"Andreini",
"Andreola",
"Andreoli",
"Andreotti",
"Andreozzi",
"Andresano",
"Andriano",
"Andriola",
"Anello",
"Angeletti",
"Angeli",
"Angelico",
"Angelillo",
"Angelini",
"Angelino",
"Angelis",
"Angello",
"Angelo",
"Angelone",
"Angeloni",
"Angelotti",
"Angelucci",
"Angiolillo",
"Angotti",
"Aniello",
"Annese",
"Annunziata",
"Annunziato",
"Anselmi",
"Anselmo",
"Antico",
"Antolini",
"Antonelli",
"Antonellis",
"Antonetti",
"Antoni",
"Antonini",
"Antonino",
"Antonioli",
"Antonucci",
"Anzivino",
"Apollo",
"Aprea",
"Aquila",
"Aquilina",
"Aquilino",
"Aquino",
"Arabia",
"Arace",
"Aragona",
"Arata",
"Arcara",
"Arcari",
"Arcaro",
"Arco",
"Arcuri",
"Ardito",
"Ardizzone",
"Ardolino",
"Arduini",
"Arena",
"Argenio",
"Argenta",
"Argenti",
"Argentieri",
"Argento",
"Argenziano",
"Argiro",
"Argo",
"Arlotta",
"Armani",
"Armanini",
"Armato",
"Armellino",
"Armenia",
"Armenti",
"Armento",
"Armetta",
"Arno",
"Arnoldi",
"Arola",
"Arone",
"Arpino",
"Arrighi",
"Arrigo",
"Arrigoni",
"Artale",
"Artino",
"Artuso",
"Asaro",
"Assante",
"Asti",
"Astrella",
"Attanasio",
"Attardo",
"Auciello",
"Audi",
"Audia",
"Audino",
"Aufiero",
"Augello",
"Augeri",
"Augusta",
"Augustino",
"Aurelio",
"Auricchio",
"Auriemma",
"Aurilio",
"Avara",
"Avella",
"Avellino",
"Avena",
"Aveni",
"Avolio",
"Azzarello",
"Azzaro",
"Azzopardi",
"Babino",
"Baccaro",
"Bacci",
"Bacco",
"Bacigalupi",
"Bacino",
"Badami",
"Badamo",
"Badaracco",
"Badolato",
"Baffa",
"Baglio",
"Bagnoli",
"Baiamonte",
"Baio",
"Baiocchi",
"Balbi",
"Balbo",
"Balboni",
"Baldacci",
"Baldassano",
"Baldassare",
"Baldassari",
"Baldassarre",
"Baldelli",
"Baldi",
"Baldini",
"Baldino",
"Baldo",
"Baldocchi",
"Baldoni",
"Balducci",
"Balestra",
"Balestreri",
"Balestrieri",
"Balla",
"Ballerini",
"Balli",
"Ballo",
"Balma",
"Balotelli",
"Balzano",
"Balzarini",
"Bambino",
"Bamonte",
"Banchero",
"Bandi",
"Banducci",
"Baranello",
"Baratta",
"Barba",
"Barbagallo",
"Barbano",
"Barbara",
"Barbaria",
"Barbarino",
"Barbaro",
"Barbati",
"Barbato",
"Barbella",
"Barberi",
"Barberio",
"Barbetta",
"Barbieri",
"Barbo",
"Barbone",
"Barbuto",
"Barcellona",
"Barco",
"Bardi",
"Bardo",
"Barella",
"Baresi",
"Bari",
"Barile",
"Barilla",
"Barillaro",
"Barletta",
"Barna",
"Barnaba",
"Baroffio",
"Barone",
"Baroni",
"Barraco",
"Barrella",
"Barrese",
"Barresi",
"Barretta",
"Barretto",
"Barrile",
"Barsotti",
"Barto",
"Bartoletti",
"Bartoli",
"Bartolini",
"Bartolo",
"Bartolomei",
"Bartolomeo",
"Bartolomucci",
"Bartolone",
"Bartolotta",
"Bartolotti",
"Bartolucci",
"Basilio",
"Basilone",
"Bassani",
"Bassano",
"Bassetti",
"Bassi",
"Basso",
"Bastianelli",
"Bastone",
"Battaglia",
"Battaglini",
"Battaglino",
"Battista",
"Battistelli",
"Battisti",
"Battistoni",
"Baudo",
"Bava",
"Bavaro",
"Bazzano",
"Beatrice",
"Bedacholli",
"Beffa",
"Belardo",
"Belfi",
"Belfiore",
"Bella",
"Bellafiore",
"Bellanca",
"Bellante",
"Bellanti",
"Bellantoni",
"Bellavia",
"Belle",
"Bellezza",
"Belli",
"Bellia",
"Bellina",
"Bellini",
"Bellino",
"Bellisario",
"Bellissimo",
"Belloli",
"Bellomo",
"Bellone",
"Belloni",
"Bellotti",
"Bellucci",
"Belluomini",
"Belotti",
"Belsito",
"Beltrami",
"Beltramo",
"Belvedere",
"Ben",
"Benanti",
"Benassi",
"Bencivenga",
"Bencivengo",
"Bene",
"Benedetti",
"Benedetto",
"Benetti",
"Beneventi",
"Benevento",
"Benigni",
"Benigno",
"Beninati",
"Beninato",
"Bennardo",
"Bentivegna",
"Benveniste",
"Benvenuti",
"Benvenuto",
"Benza",
"Berardi",
"Berardinelli",
"Berardino",
"Berardo",
"Berarducci",
"Berenato",
"Bergamini",
"Bergamo",
"Bernabei",
"Bernacchi",
"Bernardi",
"Bernardini",
"Bernasconi",
"Bernero",
"Berni",
"Berretta",
"Bersani",
"Berta",
"Bertagnolli",
"Bertani",
"Bertelli",
"Berti",
"Bertini",
"Bertino",
"Berto",
"Bertocchi",
"Bertola",
"Bertolami",
"Bertoldi",
"Bertoli",
"Bertolini",
"Bertolino",
"Bertolotti",
"Bertolucci",
"Bertone",
"Bertoni",
"Bertorelli",
"Bertozzi",
"Bertucci",
"Bertuzzi",
"Betti",
"Bettin",
"Bettini",
"Bevacqua",
"Bevilacqua",
"Bezio",
"Biafore",
"Biaggi",
"Biagi",
"Biagini",
"Biagioni",
"Biagiotti",
"Biamonte",
"Biancalana",
"Biancardi",
"Bianchi",
"Bianchini",
"Bianco",
"Bianconi",
"Biasi",
"Biele",
"Biello",
"Biggio",
"Bila",
"Bilello",
"Bilotti",
"Binda",
"Binetti",
"Bini",
"Biondi",
"Biondo",
"Bisceglia",
"Bisesi",
"Bisio",
"Bisogno",
"Bisso",
"Bitto",
"Biviano",
"Bivona",
"Bizzaro",
"Bizzarro",
"Blancato",
"Blanco",
"Blanda",
"Blandino",
"Blando",
"Blasi",
"Bloise",
"Bocchino",
"Bocci",
"Boccia",
"Boccio",
"Boccuzzi",
"Boffa",
"Bolio",
"Bologna",
"Bolognese",
"Bombara",
"Bommarito",
"Bona",
"Bonacci",
"Bonaccorsi",
"Bonaccorso",
"Bonadies",
"Bonadio",
"Bonadonna",
"Bonafede",
"Bonagura",
"Bonanni",
"Bonanno",
"Bonano",
"Bonaparte",
"Bonardi",
"Bonasera",
"Bonato",
"Bonaventura",
"Bonavita",
"Bondi",
"Bonelli",
"Bonello",
"Bonetti",
"Bonfanti",
"Bonfiglio",
"Bongiorno",
"Bongiovanni",
"Boni",
"Bonica",
"Bonifacio",
"Bonini",
"Bonino",
"Bonito",
"Bono",
"Bonocchi",
"Bonomi",
"Bonomo",
"Bonsignore",
"Bontempo",
"Bonura",
"Bonventre",
"Bordonaro",
"Borgese",
"Borghese",
"Borgia",
"Borgo",
"Borino",
"Borroni",
"Borsa",
"Borsari",
"Boschetti",
"Bosco",
"Bosetti",
"Bosi",
"Bosio",
"Boso",
"Bossio",
"Bosso",
"Botta",
"Bottari",
"Bottaro",
"Botte",
"Botti",
"Botticelli",
"Bottiglieri",
"Bottini",
"Bottino",
"Botto",
"Bottone",
"Bottoni",
"Bova",
"Bove",
"Bovino",
"Bozza",
"Bozzelli",
"Bozzi",
"Bozzo",
"Bozzuto",
"Bracci",
"Braccia",
"Bracco",
"Bramante",
"Branca",
"Brancato",
"Branciforte",
"Branda",
"Brandi",
"Brando",
"Breda",
"Brenna",
"Brescia",
"Bresciani",
"Bressan",
"Bressi",
"Bria",
"Brichese",
"Brigandi",
"Brigante",
"Briganti",
"Briglia",
"Brindisi",
"Brizzi",
"Brocato",
"Brocco",
"Broccoli",
"Broggi",
"Brucato",
"Bruna",
"Brunelli",
"Brunetti",
"Brunetto",
"Bruni",
"Bruno",
"Bruschi",
"Brusco",
"Bruzzese",
"Bua",
"Bucca",
"Buccellato",
"Bucceri",
"Bucci",
"Bucciarelli",
"Bucciero",
"Buccini",
"Buccino",
"Buccio",
"Bucco",
"Buccola",
"Bucolo",
"Bueti",
"Bufalini",
"Bufalino",
"Buffa",
"Buffo",
"Buffon",
"Buffone",
"Buglione",
"Bugni",
"Bulla",
"Buonaiuto",
"Buonanno",
"Buonomo",
"Buonopane",
"Buratti",
"Burdi",
"Burgi",
"Burgio",
"Burgo",
"Buro",
"Busa",
"Busacca",
"Busalacchi",
"Bussa",
"Bussone",
"Butta",
"Buttacavoli",
"Buttitta",
"Butto",
"Buzza",
"Buzzelli",
"Buzzeo",
"Buzzi",
"Caccamise",
"Caccamo",
"Caccavale",
"Caccese",
"Cacchione",
"Caccia",
"Cacciatore",
"Cacciola",
"Cafarella",
"Cafarelli",
"Cafaro",
"Cafasso",
"Cafe",
"Cagnina",
"Caiazza",
"Caiazzo",
"Cairo",
"Caito",
"Calabrese",
"Calabretta",
"Calabria",
"Calabro",
"Calafiore",
"Calamari",
"Calandra",
"Calandro",
"Calarco",
"Calcagni",
"Calcagno",
"Calcaterra",
"Caldarella",
"Caldarelli",
"Caldarera",
"Caldarone",
"Calderaro",
"Calderone",
"Calegari",
"Calicchio",
"Caliendo",
"Califano",
"Calistro",
"Calitri",
"Caliva",
"Calla",
"Callegari",
"Caltabiano",
"Caltagirone",
"Calvanese",
"Calvano",
"Calvetti",
"Calvi",
"Camarata",
"Cambareri",
"Cambio",
"Cambria",
"Camelio",
"Camerino",
"Camilli",
"Camillo",
"Caminiti",
"Camino",
"Cammarano",
"Camozzi",
"Campagna",
"Campana",
"Campanale",
"Campanella",
"Campanelli",
"Campanile",
"Campi",
"Campione",
"Campise",
"Campitelli",
"Campo",
"Campobasso",
"Campodonico",
"Campoli",
"Campolo",
"Campopiano",
"Camporeale",
"Campus",
"Canal",
"Canale",
"Canali",
"Cancellieri",
"Candela",
"Candia",
"Candito",
"Candreva",
"Canepa",
"Canevari",
"Cangialosi",
"Cannada",
"Cannone",
"Cannova",
"Cantalupo",
"Cantarella",
"Cantone",
"Cantoni",
"Cantore",
"Canzano",
"Capaccio",
"Capaldi",
"Caparelli",
"Capella",
"Capelli",
"Capello",
"Capito",
"Capo",
"Capobianco",
"Capodanno",
"Capone",
"Caponera",
"Caponi",
"Caponigro",
"Caporale",
"Caporaso",
"Capotosto",
"Capozzi",
"Capparelli",
"Cappella",
"Cappelletti",
"Cappelli",
"Cappellini",
"Cappellino",
"Cappello",
"Cappetta",
"Cappiello",
"Cappo",
"Cappola",
"Capponi",
"Cappucci",
"Capra",
"Capretta",
"Capri",
"Capriglione",
"Caprio",
"Capriotti",
"Caproni",
"Capuano",
"Capurso",
"Caputa",
"Caputi",
"Caputo",
"Capuzzi",
"Carabello",
"Caracappa",
"Caracci",
"Caradonna",
"Caramanica",
"Caranci",
"Carangelo",
"Carangi",
"Carano",
"Caravella",
"Caravello",
"Carbonara",
"Carbone",
"Carboni",
"Carchidi",
"Carda",
"Cardamone",
"Cardarelli",
"Cardelli",
"Cardello",
"Cardi",
"Cardile",
"Cardillo",
"Cardinale",
"Cardinali",
"Cardo",
"Cardone",
"Cardoni",
"Cardosi",
"Carducci",
"Cardullo",
"Carella",
"Carelli",
"Carello",
"Carfagna",
"Carfagno",
"Carfora",
"Carico",
"Carideo",
"Caridi",
"Cariello",
"Carilli",
"Carinci",
"Carini",
"Carino",
"Carleo",
"Carli",
"Carlin",
"Carlini",
"Carlino",
"Carlisi",
"Carlo",
"Carlone",
"Carloni",
"Carlozzi",
"Carminati",
"Carmine",
"Carmosino",
"Carnaghi",
"Carnevale",
"Carnicelli",
"Caro",
"Carone",
"Caronia",
"Carosella",
"Caroselli",
"Carosi",
"Carota",
"Carotenuto",
"Carozza",
"Carpentieri",
"Carpinelli",
"Carpinello",
"Carpino",
"Carpio",
"Carra",
"Carraro",
"Carricato",
"Carriere",
"Carrieri",
"Carriero",
"Carro",
"Carrozza",
"Carta",
"Cartelli",
"Caruana",
"Caruso",
"Carusone",
"Carvelli",
"Casa",
"Casagranda",
"Casagrande",
"Casale",
"Casaletto",
"Casali",
"Casalino",
"Casamento",
"Casarella",
"Casasanta",
"Casassa",
"Casazza",
"Cascella",
"Casciani",
"Casciano",
"Casciato",
"Cascioli",
"Cascone",
"Casella",
"Caselli",
"Caserta",
"Casini",
"Casino",
"Cason",
"Cassani",
"Cassano",
"Cassaro",
"Cassella",
"Cassese",
"Cassetta",
"Cassinelli",
"Cassino",
"Cassone",
"Castagna",
"Castagno",
"Castagnola",
"Castaldi",
"Castaldo",
"Castellani",
"Castellano",
"Castelli",
"Castellini",
"Castello",
"Castellucci",
"Castelluccio",
"Castiglia",
"Castiglione",
"Castiglioni",
"Castoro",
"Castricone",
"Catalani",
"Catalano",
"Catalanotto",
"Catalino",
"Catania",
"Catano",
"Catanzano",
"Catanzaro",
"Catenacci",
"Caterina",
"Caterino",
"Catizone",
"Catone",
"Catrambone",
"Cattaneo",
"Catto",
"Catucci",
"Cava",
"Cavalcante",
"Cavaliere",
"Cavalieri",
"Cavalli",
"Cavallini",
"Cavallo",
"Cavanna",
"Cavataio",
"Cavicchi",
"Cecala",
"Ceccarelli",
"Cecchetti",
"Cecchi",
"Cecchini",
"Cecconi",
"Cece",
"Cecere",
"Ceci",
"Cedrone",
"Cefalo",
"Cefalu",
"Ceglia",
"Celani",
"Celano",
"Celentano",
"Celenza",
"Celia",
"Cella",
"Celli",
"Cellini",
"Cellucci",
"Cellura",
"Celona",
"Cena",
"Cenci",
"Cennamo",
"Centanni",
"Centofanti",
"Centola",
"Centore",
"Centrella",
"Centrone",
"Ceraso",
"Cerasoli",
"Cerasuolo",
"Ceravolo",
"Cerbone",
"Cercone",
"Cereghino",
"Ceresa",
"Cericola",
"Cerini",
"Cerino",
"Cerminaro",
"Cerniglia",
"Cerreta",
"Cerri",
"Cerrito",
"Cerro",
"Cerrone",
"Cerroni",
"Cerruti",
"Certa",
"Certo",
"Cerulli",
"Cerullo",
"Cerutti",
"Cervelli",
"Cervi",
"Cervini",
"Cervino",
"Cervone",
"Cesa",
"Cesare",
"Cesari",
"Cesarini",
"Cesario",
"Cesaro",
"Cesena",
"Cesta",
"Cestaro",
"Cestone",
"Cetta",
"Checchi",
"Cherico",
"Cherubini",
"Chiappini",
"Chiara",
"Chiaramonte",
"Chiarella",
"Chiarelli",
"Chiarello",
"Chiaro",
"Chiaverini",
"Chiavetta",
"Chiellini",
"Chiera",
"Chiesa",
"Chimienti",
"China",
"Chinnici",
"Chino",
"Chiodi",
"Chiodini",
"Chiodo",
"Chirco",
"Chirichella",
"Chirico",
"Chiumento",
"Chiusano",
"Ciabattoni",
"Ciaburri",
"Ciaccia",
"Ciaccio",
"Ciambrone",
"Ciampa",
"Ciampi",
"Cianci",
"Ciancio",
"Cianciola",
"Cianciolo",
"Cianciulli",
"Cianelli",
"Cianflone",
"Ciani",
"Ciano",
"Ciaramitaro",
"Ciaravino",
"Ciardullo",
"Ciarleglio",
"Ciarlo",
"Ciarrocchi",
"Cibelli",
"Cicala",
"Cicale",
"Cicalese",
"Ciccarelli",
"Ciccarello",
"Ciccarone",
"Cicchetti",
"Cicchini",
"Cicchino",
"Cicci",
"Cicciarelli",
"Ciccolella",
"Ciccone",
"Cicconi",
"Ciccotelli",
"Cicio",
"Cicone",
"Cieri",
"Ciervo",
"Cifaldi",
"Cifarelli",
"Cifelli",
"Cilento",
"Cillo",
"Cilluffo",
"Cima",
"Cimaglia",
"Ciminelli",
"Ciminera",
"Cimini",
"Cimino",
"Cimmino",
"Cimo",
"Cimorelli",
"Cinco",
"Cinelli",
"Cini",
"Cino",
"Cinotti",
"Cinque",
"Cinquemani",
"Ciocca",
"Ciocco",
"Cioffi",
"Ciolino",
"Ciolli",
"Cione",
"Cioni",
"Cioppa",
"Ciotola",
"Ciotti",
"Cipolla",
"Cipollone",
"Cipriani",
"Cipriano",
"Cira",
"Circo",
"Cirelli",
"Ciresi",
"Ciriello",
"Cirigliano",
"Cirilli",
"Cirillo",
"Cirincione",
"Cirino",
"Cirrincione",
"Cirrito",
"Citrano",
"Cittadino",
"Ciucci",
"Ciuffo",
"Ciufo",
"Ciulla",
"Ciullo",
"Civello",
"Civiello",
"Civitarese",
"Civitello",
"Clarizio",
"Claro",
"Clementi",
"Clerici",
"Clerico",
"Coca",
"Cocca",
"Cocchi",
"Cocchiola",
"Cocci",
"Cocco",
"Cociarelli",
"Coco",
"Cocozza",
"Cocuzza",
"Coda",
"Codella",
"Cofone",
"Cofrancesco",
"Coglianese",
"Cogliano",
"Coia",
"Coiro",
"Colabella",
"Colacino",
"Colaianni",
"Colaizzi",
"Colaluca",
"Colandrea",
"Colaneri",
"Colangelo",
"Colantoni",
"Colantonio",
"Colantuoni",
"Colantuono",
"Colao",
"Colapietro",
"Colarossi",
"Colarusso",
"Colasanti",
"Colasuonno",
"Colavita",
"Colavito",
"Colella",
"Colello",
"Coletta",
"Coletti",
"Coletto",
"Colicchio",
"Colina",
"Colla",
"Colletta",
"Colletti",
"Colli",
"Colombini",
"Colombo",
"Colona",
"Colone",
"Colosi",
"Colucci",
"Coluccio",
"Columbo",
"Comella",
"Comito",
"Como",
"Comolli",
"Compagno",
"Compagnone",
"Comunale",
"Cona",
"Conca",
"Condello",
"Conetta",
"Confalone",
"Conforti",
"Conigliaro",
"Coniglio",
"Conradi",
"Consigli",
"Consiglio",
"Console",
"Consoli",
"Consolo",
"Constantini",
"Constantino",
"Contarino",
"Conte",
"Contento",
"Contessa",
"Conti",
"Contini",
"Contino",
"Conto",
"Contrino",
"Coppi",
"Coppola",
"Coppolino",
"Corallo",
"Corazza",
"Corbello",
"Corbi",
"Corbo",
"Corcione",
"Corda",
"Cordano",
"Cordaro",
"Cordasco",
"Cordi",
"Cordisco",
"Cordone",
"Corella",
"Corelli",
"Corigliano",
"Cornacchia",
"Cornelia",
"Cornella",
"Cornetta",
"Corona",
"Corra",
"Corradetti",
"Corradi",
"Corradini",
"Corradino",
"Corrado",
"Corrao",
"Correale",
"Corrente",
"Correnti",
"Corriere",
"Corsa",
"Corsaro",
"Corsello",
"Corsentino",
"Corsetti",
"Corsi",
"Corsiglia",
"Corsini",
"Corsino",
"Corso",
"Corte",
"Cortese",
"Cortesi",
"Corti",
"Cortina",
"Cortopassi",
"Corvi",
"Corvino",
"Corvo",
"Coscia",
"Cosco",
"Cosio",
"Cosmo",
"Costa",
"Costanza",
"Costanzo",
"Costella",
"Cotrone",
"Cotroneo",
"Cotta",
"Covelli",
"Covello",
"Coviello",
"Covino",
"Cozza",
"Cozzi",
"Cozzo",
"Cozzolino",
"Cozzone",
"Cracchiolo",
"Cravotta",
"Crea",
"Crecco",
"Crescenzi",
"Crescenzo",
"Cresci",
"Cresta",
"Cresto",
"Cretella",
"Cribari",
"Crifasi",
"Crimi",
"Crisafi",
"Criscione",
"Crisco",
"Criscuolo",
"Crispi",
"Cristello",
"Cristiano",
"Cristofaro",
"Critelli",
"Crivelli",
"Crivello",
"Crocco",
"Croce",
"Crocetti",
"Croci",
"Crognale",
"Crovo",
"Crudele",
"Crudo",
"Cuccaro",
"Cucchi",
"Cucci",
"Cuccia",
"Cuccio",
"Cucco",
"Cucinotta",
"Cugini",
"Cuneo",
"Cunico",
"Cuoco",
"Cuomo",
"Cuozzo",
"Cupo",
"Cura",
"Curci",
"Curcuru",
"Curreri",
"Curti",
"Cusanelli",
"Cusano",
"Cusato",
"Cusenza",
"Cusimano",
"Cusmano",
"Cusumano",
"Cutaia",
"Cutillo",
"Cutone",
"Cuva",
"D\'Achille",
"D\'Acquisto",
"D\'Acunto",
"D\'Adamo",
"D\'Addario",
"D\'Addio",
"D\'Addona",
"D\'Agata",
"D\'Agosta",
"D\'Agostino",
"D\'Aiuto",
"D\'Aleo",
"D\'Alesandro",
"D\'Alesio",
"D\'Alessandro",
"D\'Alessio",
"D\'Alfonso",
"D\'Alia",
"D\'Alleva",
"D\'Aloia",
"D\'Aloisio",
"D\'Alonzo",
"D\'Alto",
"D\'Amato",
"D\'Ambra",
"D\'Ambrosi",
"D\'Ambrosia",
"D\'Ambrosio",
"D\'Amelio",
"D\'Amico",
"D\'Amore",
"D\'Andrea",
"D\'Angelo",
"D\'Aniello",
"D\'Annunzio",
"D\'Antona",
"D\'Antoni",
"D\'Antonio",
"D\'Antuono",
"D\'Apolito",
"D\'Aprile",
"D\'Aquila",
"D\'Aquino",
"D\'Arcangelo",
"D\'Arco",
"D\'Arezzo",
"D\'Arienzo",
"D\'Arpino",
"D\'Arrigo",
"D\'Asaro",
"D\'Ascanio",
"D\'Ascenzo",
"D\'Ascoli",
"D\'Atri",
"D\'Attilio",
"D\'Auria",
"D\'Avanzo",
"D\'Aversa",
"D\'Azzo",
"D\'Egidio",
"D\'Elia",
"D\'Emilio",
"D\'Ercole",
"D\'Errico",
"D\'Esposito",
"D\'Ettore",
"D\'Imperio",
"D\'Innocenzo",
"D\'Intino",
"D\'Orazio",
"D\'Oria",
"D\'Orio",
"D\'Orsi",
"D\'Orso",
"D\'Ottavio",
"D\'Ovidio",
"D\'Urbano",
"D\'Uva",
"Da Ponte",
"Da Pra",
"D\'Agostino",
"Daino",
"Dal Porto",
"Dal Santo",
"Damiani",
"Damiano",
"Damone",
"D\'Amore",
"Danella",
"Danese",
"Danesi",
"Daniele",
"Danieli",
"Dante",
"Danza",
"Danzi",
"Darin",
"Dato",
"Dattoli",
"Davi",
"Davia",
"Davide",
"Davino",
"Davoli",
"Daza",
"De Amicis",
"De Andrea",
"De Angelis",
"De Angelo",
"De Bacco",
"De Bari",
"De Bartolo",
"De Bella",
"De Bellis",
"De Bello",
"De Benedetti",
"De Benedetto",
"De Benedictis",
"De Berardinis",
"De Bernardi",
"De Bernardo",
"De Biase",
"De Blase",
"De Blasi",
"De Blasio",
"De Bona",
"De Bonis",
"De Bono",
"De Candia",
"De Canio",
"De Caprio",
"De Capua",
"De Carli",
"De Carlo",
"De Caro",
"De Carolis",
"De Cecco",
"De Cesare",
"De Chellis",
"De Cicco",
"De Cola",
"De Cosmo",
"De Crescenzo",
"De Cristofaro",
"De Cristoforo",
"De Domenico",
"De Dominicis",
"De Donato",
"De Fabio",
"De Falco",
"De Fazio",
"De Feo",
"De Filippis",
"De Filippo",
"De Fina",
"De Fino",
"De Fiore",
"De Florio",
"De Francesco",
"De Francisco",
"De Franco",
"De Fronzo",
"De Furia",
"De Gaetano",
"De Gennaro",
"De Giacomo",
"De Giorgio",
"De Girolamo",
"De Grado",
"De Grande",
"De Gregorio",
"De Laura",
"De Laurentis",
"De Lauro",
"De Lellis",
"De Lello",
"De Leonardis",
"De Lillo",
"De Lisi",
"De Lisio",
"De Lorenzo",
"De Luca",
"De Lucca",
"De Lucchi",
"De Lucia",
"De Luise",
"De Maggio",
"De Maio",
"De Marchi",
"De Marco",
"De Maria",
"De Marinis",
"De Mario",
"De Martini",
"De Martinis",
"De Martino",
"De Marzo",
"De Masi",
"De Mattei",
"De Matteis",
"De Matteo",
"De Mattia",
"De Mello",
"De Meo",
"De Michele",
"De Muro",
"De Napoli",
"De Nardis",
"De Nardo",
"De Natale",
"De Nigris",
"De Ninno",
"De Noia",
"De Nucci",
"De Nunzio",
"De Palma",
"De Palo",
"De Paola",
"De Paoli",
"De Paolis",
"De Paolo",
"De Pascale",
"De Pasquale",
"De Paula",
"De Paulis",
"De Petris",
"De Petro",
"De Piano",
"De Piero",
"De Pierro",
"De Pietro",
"De Pinto",
"De Polo",
"De Ponte",
"De Prima",
"De Prospero",
"De Renzo",
"De Rienzo",
"De Riggi",
"De Rita",
"De Robertis",
"De Rocco",
"De Rogatis",
"De Rose",
"De Rossi",
"De Rubeis",
"De Salvo",
"De Sanctis",
"De Santi",
"De Santis",
"De Santo",
"De Sario",
"De Sarno",
"De Sarro",
"De Sena",
"De Serio",
"De Simone",
"De Sisto",
"De Socio",
"De Sorbo",
"De Spirito",
"De Stasio",
"De Stefanis",
"De Stefano",
"De Toro",
"De Vico",
"De Vincentis",
"De Vincenzi",
"De Vincenzo",
"De Vita",
"De Vitis",
"De Vito",
"De Vitto",
"De Vivo",
"Dean",
"DeFilippis",
"Degan",
"Del Bene",
"Del Bianco",
"Del Buono",
"Del Carlo",
"Del Conte",
"Del Core",
"Del Duca",
"Del Gatto",
"Del Gaudio",
"Del Giorno",
"Del Giudice",
"Del Grande",
"Del Greco",
"Del Grosso",
"Del Guercio",
"Del Mastro",
"Del Medico",
"Del Monaco",
"Del Monico",
"Del Monte",
"Del Negro",
"Del Nero",
"Del Papa",
"Del Ponte",
"Del Pozzo",
"Del Prete",
"Del Priore",
"Del Re",
"Del Rossi",
"Del Rosso",
"Del Santo",
"Del Signore",
"Del Sordo",
"Del Tufo",
"Del Vecchio",
"Delfino",
"Delisa",
"Delise",
"Deliso",
"Dell\'Anno",
"Dell\'Aquila",
"Dell\'Olio",
"Della Croce",
"Della Penna",
"Della Porta",
"Della Rocca",
"Della Torre",
"Della Valle",
"Della Vecchia",
"Delle Donne",
"Delli Santi",
"Delligatti",
"Dello Russo",
"Dellucci",
"Demma",
"Demonte",
"Dena",
"Deni",
"Denisco",
"Dente",
"Dentice",
"Dentino",
"Deo",
"Depace",
"Deramo",
"Derasmo",
"Derico",
"Desiderio",
"Desio",
"Destro",
"Detti",
"DeVille",
"Devoto",
"Di Angelo",
"Di Antonio",
"Di Bari",
"Di Bartolo",
"Di Bartolomeo",
"Di Battista",
"Di Bella",
"Di Bello",
"Di Benedetto",
"Di Berardino",
"Di Bernardo",
"Di Biase",
"Di Biasi",
"Di Biasio",
"Di Blasi",
"Di Blasio",
"Di Bona",
"Di Buono",
"Di Camillo",
"Di Caprio",
"Di Capua",
"Di Carlo",
"Di Cecco",
"Di Cello",
"Di Cenzo",
"Di Cerbo",
"Di Cesare",
"Di Chiara",
"Di Chiaro",
"Di Cicco",
"Di Cioccio",
"Di Clemente",
"Di Cocco",
"Di Cola",
"Di Cosola",
"Di Costanzo",
"Di Cristofaro",
"Di Croce",
"Di Dio",
"Di Domenico",
"Di Domizio",
"Di Donato",
"Di Donna",
"Di Fabio",
"Di Falco",
"Di Fatta",
"Di Fazio",
"Di Filippo",
"Di Fiore",
"Di Fonzo",
"Di Francesco",
"Di Franco",
"Di Fronzo",
"Di Fulvio",
"Di Gaetano",
"Di Gangi",
"Di Gennaro",
"Di Genova",
"Di Geronimo",
"Di Giacinto",
"Di Giacomo",
"Di Gilio",
"Di Gioia",
"Di Giorgio",
"Di Giovanna",
"Di Giovanni",
"Di Girolamo",
"Di Giulio",
"Di Giuseppe",
"Di Grazia",
"Di Gregorio",
"Di Iorio",
"Di Julio",
"Di Lallo",
"Di Laura",
"Di Lauro",
"Di Lella",
"Di Lello",
"Di Liberti",
"Di Liberto",
"Di Lillo",
"Di Lisio",
"Di Lorenzo",
"Di Loreto",
"Di Luzio",
"Di Maggio",
"Di Maio",
"Di Marco",
"Di Mare",
"Di Maria",
"Di Marino",
"Di Mario",
"Di Martino",
"Di Marzio",
"Di Marzo",
"Di Mascio",
"Di Masi",
"Di Matteo",
"Di Mattia",
"Di Meglio",
"Di Menna",
"Di Meo",
"Di Michele",
"Di Mino",
"Di Modica",
"Di Moze",
"Di Muccio",
"Di Muro",
"Di Muzio",
"Di Napoli",
"Di Nardi",
"Di Nardo",
"Di Natale",
"Di Nelli",
"Di Nello",
"Di Nicola",
"Di Nino",
"Di Nitto",
"Di Noia",
"Di Nolfo",
"Di Norcia",
"Di Noto",
"Di Novo",
"Di Nucci",
"Di Nunzio",
"Di Nuzzo",
"Di Pace",
"Di Palma",
"Di Palo",
"Di Paola",
"Di Paolo",
"Di Pasqua",
"Di Pasquale",
"Di Piazza",
"Di Piero",
"Di Pierro",
"Di Pietrantonio",
"Di Pietro",
"Di Pinto",
"Di Pippo",
"Di Pirro",
"Di Placido",
"Di Prima",
"Di Re",
"Di Renzo",
"Di Rienzo",
"Di Rocco",
"Di Roma",
"Di Rosa",
"Di Russo",
"Di Sabatino",
"Di Sabato",
"Di Salvatore",
"Di Salvo",
"Di Sandro",
"Di Sano",
"Di Santi",
"Di Santis",
"Di Santo",
"Di Sanza",
"Di Sarro",
"Di Scenza",
"Di Sciullo",
"Di Silvestro",
"Di Simone",
"Di Spirito",
"Di Stasi",
"Di Stasio",
"Di Stefano",
"Di Taranto",
"Di Tomaso",
"Di Tommaso",
"Di Toro",
"Di Traglia",
"Di Tullio",
"Di Vincenzo",
"Di Virgilio",
"Di Vita",
"Di Vito",
"Di Vittorio",
"Diana",
"Diano",
"Diglio",
"Dina",
"Dini",
"Dino",
"Diodati",
"Diodato",
"Dioguardi",
"Dionisio",
"Dispenza",
"Dito",
"Ditta",
"Ditto",
"Dodaro",
"Dolce",
"Dolfi",
"Domanico",
"Domenici",
"Domenico",
"Domiano",
"Dominici",
"Domino",
"Don",
"Dona",
"Donatelli",
"Donati",
"Donato",
"Dondero",
"Donini",
"Donis",
"Donisi",
"Donna",
"Donnatiello",
"Doro",
"Dorsa",
"Doto",
"Draghi",
"Drago",
"Dragone",
"Dragonetti",
"Dragotta",
"Duca",
"Duce",
"Dugo",
"Dura",
"Durando",
"Durante",
"Duro",
"Elardo",
"Ellena",
"Elmo",
"Emanuele",
"Emilio",
"Emma",
"Emmi",
"Endrizzi",
"Enea",
"Eneide",
"Enrico",
"Epifano",
"Episcopo",
"Eppolito",
"Eramo",
"Ercolani",
"Ercole",
"Errante",
"Errico",
"Errigo",
"Esposito",
"Evangelista",
"Evangelisti",
"Evola",
"Fabbri",
"Fabbro",
"Fabiani",
"Fabiano",
"Fabio",
"Fabozzi",
"Fabri",
"Fabris",
"Fabrizi",
"Fabrizio",
"Fabro",
"Facciolo",
"Faenza",
"Fagin",
"Faiella",
"Failla",
"Faillace",
"Faiola",
"Falasco",
"Falbo",
"Falcione",
"Falco",
"Falcone",
"Falconi",
"Faletti",
"Fallaci",
"Fallo",
"Fallone",
"Falsetta",
"Falsetti",
"Falso",
"Falsone",
"Falvo",
"Falzarano",
"Falzon",
"Falzone",
"Fama",
"Famiglietti",
"Famularo",
"Fanella",
"Fanelli",
"Fant",
"Fantin",
"Fantini",
"Fanto",
"Fanton",
"Fantozzi",
"Fanucchi",
"Fanucci",
"Farace",
"Faraci",
"Faranda",
"Faraone",
"Fare",
"Farella",
"Farese",
"Fargnoli",
"Fariello",
"Farina",
"Farinacci",
"Farinella",
"Farinelli",
"Farino",
"Faro",
"Farone",
"Farro",
"Farruggia",
"Farruggio",
"Farrugia",
"Fasanella",
"Fasano",
"Fasciano",
"Fasolo",
"Fasone",
"Fassio",
"Fasullo",
"Fatica",
"Fatta",
"Fattore",
"Faugno",
"Faulmino",
"Faustini",
"Faustino",
"Fausto",
"Fava",
"Favale",
"Favaro",
"Favero",
"Favia",
"Favorito",
"Favro",
"Fazio",
"Fazzari",
"Fazzi",
"Fazzina",
"Fazzini",
"Fazzino",
"Fazzio",
"Fazzolari",
"Fazzone",
"Febo",
"Fede",
"Fedele",
"Fedeli",
"Federici",
"Federico",
"Felice",
"Felicetti",
"Felici",
"Feliciano",
"Fellin",
"Femia",
"Fenoglio",
"Feola",
"Feole",
"Fera",
"Feraco",
"Ferlazzo",
"Ferlita",
"Fernicola",
"Ferone",
"Ferragamo",
"Ferraioli",
"Ferraiolo",
"Ferraiuolo",
"Ferrandino",
"Ferrando",
"Ferrante",
"Ferranti",
"Ferrantino",
"Ferrara",
"Ferrari",
"Ferrarini",
"Ferrario",
"Ferraris",
"Ferraro",
"Ferrelli",
"Ferrentino",
"Ferrera",
"Ferrero",
"Ferretti",
"Ferri",
"Ferrin",
"Ferrini",
"Ferritto",
"Ferro",
"Ferron",
"Ferrone",
"Ferroni",
"Ferrucci",
"Ferullo",
"Fiacco",
"Fiano",
"Fiaschetti",
"Fiato",
"Ficca",
"Ficco",
"Fico",
"Fidanza",
"Fidel",
"Fierro",
"Figliola",
"Figone",
"Filardi",
"Filice",
"Filipi",
"Filippelli",
"Filippi",
"Filippini",
"Filippo",
"Filippone",
"Fina",
"Finamore",
"Finelli",
"Fini",
"Finizio",
"Fino",
"Finocchio",
"Fiocca",
"Fiocchi",
"Fiola",
"Fioravanti",
"Fiore",
"Fiorella",
"Fiorelli",
"Fiorello",
"Fiorentino",
"Fiorenza",
"Fioretti",
"Fiori",
"Fiorilli",
"Fiorini",
"Fiorino",
"Fiorito",
"Fiorucci",
"Fischetti",
"Fisco",
"Fittipaldi",
"Flaim",
"Flaminio",
"Flocco",
"Flore",
"Florentino",
"Flori",
"Florian",
"Florio",
"Foglia",
"Foglio",
"Folino",
"Folliero",
"Fontana",
"Fontanella",
"Fontecchio",
"Fonti",
"Fonzi",
"Foppiano",
"Forcina",
"Forcucci",
"Foresta",
"Forgione",
"Forino",
"Forlano",
"Forlenza",
"Forlini",
"Formato",
"Formisano",
"Fornaro",
"Forner",
"Forni",
"Forte",
"Forti",
"Fortini",
"Fortino",
"Fortuna",
"Fortunato",
"Fosco",
"Foto",
"Frabotta",
"Fracassi",
"Fracasso",
"Fradella",
"Fragale",
"Fragola",
"Fraioli",
"Franca",
"Franceschi",
"Franceschini",
"Francesco",
"Francesconi",
"Francese",
"Franchetti",
"Franchi",
"Franchina",
"Franchini",
"Franchino",
"Francia",
"Francione",
"Franciosa",
"Franco",
"Francone",
"Frangella",
"Frangipane",
"Franza",
"Franze",
"Franzone",
"Franzoni",
"Frascone",
"Fratangelo",
"Frate",
"Fratello",
"Fraticelli",
"Frattaroli",
"Frazzini",
"Freda",
"Frederico",
"Frediani",
"Fredo",
"Fresco",
"Fricano",
"Frigo",
"Frisella",
"Frisina",
"Frisone",
"Froio",
"Frongillo",
"Frontiero",
"Frontino",
"Fucci",
"Fuccillo",
"Fuda",
"Fugazzi",
"Fulco",
"Fulgenzi",
"Fulginiti",
"Fumo",
"Funari",
"Funaro",
"Fuoco",
"Furfaro",
"Furia",
"Furino",
"Furno",
"Fusaro",
"Fuscaldo",
"Fusco",
"Fusillo",
"Gabriele",
"Gabrielli",
"Gaccione",
"Gaeta",
"Gaetani",
"Gaetano",
"Gagliano",
"Gagliardi",
"Gaglione",
"Gaia",
"Gaito",
"Galano",
"Galante",
"Galanti",
"Galassi",
"Galasso",
"Galati",
"Galbo",
"Galdi",
"Galea",
"Galeazzi",
"Galella",
"Galgano",
"Galiano",
"Galioto",
"Galla",
"Gallerani",
"Galletta",
"Galletti",
"Galli",
"Gallia",
"Galliano",
"Gallicchio",
"Gallina",
"Gallino",
"Gallo",
"Gallucci",
"Galluccio",
"Galluzzo",
"Gamba",
"Gambale",
"Gambaro",
"Gambetta",
"Gambini",
"Gambino",
"Gambone",
"Ganci",
"Gandolfi",
"Gandolfo",
"Gangemi",
"Garafalo",
"Garafola",
"Garavaglia",
"Garbarini",
"Garbarino",
"Garbo",
"Gardella",
"Gargano",
"Garibaldi",
"Garofano",
"Garone",
"Garramone",
"Garritano",
"Garufi",
"Garza",
"Garzone",
"Gasbarro",
"Gaspari",
"Gasparini",
"Gasparro",
"Gasperini",
"Gatta",
"Gatti",
"Gatto",
"Gattone",
"Gattuso",
"Gauci",
"Gaudino",
"Gaudio",
"Gaudioso",
"Gavino",
"Gazzara",
"Gazzo",
"Gazzola",
"Gelardi",
"Gelli",
"Gelo",
"Gelsomino",
"Gemelli",
"Gemignani",
"Gemma",
"Gencarelli",
"Genco",
"Genetti",
"Gengo",
"Gennarelli",
"Gennari",
"Gennaro",
"Gennusa",
"Gennuso",
"Genova",
"Genovese",
"Genovesi",
"Gentilcore",
"Gentile",
"Gentili",
"Gentilini",
"Genua",
"Gerace",
"Geraci",
"Gerardi",
"Gerbasi",
"Gerbino",
"Germani",
"Germano",
"Gervasi",
"Gervasio",
"Gesualdi",
"Gesualdo",
"Getto",
"Gherardi",
"Ghezzi",
"Ghilardi",
"Ghilarducci",
"Giaccone",
"Giachetti",
"Giacinto",
"Giacobbe",
"Giacomelli",
"Giacometti",
"Giacomini",
"Giacomo",
"Giacona",
"Giacone",
"Gialanella",
"Giallombardo",
"Giambalvo",
"Giambattista",
"Giambra",
"Giambrone",
"Giambruno",
"Giammanco",
"Giammarco",
"Giammarino",
"Giammona",
"Giampa",
"Giampaolo",
"Giampapa",
"Giampietro",
"Giancola",
"Gianelli",
"Gianfrancesco",
"Giangiulio",
"Giangrande",
"Giangrasso",
"Giangreco",
"Giangregorio",
"Gianino",
"Giannantonio",
"Giannattasio",
"Giannelli",
"Giannetta",
"Giannetti",
"Giannetto",
"Gianni",
"Giannini",
"Giannino",
"Giannola",
"Giannone",
"Giannoni",
"Giannotti",
"Giannuzzi",
"Gianotti",
"Giaquinto",
"Giardina",
"Giardini",
"Giardino",
"Giarraputo",
"Giarrusso",
"Gibilisco",
"Gigante",
"Giganti",
"Giglia",
"Giglio",
"Gigliotti",
"Gilardi",
"Gilberti",
"Gilberto",
"Giliberti",
"Giliberto",
"Gilio",
"Gillotti",
"Ginnetti",
"Ginocchio",
"Gioe",
"Gioffre",
"Gioia",
"Gionfriddo",
"Gionta",
"Giordani",
"Giordano",
"Giorgi",
"Giorgianni",
"Giorgio",
"Giorlando",
"Giorno",
"Giovacchini",
"Giovanelli",
"Giovanetti",
"Giovanini",
"Giovannelli",
"Giovannetti",
"Giovanni",
"Giovanniello",
"Giovannini",
"Giovannoni",
"Giovannucci",
"Giove",
"Giovenco",
"Giovinazzo",
"Giovinco",
"Giraldi",
"Girardi",
"Giro",
"Girolami",
"Girolamo",
"Gironda",
"Girone",
"Gismondi",
"Gitto",
"Giudice",
"Giudici",
"Giuffrida",
"Giuliani",
"Giuliano",
"Giunta",
"Giuntoli",
"Giusti",
"Giustino",
"Giusto",
"Gizzi",
"Glaviano",
"Glorioso",
"Gobbi",
"Godino",
"Goffredo",
"Goglia",
"Gola",
"Golia",
"Golini",
"Golino",
"Gonnella",
"Gorgone",
"Gotelli",
"Gotta",
"Gotti",
"Gotto",
"Governale",
"Govoni",
"Grado",
"Grammatico",
"Grana",
"Granata",
"Granato",
"Grande",
"Grandi",
"Grandin",
"Grandinetti",
"Granelli",
"Granese",
"Granieri",
"Granillo",
"Granito",
"Grano",
"Granucci",
"Grassi",
"Grassia",
"Grasso",
"Gravina",
"Gravino",
"Graziadei",
"Graziani",
"Graziano",
"Grazioli",
"Graziosi",
"Grazioso",
"Greco",
"Gregori",
"Gregorio",
"Grella",
"Grieco",
"Griffo",
"Grilli",
"Grillo",
"Grima",
"Grimaldi",
"Grippi",
"Grippo",
"Grisanti",
"Grossi",
"Grosso",
"Gruttadauria",
"Guadagni",
"Guadagnino",
"Guadagno",
"Guadagnoli",
"Guagenti",
"Guagliardo",
"Gualdoni",
"Gualtieri",
"Guarascio",
"Guardino",
"Guarente",
"Guariglia",
"Guarini",
"Guarino",
"Guarnera",
"Gucci",
"Gucciardo",
"Guccio",
"Guccione",
"Guercio",
"Guerino",
"Guerra",
"Guerrera",
"Guerrieri",
"Guerriero",
"Guerrini",
"Guglielmetti",
"Guglielmi",
"Guglielmino",
"Guglielmo",
"Gugliotta",
"Gugliotti",
"Gugliuzza",
"Guida",
"Guidetti",
"Guidi",
"Guido",
"Guidone",
"Guidotti",
"Guiluliani",
"Gulino",
"Gulla",
"Gulli",
"Gullotti",
"Gulotta",
"Gurrieri",
"Guzzetta",
"Guzzi",
"Guzzo",
"Iaccarino",
"Iacobelli",
"Iacobucci",
"Iacovelli",
"Iacovone",
"Iadanza",
"Iadarola",
"Iadevaia",
"Iannaccone",
"Iannarelli",
"Iannello",
"Iannetta",
"Ianni",
"Ianniello",
"Iannone",
"Iannotti",
"Iannucci",
"Iannuzzi",
"Iantosca",
"Iaquinta",
"Iarussi",
"Iezzi",
"Ilacqua",
"Ilardi",
"Imbesi",
"Imbriale",
"Imbrogno",
"Imburgia",
"Imondi",
"Imparato",
"Impastato",
"Imperato",
"Imperatore",
"Imperiale",
"Indelicato",
"Indovina",
"Infante",
"Infanti",
"Infantino",
"Inga",
"Ingargiola",
"Ingemi",
"Ingenito",
"Inglese",
"Innamorato",
"Innocenti",
"Insalaco",
"Insana",
"Inserra",
"Insigne",
"Insinga",
"Interrante",
"Intrieri",
"Inverso",
"Iocco",
"Iosue",
"Iozzo",
"Ippoliti",
"Ippolito",
"Isabella",
"Isola",
"Italiano",
"Iuliano",
"Izzi",
"Jacaruso",
"Jacobucci",
"Jilani",
"La Barbera",
"La Bella",
"La Bianca",
"La Cava",
"La Civita",
"La Corte",
"La Duca",
"La Falce",
"La Fata",
"La Fauci",
"La Fazia",
"La Femina",
"La Forgia",
"La Forte",
"La Franchi",
"La Fratta",
"La Greca",
"La Macchia",
"La Martina",
"La Monda",
"La Monica",
"La Monte",
"La Morte",
"La Motta",
"La Neve",
"La Padula",
"La Paglia",
"La Penna",
"La Penta",
"La Pera",
"La Petina",
"La Piana",
"La Pietra",
"La Placa",
"La Polla",
"La Raia",
"La Rossa",
"La Ruffa",
"La Sala",
"La Scala",
"La Scola",
"La Sorsa",
"La Spada",
"La Stella",
"La Tella",
"La Tona",
"La Valla",
"La Via",
"La Viola",
"Labate",
"Labbate",
"Labriola",
"Labruzzo",
"Lacovara",
"Lagomarsino",
"Lagorio",
"Laguardia",
"Laino",
"Lalama",
"Lalla",
"Lalli",
"Lamagna",
"Lamattina",
"Lamberti",
"Lambo",
"Lamendola",
"Lampo",
"Lancellotti",
"Lanci",
"Lancia",
"Landi",
"Landini",
"Landino",
"Lando",
"Landolfi",
"Landucci",
"Lanese",
"Langella",
"Langone",
"Lano",
"Lanza",
"Lanzetta",
"Lanzillo",
"Lanzo",
"Lanzone",
"Laporta",
"Larese",
"Lariccia",
"Lasco",
"LaSpina",
"Laterza",
"Latessa",
"Latina",
"Latini",
"Latino",
"Lato",
"Latronica",
"Lattanzi",
"Lattanzio",
"Lattuca",
"Laudano",
"Laudato",
"Laudicina",
"Lauletta",
"Laura",
"Laurenti",
"Laurenzi",
"Laurenzo",
"Lauri",
"Lauria",
"Lauricella",
"Laurino",
"Laurita",
"Laurito",
"Lauro",
"Laviano",
"Lavigna",
"Lavorgna",
"Lazio",
"Lazzara",
"Lazzari",
"Lazzarini",
"Lazzaro",
"Lazzeri",
"Le Donne",
"Le Rose",
"Leandro",
"Leano",
"Lecce",
"Leccese",
"Lefave",
"Legato",
"Leggio",
"Lella",
"Lelli",
"Lello",
"Lemma",
"Lemme",
"Lemmo",
"Lena",
"Lenci",
"Lencioni",
"Lentine",
"Lentini",
"Lento",
"Lenza",
"Lenzi",
"Lenzini",
"Lenzo",
"Leo",
"Leombruno",
"Leonardi",
"Leonardis",
"Leonardo",
"Leone",
"Leonelli",
"Leonetti",
"Leoni",
"Leonti",
"Lepera",
"Lepre",
"Lerro",
"Letizia",
"Leto",
"Lettiere",
"Lettieri",
"Leuzzi",
"Levatino",
"Levere",
"Leverone",
"Leveroni",
"Li Causi",
"Li Cavoli",
"Li Fonti",
"Li Pani",
"Li Santi",
"Li Vecchi",
"Li Voti",
"Libera",
"Liberati",
"Liberatore",
"Liberi",
"Liberti",
"Liberto",
"Libonati",
"Licata",
"Licciardello",
"Licciardi",
"Licursi",
"Lieto",
"Liggio",
"Liguori",
"Lilla",
"Lillo",
"Lina",
"Lionetti",
"Liotta",
"Lipari",
"Lippa",
"Lippi",
"Liquori",
"Lisa",
"Liscio",
"Lisi",
"Liuzza",
"Liuzzi",
"Liuzzo",
"Lizza",
"Lizzi",
"Lizzio",
"Lo Biondo",
"Lo Bue",
"Lo Castro",
"Lo Cicero",
"Lo Duca",
"Lo Faro",
"Lo Faso",
"Lo Galbo",
"Lo Giudice",
"Lo Piano",
"Lo Pilato",
"Lo Priore",
"Lo Sacco",
"Lo Schiavo",
"Lo Squadro",
"Lo Tito",
"Lo Vullo",
"Locatelli",
"Locati",
"Lodato",
"Lodi",
"Lodico",
"Loffredo",
"Loggia",
"Loi",
"Lombardi",
"Lombardino",
"Lombardo",
"Lombardozzi",
"Lona",
"Lonardo",
"Longhi",
"Longino",
"Longo",
"Lopardo",
"Lorello",
"Lorenzetti",
"Lorenzi",
"Lorenzini",
"Lorenzo",
"Loretta",
"Lori",
"Loria",
"Lorino",
"Lorio",
"Lotti",
"Lotto",
"Lovera",
"Loy",
"Lozzi",
"Luberto",
"Lubrano",
"Luca",
"Lucarelli",
"Lucca",
"Lucchese",
"Lucchesi",
"Lucchetti",
"Lucci",
"Lucciano",
"Lucente",
"Luchetti",
"Luchini",
"Lucian",
"Luciani",
"Luciano",
"Lucibello",
"Lucidi",
"Lucido",
"Ludovici",
"Ludovico",
"Lui",
"Luisi",
"Lullo",
"Lumetta",
"Lumia",
"Lunetta",
"Luongo",
"Luoni",
"Lupi",
"Lupia",
"Lupica",
"Lupinacci",
"Lupo",
"Lupoli",
"Luppino",
"Lusardi",
"Lusco",
"Luzi",
"Luzzi",
"Macaluso",
"Macari",
"Macario",
"Macchi",
"Macchia",
"Macchio",
"Macchione",
"Maccini",
"Machi",
"Macina",
"Macioce",
"Macri",
"Maddalena",
"Maddalone",
"Maddaloni",
"Madonna",
"Maestri",
"Maffei",
"Maffeo",
"Maffia",
"Maffucci",
"Magaldi",
"Maggi",
"Maggiacomo",
"Maggio",
"Maggiore",
"Magistro",
"Magliano",
"Magliaro",
"Maglio",
"Magliocca",
"Maglione",
"Magliozzi",
"Magnani",
"Magnano",
"Magni",
"Magnifico",
"Magno",
"Magnone",
"Magnotti",
"Magri",
"Magrini",
"Magrino",
"Magro",
"Mainella",
"Mainiero",
"Mainini",
"Maio",
"Maiocco",
"Maiolo",
"Maisto",
"Malara",
"Malaspina",
"Malatesta",
"Malena",
"Malerba",
"Maletta",
"Malfitano",
"Malito",
"Malizia",
"Mallo",
"Mallozzi",
"Malnati",
"Maltese",
"Malzone",
"Mammone",
"Mamo",
"Manca",
"Mancera",
"Mancia",
"Mancinelli",
"Mancini",
"Mancino",
"Mancuso",
"Mandala",
"Mandarino",
"Mandracchia",
"Manera",
"Manetta",
"Manfre",
"Manfredi",
"Manfredo",
"Manfredonia",
"Manganiello",
"Mangano",
"Mangieri",
"Manginelli",
"Mangione",
"Mango",
"Mangone",
"Manieri",
"Manna",
"Mannarino",
"Mannella",
"Manni",
"Mannina",
"Mannino",
"Manno",
"Mansi",
"Mantini",
"Mantione",
"Mantovani",
"Manuele",
"Manza",
"Manzella",
"Manzi",
"Manzione",
"Manzo",
"Manzolillo",
"Marabella",
"Maraldo",
"Marandola",
"Marano",
"Maranto",
"Marcantonio",
"Marcelli",
"Marcellino",
"Marcello",
"Marchello",
"Marcheschi",
"Marchese",
"Marchesi",
"Marchetti",
"Marchi",
"Marchini",
"Marchionda",
"Marchitelli",
"Marcia",
"Marcolini",
"Marcon",
"Marcone",
"Marconi",
"Marcucci",
"Mare",
"Marella",
"Marelli",
"Marenco",
"Marengo",
"Mareno",
"Maresco",
"Margo",
"Margotta",
"Mari",
"Mariani",
"Mariano",
"Mariconda",
"Marietta",
"Marietti",
"Marin",
"Marinacci",
"Marinaccio",
"Marinari",
"Marinaro",
"Marinelli",
"Marinello",
"Marini",
"Marino",
"Marinucci",
"Mario",
"Mariotti",
"Marmo",
"Maro",
"Marocco",
"Marolda",
"Marone",
"Maroni",
"Marotta",
"Marotto",
"Marra",
"Marrano",
"Marrazzo",
"Marre",
"Marrese",
"Marrocco",
"Marsella",
"Marsicano",
"Marsiglia",
"Marsili",
"Marsilio",
"Marsocci",
"Marte",
"Martelli",
"Marti",
"Martignetti",
"Martina",
"Martinell",
"Martinelli",
"Martinetti",
"Martini",
"Martino",
"Martire",
"Martocci",
"Martorano",
"Martorella",
"Martorelli",
"Marucci",
"Marullo",
"Marzella",
"Marzilli",
"Marzo",
"Mascari",
"Mascaro",
"Mascioli",
"Masella",
"Masi",
"Masin",
"Masini",
"Masino",
"Mason",
"Masone",
"Masotti",
"Massara",
"Massarelli",
"Massaro",
"Massetti",
"Massi",
"Massimino",
"Massimo",
"Masso",
"Massoni",
"Massucci",
"Mastrandrea",
"Mastrianni",
"Mastriano",
"Mastrogiacomo",
"Mastromarino",
"Mastromatteo",
"Masucci",
"Masullo",
"Matarazzo",
"Matarese",
"Matarrese",
"Matassa",
"Matera",
"Matrone",
"Mattaliano",
"Mattei",
"Matteis",
"Matteo",
"Mattera",
"Matteucci",
"Mattiace",
"Mattiello",
"Mattina",
"Mattioli",
"Matto",
"Mattucci",
"Maturo",
"Mauceri",
"Mauri",
"Mauriello",
"Maurin",
"Maurizio",
"Mauro",
"Mautino",
"Mazza",
"Mazzaferro",
"Mazzanti",
"Mazzara",
"Mazzarella",
"Mazzarelli",
"Mazzarese",
"Mazzariello",
"Mazzaro",
"Mazzeo",
"Mazzetti",
"Mazzi",
"Mazzilli",
"Mazzio",
"Mazziotta",
"Mazziotti",
"Mazzo",
"Mazzocchi",
"Mazzocco",
"Mazzoli",
"Mazzone",
"Mazzoni",
"Mazzotta",
"Mazzotti",
"Mazzuca",
"Mazzucco",
"Mazzullo",
"Mecca",
"Meccia",
"Medici",
"Medico",
"Meglio",
"Megna",
"Mei",
"Melara",
"Melaragno",
"Melchiori",
"Melchiorre",
"Mele",
"Meli",
"Melia",
"Melino",
"Melis",
"Melita",
"Mello",
"Mellone",
"Meloni",
"Melucci",
"Memoli",
"Menapace",
"Menconi",
"Menditto",
"Mendola",
"Mendolia",
"Menghini",
"Menicucci",
"Menna",
"Menotti",
"Mento",
"Menza",
"Meo",
"Meola",
"Meoli",
"Meranda",
"Merante",
"Mercaldo",
"Merenda",
"Merendino",
"Merli",
"Merlini",
"Merlino",
"Merlo",
"Mero",
"Messano",
"Messina",
"Messore",
"Mestre",
"Meucci",
"Mezzanotte",
"Mezzatesta",
"Micalizzi",
"Micciche",
"Miccio",
"Micco",
"Michela",
"Michele",
"Micheletti",
"Micheli",
"Michelini",
"Michelotti",
"Michetti",
"Micucci",
"Migliaccio",
"Miglio",
"Migliorini",
"Migliozzi",
"Mignone",
"Milan",
"Milani",
"Milano",
"Milardo",
"Milazzo",
"Milillo",
"Milito",
"Minadeo",
"Minardi",
"Minelli",
"Mineo",
"Minerva",
"Minervini",
"Minervino",
"Minetti",
"Mingione",
"Mini",
"Miniati",
"Minichiello",
"Minicozzi",
"Minicucci",
"Minieri",
"Minneci",
"Minotti",
"Minucci",
"Mion",
"Mione",
"Mira",
"Mirabella",
"Mirabelli",
"Mirabile",
"Mirando",
"Mirro",
"Mirto",
"Mistretta",
"Mitri",
"Mizzi",
"Mobilia",
"Moccia",
"Moccio",
"Moceri",
"Modena",
"Modica",
"Moffa",
"Mogavero",
"Moglia",
"Moise",
"Mola",
"Mole",
"Molinari",
"Molinaro",
"Molinelli",
"Molini",
"Molino",
"Mona",
"Monacelli",
"Monachino",
"Monaco",
"Monaldo",
"Monastero",
"Monda",
"Mondelli",
"Mondello",
"Mondi",
"Mondo",
"Monet",
"Moneta",
"Monetti",
"Monforte",
"Mongelli",
"Mongelluzzo",
"Mongiello",
"Mongillo",
"Monica",
"Monico",
"Monopoli",
"Montagna",
"Montagnino",
"Montalbo",
"Montalti",
"Montalto",
"Montana",
"Montanari",
"Montanaro",
"Montani",
"Montanino",
"Montano",
"Montante",
"Monte",
"Montecalvo",
"Monteforte",
"Monteleone",
"Montella",
"Montello",
"Montelongo",
"Montemarano",
"Monteverde",
"Monti",
"Monticello",
"Montini",
"Montone",
"Montoro",
"Montuori",
"Monzo",
"Mora",
"Morabito",
"Morace",
"Morandi",
"Morando",
"Morano",
"Morasco",
"Morea",
"Morella",
"Morelli",
"Moreschi",
"Moresco",
"Moresi",
"Moretti",
"Moretto",
"Morga",
"Morganelli",
"Morgano",
"Morgante",
"Morganti",
"Morgese",
"Morgillo",
"Mori",
"Morici",
"Moriconi",
"Morin",
"Morini",
"Morino",
"Mormino",
"Moro",
"Morocco",
"Morone",
"Moroni",
"Morra",
"Morreale",
"Mortara",
"Mortellaro",
"Mortillaro",
"Mosca",
"Moscaritolo",
"Moscatelli",
"Moscatello",
"Moscato",
"Moschella",
"Moschetti",
"Moschetto",
"Mosco",
"Moscone",
"Mosconi",
"Mose",
"Mossa",
"Mosso",
"Motola",
"Motta",
"Motto",
"Mucci",
"Mucciarone",
"Muccino",
"Muccio",
"Muffoletto",
"Muglia",
"Mule",
"Munafo",
"Mundo",
"Munno",
"Muoio",
"Mura",
"Muraca",
"Muraco",
"Murano",
"Muratori",
"Murgia",
"Murgo",
"Murra",
"Musacchia",
"Musante",
"Musarra",
"Muscarello",
"Muscatello",
"Muscato",
"Musco",
"Musella",
"Musilli",
"Musolino",
"Musso",
"Mustafa",
"Musto",
"Muto",
"Mutti",
"Muzzarelli",
"Muzzi",
"Naclerio",
"Nalbone",
"Nanna",
"Nanni",
"Nannini",
"Napoleone",
"Napolitano",
"Nappi",
"Nardella",
"Nardelli",
"Nardi",
"Nardiello",
"Nardini",
"Nardo",
"Nardolillo",
"Nardone",
"Nardozzi",
"Narducci",
"Nargi",
"Nasi",
"Naso",
"Nasso",
"Nastri",
"Nasuti",
"Natale",
"Natali",
"Natoli",
"Nauta",
"Navone",
"Nazzaro",
"Necci",
"Neglia",
"Negri",
"Negro",
"Nelli",
"Nenni",
"Nenno",
"Neri",
"Nero",
"Nerone",
"Nese",
"Nespoli",
"Nesta",
"Nestico",
"Netti",
"Netto",
"Neve",
"Niccoli",
"Nicola",
"Nicolai",
"Nicolazzo",
"Nicolella",
"Nicoletta",
"Nicoletti",
"Nicoli",
"Nicolini",
"Nicolosi",
"Nicosia",
"Nini",
"Nino",
"Niro",
"Nitti",
"Nobile",
"Noce",
"Nocella",
"Nocerino",
"Nocito",
"Nole",
"Nolfi",
"Nora",
"Norcia",
"Norelli",
"Nori",
"Notarangelo",
"Notarianni",
"Notaro",
"Noto",
"Notte",
"Nova",
"Novara",
"Novella",
"Novelli",
"Novello",
"Noviello",
"Nucci",
"Nuccio",
"Nudo",
"Nunno",
"Nunziata",
"Nunziato",
"Nuti",
"Nutile",
"Oberto",
"Occhino",
"Occhiogrosso",
"Occhipinti",
"Oddi",
"Oddo",
"Odierno",
"Odorizzi",
"Offredi",
"Ognibene",
"Oldani",
"Oliva",
"Oliveri",
"Oliverio",
"Oliveto",
"Olivieri",
"Oliviero",
"Olmo",
"Oneto",
"Ongaro",
"Onio",
"Onofrio",
"Opizzi",
"Oppedisano",
"Orecchio",
"Orio",
"Orlandi",
"Orlandini",
"Orlando",
"Orrico",
"Orsi",
"Orsini",
"Orsino",
"Orso",
"Ortolani",
"Ortolano",
"Oscuro",
"Ossani",
"Ossi",
"Osso",
"Oteri",
"Ottaviani",
"Ottaviano",
"Paccione",
"Paccioretti",
"Pace",
"Pacella",
"Pacelli",
"Pacetti",
"Paci",
"Paciello",
"Pacific",
"Pacifico",
"Pacilio",
"Pacini",
"Pacino",
"Pacione",
"Pacitti",
"Pacitto",
"Padalino",
"Padovani",
"Padovano",
"Paduano",
"Paganelli",
"Pagani",
"Paganini",
"Pagano",
"Paglia",
"Pagliarini",
"Paglione",
"Pagni",
"Pagnotta",
"Pagnotto",
"Pagnozzi",
"Paino",
"Pais",
"Pala",
"Paladini",
"Paladino",
"Palagi",
"Palaia",
"Palange",
"Palazzi",
"Palazzo",
"Palazzola",
"Palazzolo",
"Palermo",
"Palese",
"Paletta",
"Paliotta",
"Palla",
"Palladino",
"Pallante",
"Palleschi",
"Pallone",
"Pallotta",
"Palmeri",
"Palmiere",
"Palmieri",
"Palmiero",
"Palmiotto",
"Palo",
"Palomba",
"Palombi",
"Palombo",
"Palone",
"Palumbo",
"Paluzzi",
"Panarello",
"Panarese",
"Panariello",
"Panaro",
"Panciera",
"Pandolfi",
"Pandolfo",
"Pane",
"Panebianco",
"Panella",
"Panelli",
"Panepinto",
"Panetta",
"Panetti",
"Paniccia",
"Panico",
"Panicucci",
"Panno",
"Pannone",
"Pannullo",
"Panozzo",
"Pantaleo",
"Pantalone",
"Pantano",
"Pantone",
"Pantuso",
"Panza",
"Panzarella",
"Panzarino",
"Panzera",
"Panzica",
"Paola",
"Paolantonio",
"Paolella",
"Paoletta",
"Paoletti",
"Paoli",
"Paolillo",
"Paolini",
"Paolino",
"Paolo",
"Paolucci",
"Paone",
"Paonessa",
"Papa",
"Papaleo",
"Papalia",
"Papandrea",
"Papania",
"Paparella",
"Paparo",
"Papetti",
"Papi",
"Papini",
"Pappalardo",
"Pappano",
"Paradiso",
"Paratore",
"Parco",
"Pardi",
"Pardini",
"Pardo",
"Parella",
"Parente",
"Parenti",
"Paretti",
"Parillo",
"Parise",
"Parisi",
"Pariso",
"Parlapiano",
"Parlatore",
"Parma",
"Paro",
"Parodi",
"Parola",
"Parrella",
"Parrilla",
"Parrilli",
"Parrillo",
"Parrinello",
"Parrino",
"Parro",
"Parrotta",
"Partipilo",
"Parziale",
"Pascarella",
"Pascarelli",
"Pasco",
"Pascucci",
"Pascuzzi",
"Pasini",
"Pasqua",
"Pasqual",
"Pasquale",
"Pasquali",
"Pasqualini",
"Pasqualone",
"Pasquarella",
"Pasquarelli",
"Pasquarello",
"Pasquariello",
"Pasquinelli",
"Pasquini",
"Passafiume",
"Passalacqua",
"Passamonte",
"Passanante",
"Passanisi",
"Passantino",
"Passarella",
"Passarelli",
"Passarello",
"Passaretti",
"Passariello",
"Passeri",
"Passero",
"Passini",
"Passino",
"Pastore",
"Pastori",
"Pastorino",
"Pata",
"Patalano",
"Patania",
"Patella",
"Paterniti",
"Paterno",
"Paternostro",
"Patierno",
"Patino",
"Patitucci",
"Patricelli",
"Patrizi",
"Patrizio",
"Patrone",
"Patruno",
"Patti",
"Pavan",
"Pavese",
"Pavia",
"Pavon",
"Pavone",
"Pazienza",
"Pecchia",
"Pecci",
"Pecora",
"Pecoraro",
"Pecorella",
"Pedalino",
"Pedone",
"Pedrotti",
"Pedulla",
"Peduto",
"Peduzzi",
"Peirano",
"Pelino",
"Pella",
"Pelle",
"Pellecchia",
"Pellegrin",
"Pellegrini",
"Pellegrino",
"Pellerito",
"Pellicane",
"Pelliccia",
"Pellino",
"Pellitteri",
"Pelosi",
"Peloso",
"Peluso",
"Pendola",
"Penna",
"Pennacchio",
"Pennella",
"Pennino",
"Pennisi",
"Pensabene",
"Pensiero",
"Penso",
"Penta",
"Penza",
"Pepe",
"Pepi",
"Pepitone",
"Peppe",
"Pera",
"Peragine",
"Peraino",
"Perazzo",
"Perella",
"Perelli",
"Peretti",
"Perfetti",
"Perfetto",
"Pergola",
"Peri",
"Perilli",
"Perillo",
"Perin",
"Perini",
"Perino",
"Perito",
"Perla",
"Perna",
"Perniciaro",
"Perno",
"Pero",
"Peron",
"Perona",
"Perone",
"Peroni",
"Perotti",
"Perra",
"Perrella",
"Perrelli",
"Perretta",
"Perretti",
"Perri",
"Perricone",
"Perriello",
"Perrino",
"Perro",
"Perron",
"Perrone",
"Perrotta",
"Perrotti",
"Perrotto",
"Perrucci",
"Persichetti",
"Persico",
"Perugini",
"Peruzzi",
"Pesavento",
"Pescatore",
"Pesce",
"Pesci",
"Pesola",
"Pessolano",
"Petillo",
"Petito",
"Petitti",
"Petitto",
"Petosa",
"Petracca",
"Petraglia",
"Petralia",
"Petrarca",
"Petrecca",
"Petrella",
"Petrelli",
"Petri",
"Petricca",
"Petriello",
"Petrilla",
"Petrilli",
"Petrillo",
"Petrini",
"Petrino",
"Petrizzi",
"Petrizzo",
"Petro",
"Petrocelli",
"Petrone",
"Petronella",
"Petroni",
"Petronio",
"Petrosino",
"Petruccelli",
"Petrucci",
"Petrucelli",
"Petruzzelli",
"Petruzzi",
"Petruzziello",
"Petta",
"Petti",
"Pettinato",
"Pettine",
"Pettinelli",
"Pezza",
"Pezzano",
"Pezzella",
"Pezzi",
"Pezzino",
"Pezzullo",
"Pezzuti",
"Pezzuto",
"Pia",
"Piacente",
"Piacentini",
"Piacentino",
"Piacenza",
"Piana",
"Pianalto",
"Piano",
"Piazza",
"Pica",
"Picano",
"Picardi",
"Picarelli",
"Picarello",
"Picariello",
"Picchi",
"Picciano",
"Piccini",
"Piccinini",
"Piccininni",
"Piccio",
"Piccione",
"Piccioni",
"Piccirilli",
"Picco",
"Piccola",
"Piccoli",
"Piccolo",
"Piccone",
"Picerno",
"Pico",
"Picone",
"Picozzi",
"Piemonte",
"Pieretti",
"Pieri",
"Pierini",
"Piermarini",
"Pieroni",
"Pierotti",
"Pierro",
"Pietrangelo",
"Pietrantonio",
"Pietri",
"Pietro",
"Pietropaolo",
"Pignato",
"Pignone",
"Pignotti",
"Pilato",
"Pileggi",
"Pilla",
"Pilotti",
"Pinelli",
"Pini",
"Pinna",
"Pino",
"Pinta",
"Pinto",
"Pio",
"Pioli",
"Pipia",
"Pipitone",
"Piraino",
"Pirani",
"Piras",
"Pirillo",
"Pirlo",
"Piro",
"Pirolli",
"Pirone",
"Pirozzi",
"Pirrello",
"Pirri",
"Pirro",
"Pirrone",
"Pisa",
"Pisani",
"Pisano",
"Pisapia",
"Pisciotta",
"Piscitelli",
"Piscitello",
"Piselli",
"Pisoni",
"Pistilli",
"Pistone",
"Pitre",
"Pitrone",
"Pitta",
"Pitti",
"Pittillo",
"Pivirotto",
"Pizzano",
"Pizzi",
"Pizzimenti",
"Pizzini",
"Pizzino",
"Pizzitola",
"Pizzo",
"Pizzoferrato",
"Pizzolato",
"Pizzurro",
"Pizzuti",
"Pizzuto",
"Plano",
"Platania",
"Pluchino",
"Po",
"Poccia",
"Podesta",
"Poggi",
"Poggioli",
"Pola",
"Polcari",
"Polce",
"Poletti",
"Poli",
"Policastro",
"Polidori",
"Polidoro",
"Polimeni",
"Polino",
"Pollara",
"Polletta",
"Polli",
"Pollina",
"Pollino",
"Pollio",
"Polo",
"Polselli",
"Polsinelli",
"Polumbo",
"Poma",
"Pomarico",
"Pompa",
"Pompei",
"Pompeo",
"Pompilio",
"Pomponio",
"Pontarelli",
"Pontecorvo",
"Ponti",
"Ponticello",
"Pontillo",
"Pontrelli",
"Ponzi",
"Ponzio",
"Ponzo",
"Popolizio",
"Poppa",
"Porcaro",
"Porcella",
"Porcelli",
"Porcello",
"Porchia",
"Porco",
"Porpora",
"Porrazzo",
"Porreca",
"Porretta",
"Porta",
"Portanova",
"Portella",
"Portelli",
"Portera",
"Porto",
"Posa",
"Posillico",
"Postiglione",
"Poveromo",
"Pozza",
"Pozzi",
"Prata",
"Pratico",
"Prato",
"Presti",
"Presutti",
"Prete",
"Pretti",
"Pretto",
"Previte",
"Previti",
"Preziosi",
"Prezioso",
"Primavera",
"Primerano",
"Primiano",
"Primo",
"Principato",
"Principe",
"Prinzi",
"Priola",
"Priolo",
"Priore",
"Prisco",
"Prizzi",
"Procaccini",
"Procida",
"Procopio",
"Profeta",
"Proia",
"Proietti",
"Proscia",
"Prosperi",
"Prospero",
"Proto",
"Provenza",
"Provenzano",
"Prudente",
"Puccetti",
"Pucci",
"Puccia",
"Pucciarelli",
"Puccinelli",
"Puccini",
"Puccio",
"Pucillo",
"Puglia",
"Pugliano",
"Pugliese",
"Pugliesi",
"Puglise",
"Puglisi",
"Pula",
"Pulcini",
"Puleo",
"Puliafico",
"Pulice",
"Pulito",
"Pulizzi",
"Pullano",
"Pullara",
"Pulli",
"Pullo",
"Puma",
"Pumilia",
"Puopolo",
"Pupa",
"Pupillo",
"Pupo",
"Puricelli",
"Puro",
"Purpura",
"Pusateri",
"Puzio",
"Quaglia",
"Quagliata",
"Quaranto",
"Quartararo",
"Quarto",
"Quartuccio",
"Quattro",
"Quattrone",
"Quattrucci",
"Quercia",
"Querin",
"Quilici",
"Quintiliani",
"Quinto",
"Rabito",
"Racanelli",
"Racca",
"Raccio",
"Racioppi",
"Raciti",
"Raco",
"Radice",
"Rado",
"Radosta",
"Raffa",
"Raffaele",
"Raffaelli",
"Raffetto",
"Raffin",
"Raffo",
"Ragazzo",
"Raggio",
"Ragno",
"Rago",
"Ragona",
"Ragone",
"Ragonese",
"Ragosta",
"Ragozzino",
"Ragucci",
"Ragusa",
"Raia",
"Raimo",
"Raimondi",
"Raimondo",
"Rainaldi",
"Raineri",
"Raiola",
"Rallo",
"Rama",
"Ramaglia",
"Ramella",
"Rametta",
"Rampino",
"Rampone",
"Rampulla",
"Ranalli",
"Ranallo",
"Randazzo",
"Rando",
"Raneri",
"Ranieri",
"Ranno",
"Ranucci",
"Rao",
"Rapa",
"Rapisarda",
"Rapone",
"Rappa",
"Rapuano",
"Raso",
"Raspa",
"Rassi",
"Rastelli",
"Ratta",
"Ratti",
"Ratto",
"Rau",
"Rauseo",
"Razza",
"Razzano",
"Re",
"Reale",
"Reali",
"Realmuto",
"Rebecca",
"Recchia",
"Recchio",
"Recine",
"Recla",
"Recupero",
"Reda",
"Rega",
"Regalia",
"Reggio",
"Regina",
"Reginato",
"Regis",
"Reina",
"Reino",
"Reitano",
"Rella",
"Renaldi",
"Renaldo",
"Renda",
"Rende",
"Rendina",
"Rendine",
"Renzetti",
"Renzi",
"Renzo",
"Renzoni",
"Renzulli",
"Reo",
"Repetti",
"Repetto",
"Reppucci",
"Rescigno",
"Ressa",
"Resta",
"Restaino",
"Restifo",
"Restivo",
"Restuccia",
"Revello",
"Ricca",
"Riccardi",
"Riccardo",
"Riccelli",
"Ricci",
"Ricciardelli",
"Ricciardi",
"Riccio",
"Riccitelli",
"Ricciuti",
"Ricco",
"Riccobono",
"Richardi",
"Richichi",
"Ricigliano",
"Rienzo",
"Rigali",
"Rigano",
"Riggi",
"Riggio",
"Righetti",
"Righi",
"Rigoli",
"Rigoni",
"Rinaldi",
"Rinaldo",
"Rinaudo",
"Rindone",
"Rinella",
"Rini",
"Riolo",
"Riotto",
"Ripa",
"Risi",
"Riso",
"Rispoli",
"Risso",
"Ristaino",
"Rita",
"Ritacco",
"Riva",
"Rivelli",
"Rivera",
"Riviello",
"Riviera",
"Rizza",
"Rizzi",
"Rizzio",
"Rizzo",
"Rizzolo",
"Rizzotti",
"Rizzotto",
"Robello",
"Roberti",
"Roberto",
"Robino",
"Robustelli",
"Rocca",
"Roccaforte",
"Rocchi",
"Rocchio",
"Rocco",
"Rodia",
"Rodino",
"Rolando",
"Rolla",
"Rolleri",
"Rolli",
"Roma",
"Romagnoli",
"Romanelli",
"Romanello",
"Romani",
"Romaniello",
"Romano",
"Romeo",
"Romito",
"Ronca",
"Ronchetti",
"Ronchetto",
"Ronco",
"Roncone",
"Rondinelli",
"Rondon",
"Roppolo",
"Rosa",
"Rosamilia",
"Rosania",
"Rosano",
"Rosario",
"Rosasco",
"Rosati",
"Rosato",
"Roselli",
"Rosellini",
"Rosetta",
"Rosetti",
"Rosi",
"Rosica",
"Rosiello",
"Rosini",
"Roso",
"Rossa",
"Rossano",
"Rosselli",
"Rossello",
"Rossetti",
"Rossetto",
"Rossi",
"Rossin",
"Rossini",
"Rosso",
"Rosson",
"Rota",
"Rotella",
"Rotelli",
"Roti",
"Rotondi",
"Rotondo",
"Rotta",
"Rotunda",
"Rotundo",
"Rotunno",
"Rovito",
"Rozzi",
"Rua",
"Rubano",
"Rubbo",
"Ruberti",
"Ruberto",
"Rubin",
"Rubino",
"Rucci",
"Ruffini",
"Ruffino",
"Ruffolo",
"Rufo",
"Rugani",
"Ruggeri",
"Ruggero",
"Ruggiano",
"Ruggieri",
"Ruggiero",
"Ruggirello",
"Ruisi",
"Rulli",
"Rullo",
"Runco",
"Runfola",
"Ruocco",
"Ruotolo",
"Ruscio",
"Ruscitti",
"Rusco",
"Rusconi",
"Russi",
"Russo",
"Russomanno",
"Ruta",
"Rutigliano",
"Ruvolo",
"Ruzzo",
"Sabatelli",
"Sabatine",
"Sabatini",
"Sabatino",
"Sabbatini",
"Sabella",
"Sabetta",
"Sabino",
"Saccente",
"Sacchi",
"Sacco",
"Saccoccio",
"Saccomanno",
"Saccone",
"Saeli",
"Sagese",
"Saggese",
"Saggio",
"Sagona",
"Saitta",
"Sal",
"Sala",
"Saladino",
"Salamone",
"Salata",
"Salatino",
"Salce",
"Saldutti",
"Salemi",
"Salera",
"Saletta",
"Salmeri",
"Salomone",
"Salone",
"Salvadore",
"Salvadori",
"Salvaggio",
"Salvati",
"Salvato",
"Salvatore",
"Salvatori",
"Salvetti",
"Salvi",
"Salvini",
"Salvino",
"Salvo",
"Salvucci",
"Salzano",
"Salzillo",
"Sammarco",
"Sammartino",
"San Severino",
"Sandretto",
"Sandri",
"Sanfilippo",
"Sanfratello",
"Sangermano",
"Sangiacomo",
"Sangiovanni",
"Sanguinetti",
"Sani",
"Sanna",
"Sano",
"Sansalone",
"Sansone",
"Sant",
"Santa Croce",
"Santa Maria",
"Santagata",
"Santaniello",
"Santarelli",
"Santarossa",
"Santarsiero",
"Santavicca",
"Santel",
"Santell",
"Santella",
"Santelli",
"Santeramo",
"Santi",
"Santilli",
"Santillo",
"Santini",
"Santino",
"Santo",
"Santo Pietro",
"Santoli",
"Santomauro",
"Santone",
"Santoni",
"Santora",
"Santore",
"Santorelli",
"Santori",
"Santoriello",
"Santoro",
"Santostefano",
"Santosuosso",
"Santucci",
"Sanzo",
"Sanzone",
"Saponaro",
"Sapone",
"Saporito",
"Saputo",
"Saracco",
"Saraceno",
"Saracino",
"Sardella",
"Sardi",
"Sardina",
"Sardo",
"Sardone",
"Sarli",
"Sarni",
"Sarno",
"Sarra",
"Sarracino",
"Sarro",
"Sarti",
"Sartin",
"Sartini",
"Sarto",
"Sartore",
"Sartori",
"Sarubbi",
"Saso",
"Sassano",
"Sassi",
"Sasso",
"Sassone",
"Satriano",
"Saulino",
"Sauro",
"Sava",
"Savaria",
"Savarino",
"Savastano",
"Savelli",
"Saverino",
"Saviano",
"Savignano",
"Savini",
"Savino",
"Savio",
"Savo",
"Savoca",
"Savoia",
"Saya",
"Sbarra",
"Sberna",
"Scaccia",
"Scacco",
"Scagnelli",
"Scala",
"Scalera",
"Scaletta",
"Scalone",
"Scalzi",
"Scalzitti",
"Scalzo",
"Scamardo",
"Scanga",
"Scanio",
"Scannapieco",
"Scaramella",
"Scarangella",
"Scarantino",
"Scarcelli",
"Scarcello",
"Scardina",
"Scardino",
"Scarfo",
"Scarlata",
"Scarlato",
"Scarola",
"Scarpa",
"Scarpace",
"Scarpati",
"Scarpato",
"Scarpelli",
"Scarpinato",
"Scarpino",
"Scarpone",
"Scarsella",
"Scatena",
"Scaturro",
"Scavo",
"Scavone",
"Scavuzzo",
"Scelfo",
"Scelza",
"Scenna",
"Scerbo",
"Schena",
"Schenone",
"Schettini",
"Schettino",
"Schiano",
"Schiappa",
"Schiavi",
"Schiavo",
"Schiavone",
"Schiavoni",
"Schira",
"Schiraldi",
"Schirra",
"Schirripa",
"Sciacca",
"Scialabba",
"Scialdone",
"Sciandra",
"Scianna",
"Sciara",
"Sciarra",
"Sciarretta",
"Sciarrino",
"Scibelli",
"Scibetta",
"Scibilia",
"Scigliano",
"Scime",
"Scimeca",
"Scinta",
"Scioli",
"Sciortino",
"Scioscia",
"Scipio",
"Scipione",
"Scipioni",
"Scire",
"Sciulli",
"Sciullo",
"Sciuto",
"Sclafani",
"Scola",
"Scolari",
"Scolaro",
"Scoma",
"Scopel",
"Scopelliti",
"Scordato",
"Scorsone",
"Scorza",
"Scotti",
"Scotto",
"Scozzafava",
"Scozzari",
"Scrima",
"Scrivani",
"Scuderi",
"Scungio",
"Scutari",
"Sebastiani",
"Sebastiano",
"Segreti",
"Segreto",
"Sella",
"Sellitti",
"Sellitto",
"Selvaggi",
"Selvaggio",
"Semenza",
"Senatore",
"Seneca",
"Senerchia",
"Senese",
"Senna",
"Senne",
"Seno",
"Sepe",
"Seppi",
"Sera",
"Serafine",
"Serafini",
"Serafino",
"Serena",
"Sereno",
"Sergi",
"Sergio",
"Serino",
"Serio",
"Serpe",
"Serpico",
"Serra",
"Serrata",
"Serratore",
"Serritella",
"Servedio",
"Servello",
"Servi",
"Servidio",
"Sesto",
"Seta",
"Setaro",
"Severini",
"Severino",
"Severo",
"Sferra",
"Sferrazza",
"Sforza",
"Sgambati",
"Sgarlata",
"Sibilia",
"Sica",
"Sicignano",
"Sicilia",
"Siciliano",
"Sico",
"Siconolfi",
"Sicurella",
"Sidoti",
"Siena",
"Signor",
"Signorelli",
"Signorello",
"Signorino",
"Sigona",
"Siino",
"Silano",
"Sileo",
"Silla",
"Silvani",
"Silvano",
"Silveri",
"Silveria",
"Silvestri",
"Silvestro",
"Silvi",
"Simiele",
"Simione",
"Simoncini",
"Simone",
"Simonelli",
"Simonet",
"Simonetta",
"Simonette",
"Simonetti",
"Simoni",
"Simonini",
"Sinacore",
"Sinagra",
"Sinatra",
"Sindoni",
"Sinibaldi",
"Sinopoli",
"Siracusa",
"Siragusa",
"Siravo",
"Siri",
"Sirianni",
"Sirico",
"Sirna",
"Sisco",
"Sisti",
"Sisto",
"Smaldone",
"Smeriglio",
"Soave",
"Socci",
"Soccio",
"Sodaro",
"Solano",
"Solazzo",
"Soldan",
"Soldano",
"Soldo",
"Soli",
"Solimine",
"Sollami",
"Sollecito",
"Somma",
"Soprano",
"Soracco",
"Sorace",
"Soranno",
"Sorbello",
"Sorbo",
"Sorci",
"Sordillo",
"Sorge",
"Sorgi",
"Sorice",
"Sorrento",
"Sortino",
"Soscia",
"Sottosanti",
"Spada",
"Spadaccini",
"Spadafore",
"Spadea",
"Spadoni",
"Spagna",
"Spagnoletti",
"Spagnoli",
"Spagnolo",
"Spagnuolo",
"Spallino",
"Spallone",
"Spano",
"Spata",
"Spatafora",
"Spatafore",
"Spataro",
"Spatola",
"Spaziani",
"Spaziano",
"Spedale",
"Sperandeo",
"Sperandio",
"Speranza",
"Sperduti",
"Sperduto",
"Speroni",
"Sperrazza",
"Spezia",
"Spicola",
"Spicuzza",
"Spiezio",
"Spina",
"Spinazzola",
"Spinello",
"Spinnato",
"Spino",
"Spinola",
"Spinosa",
"Spirito",
"Spizzirri",
"Sposato",
"Sposito",
"Squicciarini",
"Squillante",
"Squitieri",
"Stabile",
"Staffa",
"Staffieri",
"Stagnaro",
"Stagnitta",
"Stagno",
"Stallone",
"Stanco",
"Stano",
"Stanzione",
"Stasio",
"Stavola",
"Stefanelli",
"Stefani",
"Stefanini",
"Stefano",
"Stella",
"Stellato",
"Stello",
"Stephani",
"Stigliano",
"Storino",
"Storti",
"Storto",
"Strada",
"Strazza",
"Striano",
"Strinati",
"Strollo",
"Stumpo",
"Sturniolo",
"Subia",
"Sulla",
"Sulpizio",
"Sunseri",
"Supino",
"Susco",
"Susi",
"Sutera",
"Tabacchi",
"Tabone",
"Taddei",
"Taddeo",
"Taddonio",
"Tafuri",
"Tagliaferri",
"Tagliaferro",
"Taglieri",
"Taibi",
"Talarico",
"Talerico",
"Taliercio",
"Tallarico",
"Tallo",
"Talone",
"Tamasi",
"Tambasco",
"Tambellini",
"Tamborello",
"Tamburello",
"Tamburino",
"Tamburo",
"Tamburri",
"Tamburrino",
"Tamburro",
"Tammaro",
"Tancredi",
"Tango",
"Tangredi",
"Tani",
"Tano",
"Tantalo",
"Tantillo",
"Tanzi",
"Taormina",
"Tarantino",
"Taranto",
"Taravella",
"Tarolli",
"Tarquinio",
"Tarsi",
"Tartaglia",
"Tartaglione",
"Tarulli",
"Tasca",
"Tassi",
"Tassinari",
"Tasso",
"Tassone",
"Tata",
"Tauriello",
"Tauro",
"Tavani",
"Tavella",
"Taverna",
"Tavolacci",
"Tedeschi",
"Tedesco",
"Tedone",
"Telesca",
"Telesco",
"Tella",
"Tello",
"Tempesta",
"Tenaglia",
"Tenuta",
"Tepedino",
"Terenzi",
"Teresi",
"Terracciano",
"Terracina",
"Terrano",
"Terreri",
"Terzi",
"Tesauro",
"Tesoriero",
"Tesoro",
"Tessaro",
"Tessitore",
"Testa",
"Testani",
"Testo",
"Teti",
"Tiano",
"Tiberi",
"Tiberio",
"Tierno",
"Timpone",
"Tine",
"Tino",
"Tinti",
"Tirabassi",
"Tirone",
"Tiso",
"Tito",
"Titone",
"Tobia",
"Tocci",
"Tocco",
"Toce",
"Todaro",
"Todora",
"Tofani",
"Tognetti",
"Toia",
"Tolerico",
"Tolomeo",
"Toma",
"Tomaino",
"Tomarchio",
"Tomaselli",
"Tomasello",
"Tomasetti",
"Tomasi",
"Tomasini",
"Tomasino",
"Tomaso",
"Tomassetti",
"Tomassi",
"Tomassini",
"Tomasso",
"Tomasulo",
"Tomei",
"Tomeo",
"Tonelli",
"Toni",
"Tonini",
"Tonti",
"Toppi",
"Torchia",
"Torcivia",
"Torelli",
"Torello",
"Toriello",
"Torino",
"Tornabene",
"Tornatore",
"Tornetta",
"Torno",
"Toro",
"Torre",
"Torregrossa",
"Torres",
"Torri",
"Torrisi",
"Torti",
"Tortora",
"Tortorella",
"Tortorelli",
"Tortorello",
"Tortorice",
"Tortorici",
"Toscani",
"Toscano",
"Tosi",
"Toso",
"Tosti",
"Tota",
"Toti",
"Totino",
"Toto",
"Tozzi",
"Trabucco",
"Traficante",
"Traina",
"Traino",
"Trama",
"Tramontana",
"Tramontano",
"Tramonte",
"Tramontozzi",
"Tranchina",
"Trani",
"Travaglini",
"Traverso",
"Travisano",
"Trento",
"Trevisan",
"Trevisani",
"Trezza",
"Trifiletti",
"Triglia",
"Trillo",
"Trimboli",
"Trinca",
"Tringale",
"Tringali",
"Triola",
"Triolo",
"Tripi",
"Tripodi",
"Tripoli",
"Trivisonno",
"Troccoli",
"Troia",
"Troiani",
"Troiano",
"Troilo",
"Troise",
"Troisi",
"Trombetta",
"Trombino",
"Troncone",
"Tronolone",
"Tropea",
"Tropeano",
"Tropiano",
"Trotta",
"Trotti",
"Trotto",
"Trovato",
"Trozzo",
"Trubiano",
"Truglio",
"Trunzo",
"Trupiano",
"Tucci",
"Tucciarone",
"Tuccillo",
"Tuccio",
"Tufano",
"Tufaro",
"Tufo",
"Tulli",
"Tullio",
"Tullo",
"Tumbarello",
"Tuminello",
"Tumminello",
"Tumminia",
"Tumolo",
"Turano",
"Turchi",
"Turco",
"Turi",
"Turiano",
"Turo",
"Turri",
"Turrisi",
"Turro",
"Tursi",
"Turturro",
"Tusa",
"Tuscano",
"Tutino",
"Tuzzolino",
"Uberti",
"Uccello",
"Ucci",
"Udinese",
"Udinesi",
"Ugolini",
"Uliano",
"Ungaro",
"Urbani",
"Urciuoli",
"Urgo",
"Ursillo",
"Ursini",
"Ursino",
"Urso",
"Uva",
"Uzzo",
"Vacanti",
"Vacca",
"Vaccarella",
"Vaccarelli",
"Vaccarello",
"Vaccari",
"Vaccariello",
"Vaccarino",
"Vaccaro",
"Vacco",
"Vadala",
"Vagnoni",
"Vairo",
"Vala",
"Valent",
"Valente",
"Valenti",
"Valentini",
"Valentino",
"Valenza",
"Valeri",
"Valiante",
"Valla",
"Vallario",
"Vallese",
"Valli",
"Vallone",
"Valore",
"Valvano",
"Valvo",
"Vanacore",
"Vanella",
"Vannelli",
"Vanni",
"Vannucci",
"Vanore",
"Varallo",
"Varano",
"Varda",
"Vario",
"Varisco",
"Varni",
"Varone",
"Varriale",
"Varricchio",
"Varrone",
"Vars",
"Varvaro",
"Vasile",
"Vassallo",
"Vasta",
"Vastano",
"Vastola",
"Vecchi",
"Vecchiarelli",
"Vecchio",
"Vecchione",
"Vece",
"Vecellio",
"Vecera",
"Vecoli",
"Vellucci",
"Velotta",
"Veltre",
"Vena",
"Venanzi",
"Vendetti",
"Venditti",
"Venditto",
"Venezia",
"Veneziale",
"Veneziano",
"Venezio",
"Venier",
"Venneri",
"Veno",
"Venti",
"Ventimiglia",
"Vento",
"Ventola",
"Ventre",
"Ventrella",
"Ventresca",
"Ventrone",
"Ventura",
"Venturella",
"Venturelli",
"Venturi",
"Venturini",
"Venturino",
"Venturo",
"Venuti",
"Venuto",
"Venzon",
"Verde",
"Verderame",
"Verderosa",
"Verdi",
"Verdone",
"Verducci",
"Verga",
"Verna",
"Vernetti",
"Verni",
"Verno",
"Vero",
"Verona",
"Veronesi",
"Verrastro",
"Verratti",
"Verrico",
"Verrilli",
"Verrone",
"Vertucci",
"Verucchi",
"Vescio",
"Vesco",
"Vescovi",
"Vespa",
"Vetere",
"Vetrone",
"Vettraino",
"Viale",
"Vian",
"Viani",
"Viano",
"Vicari",
"Vicario",
"Vicini",
"Vicino",
"Vida",
"Viel",
"Vietti",
"Viglione",
"Vigliotti",
"Vigna",
"Vignali",
"Vignola",
"Vignone",
"Vilardo",
"Villa",
"Villani",
"Villano",
"Villanova",
"Villella",
"Villone",
"Vincelli",
"Vincenti",
"Vincenzo",
"Vinci",
"Viola",
"Violante",
"Virgili",
"Virgilio",
"Virginia",
"Virzi",
"Visalli",
"Viscardi",
"Visco",
"Viscomi",
"Visconti",
"Viscuso",
"Viselli",
"Vita",
"Vitacco",
"Vitale",
"Vitali",
"Vitanza",
"Vitela",
"Vitelli",
"Vitello",
"Viti",
"Vitiello",
"Vito",
"Vitolo",
"Vitrano",
"Vitti",
"Vittone",
"Vittori",
"Vittoria",
"Vittorio",
"Vitucci",
"Vitulli",
"Vitullo",
"Vivenzio",
"Viviani",
"Viviano",
"Vivirito",
"Vivolo",
"Vivona",
"Vizza",
"Vizzini",
"Voce",
"Voci",
"Volante",
"Volino",
"Vollaro",
"Volpe",
"Volpi",
"Volpicelli",
"Volta",
"Vona",
"Vota",
"Votta",
"Vozzella",
"Vullo",
"Vultaggio",
"Vuono",
"Zaccagnini",
"Zaccagnino",
"Zaccardi",
"Zaccardo",
"Zaccaria",
"Zaccheo",
"Zaccone",
"Zadra",
"Zaffino",
"Zaffuto",
"Zaino",
"Zambelli",
"Zambon",
"Zamboni",
"Zambrano",
"Zammit",
"Zampa",
"Zampella",
"Zampini",
"Zampino",
"Zanardi",
"Zanca",
"Zandi",
"Zane",
"Zanella",
"Zanelli",
"Zanetti",
"Zangari",
"Zanghi",
"Zangrilli",
"Zani",
"Zanin",
"Zanni",
"Zannini",
"Zanon",
"Zanone",
"Zanoni",
"Zanotti",
"Zappa",
"Zappala",
"Zappone",
"Zappulla",
"Zara",
"Zarcone",
"Zarella",
"Zarlengo",
"Zaro",
"Zarrella",
"Zarrilli",
"Zarro",
"Zavaglia",
"Zecca",
"Zegarelli",
"Zella",
"Zello",
"Zema",
"Zeni",
"Zeno",
"Zeoli",
"Zeolla",
"Zeppieri",
"Zetticci",
"Zezza",
"Zingale",
"Zingarelli",
"Zingaro",
"Zini",
"Zinni",
"Zinno",
"Zino",
"Zirpoli",
"Zisa",
"Zito",
"Zizzi",
"Zizzo",
"Zocchi",
"Zocco",
"Zoda",
"Zola",
"Zolezzi",
"Zolla",
"Zollo",
"Zona",
"Zoppi",
"Zorzi",
"Zotti",
"Zottola",
"Zucca",
"Zuccarelli",
"Zuccarello",
"Zuccaro",
"Zucco",
"Zulli",
"Zullo",
"Zumbo",
"Zummo",
"Zumpano",
"Zunino",
"Zurlo"]>>
<<set setup.japaneseSurnames to [
"Abe",
"Adachi",
"Akagi",
"Akamine",
"Aki",
"Akiyama",
"Amano",
"Amari",
"Amaya",
"Ando",
"Anno",
"Anzai",
"Aoki",
"Aoyama",
"Arai",
"Arakaki",
"Arakawa",
"Araki",
"Arata",
"Araya",
"Arima",
"Arita",
"Asa",
"Asai",
"Asano",
"Asato",
"Ashikaga",
"Azuma",
"Baba",
"Ban",
"Bando",
"Chiba",
"Chinen",
"Chino",
"Date",
"Doi",
"Domen",
"Eguchi",
"Endo",
"Enomoto",
"Eto",
"Fujii",
"Fujikawa",
"Fujimori",
"Fujimoto",
"Fujimura",
"Fujino",
"Fujioka",
"Fujita",
"Fujiwara",
"Fukuda",
"Fukuhara",
"Fukui",
"Fukumoto",
"Fukunaga",
"Fukushima",
"Funai",
"Furukawa",
"Furuta",
"Furutani",
"Furuya",
"Fuse",
"Gima",
"Go",
"Goda",
"Goto",
"Goya",
"Hada",
"Haga",
"Hagiwara",
"Hamada",
"Hamamoto",
"Hamasaki",
"Handa",
"Hano",
"Hara",
"Harada",
"Hase",
"Hasegawa",
"Hashimoto",
"Hata",
"Hatanaka",
"Hattori",
"Hayakawa",
"Hayashi",
"Hayashida",
"Higa",
"Higashi",
"Higuchi",
"Himura",
"Hino",
"Hirabayashi",
"Hirai",
"Hirano",
"Hiraoka",
"Hirata",
"Hirayama",
"Hironaka",
"Hirose",
"Hirota",
"Hisakawa",
"Hoga",
"Hokama",
"Honda",
"Hora",
"Hori",
"Horie",
"Horiuchi",
"Hoshino",
"Ichikawa",
"Ida",
"Ide",
"Igarashi",
"Ige",
"Iha",
"Iida",
"Ike",
"Ikeda",
"Ikehara",
"Imada",
"Imai",
"Imamura",
"Inaba",
"Inoue",
"Inouye",
"Isa",
"Iseri",
"Ishibashi",
"Ishida",
"Ishihara",
"Ishii",
"Ishikawa",
"Ishimoto",
"Isobe",
"Ito",
"Itoh",
"Itou",
"Iwai",
"Iwamoto",
"Iwasaki",
"Iwata",
"Izumi",
"Jin",
"Jo",
"Juba",
"Kaba",
"Kagawa",
"Kai",
"Kajiwara",
"Kamei",
"Kamiya",
"Kanai",
"Kanda",
"Kaneko",
"Kanemoto",
"Kaneshiro",
"Kanno",
"Kano",
"Kasai",
"Kase",
"Kataoka",
"Katayama",
"Kato",
"Katou",
"Kawabata",
"Kawaguchi",
"Kawahara",
"Kawai",
"Kawakami",
"Kawamoto",
"Kawamura",
"Kawano",
"Kawasaki",
"Kawashima",
"Kawata",
"Kaya",
"Kibe",
"Kida",
"Kido",
"Kikuchi",
"Kimoto",
"Kimura",
"Kinoshita",
"Kishi",
"Kishimoto",
"Kita",
"Kitagawa",
"Kitamura",
"Kiyabu",
"Kobashigawa",
"Kobayashi",
"Kobe",
"Koda",
"Kodama",
"Koga",
"Koike",
"Koizumi",
"Kojima",
"Komatsu",
"Kon",
"Konda",
"Kondo",
"Konishi",
"Konno",
"Kono",
"Konya",
"Koyama",
"Koyanagi",
"Kuba",
"Kubo",
"Kubota",
"Kudo",
"Kumagai",
"Kuno",
"Kuramoto",
"Kurata",
"Kure",
"Kurihara",
"Kuroda",
"Kurokawa",
"Kurosawa",
"Kuse",
"Kusumoto",
"Kuwahara",
"Machi",
"Machida",
"Mae",
"Maeda",
"Maekawa",
"Maita",
"Maki",
"Makino",
"Mano",
"Maruyama",
"Masaki",
"Mase",
"Masuda",
"Matsubara",
"Matsuda",
"Matsui",
"Matsumoto",
"Matsumura",
"Matsunaga",
"Matsuno",
"Matsuo",
"Matsuoka",
"Matsushima",
"Matsushita",
"Matsuura",
"Matsuyama",
"Matsuzaki",
"Mayeda",
"Mihara",
"Mikami",
"Miki",
"Minami",
"Minamoto",
"Mino",
"Mita",
"Miura",
"Miya",
"Miyagawa",
"Miyahara",
"Miyahira",
"Miyake",
"Miyamoto",
"Miyasaki",
"Miyasato",
"Miyashiro",
"Miyashita",
"Miyata",
"Miyazaki",
"Miyoshi",
"Mizuno",
"Mizushima",
"Mochizuki",
"Mori",
"Morikawa",
"Morimoto",
"Morine",
"Morino",
"Morioka",
"Morishige",
"Morishita",
"Morita",
"Moriyama",
"Moto",
"Mukai",
"Mura",
"Murai",
"Murakami",
"Muramoto",
"Muranaka",
"Murano",
"Muraoka",
"Murata",
"Murayama",
"Muto",
"Nagai",
"Nagamine",
"Nagano",
"Nagao",
"Nagasawa",
"Nagata",
"Naito",
"Nakada",
"Nakagawa",
"Nakahara",
"Nakai",
"Nakajima",
"Nakama",
"Nakamoto",
"Nakamura",
"Nakanishi",
"Nakano",
"Nakao",
"Nakashima",
"Nakasone",
"Nakata",
"Nakatani",
"Nakatomi",
"Nakayama",
"Nakazawa",
"Namba",
"Nii",
"Nishi",
"Nishida",
"Nishihara",
"Nishikawa",
"Nishimoto",
"Nishimura",
"Nishioka",
"Nishiyama",
"Nitta",
"Niwa",
"No",
"Noda",
"Noguchi",
"Nomura",
"Nonaka",
"Noya",
"Oba",
"Obara",
"Obi",
"Oda",
"Oe",
"Ogasawara",
"Ogata",
"Ogawa",
"Ogino",
"Ogura",
"Oh",
"Ohara",
"Ohashi",
"Ohno",
"Ohta",
"Oishi",
"Oka",
"Okabe",
"Okada",
"Okamoto",
"Okamura",
"Okane",
"Okano",
"Okawa",
"Okazaki",
"Oki",
"Okimoto",
"Okino",
"Okita",
"Okubo",
"Okuda",
"Okuma",
"Okumura",
"Okura",
"Omori",
"Omura",
"Onaga",
"Onishi",
"Ono",
"Orio",
"Osada",
"Osaki",
"Ose",
"Oshima",
"Oshiro",
"Oshita",
"Ota",
"Otake",
"Otani",
"Otsuka",
"Ouchi",
"Oyama",
"Oye",
"Ozaki",
"Ozawa",
"Sada",
"Sadow",
"Saeki",
"Saiki",
"Saito",
"Saitou",
"Sakaguchi",
"Sakai",
"Sakamoto",
"Sakata",
"Sako",
"Sakuma",
"Sakurai",
"Sama",
"Sanda",
"Sando",
"Sano",
"Sasaki",
"Sato",
"Satou",
"Satow",
"Sawa",
"Sawada",
"Sawaya",
"Sazama",
"Seki",
"Sekiguchi",
"Seno",
"Seo",
"Sera",
"Seta",
"Seto",
"Shiba",
"Shibata",
"Shibuya",
"Shima",
"Shimabukuro",
"Shimada",
"Shimamoto",
"Shimizu",
"Shimoda",
"Shimomura",
"Shinohara",
"Shinsato",
"Shintani",
"Shirai",
"Shiraishi",
"Shiraki",
"Shiro",
"Shiroma",
"Shishido",
"Shoda",
"Shoji",
"Soda",
"Soga",
"Soma",
"Sone",
"Sonoda",
"Suda",
"Sugai",
"Sugawara",
"Sugihara",
"Sugimoto",
"Sugita",
"Sugiyama",
"Suko",
"Sumida",
"Sunada",
"Suto",
"Suzuki",
"Tabata",
"Tachibana",
"Tada",
"Tagawa",
"Taguchi",
"Tahara",
"Taira",
"Tajima",
"Takada",
"Takagi",
"Takahashi",
"Takai",
"Takaki",
"Takamoto",
"Takano",
"Takara",
"Takashima",
"Takata",
"Takayama",
"Takeda",
"Takei",
"Takemoto",
"Takenaka",
"Takeshita",
"Taketa",
"Takeuchi",
"Tamaki",
"Tamanaha",
"Tamashiro",
"Tamura",
"Tanabe",
"Tanaka",
"Tani",
"Tanigawa",
"Taniguchi",
"Tanimoto",
"Tanji",
"Tano",
"Tao",
"Tashiro",
"Tengan",
"Terada",
"Teramoto",
"Teruya",
"Teshima",
"Tobe",
"Toda",
"Tokuda",
"Tokunaga",
"Toma",
"Tominaga",
"Tomita",
"Tone",
"Toyama",
"Toyoda",
"Tsuchida",
"Tsuchiya",
"Tsuda",
"Tsuji",
"Tsukamoto",
"Tsukuda",
"Tsutsui",
"Tsutsumi",
"Uchida",
"Uchiyama",
"Ueda",
"Uehara",
"Uemura",
"Ueno",
"Umeda",
"Umemoto",
"Uno",
"Usui",
"Uyeda",
"Uyehara",
"Uyemura",
"Uyeno",
"Wada",
"Wakabayashi",
"Watanabe",
"Yagi",
"Yamada",
"Yamagata",
"Yamaguchi",
"Yamakawa",
"Yamamoto",
"Yamamura",
"Yamanaka",
"Yamane",
"Yamaoka",
"Yamasaki",
"Yamashiro",
"Yamashita",
"Yamauchi",
"Yamazaki",
"Yanagi",
"Yano",
"Yasuda",
"Yasui",
"Yasutake",
"Yogi",
"Yokota",
"Yokoyama",
"Yonamine",
"Yoneda",
"Yoshida",
"Yoshihara",
"Yoshikawa",
"Yoshimoto",
"Yoshimura",
"Yoshinaga",
"Yoshino",
"Yoshioka",
"Yukimura"]>>
<<set setup.germanSurnames to [
"Abbe",
"Abegglen",
"Abel",
"Abeln",
"Abend",
"Abendroth",
"Aber",
"Abitz",
"Abke",
"Abt",
"Abts",
"Ach",
"Achatz",
"Achen",
"Achenbach",
"Achorn",
"Achter",
"Achterhof",
"Achziger",
"Ackermann",
"Ackert",
"Ackmann",
"Acord",
"Adami",
"Adamy",
"Addleman",
"Adel",
"Adelberg",
"Adelmann",
"Adelsberger",
"Adelsperger",
"Adelstein",
"Ader",
"Aderman",
"Aders",
"Adler",
"Adolf",
"Afflerbach",
"Affolter",
"Agler",
"Agricola",
"Ahl",
"Ahlbrecht",
"Ahles",
"Ahlf",
"Ahlgrim",
"Ahmann",
"Ahn",
"Ahr",
"Airey",
"Albach",
"Alberding",
"Alberg",
"Albitz",
"Albracht",
"Albrecht",
"Albus",
"Aldag",
"Alder",
"Aldinger",
"Alexy",
"Alger",
"Alig",
"Alleman",
"Allenbach",
"Allendorf",
"Aller",
"Allers",
"Allert",
"Allgaier",
"Allgeier",
"Allgeyer",
"Alling",
"Allinger",
"Allman",
"Alman",
"Almendinger",
"Almer",
"Alpert",
"Alpha",
"Alsdorf",
"Alsman",
"Alspach",
"Alt",
"Altemose",
"Altenbach",
"Altenburg",
"Altenburger",
"Altendorf",
"Altenhofen",
"Altepeter",
"Alter",
"Altergott",
"Althaus",
"Altheide",
"Althen",
"Althoff",
"Altig",
"Altmann",
"Altmeyer",
"Altringer",
"Altstadt",
"Altvater",
"Amacher",
"Amaker",
"Amann",
"Amberg",
"Amberger",
"Amborn",
"Ambrosius",
"Ambs",
"Ambuehl",
"Amelung",
"Amend",
"Amendt",
"Ament",
"Ames",
"Ammer",
"Ammon",
"Amrhein",
"Amsel",
"Amsler",
"Amthor",
"Anacker",
"Andelman",
"Ander",
"Anderer",
"Anderle",
"Anderman",
"Anders",
"Andes",
"Anding",
"Andler",
"Andra",
"Andrae",
"Andre",
"Andreae",
"Andris",
"Andrle",
"Angel",
"Angerhofer",
"Angerman",
"Angermeier",
"Angert",
"Anhalt",
"Anhorn",
"Anker",
"Anklam",
"Annen",
"Anschuetz",
"Anselmi",
"Anslinger",
"Ansorge",
"Anspach",
"Ansted",
"Antes",
"Anthes",
"Anthon",
"Antoni",
"Apfel",
"Apfelbaum",
"App",
"Appel",
"Appelhans",
"Appelt",
"Appenzeller",
"Appold",
"Aprill",
"Apt",
"Arant",
"Arb",
"Arbeiter",
"Ardinger",
"Arendt",
"Arensdorf",
"Arentz",
"Arenz",
"Aretz",
"Arling",
"Arlinghaus",
"Arlt",
"Arman",
"Armbrecht",
"Armbrust",
"Armbruster",
"Armes",
"Armold",
"Arms",
"Arndt",
"Arner",
"Arnhart",
"Arnhold",
"Arnholt",
"Arning",
"Arnoldi",
"Arnoldy",
"Arnot",
"Arnstein",
"Arp",
"Arras",
"Arth",
"Artz",
"Artzer",
"Arzt",
"Asch",
"Aschenbach",
"Aschenbrenner",
"Ascher",
"Aschoff",
"Asp",
"Assmann",
"Ast",
"Aster",
"Astle",
"Ater",
"Athmann",
"Attig",
"Aubel",
"Aubert",
"Aubrecht",
"Aue",
"Auen",
"Auer",
"Auerbach",
"Aufderheide",
"Aug",
"Auge",
"Augenstein",
"Auger",
"Augsburger",
"Augspurger",
"Aukamp",
"Aul",
"Aulbach",
"Aulenbach",
"Aull",
"Ault",
"Aumann",
"Aupperle",
"Aurich",
"Auringer",
"Auslander",
"Ausman",
"Aust",
"Austen",
"Auster",
"Austerman",
"Austgen",
"Austin",
"Auth",
"Aven",
"Averbach",
"Averbeck",
"Awe",
"Ax",
"Axt",
"Aydt",
"Aye",
"Baab",
"Baal",
"Baar",
"Baars",
"Babe",
"Babel",
"Baber",
"Babler",
"Babst",
"Bach",
"Bache",
"Bacher",
"Bachert",
"Bachhuber",
"Bachmann",
"Bachmeier",
"Bachtel",
"Backe",
"Backes",
"Backhaus",
"Backman",
"Backs",
"Bader",
"Badertscher",
"Baecker",
"Baeder",
"Baehler",
"Baehr",
"Baer",
"Baerg",
"Baerwald",
"Baese",
"Baessler",
"Baetz",
"Bahe",
"Bahler",
"Bahlmann",
"Bahn",
"Bahner",
"Bahre",
"Bahrenburg",
"Bahrke",
"Baier",
"Bailen",
"Bainter",
"Baitinger",
"Bake",
"Balbach",
"Balder",
"Baldinger",
"Baldner",
"Balfanz",
"Balk",
"Balke",
"Ballas",
"Baller",
"Balles",
"Ballin",
"Balling",
"Ballis",
"Ballmann",
"Ballweber",
"Ballweg",
"Balmer",
"Balow",
"Balsam",
"Balser",
"Balsiger",
"Balsinger",
"Balster",
"Balter",
"Balthazor",
"Baltz",
"Baltzer",
"Balz",
"Balzer",
"Bamber",
"Bamberg",
"Bamberger",
"Ban",
"Bandel",
"Bandemer",
"Bander",
"Bandler",
"Bandow",
"Bandt",
"Banes",
"Bang",
"Bange",
"Bangert",
"Banghart",
"Bank",
"Banke",
"Banker",
"Bankert",
"Bann",
"Banner",
"Banning",
"Banse",
"Bantle",
"Bantz",
"Banwart",
"Banzhaf",
"Bapst",
"Barbe",
"Barck",
"Bareis",
"Bares",
"Barfknecht",
"Barfuss",
"Barie",
"Baringer",
"Barkey",
"Barlage",
"Barmann",
"Barndt",
"Barnick",
"Baron",
"Barsch",
"Bart",
"Bartel",
"Bartelme",
"Bartels",
"Bartelt",
"Barth",
"Barthe",
"Barthel",
"Barthelmes",
"Barthelmess",
"Barthels",
"Barthol",
"Bartholomay",
"Bartimus",
"Bartl",
"Bartle",
"Bartling",
"Bartmess",
"Barton",
"Bartosch",
"Bartsch",
"Bartz",
"Baruth",
"Barz",
"Basch",
"Basche",
"Base",
"Basel",
"Basgall",
"Basler",
"Basner",
"Bason",
"Bass",
"Basse",
"Bassler",
"Bassman",
"Bast",
"Basten",
"Bastian",
"Batcher",
"Batdorf",
"Batenhorst",
"Bath",
"Bathe",
"Bathke",
"Batt",
"Batterman",
"Batzer",
"Bau",
"Bauch",
"Bauchman",
"Baudendistel",
"Bauder",
"Bauer",
"Bauerlein",
"Bauermeister",
"Bauers",
"Bauersfeld",
"Bauknecht",
"Bauler",
"Baum",
"Baumann",
"Baumbach",
"Baumberger",
"Baumeister",
"Baumer",
"Baumert",
"Baumgard",
"Baumgardt",
"Baumgarner",
"Baumgart",
"Baumgarten",
"Baumgartner",
"Baumhardt",
"Baumhover",
"Baumler",
"Baumstark",
"Baumunk",
"Baunach",
"Baures",
"Baus",
"Baust",
"Baustian",
"Baute",
"Bax",
"Bay",
"Bayer",
"Bayerl",
"Bayers",
"Bayha",
"Baze",
"Bebber",
"Bech",
"Bechen",
"Becher",
"Becherer",
"Bechler",
"Bechtol",
"Beck",
"Becka",
"Beckendorf",
"Beckerman",
"Beckert",
"Beckmeyer",
"Beder",
"Bedner",
"Beemer",
"Beers",
"Beese",
"Beetz",
"Begeman",
"Beh",
"Beha",
"Behe",
"Behl",
"Behle",
"Behlen",
"Behler",
"Behling",
"Behlke",
"Behm",
"Behme",
"Behmer",
"Behner",
"Behr",
"Behre",
"Behring",
"Behringer",
"Behrle",
"Behrmann",
"Behymer",
"Beichler",
"Beier",
"Beierle",
"Beiermann",
"Beiler",
"Beilfuss",
"Beilke",
"Beilstein",
"Bein",
"Beiner",
"Beinlich",
"Beise",
"Beisel",
"Beiser",
"Beissel",
"Beiswanger",
"Beiswenger",
"Beiter",
"Beiting",
"Beitz",
"Belch",
"Belger",
"Belke",
"Belle",
"Bellenger",
"Beller",
"Bellin",
"Belling",
"Bellinger",
"Bellinghausen",
"Bellm",
"Bellmer",
"Below",
"Belser",
"Belt",
"Belter",
"Belzer",
"Bendele",
"Bender",
"Bendig",
"Bendler",
"Bendorf",
"Bendt",
"Bene",
"Benedum",
"Benfer",
"Benge",
"Bengel",
"Bening",
"Benitz",
"Benker",
"Benninghoff",
"Bensch",
"Bense",
"Bensel",
"Bensen",
"Benshoff",
"Bensing",
"Benter",
"Benthin",
"Bentler",
"Bentrup",
"Bentzel",
"Benzel",
"Benzschawel",
"Berber",
"Berchtold",
"Berding",
"Berend",
"Berendes",
"Berg",
"Berge",
"Bergen",
"Bergener",
"Berger",
"Berges",
"Bergfeld",
"Bergholz",
"Berghorst",
"Bergmann",
"Bergmeier",
"Bergner",
"Bergold",
"Bergschneider",
"Bergt",
"Berhorst",
"Beringer",
"Berk",
"Berka",
"Berke",
"Berkel",
"Berkemeier",
"Berkemeyer",
"Berkner",
"Berl",
"Berling",
"Bermann",
"Bermel",
"Bern",
"Bernardy",
"Bernau",
"Bernauer",
"Bernd",
"Bernecker",
"Berner",
"Bernert",
"Bernhagen",
"Bernhardt",
"Bernhart",
"Berni",
"Bernick",
"Bernier",
"Bernius",
"Bernstein",
"Bero",
"Berres",
"Berreth",
"Bersch",
"Bertel",
"Bertels",
"Bertelsen",
"Berth",
"Bertha",
"Berthel",
"Berthold",
"Bertholf",
"Bertram",
"Bertsch",
"Bertsche",
"Bertz",
"Berwald",
"Besel",
"Besemer",
"Besler",
"Bess",
"Bessel",
"Besselman",
"Besser",
"Bessinger",
"Bessler",
"Best",
"Beste",
"Bester",
"Bestgen",
"Betler",
"Betschart",
"Bettendorf",
"Bettenhausen",
"Better",
"Bettger",
"Betthauser",
"Bettin",
"Bettinger",
"Bettner",
"Betzer",
"Betzler",
"Betzner",
"Betzold",
"Beutel",
"Beutler",
"Bevers",
"Beversdorf",
"Beydler",
"Beyer",
"Beyerle",
"Beyerlein",
"Beyers",
"Beyersdorf",
"Beyke",
"Beyler",
"Bezner",
"Bezold",
"Biber",
"Bick",
"Bickel",
"Bickhart",
"Bicking",
"Bickle",
"Bickler",
"Bidinger",
"Bieber",
"Biedenbach",
"Biederman",
"Biedermann",
"Biediger",
"Bieger",
"Biegert",
"Biehl",
"Biehle",
"Biehn",
"Bieker",
"Biel",
"Biela",
"Bielefeld",
"Bielenberg",
"Bieler",
"Bielke",
"Bien",
"Bieneman",
"Biener",
"Bier",
"Bierbaum",
"Bierlein",
"Bierly",
"Biermann",
"Bierschbach",
"Bierschenk",
"Bierwagen",
"Bierwirth",
"Biese",
"Biesecker",
"Bieser",
"Biesinger",
"Biesterfeld",
"Bietz",
"Biever",
"Bigalke",
"Bigner",
"Bihl",
"Bihler",
"Bihm",
"Bihn",
"Bilderback",
"Bilger",
"Biller",
"Billerbeck",
"Billheimer",
"Billick",
"Billig",
"Billing",
"Billinger",
"Billman",
"Billmeyer",
"Biltz",
"Bilz",
"Bindel",
"Binder",
"Bindner",
"Bingel",
"Bingenheimer",
"Binger",
"Binner",
"Binsfeld",
"Binstock",
"Bintz",
"Binz",
"Birenbaum",
"Biringer",
"Birk",
"Birkenfeld",
"Birkhofer",
"Birkle",
"Birkner",
"Birnbaum",
"Birner",
"Birr",
"Birschbach",
"Birt",
"Birth",
"Bischof",
"Bischoff",
"Bisping",
"Bissen",
"Bitler",
"Bittel",
"Bitter",
"Bitterman",
"Bittick",
"Bitting",
"Bittinger",
"Bittner",
"Bitzer",
"Blacker",
"Blackert",
"Bladow",
"Blaeser",
"Blaesing",
"Blaich",
"Blanck",
"Blanke",
"Blankenbeckler",
"Blankenburg",
"Blankenheim",
"Blankenhorn",
"Blaschke",
"Blaschko",
"Blaser",
"Blasing",
"Blasius",
"Blass",
"Blatt",
"Blattenberger",
"Blau",
"Blauert",
"Blaufuss",
"Blauser",
"Blech",
"Blecha",
"Blecher",
"Blechinger",
"Blechman",
"Blehm",
"Bleich",
"Bleicher",
"Bleichner",
"Bleier",
"Bleil",
"Bleile",
"Bleiler",
"Bleiweiss",
"Blend",
"Blender",
"Blenker",
"Blessing",
"Blessinger",
"Blessman",
"Bley",
"Bleyer",
"Blick",
"Bliese",
"Bliesner",
"Blind",
"Blinder",
"Blinn",
"Bliss",
"Blitz",
"Blitzer",
"Bloch",
"Blocher",
"Block",
"Blocker",
"Bloedow",
"Blom",
"Blomberg",
"Blome",
"Blose",
"Bloss",
"Blouch",
"Blucher",
"Bludau",
"Bluhm",
"Blum",
"Blumberg",
"Blume",
"Blumenauer",
"Blumenberg",
"Blumenfeld",
"Blumenschein",
"Blumer",
"Blumhagen",
"Blumhardt",
"Blunck",
"Blunk",
"Blust",
"Bluth",
"Bly",
"Bobb",
"Bobeck",
"Bobek",
"Boberg",
"Bobinger",
"Bobst",
"Bobzien",
"Boch",
"Boche",
"Bock",
"Bockenstedt",
"Bockhorst",
"Bockoven",
"Bodamer",
"Bodden",
"Bode",
"Boden",
"Bodenheimer",
"Bodenschatz",
"Bodenstein",
"Bodensteiner",
"Bodin",
"Bodman",
"Bodner",
"Boebel",
"Boeder",
"Boedigheimer",
"Boegel",
"Boeglin",
"Boeh",
"Boehl",
"Boehle",
"Boehler",
"Boehlert",
"Boehlke",
"Boehm",
"Boehme",
"Boehmer",
"Boehnlein",
"Boehringer",
"Boelter",
"Boenig",
"Boenker",
"Boers",
"Boerst",
"Boes",
"Boese",
"Boesel",
"Boetcher",
"Boettcher",
"Boettger",
"Boettner",
"Boff",
"Bogen",
"Bogenrief",
"Bogenschutz",
"Boger",
"Bogner",
"Bogus",
"Bohland",
"Bohlander",
"Bohle",
"Bohlen",
"Bohler",
"Bohlinger",
"Bohm",
"Bohmann",
"Bohmer",
"Bohn",
"Bohnen",
"Bohnenkamp",
"Bohner",
"Bohnert",
"Bohnet",
"Bohnhoff",
"Bohnsack",
"Bohnstedt",
"Bohr",
"Bohrer",
"Bokelman",
"Boker",
"Boland",
"Bolander",
"Bolch",
"Bold",
"Boldman",
"Boldt",
"Boler",
"Bolich",
"Boll",
"Bolland",
"Bolle",
"Bollenbach",
"Bollenbacher",
"Bolles",
"Bolling",
"Bollmann",
"Bolls",
"Bolster",
"Bolt",
"Bolte",
"Bolten",
"Bolter",
"Boltz",
"Bolz",
"Bomberger",
"Bommer",
"Bommersbach",
"Bonenberger",
"Boner",
"Bongard",
"Bonitz",
"Bonn",
"Bonne",
"Bonson",
"Bontrager",
"Boock",
"Booe",
"Book",
"Bookman",
"Bopp",
"Borde",
"Bordes",
"Bordner",
"Borgerding",
"Borges",
"Borgmeyer",
"Bork",
"Borke",
"Borkenhagen",
"Bornheimer",
"Bornhoft",
"Bornholdt",
"Bornhorst",
"Bornmann",
"Bornt",
"Borntrager",
"Borries",
"Borrmann",
"Bors",
"Borsch",
"Borst",
"Borth",
"Bortner",
"Bortz",
"Bosch",
"Bose",
"Bosecker",
"Boseman",
"Bosen",
"Boser",
"Bosler",
"Boss",
"Bosserman",
"Bosshard",
"Bosshardt",
"Bosshart",
"Bossler",
"Bost",
"Bostian",
"Botsch",
"Bottcher",
"Bottenfield",
"Bottorf",
"Bottorff",
"Botz",
"Bowsher",
"Boxberger",
"Boyer",
"Brabender",
"Brach",
"Brachman",
"Bracht",
"Brack",
"Bracke",
"Bracken",
"Bracker",
"Brackmann",
"Brader",
"Bradow",
"Bradtke",
"Braeger",
"Brahler",
"Brahm",
"Brahms",
"Bram",
"Bramel",
"Bramer",
"Brammeier",
"Brammer",
"Brand",
"Brandau",
"Brandel",
"Brandenberg",
"Brandenburg",
"Brandenburger",
"Brandenstein",
"Brander",
"Brandes",
"Brandl",
"Brandmeyer",
"Brands",
"Brandstetter",
"Brandt",
"Branner",
"Branning",
"Branstetter",
"Brantner",
"Brasch",
"Brasel",
"Brass",
"Brassel",
"Bratsch",
"Bratz",
"Braucher",
"Brauchle",
"Braucht",
"Braun",
"Braunagel",
"Braune",
"Brauner",
"Brauning",
"Braunlich",
"Braunschweig",
"Brause",
"Brausen",
"Brautigam",
"Brech",
"Brecheisen",
"Brecher",
"Breck",
"Brecke",
"Brecker",
"Breckner",
"Bredemeyer",
"Bredow",
"Bredthauer",
"Breer",
"Breese",
"Brege",
"Bregenzer",
"Breger",
"Bregman",
"Brehm",
"Brehmer",
"Brei",
"Breidenbach",
"Breidenstein",
"Breiding",
"Breidinger",
"Breier",
"Breig",
"Breihan",
"Breiner",
"Breinholt",
"Breinig",
"Breining",
"Breininger",
"Breisch",
"Breit",
"Breitbach",
"Breitbart",
"Breitbarth",
"Breitenbach",
"Breitenfeldt",
"Breitenstein",
"Breithaupt",
"Breitinger",
"Breitkreutz",
"Breitling",
"Breitner",
"Breitwieser",
"Brelje",
"Brem",
"Bremer",
"Bremmer",
"Bremser",
"Brendemuehl",
"Brender",
"Brendlinger",
"Brenn",
"Brenneis",
"Brenneman",
"Brenner",
"Brenning",
"Brensinger",
"Brentlinger",
"Brenzel",
"Breske",
"Breslauer",
"Bressler",
"Brest",
"Brester",
"Brethauer",
"Bretl",
"Bretschneider",
"Bretthauer",
"Brettschneider",
"Bretz",
"Breu",
"Breuer",
"Breuker",
"Breunig",
"Breuninger",
"Brick",
"Brickle",
"Brief",
"Briegel",
"Brieger",
"Briel",
"Briese",
"Brieske",
"Brietzke",
"Brill",
"Brillhart",
"Brimmer",
"Brinkmeier",
"Brinks",
"Briski",
"Britt",
"Britz",
"Brixius",
"Brobeck",
"Brobst",
"Brockel",
"Brockelman",
"Brockert",
"Brockhaus",
"Brockhoff",
"Brockmeier",
"Brockner",
"Brockschmidt",
"Broda",
"Brodbeck",
"Broeckel",
"Broge",
"Brohl",
"Broich",
"Broll",
"Brom",
"Bromm",
"Brommer",
"Bronnenberg",
"Bronner",
"Brosch",
"Brose",
"Brosi",
"Brosig",
"Brosius",
"Brosmer",
"Bross",
"Brossman",
"Brost",
"Broten",
"Brott",
"Brotz",
"Brotzman",
"Brox",
"Broxterman",
"Brubach",
"Brubacher",
"Bruch",
"Bruck",
"Brucker",
"Bruckman",
"Brucks",
"Bruder",
"Brueck",
"Brueckner",
"Brueggen",
"Bruehl",
"Bruemmer",
"Bruesch",
"Bruesewitz",
"Brugge",
"Bruhl",
"Bruhns",
"Brum",
"Brumbach",
"Brumer",
"Brumm",
"Brummer",
"Brummund",
"Brune",
"Brunell",
"Bruner",
"Brunet",
"Brungard",
"Brungardt",
"Brunger",
"Brunken",
"Brunker",
"Brunkhorst",
"Brunn",
"Brunner",
"Brunow",
"Brunswick",
"Bruntz",
"Brunz",
"Bruse",
"Bruske",
"Brusky",
"Bruss",
"Brust",
"Bryers",
"Bubeck",
"Bubel",
"Bublitz",
"Buboltz",
"Bubolz",
"Buch",
"Buchberger",
"Buchbinder",
"Buche",
"Buchen",
"Bucher",
"Buchert",
"Buchheim",
"Buchheit",
"Buchholtz",
"Buchholz",
"Buchinger",
"Buchler",
"Buchmann",
"Buchmeier",
"Buchner",
"Buchs",
"Buchsbaum",
"Buchta",
"Buchwald",
"Buchwalter",
"Buck",
"Buckel",
"Buckels",
"Budde",
"Budden",
"Buddenhagen",
"Buder",
"Budinger",
"Budke",
"Budner",
"Buechler",
"Buechner",
"Buecker",
"Buege",
"Buehner",
"Buehrer",
"Buehring",
"Buelow",
"Bueltel",
"Buenger",
"Buening",
"Buerge",
"Buerger",
"Buerk",
"Buerkle",
"Buermann",
"Buescher",
"Buetow",
"Buettner",
"Buff",
"Buffenbarger",
"Bugenhagen",
"Buhl",
"Buhler",
"Buhr",
"Buhrman",
"Buker",
"Bulen",
"Bulgrin",
"Bull",
"Buller",
"Bulow",
"Bultemeier",
"Bultman",
"Bumb",
"Bunde",
"Bundschuh",
"Bungard",
"Bunge",
"Bunger",
"Bunke",
"Bunker",
"Bunn",
"Bunner",
"Bunning",
"Bunt",
"Bunte",
"Bunten",
"Bunting",
"Buntrock",
"Bupp",
"Burant",
"Burau",
"Burbach",
"Burchardt",
"Burckhardt",
"Buren",
"Burg",
"Burgdorf",
"Burge",
"Burgener",
"Burger",
"Burgert",
"Burggraf",
"Burghard",
"Burghardt",
"Burghart",
"Burgmeier",
"Burgner",
"Burgstahler",
"Burgus",
"Burhans",
"Burich",
"Burk",
"Burkard",
"Burke",
"Burkel",
"Burkert",
"Burkhard",
"Burkhardt",
"Burkhart",
"Burkheimer",
"Burlage",
"Buroker",
"Burow",
"Burr",
"Burrer",
"Burrichter",
"Bursch",
"Burse",
"Burst",
"Burt",
"Bury",
"Busch",
"Busche",
"Buscher",
"Buschmann",
"Buseman",
"Buser",
"Buske",
"Buss",
"Busscher",
"Busse",
"Bussen",
"Busser",
"Bussert",
"Bussler",
"Bussmann",
"Butikofer",
"Butsch",
"Butt",
"Butter",
"Butters",
"Buttke",
"Buttler",
"Buttner",
"Butz",
"Butzen",
"Butzer",
"Butzin",
"Butzke",
"Butzlaff",
"Buxbaum",
"Campe",
"Candler",
"Cantor",
"Capito",
"Carlin",
"Carp",
"Caspar",
"Caspary",
"Casper",
"Chelius",
"Christ",
"Christel",
"Christen",
"Christl",
"Christlieb",
"Christmann",
"Christoffer",
"Christoph",
"Christophel",
"Ciske",
"Clauer",
"Clemen",
"Clemens",
"Closs",
"Colbeck",
"Commer",
"Conradi",
"Conrady",
"Conrardy",
"Cornatzer",
"Cotta",
"Cramm",
"Crecelius",
"Cripps",
"Criste",
"Cronister",
"Cruse",
"Cuda",
"Dach",
"Dachs",
"Dade",
"Daenzer",
"Dagel",
"Dagg",
"Dahle",
"Dahlem",
"Dahlen",
"Dahler",
"Dahlheimer",
"Dahling",
"Dahlinger",
"Dahlmann",
"Dahm",
"Dahmen",
"Dahms",
"Dahn",
"Dahnke",
"Daiber",
"Daigh",
"Dall",
"Dallenbach",
"Dallmann",
"Dallmeyer",
"Dalluge",
"Dalpiaz",
"Dalsing",
"Dambach",
"Damitz",
"Damm",
"Dammann",
"Damme",
"Dammer",
"Dampf",
"Damrau",
"Damrow",
"Damschroder",
"Dang",
"Dangler",
"Danke",
"Dankel",
"Danker",
"Dankers",
"Dann",
"Dannecker",
"Danneman",
"Dannenberg",
"Dannenfelser",
"Danner",
"Danser",
"Danz",
"Danzeisen",
"Danzer",
"Dapp",
"Darr",
"Dasch",
"Dase",
"Dasinger",
"Datz",
"Daub",
"Daube",
"Daubenspeck",
"Dauber",
"Dauberman",
"Daubert",
"Daubner",
"Dauer",
"Daul",
"Daum",
"Daun",
"Daunhauer",
"Daus",
"Dausman",
"Dautel",
"Dauterman",
"Dawes",
"De Paulis",
"Debban",
"Debes",
"Debold",
"Debolt",
"Debus",
"Dech",
"Dechant",
"Dechert",
"Deckelman",
"Decker",
"Deckert",
"Deckman",
"Deeken",
"Deerman",
"Dees",
"Deese",
"Deffner",
"Degen",
"Degenhardt",
"Degenhart",
"Degenstein",
"Deger",
"Degler",
"Degn",
"Dehler",
"Dehlinger",
"Dehm",
"Dehnel",
"Dehner",
"Dehnert",
"Dehring",
"Deibel",
"Deibert",
"Deibler",
"Deich",
"Deichert",
"Deichmann",
"Deimler",
"Dein",
"Deininger",
"Deis",
"Deiss",
"Deist",
"Deister",
"Deiter",
"Deitering",
"Deiters",
"Deland",
"Delger",
"Delker",
"Dell",
"Deller",
"Delling",
"Dellinger",
"Delmar",
"Delp",
"Delventhal",
"Delzer",
"Deman",
"Demand",
"Demar",
"Demel",
"Demerath",
"Demeter",
"Deml",
"Demler",
"Demme",
"Demmer",
"Demmin",
"Demming",
"Demmy",
"Demus",
"Demuth",
"Dencker",
"Denecke",
"Dengel",
"Denger",
"Dengler",
"Denhart",
"Denk",
"Denke",
"Denker",
"Denner",
"Dennert",
"Denning",
"Denninger",
"Dennler",
"Dentel",
"Dentinger",
"Dentler",
"Dentz",
"Denz",
"Denzel",
"Denzer",
"Denzin",
"Denzler",
"Depner",
"Deppen",
"Depperschmidt",
"Derbes",
"Derflinger",
"Dering",
"Deringer",
"Derleth",
"Dermer",
"Dern",
"Dernbach",
"Derner",
"Derringer",
"Dertinger",
"Deschler",
"Deschner",
"Desens",
"Dessauer",
"Detloff",
"Detmers",
"Dettinger",
"Dettlaff",
"Dettling",
"Dettloff",
"Dettmann",
"Detweiler",
"Detzel",
"Deubner",
"Deuser",
"Deuster",
"Deuter",
"Deutmeyer",
"Deutsch",
"Deutscher",
"Deutschmann",
"Dewald",
"Dewitz",
"Dexheimer",
"Dey",
"Dibbern",
"Dichter",
"Dick",
"Dicke",
"Dickel",
"Dicker",
"Dickerman",
"Dickert",
"Dickhaut",
"Dickler",
"Dickmann",
"Dickmeyer",
"Diebel",
"Diebold",
"Diefenbach",
"Diefendorf",
"Dieffenbach",
"Diegel",
"Diehl",
"Diehr",
"Dieker",
"Diel",
"Dieleman",
"Dielman",
"Diem",
"Diener",
"Dienes",
"Dienst",
"Dierlam",
"Dierolf",
"Diersing",
"Dies",
"Diestler",
"Dietel",
"Dieter",
"Dieterich",
"Dietert",
"Dietl",
"Dietlin",
"Dietrich",
"Dietz",
"Dietze",
"Dietzel",
"Dietzen",
"Dietzler",
"Dietzman",
"Diez",
"Digman",
"Dilcher",
"Dilg",
"Dilger",
"Dill",
"Dille",
"Dillen",
"Dillenburg",
"Diller",
"Dilling",
"Dillinger",
"Dillman",
"Dillner",
"Dilly",
"Diltz",
"Dimler",
"Dimmer",
"Dimmig",
"Dinda",
"Dingeldein",
"Dinger",
"Dinges",
"Dingfelder",
"Dingler",
"Dingmann",
"Dinkelman",
"Dippold",
"Dirlam",
"Dirnberger",
"Disch",
"Dischinger",
"Disque",
"Diss",
"Dissinger",
"Distel",
"Distler",
"Ditmars",
"Ditsch",
"Dittberner",
"Ditter",
"Dittmann",
"Dittrich",
"Dittus",
"Ditz",
"Ditzel",
"Dobberstein",
"Dobbert",
"Dobbertin",
"Dobeck",
"Dober",
"Dobmeier",
"Dobner",
"Dobratz",
"Dobrick",
"Docken",
"Dockendorf",
"Dockstader",
"Dockweiler",
"Dodenhoff",
"Dodt",
"Doebler",
"Doede",
"Doeden",
"Doehring",
"Doell",
"Doelling",
"Doenges",
"Doerflein",
"Doerflinger",
"Doerge",
"Doering",
"Doerner",
"Doerr",
"Doerrer",
"Doffing",
"Dohm",
"Dohn",
"Dohner",
"Dohrer",
"Dohse",
"Doktor",
"Dolch",
"Dold",
"Dolder",
"Dolen",
"Dolle",
"Dollinger",
"Dombrow",
"Domeier",
"Domer",
"Domm",
"Dommer",
"Domres",
"Donath",
"Dondlinger",
"Doner",
"Doniger",
"Donner",
"Donsbach",
"Dooner",
"Dopke",
"Dopp",
"Doppler",
"Doren",
"Dorer",
"Dorfman",
"Doring",
"Dorman",
"Dorn",
"Dornbusch",
"Dorner",
"Dornfeld",
"Doron",
"Dorow",
"Dorr",
"Dorries",
"Dorschner",
"Dorst",
"Dorsten",
"Dort",
"Dorwart",
"Dose",
"Doser",
"Doss",
"Dosser",
"Dost",
"Doster",
"Dotter",
"Dotterer",
"Dotterweich",
"Dotzler",
"Doup",
"Drabant",
"Drach",
"Drachenberg",
"Dragan",
"Drage",
"Draheim",
"Drass",
"Drath",
"Draudt",
"Drechsel",
"Drechsler",
"Drees",
"Dreiling",
"Dreis",
"Dreisbach",
"Dreith",
"Drendel",
"Dresbach",
"Dresch",
"Drescher",
"Dresden",
"Dresel",
"Dresen",
"Dresner",
"Dress",
"Dressel",
"Dresser",
"Dressler",
"Dressman",
"Dreves",
"Drexel",
"Drexler",
"Drey",
"Dreyer",
"Drilling",
"Droessler",
"Droge",
"Droll",
"Drollinger",
"Dross",
"Druffel",
"Drum",
"Drumm",
"Drummer",
"Druschel",
"Duberstein",
"Dubner",
"Dubs",
"Duck",
"Duckwitz",
"Dudenhoeffer",
"Duderstadt",
"Dudick",
"Dueck",
"Duecker",
"Duehring",
"Duell",
"Duellman",
"Duer",
"Duerr",
"Duerst",
"Duesing",
"Duesler",
"Duffner",
"Dufner",
"Duhl",
"Dukart",
"Dulberg",
"Dull",
"Dumke",
"Dumler",
"Dumm",
"Dummer",
"Dunk",
"Dunkel",
"Dunne",
"Dunner",
"Dunst",
"Dupper",
"Duren",
"Durian",
"During",
"Durk",
"Durman",
"Durner",
"Durr",
"Durre",
"Durrenberger",
"Durrer",
"Durst",
"Dusch",
"Dusel",
"Dusing",
"Dutt",
"Duve",
"Dux",
"Dylla",
"Ebach",
"Eben",
"Eberhard",
"Eberhardt",
"Eberhart",
"Eberl",
"Eberle",
"Eberlein",
"Eberlin",
"Eberspacher",
"Eberts",
"Eberwein",
"Ebinger",
"Eble",
"Eblen",
"Ebnet",
"Echternach",
"Eck",
"Eckard",
"Eckardt",
"Eckart",
"Eckelman",
"Eckels",
"Ecker",
"Eckermann",
"Eckert",
"Eckman",
"Eckmann",
"Eckrich",
"Eckstein",
"Edel",
"Edelmann",
"Eden",
"Ediger",
"Eding",
"Edinger",
"Edler",
"Edling",
"Effertz",
"Effinger",
"Effler",
"Ege",
"Egeler",
"Egelhoff",
"Eger",
"Egert",
"Egge",
"Eggebrecht",
"Eggeman",
"Eggemeyer",
"Egle",
"Egloff",
"Egolf",
"Ehart",
"Ehinger",
"Ehlen",
"Ehlinger",
"Ehnert",
"Ehnes",
"Ehr",
"Ehren",
"Ehrenberg",
"Ehrenfeld",
"Ehrenreich",
"Ehresmann",
"Ehret",
"Ehrgott",
"Ehrhard",
"Ehrhardt",
"Ehrhart",
"Ehrle",
"Ehrler",
"Ehrlich",
"Ehrmann",
"Ehrsam",
"Eib",
"Eich",
"Eichacker",
"Eichberger",
"Eichel",
"Eichelberg",
"Eichelberger",
"Eichen",
"Eichenauer",
"Eichenbaum",
"Eichenberg",
"Eichenberger",
"Eichenlaub",
"Eicher",
"Eichert",
"Eichholz",
"Eichhorn",
"Eichinger",
"Eichmann",
"Eichner",
"Eichstaedt",
"Eichten",
"Eicke",
"Eidam",
"Eidem",
"Eiden",
"Eidenschink",
"Eidman",
"Eidt",
"Eiermann",
"Eifler",
"Eigen",
"Eigner",
"Eike",
"Eiker",
"Eiler",
"Eilts",
"Einck",
"Einhorn",
"Einspahr",
"Einstein",
"Eirich",
"Eiring",
"Eis",
"Eisch",
"Eischeid",
"Eischen",
"Eischens",
"Eisemann",
"Eisen",
"Eisenach",
"Eisenbeis",
"Eisenberg",
"Eisenberger",
"Eisenbraun",
"Eisenhardt",
"Eisenhauer",
"Eisenhut",
"Eisenlohr",
"Eisenmann",
"Eisenmenger",
"Eisenreich",
"Eisenstein",
"Eisenzimmer",
"Eiser",
"Eiserman",
"Eisiminger",
"Eisman",
"Eisner",
"Eiss",
"Eissler",
"Eister",
"Eiswerth",
"Eitel",
"Eiting",
"Eitner",
"Eitzen",
"Ekstein",
"Elbe",
"Elbel",
"Elbrecht",
"Eleazer",
"Eley",
"Elfman",
"Elgart",
"Elhard",
"Ell",
"Ellebracht",
"Elleman",
"Ellenberg",
"Ellenberger",
"Ellenbogen",
"Ellenburg",
"Eller",
"Ellerbeck",
"Ellerbusch",
"Ellifritz",
"Ellig",
"Ellinger",
"Ellner",
"Ellwanger",
"Ellwein",
"Elm",
"Elman",
"Elsaesser",
"Elsass",
"Elsasser",
"Elsbernd",
"Elsenpeter",
"Elsing",
"Elsner",
"Elster",
"Elter",
"Elting",
"Eltz",
"Elzer",
"Embler",
"Emel",
"Emge",
"Emich",
"Emick",
"Emig",
"Eminger",
"Emler",
"Emmer",
"Emmerich",
"Emmerling",
"Emmert",
"Emminger",
"Emmrich",
"Emrich",
"Ems",
"Emter",
"Ende",
"Enders",
"Endler",
"Endlich",
"Endorf",
"Endres",
"Endris",
"Enfinger",
"Eng",
"Engbrecht",
"Enge",
"Engel",
"Engelbert",
"Engelbrecht",
"Engeldinger",
"Engelhard",
"Engelhardt",
"Engelhaupt",
"Engelmann",
"Engels",
"Engelsman",
"Engemann",
"Englert",
"Englerth",
"Engman",
"Enis",
"Enns",
"Ens",
"Enser",
"Ensing",
"Ensinger",
"Ensminger",
"Ensz",
"Enter",
"Entler",
"Entringer",
"Entz",
"Enzweiler",
"Eplin",
"Epling",
"Eppich",
"Epping",
"Eppinger",
"Epstein",
"Epting",
"Erath",
"Erb",
"Erbach",
"Erbacher",
"Erbe",
"Erben",
"Erber",
"Erbes",
"Erdmann",
"Erhard",
"Erhardt",
"Erhart",
"Erion",
"Erk",
"Erker",
"Erlanger",
"Erle",
"Erler",
"Erling",
"Erlinger",
"Ermel",
"Ermer",
"Erne",
"Ernesti",
"Erno",
"Ernst",
"Ernsting",
"Erpelding",
"Erpenbach",
"Ertz",
"Erwin",
"Erxleben",
"Esch",
"Eschbach",
"Esche",
"Eschen",
"Eschenbach",
"Eschenbacher",
"Eschenbrenner",
"Eschenburg",
"Escher",
"Eschler",
"Eschmann",
"Eschrich",
"Esker",
"Esler",
"Espe",
"Espenschied",
"Esper",
"Espey",
"Esse",
"Esselman",
"Essen",
"Esser",
"Essert",
"Essig",
"Essinger",
"Essler",
"Esslinger",
"Essman",
"Essner",
"Esswein",
"Ester",
"Esther",
"Etter",
"Ettinger",
"Ettlinger",
"Etzkorn",
"Etzler",
"Eucker",
"Eulberg",
"Euler",
"Eversman",
"Eveslage",
"Evinger",
"Ewig",
"Exner",
"Eyer",
"Eyerman",
"Eyman",
"Eyrich",
"Eyring",
"Eyster",
"Faatz",
"Fabacher",
"Fabrizius",
"Fackelman",
"Facklam",
"Fackler",
"Factor",
"Faden",
"Faerber",
"Faeth",
"Fager",
"Fahl",
"Fahle",
"Fahn",
"Fahnestock",
"Fahr",
"Fahrbach",
"Fahrenholz",
"Fahrenkrug",
"Fahrer",
"Fahringer",
"Fahrner",
"Faigle",
"Faist",
"Fait",
"Faix",
"Fakler",
"Falb",
"Falck",
"Falen",
"Falk",
"Falke",
"Falkenberg",
"Falkenhagen",
"Falkenstein",
"Falkner",
"Fall",
"Fallin",
"Fandrey",
"Fandrich",
"Fang",
"Fanger",
"Fank",
"Fansler",
"Farber",
"Farin",
"Farner",
"Farr",
"Farrenkopf",
"Farrer",
"Farwick",
"Fasel",
"Fasold",
"Fass",
"Fassbender",
"Fasse",
"Fassler",
"Faubel",
"Fauerbach",
"Faulstich",
"Faupel",
"Faus",
"Faust",
"Fauth",
"Feazel",
"Feazell",
"Fecher",
"Fechner",
"Fecht",
"Fedde",
"Feder",
"Federer",
"Federman",
"Feese",
"Feeser",
"Fehl",
"Fehler",
"Fehlman",
"Fehrenbach",
"Fehrenbacher",
"Fehring",
"Feichter",
"Feick",
"Feickert",
"Feider",
"Feidt",
"Feierabend",
"Feiertag",
"Feig",
"Feige",
"Feigel",
"Feigen",
"Feil",
"Feiler",
"Fein",
"Feinauer",
"Feind",
"Feiner",
"Feist",
"Feith",
"Felber",
"Feld",
"Feldbauer",
"Feldberg",
"Felde",
"Felder",
"Feldhaus",
"Feldhausen",
"Feldmann",
"Feldmeier",
"Feldner",
"Feldpausch",
"Felgenhauer",
"Felger",
"Felkel",
"Felker",
"Felkner",
"Fellbaum",
"Fellenbaum",
"Fellenz",
"Feller",
"Fellinger",
"Fellman",
"Fellner",
"Fels",
"Felsen",
"Felser",
"Felsing",
"Felske",
"Felten",
"Feltenberger",
"Felter",
"Feltner",
"Fenchel",
"Fendler",
"Fendrich",
"Fendt",
"Fenger",
"Fengler",
"Fenrich",
"Fenster",
"Fenstermacher",
"Fent",
"Fenter",
"Fenzel",
"Ferber",
"Ferch",
"Ferderer",
"Ferdinand",
"Ferg",
"Ferge",
"Fergen",
"Ferger",
"Fernau",
"Fernbach",
"Ferner",
"Fernholz",
"Fernow",
"Fersch",
"Ferst",
"Ferster",
"Fertig",
"Ferwerda",
"Feser",
"Fesperman",
"Fess",
"Fessler",
"Fest",
"Fester",
"Feth",
"Fetsch",
"Fetter",
"Fettes",
"Fettig",
"Fettinger",
"Fetty",
"Fetzer",
"Feucht",
"Feuer",
"Feuerbach",
"Feuerbacher",
"Feuerborn",
"Feuerhelm",
"Feuerstein",
"Feuling",
"Feulner",
"Feurer",
"Fey",
"Feyen",
"Fichter",
"Fichtner",
"Fickel",
"Ficken",
"Ficker",
"Fickert",
"Fickes",
"Fiddler",
"Fiebelkorn",
"Fieber",
"Fiebig",
"Fiebiger",
"Fiechter",
"Fiechtner",
"Fiedler",
"Fieger",
"Fiegl",
"Fies",
"Fieseler",
"Fieser",
"Fietz",
"Figge",
"Fillers",
"Fillinger",
"Fillman",
"Filsinger",
"Filtz",
"Filzen",
"Finck",
"Fincke",
"Findeisen",
"Finder",
"Findling",
"Finfrock",
"Fingerhut",
"Fink",
"Finkbeiner",
"Finke",
"Finkel",
"Finken",
"Finn",
"Finneman",
"Finner",
"Finster",
"Fintel",
"Finzel",
"Fisch",
"Fischbach",
"Fischer",
"Fischman",
"Fiscus",
"Fissel",
"Fistler",
"Fitting",
"Fitz",
"Fitzke",
"Fitzner",
"Fix",
"Fizer",
"Flach",
"Flad",
"Fladung",
"Flagel",
"Flagler",
"Flaig",
"Flak",
"Flake",
"Flam",
"Flamer",
"Flaming",
"Flammer",
"Flansburg",
"Flasch",
"Flatau",
"Flath",
"Flatow",
"Flaum",
"Flechsig",
"Fleck",
"Fleckenstein",
"Flecker",
"Flegel",
"Fleig",
"Fleisch",
"Fleischer",
"Fleischhacker",
"Fleischhauer",
"Fleischmann",
"Fleissner",
"Fleitz",
"Fleming",
"Flemmer",
"Flemming",
"Flenner",
"Flesch",
"Flesner",
"Flick",
"Flicker",
"Flickinger",
"Flickner",
"Fliegel",
"Flieger",
"Flier",
"Flinner",
"Floch",
"Flock",
"Floerchinger",
"Floerke",
"Flohr",
"Flor",
"Florer",
"Florman",
"Floss",
"Floto",
"Fluckiger",
"Fluegel",
"Flug",
"Fluhr",
"Flusche",
"Focht",
"Fochtman",
"Fockler",
"Foell",
"Foeller",
"Foerst",
"Foerster",
"Foertsch",
"Fohl",
"Fohn",
"Fokken",
"Foland",
"Folck",
"Folger",
"Folkers",
"Folkert",
"Folkerts",
"Folkner",
"Folland",
"Follmer",
"Follweiler",
"Fonger",
"Forberg",
"Forcht",
"Forer",
"Forker",
"Fornwalt",
"Forsman",
"Forst",
"Forster",
"Forstner",
"Forth",
"Fortmann",
"Fortner",
"Fosselman",
"Fossen",
"Fraas",
"Frack",
"Frady",
"Fraedrich",
"Fraenkel",
"Frager",
"Franciscus",
"Frank",
"Frankart",
"Franke",
"Frankel",
"Frankenberg",
"Frankenberger",
"Frankenstein",
"Frankhauser",
"Frankl",
"Frantz",
"Franz",
"Franzel",
"Franzman",
"Frase",
"Fratzke",
"Frech",
"Fredenburg",
"Frederking",
"Freeh",
"Frei",
"Freiberg",
"Freiberger",
"Freiburger",
"Freier",
"Freiermuth",
"Freiheit",
"Freihofer",
"Freilich",
"Freiling",
"Freiman",
"Freimark",
"Freimuth",
"Frein",
"Freisinger",
"Freitag",
"Frels",
"Frentz",
"Frentzel",
"Fretheim",
"Fretz",
"Freud",
"Freudenberg",
"Freudenberger",
"Freund",
"Freundlich",
"Frey",
"Freye",
"Freyer",
"Freyermuth",
"Freyman",
"Freymiller",
"Freytag",
"Friberg",
"Frick",
"Fricke",
"Frickel",
"Fricker",
"Frie",
"Friebel",
"Fried",
"Friedberg",
"Friede",
"Friedel",
"Friedemann",
"Frieder",
"Friederich",
"Friederichs",
"Friedland",
"Friedlander",
"Friedlein",
"Friedmann",
"Friedrich",
"Friedrichs",
"Friel",
"Frieling",
"Friemel",
"Fries",
"Friese",
"Friesen",
"Friesenhahn",
"Friesner",
"Friess",
"Friesz",
"Fringer",
"Frisch",
"Frischkorn",
"Frischmann",
"Friske",
"Fritsch",
"Fritsche",
"Fritz",
"Fritzen",
"Fritzinger",
"Fritzler",
"Fritzsche",
"Froebel",
"Froehle",
"Froehlich",
"Froelich",
"Froh",
"Frohlich",
"Frohman",
"Frohn",
"Frolich",
"Fromer",
"Fromm",
"Fromme",
"Frommelt",
"Frommer",
"Froneberger",
"Froning",
"Froom",
"Frosch",
"Frueh",
"Fruehauf",
"Fruehling",
"Fruhling",
"Frum",
"Fruth",
"Fryer",
"Fryling",
"Fuchs",
"Fuehrer",
"Fuemmeler",
"Fuerst",
"Fuerstenau",
"Fuerstenberg",
"Fuess",
"Fuge",
"Fugler",
"Fuhr",
"Fuhrmann",
"Fuhrmeister",
"Fuhs",
"Fuld",
"Fullmer",
"Fulmer",
"Funck",
"Funk",
"Funke",
"Furst",
"Furstenberg",
"Furth",
"Fuse",
"Fuss",
"Fusselman",
"Fussner",
"Futter",
"Gaa",
"Gaar",
"Gabbert",
"Gabe",
"Gabel",
"Gabelman",
"Gaber",
"Gabert",
"Gabler",
"Gach",
"Gacke",
"Gackle",
"Gade",
"Gaebel",
"Gaebler",
"Gaede",
"Gaertner",
"Gaetz",
"Gaff",
"Gaffke",
"Gagel",
"Gagen",
"Gager",
"Gahm",
"Gahn",
"Gaier",
"Gail",
"Gaiser",
"Gallenstein",
"Gallentine",
"Galler",
"Galley",
"Gallinger",
"Gallmeyer",
"Galm",
"Galster",
"Gambel",
"Gamber",
"Game",
"Gamm",
"Gammel",
"Gang",
"Gange",
"Gangel",
"Ganger",
"Gangloff",
"Gangwer",
"Gann",
"Gans",
"Ganschow",
"Gansemer",
"Ganser",
"Ganske",
"Ganster",
"Gansz",
"Gant",
"Ganter",
"Gantert",
"Ganther",
"Gantz",
"Gantzer",
"Ganz",
"Ganzel",
"Ganzer",
"Gapp",
"Garb",
"Garbe",
"Garbisch",
"Garbrecht",
"Gardon",
"Gareis",
"Garen",
"Garger",
"Garing",
"Garinger",
"Garis",
"Garl",
"Garlick",
"Garlin",
"Garlitz",
"Garman",
"Garn",
"Garringer",
"Garris",
"Garriss",
"Garski",
"Garst",
"Garten",
"Garth",
"Garthe",
"Gartner",
"Garven",
"Garver",
"Gasch",
"Gaschler",
"Gase",
"Gaskamp",
"Gasner",
"Gasper",
"Gassel",
"Gassen",
"Gasser",
"Gassler",
"Gassner",
"Gast",
"Gaster",
"Gathings",
"Gathman",
"Gatz",
"Gatza",
"Gatzemeyer",
"Gau",
"Gaub",
"Gauck",
"Gauer",
"Gauerke",
"Gauger",
"Gauker",
"Gaul",
"Gaumer",
"Gaus",
"Gausman",
"Gauss",
"Gaw",
"Gawel",
"Gawron",
"Gayer",
"Gayler",
"Gayman",
"Gear",
"Gebauer",
"Gebel",
"Gebers",
"Gebert",
"Gebhard",
"Gebhardt",
"Gebhart",
"Gebler",
"Geck",
"Geckle",
"Geckler",
"Geese",
"Geffner",
"Gefroh",
"Gegenheimer",
"Gegner",
"Gehl",
"Gehlbach",
"Gehle",
"Gehlen",
"Gehler",
"Gehlert",
"Gehlhausen",
"Gehling",
"Gehm",
"Gehr",
"Gehres",
"Gehret",
"Gehrig",
"Gehring",
"Gehringer",
"Gehris",
"Gehrt",
"Geib",
"Geibel",
"Geier",
"Geil",
"Geiling",
"Geiman",
"Geimer",
"Geis",
"Geise",
"Geisel",
"Geiselman",
"Geisen",
"Geiser",
"Geisert",
"Geisinger",
"Geiss",
"Geisser",
"Geissinger",
"Geissler",
"Geist",
"Geister",
"Geisz",
"Geitner",
"Geitz",
"Gelhar",
"Gelhaus",
"Gell",
"Geller",
"Gellert",
"Gelles",
"Gellman",
"Gellner",
"Gelnett",
"Gelsinger",
"Geltz",
"Gemar",
"Gembala",
"Gemme",
"Gemmel",
"Gemmer",
"Genest",
"Genge",
"Gengenbach",
"Genn",
"Gens",
"Gensel",
"Gensemer",
"Genser",
"Gensheimer",
"Gent",
"Genthe",
"Genther",
"Gentz",
"Genz",
"Genzer",
"Georg",
"Georgen",
"Georger",
"Georgi",
"Gepner",
"Geppert",
"Gera",
"Gerads",
"Gerber",
"Gerberding",
"Gerberich",
"Gerbig",
"Gerbitz",
"Gerbracht",
"Gerde",
"Gerdeman",
"Gerdon",
"Gerfen",
"Gerg",
"Gergen",
"Gerhard",
"Gerhardstein",
"Gerhardt",
"Gerhart",
"Gerhartz",
"Gerhold",
"Gerich",
"Gerig",
"Geringer",
"Gerke",
"Gerl",
"Gerlach",
"Gerleman",
"Gerlich",
"Gerling",
"Gerloff",
"Gerlt",
"German",
"Germann",
"Germer",
"Gernand",
"Gerndt",
"Gerner",
"Gernert",
"Gernhardt",
"Gero",
"Gerold",
"Gersch",
"Gerst",
"Gerstein",
"Gerstel",
"Gersten",
"Gerstenberger",
"Gerstman",
"Gerten",
"Gerth",
"Gertler",
"Gertner",
"Gervin",
"Gerwe",
"Gerwig",
"Gerwin",
"Geschwind",
"Gesell",
"Geske",
"Gess",
"Gessert",
"Gessner",
"Geter",
"Gettel",
"Gettig",
"Getting",
"Gettinger",
"Gettler",
"Gettman",
"Getz",
"Geyer",
"Gibbens",
"Gibler",
"Giebel",
"Giebler",
"Gieck",
"Giedd",
"Giefer",
"Gieger",
"Giegerich",
"Giel",
"Gienger",
"Gier",
"Gierach",
"Giere",
"Giering",
"Gieringer",
"Gierke",
"Giersch",
"Giertz",
"Giesbrecht",
"Giese",
"Giesecke",
"Giesel",
"Gieseler",
"Gieser",
"Giesler",
"Gietzen",
"Gift",
"Gil",
"Gilb",
"Gilberg",
"Gilcher",
"Gildehaus",
"Gildner",
"Gilgen",
"Gilgenbach",
"Gilger",
"Gill",
"Gille",
"Gillen",
"Giller",
"Gilles",
"Gillig",
"Gillitzer",
"Gillman",
"Gilly",
"Gilmer",
"Gilsdorf",
"Gilster",
"Giltz",
"Gimbel",
"Gimpel",
"Gimple",
"Ginder",
"Gindt",
"Ging",
"Ginger",
"Ginkel",
"Ginter",
"Gintz",
"Gipp",
"Gipple",
"Girman",
"Girten",
"Girtz",
"Gish",
"Gitchel",
"Gitt",
"Gitter",
"Gittinger",
"Givler",
"Glaab",
"Gladbach",
"Glade",
"Gladis",
"Glaeser",
"Glahn",
"Glander",
"Glandorf",
"Glandt",
"Glantz",
"Glas",
"Glaser",
"Glasner",
"Glass",
"Glassel",
"Glasser",
"Glassman",
"Glassmeyer",
"Glassner",
"Glatz",
"Glatzer",
"Glaub",
"Glauber",
"Glauner",
"Glave",
"Glawe",
"Gleich",
"Gleicher",
"Gleim",
"Gleissner",
"Glende",
"Glenz",
"Gless",
"Glessner",
"Glissman",
"Glock",
"Glockner",
"Glod",
"Gloden",
"Gloeckner",
"Glore",
"Glos",
"Gloss",
"Glosser",
"Glossner",
"Glotzbach",
"Glotzer",
"Gluck",
"Gluckman",
"Glueck",
"Glueckert",
"Glunz",
"Gluth",
"Gmitter",
"Gnau",
"Gneiting",
"Gobel",
"Goben",
"Gober",
"Gobert",
"Goblirsch",
"Gobrecht",
"Gocke",
"Godding",
"Godel",
"Goding",
"Goeb",
"Goebel",
"Goeckner",
"Goede",
"Goeden",
"Goedken",
"Goeglein",
"Goehring",
"Goeke",
"Goellner",
"Goelz",
"Goelzer",
"Goens",
"Goerdt",
"Goeringer",
"Goerner",
"Goertz",
"Goertzen",
"Goessling",
"Goethe",
"Goetsch",
"Goetschius",
"Goett",
"Goetter",
"Goetting",
"Goettsch",
"Goettsche",
"Goetze",
"Goetzinger",
"Gogel",
"Gogolin",
"Gohn",
"Gohr",
"Gohring",
"Goike",
"Going",
"Golberg",
"Golda",
"Goldammer",
"Goldbach",
"Goldbeck",
"Goldberg",
"Golde",
"Golder",
"Goldhammer",
"Golding",
"Goldinger",
"Goldman",
"Goldmann",
"Goldner",
"Goldrick",
"Goldschmidt",
"Goldstein",
"Goldwasser",
"Goll",
"Goller",
"Gollin",
"Gollinger",
"Gollub",
"Golly",
"Golub",
"Golz",
"Goman",
"Gomberg",
"Gongaware",
"Gonnerman",
"Gonser",
"Gonter",
"Goosman",
"Goracke",
"Gorder",
"Gorenflo",
"Gorges",
"Goring",
"Gorman",
"Gorr",
"Gosch",
"Gose",
"Gosling",
"Goss",
"Gosser",
"Gossman",
"Goth",
"Gothard",
"Gotsch",
"Gott",
"Gotter",
"Gottfried",
"Gotthardt",
"Gotthelf",
"Gottlieb",
"Gottlob",
"Gottman",
"Gottsch",
"Gottschalk",
"Gottschall",
"Gottstein",
"Gottula",
"Govert",
"Goy",
"Grab",
"Grabe",
"Graben",
"Grabenstein",
"Graber",
"Grabert",
"Grabner",
"Grad",
"Graddick",
"Grade",
"Gradel",
"Gradin",
"Gradwohl",
"Graeber",
"Graebner",
"Graefe",
"Graeser",
"Graeter",
"Graetz",
"Graf",
"Grafe",
"Graff",
"Grahl",
"Graichen",
"Grall",
"Gramann",
"Gramer",
"Gramke",
"Gramlich",
"Gramm",
"Grammer",
"Grams",
"Gran",
"Grand",
"Grande",
"Grandt",
"Graner",
"Grannemann",
"Gransee",
"Granzow",
"Gras",
"Grasmick",
"Grasse",
"Grassl",
"Grassman",
"Grassmyer",
"Grater",
"Gratzer",
"Grau",
"Grauberger",
"Graue",
"Grauel",
"Grauer",
"Graul",
"Graulich",
"Graumann",
"Graunke",
"Graupman",
"Graupner",
"Graver",
"Grebe",
"Greber",
"Grebner",
"Gregor",
"Gregorius",
"Greif",
"Greiff",
"Greil",
"Greimann",
"Grein",
"Greinke",
"Greis",
"Greiser",
"Greiss",
"Greiwe",
"Grell",
"Grelle",
"Grems",
"Grenke",
"Grenz",
"Gresens",
"Gress",
"Gresser",
"Gressler",
"Gressman",
"Greth",
"Gretz",
"Gretzinger",
"Greubel",
"Greuel",
"Greulich",
"Greven",
"Grewe",
"Grey",
"Grief",
"Grieger",
"Grieme",
"Griesbach",
"Griesbaum",
"Griesemer",
"Grieshop",
"Griesinger",
"Griesmer",
"Griess",
"Griest",
"Griff",
"Griffel",
"Grifka",
"Grill",
"Grimm",
"Grimme",
"Grimmer",
"Grindel",
"Gring",
"Gripp",
"Grittner",
"Grob",
"Grobe",
"Grober",
"Groden",
"Groeber",
"Groebner",
"Groeger",
"Groeschel",
"Groesser",
"Groetsch",
"Grof",
"Grogg",
"Groh",
"Grohe",
"Grohmann",
"Grohs",
"Groll",
"Groman",
"Gromer",
"Gronau",
"Gronbach",
"Grone",
"Gronemeyer",
"Groner",
"Gronert",
"Groninger",
"Gropp",
"Groppe",
"Gropper",
"Grosch",
"Groshans",
"Groskopf",
"Groskreutz",
"Gross",
"Grossberg",
"Grosse",
"Grosser",
"Grosshans",
"Grossheim",
"Grosskopf",
"Grosskreutz",
"Grossmann",
"Grubbe",
"Grube",
"Gruben",
"Gruber",
"Grubert",
"Grubman",
"Gruel",
"Gruen",
"Grueneberg",
"Gruener",
"Gruenke",
"Grueser",
"Grueter",
"Gruetzmacher",
"Grulke",
"Grumet",
"Grun",
"Grunberg",
"Grund",
"Grunden",
"Grundmeier",
"Gruner",
"Grunert",
"Grunfeld",
"Grunke",
"Grunow",
"Grunst",
"Grunwald",
"Grupp",
"Gruss",
"Grussing",
"Grutzmacher",
"Gubbels",
"Guckenberger",
"Gudde",
"Gude",
"Gudger",
"Guebert",
"Guell",
"Guenther",
"Guenthner",
"Guenzel",
"Guertler",
"Guess",
"Guetschow",
"Gugel",
"Gulden",
"Guldner",
"Gumm",
"Gummer",
"Gumpert",
"Gums",
"Gumz",
"Gund",
"Gunder",
"Gunderman",
"Gundlach",
"Gundling",
"Gundrum",
"Gunkel",
"Gunsch",
"Gunst",
"Gunter",
"Gunther",
"Gunzenhauser",
"Gurian",
"Gurr",
"Gurtler",
"Gurtner",
"Gurwell",
"Guse",
"Gusler",
"Guss",
"Gussler",
"Gussman",
"Gust",
"Guster",
"Gustin",
"Gustus",
"Gut",
"Gutekunst",
"Gutermuth",
"Guth",
"Gutheil",
"Guthier",
"Guthman",
"Gutkin",
"Gutsch",
"Gutschow",
"Gutt",
"Guttenberg",
"Gutting",
"Guttmann",
"Gutwein",
"Gutzler",
"Gutzman",
"Haab",
"Haag",
"Haage",
"Haagen",
"Haake",
"Haan",
"Haar",
"Haase",
"Habel",
"Habenicht",
"Haber",
"Haberberger",
"Haberer",
"Haberkorn",
"Haberl",
"Haberland",
"Haberman",
"Habermann",
"Habermehl",
"Haberstroh",
"Habetz",
"Habicht",
"Habig",
"Habiger",
"Hable",
"Hach",
"Hache",
"Hachtel",
"Hackbart",
"Hackbarth",
"Hacke",
"Hackel",
"Hackenberg",
"Hacker",
"Hackert",
"Hackl",
"Hackler",
"Hackmann",
"Hadel",
"Haden",
"Hader",
"Hadler",
"Haeberle",
"Haecker",
"Haeffner",
"Haefner",
"Haeg",
"Haegele",
"Haeger",
"Haehn",
"Haehnel",
"Haenel",
"Haener",
"Haer",
"Haerr",
"Haertel",
"Haertling",
"Haese",
"Haessig",
"Haessler",
"Hafer",
"Haferkamp",
"Haffer",
"Haffner",
"Haft",
"Hage",
"Hagedorn",
"Hagel",
"Hagele",
"Hagelstein",
"Hagemann",
"Hagemeier",
"Hagemeyer",
"Hagen",
"Hagenbuch",
"Hager",
"Hagert",
"Hagle",
"Hagler",
"Hagmann",
"Hagner",
"Hahl",
"Hahm",
"Hahn",
"Hahne",
"Hahner",
"Hahs",
"Hain",
"Haisler",
"Haitz",
"Halbach",
"Halberg",
"Halberstadt",
"Halbig",
"Halbleib",
"Halbur",
"Halder",
"Halderman",
"Haling",
"Hallbauer",
"Halle",
"Halleck",
"Haller",
"Halling",
"Halt",
"Halter",
"Hamacher",
"Hamann",
"Hambel",
"Hamberg",
"Hamberger",
"Hambrecht",
"Hamburg",
"Hamburger",
"Hamel",
"Hamiter",
"Hamler",
"Hamm",
"Hammann",
"Hammer",
"Hammerbeck",
"Hammerle",
"Hammerman",
"Hammermeister",
"Hammers",
"Hammerschmidt",
"Hammerstein",
"Hamp",
"Hampe",
"Hampel",
"Hamper",
"Hanauer",
"Handel",
"Handke",
"Handler",
"Handlos",
"Handorf",
"Handrich",
"Handrick",
"Handschuh",
"Handt",
"Handwerker",
"Hanel",
"Hanen",
"Haner",
"Hanf",
"Hanft",
"Hangartner",
"Hanig",
"Hanisch",
"Hank",
"Hann",
"Hanna",
"Hannasch",
"Hannemann",
"Hannen",
"Hanner",
"Hannes",
"Hanni",
"Hannibal",
"Hanno",
"Hanold",
"Hanover",
"Hans",
"Hansberger",
"Hansch",
"Hanse",
"Hansel",
"Hanselman",
"Hansler",
"Hantz",
"Hanz",
"Hanzel",
"Happ",
"Happe",
"Happel",
"Harb",
"Hardbarger",
"Hardebeck",
"Hardt",
"Hardwick",
"Hargesheimer",
"Harig",
"Harl",
"Harlacher",
"Harleman",
"Harless",
"Harlin",
"Harling",
"Harlos",
"Harmann",
"Harmeling",
"Harmeyer",
"Harnack",
"Harner",
"Harnick",
"Harnisch",
"Harnsberger",
"Harold",
"Harp",
"Harpe",
"Harpel",
"Harps",
"Harried",
"Harriger",
"Harring",
"Harruff",
"Harsch",
"Harshberger",
"Hart",
"Hartbarger",
"Hartel",
"Hartell",
"Hartenstein",
"Harter",
"Hartfiel",
"Harth",
"Hartig",
"Harting",
"Hartinger",
"Hartke",
"Hartkopf",
"Hartle",
"Hartleben",
"Hartlieb",
"Hartling",
"Hartmann",
"Hartnagel",
"Hartner",
"Hartranft",
"Hartrick",
"Hartstein",
"Hartter",
"Hartung",
"Hartwig",
"Hartz",
"Hartzheim",
"Hartzler",
"Harwick",
"Harz",
"Hasch",
"Haschke",
"Hase",
"Haselhorst",
"Haselhuhn",
"Hasemann",
"Hasenauer",
"Hasenstab",
"Haser",
"Haskamp",
"Haske",
"Haslinger",
"Haspel",
"Hasper",
"Hass",
"Hasse",
"Hassel",
"Hasselbach",
"Hasser",
"Hassig",
"Hassing",
"Hassinger",
"Hassler",
"Hasslinger",
"Hassman",
"Hast",
"Hastert",
"Hasz",
"Hattendorf",
"Hatz",
"Hatzenbuhler",
"Hauber",
"Haubert",
"Haubner",
"Haubold",
"Haubrich",
"Hauch",
"Hauck",
"Hauenstein",
"Hauer",
"Hauf",
"Haufe",
"Hauff",
"Haufler",
"Haug",
"Hauge",
"Hauk",
"Hauke",
"Haumann",
"Haun",
"Haupert",
"Haupt",
"Hauptmann",
"Haus",
"Hausauer",
"Hausch",
"Hauschild",
"Hauschildt",
"Hause",
"Hausen",
"Hauser",
"Hauserman",
"Haushalter",
"Hausknecht",
"Hausladen",
"Hausman",
"Hausmann",
"Hausner",
"Hauss",
"Hausser",
"Haussler",
"Haussmann",
"Hauswirth",
"Haut",
"Hauter",
"Hauth",
"Havener",
"Hay",
"Haydt",
"Haye",
"Hayn",
"Hayner",
"Hebel",
"Hebenstreit",
"Heber",
"Heberle",
"Hebert",
"Hebl",
"Hebrank",
"Hechler",
"Hecht",
"Heck",
"Heckaman",
"Heckel",
"Heckendorf",
"Heckendorn",
"Hecker",
"Heckerman",
"Heckert",
"Heckler",
"Heckmann",
"Hecksel",
"Hector",
"Hedrich",
"Heeg",
"Heeke",
"Heep",
"Heermann",
"Hefel",
"Heffner",
"Hefler",
"Hefner",
"Heft",
"Hefter",
"Hege",
"Hegemann",
"Heger",
"Hegewald",
"Hegner",
"Hehl",
"Hehn",
"Hehr",
"Heiberg",
"Heiberger",
"Heichel",
"Heichelbech",
"Heid",
"Heide",
"Heidebrecht",
"Heidel",
"Heidelberg",
"Heidelberger",
"Heideman",
"Heidemann",
"Heiden",
"Heidenreich",
"Heider",
"Heidkamp",
"Heidmann",
"Heidner",
"Heidrich",
"Heidt",
"Heidtke",
"Heidtman",
"Heien",
"Heifner",
"Heigel",
"Heiges",
"Heil",
"Heilbrun",
"Heilbrunn",
"Heileman",
"Heilig",
"Heiliger",
"Heilmann",
"Heimann",
"Heimbach",
"Heimberg",
"Heimberger",
"Heimbuch",
"Heimburger",
"Heimerdinger",
"Heimerl",
"Heimerman",
"Heimgartner",
"Heimlich",
"Heimsoth",
"Hein",
"Heinbach",
"Heine",
"Heinemann",
"Heinemeyer",
"Heiner",
"Heinig",
"Heiniger",
"Heininger",
"Heinisch",
"Heinitz",
"Heinke",
"Heinkel",
"Heinlein",
"Heino",
"Heinold",
"Heinrich",
"Heinrichs",
"Heinritz",
"Heintschel",
"Heintz",
"Heintze",
"Heintzelman",
"Heintzman",
"Heinz",
"Heinze",
"Heinzelman",
"Heinzen",
"Heinzer",
"Heiserman",
"Heishman",
"Heisinger",
"Heisler",
"Heisner",
"Heisser",
"Heisserer",
"Heist",
"Heistand",
"Heit",
"Heiting",
"Heitmann",
"Heitmeyer",
"Heitner",
"Heizer",
"Helberg",
"Helbig",
"Helbing",
"Held",
"Helderman",
"Heldman",
"Heldt",
"Helfenstein",
"Helferich",
"Helfert",
"Helfgott",
"Helfman",
"Helfrich",
"Helget",
"Hell",
"Helle",
"Heller",
"Helling",
"Hellinger",
"Hellman",
"Hellmann",
"Hellmuth",
"Hellner",
"Hellriegel",
"Hellstern",
"Hellweg",
"Hellwege",
"Helm",
"Helmbrecht",
"Helme",
"Helmer",
"Helmes",
"Helmich",
"Helmick",
"Helmig",
"Helmlinger",
"Helmreich",
"Helmrich",
"Helmstetter",
"Helmuth",
"Helsing",
"Helt",
"Heltemes",
"Heltzel",
"Helwig",
"Hemauer",
"Hemberger",
"Hemken",
"Hemker",
"Hemler",
"Hemm",
"Hemme",
"Hemmelgarn",
"Hemmer",
"Hemmerich",
"Hemmerle",
"Hemmerling",
"Hemmert",
"Hemming",
"Hemminger",
"Hemp",
"Hempe",
"Hempel",
"Hempfling",
"Hemple",
"Hemsath",
"Henck",
"Henckel",
"Hendel",
"Hendler",
"Hendrich",
"Hendricksen",
"Heng",
"Hengel",
"Hengen",
"Hengesbach",
"Hengst",
"Henige",
"Heninger",
"Henk",
"Henke",
"Henkel",
"Henkelman",
"Henkels",
"Henle",
"Henne",
"Henneberg",
"Henneberger",
"Hennemann",
"Henner",
"Hennig",
"Henniger",
"Henninger",
"Henny",
"Hensch",
"Henschel",
"Henschen",
"Hensel",
"Henseler",
"Hensler",
"Hentschel",
"Hentz",
"Hentze",
"Henz",
"Henzel",
"Hepner",
"Hepp",
"Heppe",
"Heppner",
"Hepting",
"Her",
"Herb",
"Herbel",
"Herber",
"Herberg",
"Herberger",
"Herbers",
"Herbert",
"Herbig",
"Herbold",
"Herbolsheimer",
"Herbst",
"Herbster",
"Herbstritt",
"Herde",
"Herdegen",
"Herder",
"Herdman",
"Herdrich",
"Herdt",
"Hereth",
"Herfel",
"Herford",
"Herfurth",
"Hergenreder",
"Hergenrother",
"Herget",
"Hergott",
"Hering",
"Heringer",
"Herkert",
"Herl",
"Herling",
"Herlinger",
"Hermann",
"Hermesch",
"Hermreck",
"Herold",
"Herpel",
"Herpich",
"Herr",
"Herrboldt",
"Herre",
"Herren",
"Herres",
"Herrig",
"Herriges",
"Herring",
"Herrle",
"Herrling",
"Herrmann",
"Hersch",
"Herschbach",
"Herschberger",
"Herschel",
"Herscher",
"Herstein",
"Hert",
"Hertel",
"Hertenstein",
"Herter",
"Hertig",
"Herting",
"Hertle",
"Hertlein",
"Hertler",
"Hertling",
"Hertwig",
"Hertz",
"Hertzberg",
"Hertzog",
"Herwick",
"Herwig",
"Herz",
"Herzberg",
"Herzberger",
"Herzer",
"Herzfeld",
"Herzig",
"Herzing",
"Herzog",
"Hesch",
"Heschke",
"Heser",
"Hesler",
"Hespe",
"Hess",
"Hesse",
"Hessel",
"Hessen",
"Hesser",
"Hessert",
"Hessinger",
"Hessler",
"Hessling",
"Hessman",
"Hessong",
"Hesterberg",
"Hetler",
"Hettich",
"Hettinger",
"Hettwer",
"Hetz",
"Hetzel",
"Hetzer",
"Hetzler",
"Hetzner",
"Heuberger",
"Heuck",
"Heuer",
"Heuermann",
"Heuman",
"Heumann",
"Heun",
"Heuring",
"Heuss",
"Heussner",
"Hey",
"Heyd",
"Heyde",
"Heyden",
"Heyder",
"Heydinger",
"Heydt",
"Heyen",
"Heyer",
"Heying",
"Heyl",
"Heymann",
"Heyn",
"Heyob",
"Hibben",
"Hibbler",
"Hibner",
"Hickel",
"Hidde",
"Hieb",
"Hieber",
"Hiebert",
"Hiegel",
"Hielscher",
"Hiemenz",
"Hiestand",
"Hiester",
"Hilber",
"Hilberg",
"Hilbig",
"Hilbrich",
"Hild",
"Hilde",
"Hildebrand",
"Hildebrandt",
"Hildebrant",
"Hilden",
"Hildenbrand",
"Hildenbrandt",
"Hilderbrandt",
"Hildman",
"Hildner",
"Hilgart",
"Hilger",
"Hilgert",
"Hilker",
"Hilkert",
"Hill",
"Hillegas",
"Hillegass",
"Hilleman",
"Hillenburg",
"Hiller",
"Hillerman",
"Hillesheim",
"Hilligoss",
"Hillner",
"Hilmer",
"Hilmes",
"Hilpert",
"Hils",
"Hilscher",
"Hilsinger",
"Hilsman",
"Hilt",
"Hiltbrand",
"Himler",
"Himmel",
"Himmelberg",
"Himmelberger",
"Himmelreich",
"Himmelsbach",
"Himmelspach",
"Himmelstein",
"Himmler",
"Himsel",
"Hinck",
"Hinden",
"Hinderman",
"Hinders",
"Hinger",
"Hink",
"Hinkel",
"Hinkelman",
"Hinners",
"Hinsch",
"Hintermeister",
"Hintz",
"Hintze",
"Hintzen",
"Hintzman",
"Hinz",
"Hinze",
"Hinzmann",
"Hipke",
"Hipp",
"Hippe",
"Hippen",
"Hippler",
"Hipskind",
"Hirchert",
"Hirn",
"Hirner",
"Hirsch",
"Hirschberg",
"Hirschey",
"Hirschfeld",
"Hirschhorn",
"Hirschler",
"Hirschmann",
"Hirst",
"Hirt",
"Hirte",
"Hirth",
"Hirtz",
"Hirzel",
"Hiss",
"Hitt",
"Hittinger",
"Hitz",
"Hitzemann",
"Hix",
"Hoben",
"Hober",
"Hoberg",
"Hoberman",
"Hobert",
"Hobler",
"Hoch",
"Hochberg",
"Hochhalter",
"Hochman",
"Hochmuth",
"Hochrein",
"Hochschild",
"Hochstadt",
"Hochstatter",
"Hochstein",
"Hock",
"Hockemeyer",
"Hocker",
"Hockert",
"Hockman",
"Hodum",
"Hoechst",
"Hoeck",
"Hoecker",
"Hoefer",
"Hoefert",
"Hoeffel",
"Hoeffner",
"Hoefler",
"Hoeflich",
"Hoefling",
"Hoefner",
"Hoeft",
"Hoeger",
"Hoehl",
"Hoehn",
"Hoehne",
"Hoehner",
"Hoell",
"Hoelle",
"Hoeller",
"Hoelter",
"Hoelting",
"Hoeltzel",
"Hoemann",
"Hoen",
"Hoene",
"Hoenes",
"Hoepfner",
"Hoerauf",
"Hoerig",
"Hoerl",
"Hoerle",
"Hoerman",
"Hoermann",
"Hoerning",
"Hoerr",
"Hoerter",
"Hoerth",
"Hoes",
"Hoesch",
"Hoeschen",
"Hoese",
"Hoesing",
"Hof",
"Hofacker",
"Hofbauer",
"Hoffacker",
"Hoffart",
"Hoffarth",
"Hoffberg",
"Hoffecker",
"Hoffer",
"Hoffert",
"Hoffler",
"Hoffman",
"Hoffmann",
"Hoffmeier",
"Hoffmeister",
"Hoffmeyer",
"Hoffner",
"Hofius",
"Hofmann",
"Hofmeister",
"Hofmeyer",
"Hofrichter",
"Hofstetter",
"Hoft",
"Hoger",
"Hogg",
"Hoh",
"Hoheisel",
"Hohenberger",
"Hohensee",
"Hohenstein",
"Hohertz",
"Hohl",
"Hohler",
"Hohm",
"Hohmann",
"Hohnstein",
"Hoing",
"Hoke",
"Holbach",
"Holbeck",
"Holbein",
"Holberg",
"Hold",
"Holdeman",
"Holden",
"Holder",
"Holderbaum",
"Holderman",
"Holl",
"Hollander",
"Hollar",
"Hollars",
"Hollatz",
"Holle",
"Hollenbach",
"Hollenberg",
"Hollender",
"Holler",
"Hollerbach",
"Holling",
"Hollmann",
"Hollopeter",
"Hollstein",
"Holschbach",
"Holschuh",
"Holsing",
"Holstein",
"Holtermann",
"Holtmeier",
"Holtz",
"Holtzen",
"Holtzer",
"Holtzinger",
"Holweger",
"Holz",
"Holzapfel",
"Holzberg",
"Holzberger",
"Holzem",
"Holzemer",
"Holzer",
"Holzhauer",
"Holzhauser",
"Holzheimer",
"Holzknecht",
"Holzmann",
"Holzschuh",
"Holzwarth",
"Homberg",
"Homburg",
"Homeier",
"Homeyer",
"Hommel",
"Hommerding",
"Homrich",
"Homuth",
"Honaker",
"Honeck",
"Honecker",
"Honegger",
"Honig",
"Honigman",
"Honkomp",
"Honnold",
"Honold",
"Honsberger",
"Honse",
"Honsinger",
"Hoose",
"Hop",
"Hopf",
"Hopfer",
"Hopfinger",
"Hoppel",
"Hoppenrath",
"Hopper",
"Horath",
"Horch",
"Horchler",
"Horen",
"Horger",
"Horlacher",
"Hormann",
"Hormel",
"Hornbacher",
"Hornberger",
"Hornburg",
"Hornecker",
"Horney",
"Horning",
"Hornstein",
"Hornung",
"Horr",
"Horsch",
"Horter",
"Horth",
"Hortman",
"Horwedel",
"Hosang",
"Hosbach",
"Hosch",
"Hose",
"Hosfeld",
"Hosler",
"Hosman",
"Hosner",
"Hosp",
"Hoss",
"Hossfeld",
"Host",
"Hoster",
"Hosterman",
"Hotte",
"Hottel",
"Hottenstein",
"Hottinger",
"Hottman",
"Hotz",
"Hotze",
"Houtz",
"Hoverman",
"Howald",
"Hoying",
"Hoyler",
"Hoyman",
"Hubach",
"Hubacher",
"Hubel",
"Huber",
"Huberman",
"Hubert",
"Hubler",
"Hubner",
"Hubscher",
"Huck",
"Hucke",
"Huckfeldt",
"Huckle",
"Huebel",
"Huebert",
"Huebner",
"Huebsch",
"Huegel",
"Huelsmann",
"Huenefeld",
"Huerter",
"Hueser",
"Hueter",
"Huether",
"Huett",
"Huetter",
"Huettner",
"Huff",
"Huffer",
"Hufnagel",
"Hug",
"Huge",
"Hugel",
"Huger",
"Hugger",
"Huggler",
"Hugo",
"Huhn",
"Huiras",
"Hulbert",
"Hulcher",
"Hulke",
"Huller",
"Hulsing",
"Humbert",
"Humburg",
"Humke",
"Huml",
"Hummel",
"Hummer",
"Hummert",
"Hund",
"Hundertmark",
"Hundt",
"Huneke",
"Huner",
"Hunger",
"Hunke",
"Hunkele",
"Hunker",
"Hunn",
"Hunsberger",
"Hunsinger",
"Huntsberger",
"Huntzinger",
"Hupf",
"Hupp",
"Huppe",
"Huppert",
"Hurm",
"Hurst",
"Hurt",
"Hurter",
"Hurtgen",
"Hurtig",
"Huscher",
"Husen",
"Huske",
"Huss",
"Husser",
"Hust",
"Huster",
"Huter",
"Huth",
"Huther",
"Hutmacher",
"Hutman",
"Hutner",
"Hutt",
"Hutter",
"Huttner",
"Hutzel",
"Huwe",
"Hux",
"Huxhold",
"Huy",
"Hyden",
"Ibach",
"Ibe",
"Ickes",
"Ifft",
"Igel",
"Ihlenfeld",
"Ihm",
"Ihrig",
"Ilg",
"Ilgen",
"Ilgenfritz",
"Ille",
"Illes",
"Illg",
"Illian",
"Illig",
"Ilse",
"Imber",
"Imdieke",
"Imfeld",
"Imgrund",
"Imholte",
"Imig",
"Immekus",
"Immer",
"Immerman",
"Indorf",
"Ines",
"Ingber",
"Inge",
"Ingman",
"Insel",
"Inselman",
"Ipsen",
"Irion",
"Irlbeck",
"Irmen",
"Irrgang",
"Isaak",
"Iselin",
"Isensee",
"Iszler",
"Itzen",
"Jachim",
"Jack",
"Jackel",
"Jackels",
"Jacko",
"Jacobitz",
"Jacobsohn",
"Jaeckel",
"Jaeckle",
"Jaeger",
"Jaegers",
"Jaekel",
"Jaenicke",
"Jaeschke",
"Jagels",
"Jager",
"Jago",
"Jagusch",
"Jahn",
"Jahner",
"Jahns",
"Jahr",
"Jahraus",
"Jakob",
"Jandt",
"Janick",
"Janisch",
"Janowitz",
"Jantzi",
"Japp",
"Jarchow",
"Jarka",
"Jasman",
"Jass",
"Jehle",
"Jehn",
"Jelle",
"Jenke",
"Jenner",
"Jenniges",
"Jenning",
"Jennings",
"Jentzsch",
"Jerge",
"Jerke",
"Jesberger",
"Jeschke",
"Jessel",
"Jessen",
"Jester",
"Jett",
"Jette",
"Jetter",
"Jevne",
"Jex",
"Joachim",
"Jobst",
"Jochem",
"Jochim",
"Jochum",
"Jock",
"Jockisch",
"Joeckel",
"Joerg",
"Joh",
"Johann",
"Johannes",
"Jokerst",
"Jonassen",
"Jonke",
"Jubert",
"Judd",
"Juedes",
"Juenemann",
"Juengel",
"Juenger",
"Juengling",
"Juergens",
"Juhl",
"Juhnke",
"Julich",
"Juncker",
"Jundt",
"Jung",
"Jungbluth",
"Junge",
"Jungels",
"Junger",
"Junghans",
"Jungling",
"Jungman",
"Jungmann",
"Jungwirth",
"Junker",
"Justen",
"Justman",
"Justus",
"Jutte",
"Kabel",
"Kach",
"Kachel",
"Kacher",
"Kade",
"Kaden",
"Kader",
"Kadinger",
"Kadish",
"Kadow",
"Kaechele",
"Kaeding",
"Kaefer",
"Kaelber",
"Kaercher",
"Kaeser",
"Kaestner",
"Kafer",
"Kaffenberger",
"Kage",
"Kagel",
"Kahl",
"Kahle",
"Kahler",
"Kahmann",
"Kahn",
"Kahnke",
"Kahr",
"Kahre",
"Kahrs",
"Kaiser",
"Kalb",
"Kalbach",
"Kalberer",
"Kalbfleisch",
"Kalen",
"Kaler",
"Kalich",
"Kalk",
"Kalkbrenner",
"Kalkman",
"Kalkstein",
"Kall",
"Kallen",
"Kallenbach",
"Kallenberg",
"Kallenberger",
"Kaller",
"Kallhoff",
"Kallies",
"Kallmeyer",
"Kalloch",
"Kallsen",
"Kallus",
"Kalm",
"Kalmbach",
"Kalmer",
"Kalmes",
"Kalp",
"Kalt",
"Kaltenbach",
"Kalter",
"Kalthoff",
"Kaltman",
"Kamber",
"Kamel",
"Kamens",
"Kamerer",
"Kamholz",
"Kamin",
"Kamins",
"Kamm",
"Kammann",
"Kammeraad",
"Kammerdiener",
"Kammerer",
"Kammerman",
"Kammerzell",
"Kammeyer",
"Kampe",
"Kamper",
"Kampf",
"Kampfer",
"Kamprath",
"Kamps",
"Kampwerth",
"Kamradt",
"Kamrath",
"Kan",
"Kandel",
"Kandler",
"Kandt",
"Kanis",
"Kanitz",
"Kann",
"Kanne",
"Kannenberg",
"Kanner",
"Kanning",
"Kant",
"Kanter",
"Kantner",
"Kantor",
"Kantz",
"Kanz",
"Kanzler",
"Kapaun",
"Kaper",
"Kapfer",
"Kapitan",
"Kapke",
"Kaplan",
"Kapler",
"Kapp",
"Kappel",
"Kappeler",
"Kappelman",
"Kappen",
"Kappenman",
"Kapper",
"Kappes",
"Kappler",
"Kappus",
"Kaps",
"Kapsch",
"Karas",
"Karau",
"Karber",
"Karch",
"Karcher",
"Karchner",
"Kares",
"Karg",
"Karge",
"Karger",
"Karges",
"Karhoff",
"Kari",
"Karis",
"Karl",
"Karle",
"Karlen",
"Karlin",
"Karls",
"Karlson",
"Karmann",
"Karn",
"Karnatz",
"Karner",
"Karow",
"Karp",
"Karpel",
"Karpen",
"Karper",
"Karpf",
"Karr",
"Karras",
"Karre",
"Karren",
"Karrer",
"Karsch",
"Karschner",
"Karst",
"Karstetter",
"Karter",
"Kasch",
"Kasdorf",
"Kase",
"Kaseman",
"Kasinger",
"Kaska",
"Kaske",
"Kaskel",
"Kaspar",
"Kasper",
"Kassel",
"Kasselman",
"Kassen",
"Kasser",
"Kassing",
"Kassinger",
"Kassler",
"Kassman",
"Kassner",
"Kast",
"Kastan",
"Kaste",
"Kastel",
"Kasten",
"Kaster",
"Kasting",
"Kastl",
"Kastle",
"Kastler",
"Kastner",
"Kastor",
"Kasun",
"Katch",
"Katcher",
"Kathan",
"Katter",
"Kattner",
"Katz",
"Katzenberg",
"Katzenberger",
"Katzenmeyer",
"Katzenstein",
"Katzer",
"Kaucher",
"Kauer",
"Kaufenberg",
"Kaufer",
"Kaufhold",
"Kaufmann",
"Kaul",
"Kaun",
"Kaus",
"Kausch",
"Kaut",
"Kauth",
"Kautz",
"Kautzer",
"Kautzman",
"Kayl",
"Kayser",
"Kazimer",
"Kazimir",
"Kazmaier",
"Keck",
"Keding",
"Kees",
"Keese",
"Keesecker",
"Kegel",
"Kegerreis",
"Kegler",
"Kehl",
"Kehler",
"Kehm",
"Kehn",
"Kehr",
"Kehrer",
"Kehres",
"Keicher",
"Keifer",
"Keil",
"Keiler",
"Keilholtz",
"Keilman",
"Keim",
"Keimig",
"Keinath",
"Keiner",
"Keip",
"Keiper",
"Keisler",
"Keitel",
"Keiter",
"Keith",
"Keitz",
"Kelber",
"Kelch",
"Kelchner",
"Kelker",
"Kell",
"Kellar",
"Kelle",
"Kellen",
"Kellenberger",
"Keller",
"Kellerhals",
"Kellermann",
"Kelling",
"Kellman",
"Kelln",
"Kellner",
"Kelner",
"Kelnhofer",
"Kelter",
"Kelting",
"Keltner",
"Kelzer",
"Kem",
"Kembel",
"Kemerer",
"Kemerling",
"Kemme",
"Kemmer",
"Kemmerer",
"Kemmerlin",
"Kemmerling",
"Kemna",
"Kemner",
"Kemnitz",
"Kempa",
"Kempel",
"Kempen",
"Kemper",
"Kempf",
"Kempfer",
"Kempker",
"Kempkes",
"Kemplin",
"Kempner",
"Kemps",
"Kempter",
"Kenner",
"Kenning",
"Kenter",
"Kentner",
"Kepler",
"Kepp",
"Keppel",
"Keppler",
"Kerber",
"Kerch",
"Kerchner",
"Kerl",
"Kern",
"Kerner",
"Kerper",
"Kersch",
"Kerscher",
"Kerschner",
"Kershner",
"Kerst",
"Kerstein",
"Kersting",
"Kerth",
"Kertz",
"Kesecker",
"Keske",
"Kesler",
"Kesner",
"Kessel",
"Kesselman",
"Kesselring",
"Kessenich",
"Kessinger",
"Kessler",
"Kessner",
"Kestel",
"Kesten",
"Kestenbaum",
"Kestler",
"Kestner",
"Ketelhut",
"Ketler",
"Ketner",
"Kett",
"Kettel",
"Ketter",
"Ketterer",
"Ketterhagen",
"Ketterman",
"Kettinger",
"Kettner",
"Ketz",
"Keune",
"Keusch",
"Kibel",
"Kiblinger",
"Kice",
"Kichler",
"Kick",
"Kiecker",
"Kiedaisch",
"Kiefer",
"Kieffer",
"Kiefner",
"Kiehl",
"Kiehne",
"Kiel",
"Kielman",
"Kien",
"Kienast",
"Kienbaum",
"Kienholz",
"Kienitz",
"Kienle",
"Kienlen",
"Kientz",
"Kieper",
"Kies",
"Kiesel",
"Kieser",
"Kiesewetter",
"Kiesler",
"Kiesling",
"Kiesow",
"Kiess",
"Kiessling",
"Kietzman",
"Kiff",
"Kihn",
"Kikel",
"Kilber",
"Kilgus",
"Kilian",
"Kill",
"Kille",
"Killian",
"Killinger",
"Killings",
"Killmer",
"Killmeyer",
"Kilmer",
"Kilzer",
"Kimbel",
"Kimler",
"Kimm",
"Kimmel",
"Kimmer",
"Kimmerle",
"Kimmerling",
"Kimmich",
"Kimmick",
"Kimminau",
"Kind",
"Kindel",
"Kinder",
"Kinderknecht",
"Kindig",
"Kindl",
"Kindler",
"Kinkel",
"Kinn",
"Kinnamon",
"Kinne",
"Kinneman",
"Kinner",
"Kint",
"Kinter",
"Kintop",
"Kintz",
"Kintzel",
"Kintzer",
"Kinzel",
"Kinzler",
"Kipfer",
"Kiphart",
"Kiplinger",
"Kipp",
"Kipper",
"Kippes",
"Kipping",
"Kirch",
"Kirchberg",
"Kirchen",
"Kircher",
"Kirchgessner",
"Kirchhof",
"Kirchhofer",
"Kirchhoff",
"Kirchmann",
"Kirchmeier",
"Kirchner",
"Kirkman",
"Kirmse",
"Kirn",
"Kirner",
"Kirsch",
"Kirschbaum",
"Kirschenbaum",
"Kirschenmann",
"Kirschke",
"Kirschling",
"Kirschman",
"Kirschner",
"Kirstein",
"Kirtz",
"Kisker",
"Kisler",
"Kisner",
"Kispert",
"Kiss",
"Kissel",
"Kisselburg",
"Kissinger",
"Kissler",
"Kissling",
"Kist",
"Kister",
"Kistler",
"Kistner",
"Kittel",
"Kitterman",
"Kittinger",
"Kittler",
"Kittner",
"Kitto",
"Kitz",
"Kitzerow",
"Kitzinger",
"Kitzmann",
"Klabunde",
"Klahr",
"Klaiber",
"Klamer",
"Klamm",
"Klammer",
"Klann",
"Klaphake",
"Klapp",
"Klapper",
"Klapperich",
"Klar",
"Klare",
"Klase",
"Klatt",
"Klatte",
"Klauber",
"Klaudt",
"Klauer",
"Klaus",
"Klauser",
"Klausing",
"Klausman",
"Klausner",
"Klauss",
"Klay",
"Klayman",
"Kleban",
"Klebe",
"Kleber",
"Kleck",
"Klecker",
"Klee",
"Kleeman",
"Kleemann",
"Klees",
"Kleffman",
"Kleffner",
"Kleiber",
"Kleiman",
"Klein",
"Kleinberg",
"Kleindienst",
"Kleine",
"Kleiner",
"Kleinert",
"Kleinfeld",
"Kleinfelder",
"Kleingartner",
"Kleinhans",
"Kleinheksel",
"Kleinhenz",
"Kleinke",
"Kleinknecht",
"Kleinman",
"Kleinmann",
"Kleinow",
"Kleinpeter",
"Kleinsasser",
"Kleinschmidt",
"Kleinschmit",
"Kleinsorge",
"Kleis",
"Kleiser",
"Kleiss",
"Kleist",
"Klem",
"Klemens",
"Klemm",
"Klemme",
"Klemmer",
"Klemp",
"Klemz",
"Klenk",
"Klenz",
"Klepfer",
"Klepper",
"Kleppinger",
"Kless",
"Klessig",
"Klett",
"Klette",
"Kleve",
"Kleven",
"Klever",
"Kley",
"Klich",
"Klick",
"Kliebert",
"Kliewer",
"Klinck",
"Kling",
"Klingaman",
"Klingbeil",
"Klingberg",
"Klinge",
"Klingel",
"Klingele",
"Klingenberg",
"Klinger",
"Klingerman",
"Klingler",
"Klingman",
"Klingner",
"Klingshirn",
"Klingsporn",
"Klink",
"Klinke",
"Klinkenberg",
"Klinker",
"Klinkhammer",
"Klinkner",
"Klinner",
"Klint",
"Klipfel",
"Klitz",
"Klitzke",
"Klockow",
"Kloehn",
"Kloepfer",
"Kloeppel",
"Kloes",
"Kloesel",
"Klohr",
"Kloiber",
"Klopf",
"Klopfenstein",
"Klopp",
"Kloppenburg",
"Klose",
"Kloss",
"Klossner",
"Kloster",
"Klostermann",
"Klotz",
"Klotzbach",
"Klover",
"Kluck",
"Kludt",
"Kluender",
"Kluever",
"Klug",
"Kluge",
"Kluger",
"Klugman",
"Klumb",
"Klump",
"Klumpp",
"Klunder",
"Klundt",
"Klunk",
"Kluthe",
"Klutz",
"Kluver",
"Knab",
"Knabb",
"Knabe",
"Knack",
"Knackstedt",
"Knake",
"Knape",
"Knapke",
"Knapp",
"Knappe",
"Knappenberger",
"Knapper",
"Knauber",
"Knauer",
"Knauf",
"Knauff",
"Knaup",
"Knaus",
"Knauss",
"Knaust",
"Knauth",
"Knebel",
"Knecht",
"Knechtel",
"Knee",
"Kneer",
"Kneifl",
"Kneipp",
"Kneller",
"Knepp",
"Knepper",
"Knerr",
"Knetter",
"Knick",
"Knief",
"Kniep",
"Knier",
"Knieriem",
"Knierim",
"Knies",
"Kniess",
"Knill",
"Knipfer",
"Knipp",
"Knippenberg",
"Knippers",
"Kniskern",
"Knispel",
"Knittel",
"Knitter",
"Knobel",
"Knoblauch",
"Knoblich",
"Knobloch",
"Knoch",
"Knoche",
"Knochel",
"Knock",
"Knocke",
"Knodel",
"Knoebel",
"Knoell",
"Knoke",
"Knoll",
"Knolle",
"Knollenberg",
"Knollman",
"Knopf",
"Knopp",
"Knorr",
"Knost",
"Knoth",
"Knothe",
"Knott",
"Knueppel",
"Knull",
"Knupp",
"Knuppel",
"Knuteson",
"Knuth",
"Knutzen",
"Koback",
"Kobal",
"Kobbe",
"Kobe",
"Kobel",
"Kober",
"Koberstein",
"Kobes",
"Kobler",
"Koblitz",
"Kobold",
"Kobs",
"Koch",
"Kochel",
"Kochenderfer",
"Kochendorfer",
"Kocher",
"Kochersperger",
"Kochert",
"Kochman",
"Kock",
"Koebel",
"Koebler",
"Koecher",
"Koeck",
"Koegel",
"Koegler",
"Koehler",
"Koehnlein",
"Koel",
"Koelbl",
"Koelker",
"Koelle",
"Koeller",
"Koelling",
"Koellner",
"Koelsch",
"Koelzer",
"Koenecke",
"Koeneke",
"Koenig",
"Koenigs",
"Koenigsberg",
"Koeninger",
"Koep",
"Koepf",
"Koepke",
"Koepp",
"Koeppe",
"Koeppel",
"Koeppen",
"Koepsel",
"Koerber",
"Koering",
"Koerner",
"Koerper",
"Koerth",
"Koestler",
"Koestner",
"Koeth",
"Koether",
"Koetter",
"Koetting",
"Koetz",
"Koffman",
"Kofler",
"Kogel",
"Kogler",
"Kohl",
"Kohlbeck",
"Kohlberg",
"Kohlenberg",
"Kohler",
"Kohles",
"Kohlhaas",
"Kohlhepp",
"Kohlhoff",
"Kohlmann",
"Kohlmeier",
"Kohlmeyer",
"Kohls",
"Kohne",
"Kohnen",
"Kohnert",
"Kohnke",
"Kohorst",
"Kohrman",
"Kohrs",
"Kohtz",
"Kolander",
"Kolb",
"Kolbe",
"Kolbeck",
"Kolber",
"Kolberg",
"Kolbert",
"Kolbo",
"Kolbus",
"Kolden",
"Koler",
"Kolich",
"Kolker",
"Koll",
"Kollars",
"Kollasch",
"Kollath",
"Kolle",
"Koller",
"Kollin",
"Kollmann",
"Kollmar",
"Kollmeyer",
"Kollmorgen",
"Kolm",
"Kolp",
"Kolpack",
"Kolpin",
"Kolson",
"Kolter",
"Kolterman",
"Koltes",
"Koltz",
"Komm",
"Kommer",
"Konig",
"Konitzer",
"Konkel",
"Konkler",
"Konkol",
"Konold",
"Konow",
"Konrad",
"Konrath",
"Kontz",
"Konz",
"Konzen",
"Koob",
"Koop",
"Koops",
"Koos",
"Kooser",
"Kopas",
"Koper",
"Kopf",
"Kopfer",
"Kopischke",
"Kopitzke",
"Koplin",
"Kopp",
"Koppel",
"Kopper",
"Koppinger",
"Kopplin",
"Kops",
"Korb",
"Korber",
"Kordes",
"Kordsmeier",
"Korell",
"Korf",
"Korff",
"Korfhage",
"Korman",
"Kormann",
"Korn",
"Kornberg",
"Kornely",
"Korner",
"Kornfeld",
"Kornhauser",
"Kornick",
"Kornman",
"Korp",
"Korst",
"Kort",
"Korte",
"Korth",
"Kortum",
"Kortz",
"Korver",
"Kos",
"Kosel",
"Koske",
"Koss",
"Kossack",
"Kosse",
"Kossler",
"Kossman",
"Kossmann",
"Kost",
"Kosten",
"Kostenbader",
"Kosterman",
"Kostman",
"Kostner",
"Koth",
"Kothe",
"Kothmann",
"Kotler",
"Kott",
"Kotter",
"Kottke",
"Kottler",
"Kottman",
"Kottwitz",
"Kotz",
"Kotzen",
"Kover",
"Kowalke",
"Kowall",
"Kowalske",
"Kowis",
"Kowitz",
"Koy",
"Kraak",
"Kraatz",
"Krach",
"Krack",
"Kracke",
"Kracker",
"Kraeger",
"Kraemer",
"Krafft",
"Kraft",
"Krage",
"Krager",
"Krah",
"Krahe",
"Krahl",
"Krahling",
"Krahmer",
"Krahn",
"Krakauer",
"Krall",
"Kram",
"Kramb",
"Krambeck",
"Kramer",
"Kramlich",
"Kramm",
"Kramme",
"Krammer",
"Krammes",
"Kramp",
"Krampe",
"Krampf",
"Krampitz",
"Kraner",
"Kranich",
"Kraning",
"Krank",
"Krans",
"Krantz",
"Kranz",
"Kranzler",
"Krapf",
"Krapp",
"Krasner",
"Krass",
"Krassner",
"Kratt",
"Kratz",
"Kratzer",
"Kratzke",
"Krauel",
"Kraus",
"Krause",
"Krauser",
"Kraushaar",
"Krauskopf",
"Krauss",
"Krausse",
"Kraut",
"Krauter",
"Krauth",
"Krautheim",
"Krautkramer",
"Kray",
"Krayer",
"Krebbs",
"Krebs",
"Krebsbach",
"Krech",
"Kreft",
"Kregel",
"Kreger",
"Kreh",
"Kreher",
"Kreider",
"Kreidler",
"Kreie",
"Kreifels",
"Kreiger",
"Kreikemeier",
"Kreil",
"Kreiling",
"Kreiner",
"Kreis",
"Kreisberg",
"Kreischer",
"Kreisel",
"Kreiser",
"Kreisler",
"Kreiss",
"Kreiter",
"Kreitler",
"Kreitman",
"Kreitner",
"Kreitz",
"Kreitzer",
"Krekel",
"Krekeler",
"Krell",
"Kreller",
"Kremer",
"Krengel",
"Krenke",
"Krentz",
"Krenz",
"Krenzer",
"Krenzke",
"Krepp",
"Krepps",
"Kresch",
"Kress",
"Kresse",
"Kresser",
"Kressler",
"Kretlow",
"Kretschman",
"Kretschmar",
"Kretz",
"Kretzer",
"Kretzschmar",
"Kreuger",
"Kreul",
"Kreuscher",
"Kreuter",
"Kreutz",
"Kreutzberg",
"Kreutzer",
"Kreuz",
"Kreuzer",
"Krey",
"Kreyer",
"Kreyling",
"Kribs",
"Krichbaum",
"Krick",
"Kriebel",
"Krieg",
"Krieger",
"Kriegler",
"Kriegshauser",
"Kriel",
"Krienke",
"Krier",
"Kries",
"Kriese",
"Kriesel",
"Krieser",
"Kriete",
"Krietemeyer",
"Kriger",
"Krill",
"Krim",
"Krimm",
"Krimmel",
"Krimmer",
"Kring",
"Krings",
"Krinke",
"Krisch",
"Krise",
"Kriss",
"Kristan",
"Kriston",
"Kritz",
"Kritzman",
"Krob",
"Kroboth",
"Krock",
"Krocker",
"Krodel",
"Kroeger",
"Kroeker",
"Kroener",
"Kroening",
"Kroenke",
"Kroeplin",
"Kroger",
"Krogmann",
"Kroh",
"Krohn",
"Krohne",
"Krok",
"Kroll",
"Krome",
"Kromer",
"Kron",
"Kronberg",
"Kronberger",
"Krone",
"Kronebusch",
"Kronenberg",
"Kronenberger",
"Kronenwetter",
"Kroner",
"Krones",
"Kroninger",
"Kronk",
"Kropf",
"Kropp",
"Krosch",
"Kross",
"Kroth",
"Krotz",
"Krotzer",
"Kruck",
"Kruckeberg",
"Kruckenberg",
"Krueger",
"Kruel",
"Krug",
"Kruger",
"Krugman",
"Kruis",
"Krull",
"Krum",
"Krumenacker",
"Krumholz",
"Krumm",
"Krumme",
"Krummel",
"Krummen",
"Krump",
"Krumrey",
"Krupke",
"Krupp",
"Krus",
"Kruschke",
"Kruse",
"Krusemark",
"Kruser",
"Kruth",
"Krutsch",
"Krutz",
"Kubach",
"Kube",
"Kubler",
"Kuch",
"Kuchenbecker",
"Kuchenbrod",
"Kuchenmeister",
"Kucher",
"Kuck",
"Kuebel",
"Kueber",
"Kuebler",
"Kuechenmeister",
"Kuechler",
"Kueck",
"Kuecker",
"Kuefler",
"Kuehl",
"Kuehler",
"Kuehn",
"Kuehne",
"Kuehnel",
"Kuehner",
"Kuehnert",
"Kuehnl",
"Kuehnle",
"Kueker",
"Kuempel",
"Kuennen",
"Kuenning",
"Kuenstler",
"Kuepper",
"Kuester",
"Kueter",
"Kuethe",
"Kuether",
"Kufahl",
"Kuffel",
"Kuffner",
"Kugel",
"Kugler",
"Kuhl",
"Kuhle",
"Kuhlmann",
"Kuhn",
"Kuhne",
"Kuhnel",
"Kuhner",
"Kuhnert",
"Kuhnke",
"Kuhnle",
"Kuhrt",
"Kuhs",
"Kuka",
"Kukuk",
"Kull",
"Kullberg",
"Kullmann",
"Kulm",
"Kulow",
"Kulp",
"Kultgen",
"Kulzer",
"Kumler",
"Kummer",
"Kummerer",
"Kummerow",
"Kump",
"Kumpe",
"Kumpf",
"Kunau",
"Kunde",
"Kundinger",
"Kundrat",
"Kunert",
"Kunkel",
"Kunkler",
"Kuno",
"Kunst",
"Kunstman",
"Kuntz",
"Kuntzman",
"Kunz",
"Kunzelman",
"Kunzer",
"Kunzler",
"Kunzman",
"Kupfer",
"Kupferberg",
"Kupferer",
"Kupferman",
"Kupper",
"Kuriger",
"Kurilla",
"Kurk",
"Kurman",
"Kurr",
"Kurre",
"Kurschner",
"Kurt",
"Kurtenbach",
"Kurth",
"Kurtz",
"Kurtzer",
"Kurtzman",
"Kurtzweil",
"Kury",
"Kurz",
"Kurzweil",
"Kus",
"Kusch",
"Kuschel",
"Kuse",
"Kusel",
"Kuser",
"Kuske",
"Kuss",
"Kussman",
"Kussmaul",
"Kussow",
"Kuster",
"Kusterer",
"Kutach",
"Kuter",
"Kutner",
"Kutsch",
"Kutscher",
"Kutter",
"Kuttler",
"Kutz",
"Kutzer",
"Kutzke",
"Kutzler",
"Kutzner",
"Kyler",
"Kyser",
"Lab",
"Labahn",
"Labenz",
"Laber",
"Labus",
"Lacher",
"Lachmann",
"Lachner",
"Lackman",
"Lacks",
"Ladehoff",
"Laden",
"Lader",
"Ladig",
"Ladner",
"Laehn",
"Laessig",
"Lafler",
"Lafrentz",
"Lafrenz",
"Lahm",
"Lahn",
"Lahner",
"Lahr",
"Laib",
"Laible",
"Laidig",
"Laier",
"Lais",
"Lamberg",
"Lamberty",
"Lambrecht",
"Lamparter",
"Lampe",
"Lampman",
"Lamprecht",
"Landaker",
"Landau",
"Landauer",
"Landefeld",
"Lander",
"Landgraf",
"Landgrebe",
"Landherr",
"Landis",
"Landmann",
"Landmesser",
"Landsberg",
"Landsberger",
"Landsiedel",
"Landsman",
"Landt",
"Landwehr",
"Laner",
"Langager",
"Langbein",
"Langberg",
"Lange",
"Langel",
"Langen",
"Langenbach",
"Langenberg",
"Langendorf",
"Langenfeld",
"Langer",
"Langerman",
"Langfeldt",
"Langguth",
"Langhans",
"Langlitz",
"Langner",
"Langolf",
"Langreck",
"Langrehr",
"Langs",
"Langsam",
"Langsdorf",
"Lankenau",
"Lann",
"Lanser",
"Lanterman",
"Lantz",
"Lantzer",
"Lanz",
"Lanzer",
"Lape",
"Lapp",
"Lappe",
"Lappen",
"Larch",
"Larger",
"Larscheid",
"Lasch",
"Laser",
"Laske",
"Lasser",
"Lassig",
"Lassman",
"Last",
"Lastinger",
"Latsch",
"Lattner",
"Latz",
"Latzke",
"Lau",
"Laub",
"Laubach",
"Laubacher",
"Laube",
"Laubenstein",
"Laubenthal",
"Laubert",
"Laubhan",
"Lauck",
"Laucks",
"Laude",
"Laudenbach",
"Lauderman",
"Laudick",
"Laudon",
"Lauer",
"Lauerman",
"Lauersdorf",
"Lauf",
"Laufenberg",
"Laufer",
"Lauff",
"Lauffer",
"Laufman",
"Laug",
"Lauinger",
"Laumann",
"Laumer",
"Laun",
"Laur",
"Laurich",
"Lausch",
"Lauser",
"Lauster",
"Laut",
"Lautenbach",
"Lautenschlager",
"Lauter",
"Lauterbach",
"Lauth",
"Lautner",
"Lautt",
"Lautz",
"Lavis",
"Lax",
"Lay",
"Layer",
"Layher",
"Layman",
"Lazer",
"Leander",
"Lebeck",
"Leben",
"Lebens",
"Leber",
"Lebert",
"Leblang",
"Lebold",
"Lebrecht",
"Lebsack",
"Lebus",
"Lechler",
"Lechner",
"Leck",
"Lecker",
"Leder",
"Lederman",
"Ledermann",
"Leese",
"Leeser",
"Leffel",
"Leffler",
"Legleiter",
"Legler",
"Lehde",
"Lehl",
"Lehman",
"Lehmann",
"Lehmberg",
"Lehmer",
"Lehn",
"Lehne",
"Lehnen",
"Lehner",
"Lehnhardt",
"Lehnhoff",
"Lehning",
"Lehr",
"Lehrer",
"Lehrke",
"Lehrmann",
"Leibert",
"Leibfried",
"Leibold",
"Leibrock",
"Leicher",
"Leichner",
"Leicht",
"Leichter",
"Leid",
"Leidel",
"Leider",
"Leidig",
"Leiding",
"Leidner",
"Leiendecker",
"Leier",
"Leifer",
"Leifheit",
"Leimbach",
"Leimer",
"Leimkuehler",
"Leinart",
"Leinbach",
"Leinberger",
"Leindecker",
"Leinen",
"Leinenbach",
"Leingang",
"Leininger",
"Leins",
"Leinwand",
"Leinweber",
"Leipold",
"Leipzig",
"Leis",
"Leischner",
"Leise",
"Leisen",
"Leisenring",
"Leiser",
"Leisner",
"Leist",
"Leisten",
"Leister",
"Leistikow",
"Leistner",
"Leite",
"Leiter",
"Leiterman",
"Leitheiser",
"Leiting",
"Leitner",
"Leitschuh",
"Leitz",
"Leitzel",
"Leitzke",
"Lell",
"Lembeck",
"Lemberg",
"Lemberger",
"Lemert",
"Lemler",
"Lemmer",
"Lemmerman",
"Lemp",
"Lempert",
"Lender",
"Lenderman",
"Leng",
"Lenger",
"Lengerich",
"Lenhoff",
"Lenius",
"Lenke",
"Lenker",
"Lenning",
"Lenser",
"Lensing",
"Lenth",
"Lentner",
"Lentz",
"Lenz",
"Lenze",
"Lenzmeier",
"Lenzner",
"Leo",
"Leonhard",
"Leonhardt",
"Leonhart",
"Lepp",
"Lepper",
"Leppert",
"Lerch",
"Lerche",
"Lersch",
"Lesch",
"Lescher",
"Leseberg",
"Leser",
"Leshner",
"Leske",
"Lesser",
"Lessig",
"Lessing",
"Lessman",
"Lessner",
"Letcher",
"Letsch",
"Letsche",
"Lett",
"Letterman",
"Letz",
"Leubner",
"Leuenberger",
"Leuer",
"Leugers",
"Leupold",
"Leuschen",
"Leuthauser",
"Leuthner",
"Leutz",
"Levenhagen",
"Lex",
"Ley",
"Leyendecker",
"Leyes",
"Leyh",
"Leyrer",
"Libbert",
"Liber",
"Lich",
"Licht",
"Lichtenberg",
"Lichtenberger",
"Lichtenfeld",
"Lichtenfels",
"Lichtenstein",
"Lichtenwalner",
"Lichtenwalter",
"Lichter",
"Lickert",
"Lickteig",
"Lieb",
"Liebau",
"Liebe",
"Liebel",
"Liebelt",
"Liebenow",
"Lieber",
"Liebermann",
"Liebert",
"Liebhart",
"Liebich",
"Liebig",
"Liebl",
"Liebler",
"Liebling",
"Liebmann",
"Liebold",
"Liebrecht",
"Liebsch",
"Liebscher",
"Lied",
"Liedke",
"Liedl",
"Liedtke",
"Liefer",
"Liegel",
"Liegl",
"Liehr",
"Liem",
"Lienau",
"Lienemann",
"Lienhart",
"Lier",
"Lierz",
"Liesch",
"Liese",
"Lieser",
"Ligman",
"Lilienthal",
"Liller",
"Lillich",
"Lillig",
"Limbach",
"Limbacher",
"Limberg",
"Limburg",
"Limke",
"Limmer",
"Linck",
"Linda",
"Lindau",
"Lindauer",
"Linde",
"Lindekugel",
"Lindemann",
"Lindemuth",
"Lindenbaum",
"Lindenberg",
"Lindenberger",
"Lindenfelser",
"Lindenmayer",
"Lindenmeyer",
"Lindenmuth",
"Linder",
"Linderer",
"Linderman",
"Lindhorst",
"Lindig",
"Lindle",
"Lindler",
"Lindley",
"Lindner",
"Lindow",
"Lindstedt",
"Lindt",
"Linen",
"Ling",
"Lingel",
"Lingelbach",
"Lingner",
"Linhardt",
"Link",
"Linke",
"Linker",
"Linkhart",
"Linn",
"Linne",
"Linnebur",
"Linner",
"Lins",
"Linscheid",
"Linse",
"Linsenmeyer",
"Lintner",
"Lintz",
"Linz",
"Linzer",
"Linzmeier",
"Lipka",
"Lipke",
"Lipp",
"Lippard",
"Lippe",
"Lippert",
"Lippmann",
"Lippold",
"Lischer",
"Lissner",
"List",
"Litfin",
"Litka",
"Litke",
"Litscher",
"Littau",
"Litterer",
"Littig",
"Litzau",
"Litzinger",
"Livelsberger",
"Livings",
"Lobe",
"Lobel",
"Lober",
"Loberg",
"Lobitz",
"Lobner",
"Loch",
"Lochmann",
"Lochner",
"Lockert",
"Loder",
"Lodermeier",
"Loeb",
"Loebach",
"Loebel",
"Loeber",
"Loebig",
"Loebs",
"Loeffel",
"Loeffelholz",
"Loeffler",
"Loehr",
"Loehrer",
"Loehrke",
"Loertscher",
"Loerzel",
"Loesch",
"Loesche",
"Loescher",
"Loesel",
"Loeser",
"Loethen",
"Loetscher",
"Loew",
"Loewe",
"Loewenstein",
"Loewenthal",
"Loewer",
"Loffler",
"Lofink",
"Loga",
"Loge",
"Logel",
"Loges",
"Lohan",
"Lohmeier",
"Lohmeyer",
"Lohmiller",
"Lohn",
"Lohner",
"Lohnes",
"Lohr",
"Lohrenz",
"Lohrer",
"Lohrey",
"Lohrke",
"Lohrmann",
"Lohse",
"Loibl",
"Lonsinger",
"Loose",
"Looser",
"Lopp",
"Loppnow",
"Lorber",
"Lorch",
"Lorek",
"Lorentz",
"Lorenz",
"Lorey",
"Lorick",
"Lorig",
"Loris",
"Loschen",
"Loser",
"Loss",
"Lossing",
"Loth",
"Lotspeich",
"Lott",
"Lotter",
"Lottes",
"Lottman",
"Lotz",
"Lotze",
"Lotzer",
"Lowe",
"Lowenberg",
"Lowenstein",
"Lowenthal",
"Lowitz",
"Loy",
"Luber",
"Lubold",
"Luchs",
"Lucht",
"Lucius",
"Luck",
"Lucke",
"Luckenbach",
"Luckert",
"Luckhardt",
"Luckner",
"Ludeke",
"Ludemann",
"Ludens",
"Ludewig",
"Ludin",
"Ludke",
"Ludolph",
"Ludtke",
"Ludwig",
"Ludwin",
"Luecht",
"Lueck",
"Luedeke",
"Luedeman",
"Luepke",
"Luers",
"Luft",
"Luftig",
"Luger",
"Luh",
"Luhmann",
"Lukas",
"Lukefahr",
"Lulay",
"Lull",
"Lumm",
"Lumpp",
"Lunden",
"Lundt",
"Lung",
"Luntz",
"Lunz",
"Lunzer",
"Lupfer",
"Lupkes",
"Luplow",
"Lurz",
"Lusch",
"Luscher",
"Lust",
"Luster",
"Lustig",
"Luth",
"Luthe",
"Luther",
"Lutter",
"Lutterman",
"Lutz",
"Lutze",
"Lutzke",
"Lutzow",
"Lux",
"Luxenberg",
"Luy",
"Luz",
"Mabus",
"Machamer",
"Macher",
"Macht",
"Mackenthun",
"Macker",
"Mackert",
"Madaus",
"Mader",
"Mades",
"Madl",
"Madler",
"Maeder",
"Maenner",
"Maertz",
"Maerz",
"Magan",
"Magers",
"Mages",
"Magsamen",
"Magstadt",
"Mahle",
"Mahler",
"Mahlke",
"Mahlman",
"Mahlmann",
"Mahlstedt",
"Mahr",
"Mahrt",
"Maier",
"Maike",
"Maikranz",
"Mailand",
"Mailander",
"Maile",
"Mainz",
"Mainzer",
"Mais",
"Maisel",
"Maixner",
"Majer",
"Majerus",
"Malburg",
"Malchow",
"Maler",
"Malitz",
"Maller",
"Mallow",
"Malsch",
"Malter",
"Maltsberger",
"Malueg",
"Malwitz",
"Malz",
"Mammen",
"Manbeck",
"Mandel",
"Mander",
"Manderscheid",
"Maner",
"Manfred",
"Mang",
"Mangel",
"Mangelsdorf",
"Mangold",
"Manhardt",
"Mannel",
"Manner",
"Mannes",
"Manns",
"Mansbach",
"Mansberger",
"Manske",
"Mantei",
"Mantel",
"Manteufel",
"Mantey",
"Manthe",
"Manthei",
"Manthey",
"Manweiler",
"Manzer",
"Mar",
"Marbach",
"Marburger",
"Marcks",
"Marcus",
"Marder",
"Maren",
"Margheim",
"Margraf",
"Marien",
"Mark",
"Marker",
"Markert",
"Markgraf",
"Markman",
"Marks",
"Markt",
"Markus",
"Marolf",
"Marotz",
"Marquardt",
"Marquart",
"Marr",
"Marschall",
"Marschel",
"Marschke",
"Marschner",
"Marsteller",
"Mart",
"Marte",
"Marth",
"Marthaler",
"Marthaller",
"Martini",
"Martis",
"Marts",
"Martus",
"Martz",
"Marwitz",
"Marz",
"Marzolf",
"Masch",
"Mascher",
"Maschke",
"Masel",
"Maser",
"Mask",
"Maske",
"Masker",
"Masoner",
"Massing",
"Massoth",
"Mast",
"Masteller",
"Masur",
"Matern",
"Matheis",
"Mathern",
"Mathia",
"Mathwig",
"Matt",
"Matter",
"Mattern",
"Matthai",
"Mattheis",
"Matthes",
"Matthey",
"Matthias",
"Mattke",
"Mattus",
"Matzek",
"Matzen",
"Matzke",
"Matzner",
"Mauch",
"Mauck",
"Maue",
"Mauel",
"Mauer",
"Mauerman",
"Maugans",
"Mauk",
"Maul",
"Maule",
"Maurer",
"Mauritz",
"Maus",
"Mauser",
"Mausolf",
"Mauss",
"Mausser",
"Mauthe",
"Mautner",
"Mavis",
"Max",
"Mayen",
"Mayer",
"Mayers",
"Mayr",
"Mech",
"Mechler",
"Mechling",
"Meck",
"Mecke",
"Meckel",
"Meckes",
"Mecklenburg",
"Meckstroth",
"Meder",
"Medinger",
"Meese",
"Meetze",
"Meffert",
"Meger",
"Mehl",
"Mehle",
"Mehlenbacher",
"Mehler",
"Mehling",
"Mehlman",
"Mehr",
"Mehrer",
"Mehrhoff",
"Mehring",
"Mehringer",
"Meidinger",
"Meidl",
"Meier",
"Meilinger",
"Mein",
"Meinberg",
"Meinen",
"Meiner",
"Meinhardt",
"Meinhold",
"Meinholz",
"Meininger",
"Meins",
"Meinzer",
"Meiring",
"Meis",
"Meise",
"Meisel",
"Meisenbach",
"Meisenheimer",
"Meisenhelder",
"Meisenzahl",
"Meiser",
"Meisner",
"Meiss",
"Meissner",
"Meister",
"Meitner",
"Meitz",
"Meitzler",
"Meixner",
"Mekelburg",
"Melander",
"Melcher",
"Melchert",
"Melchior",
"Melder",
"Melhorn",
"Melis",
"Melius",
"Mell",
"Mellenthin",
"Meller",
"Mellert",
"Mellies",
"Mellin",
"Melling",
"Mellinger",
"Mellman",
"Meltzer",
"Melzer",
"Memmer",
"Menck",
"Mende",
"Menden",
"Mendler",
"Meng",
"Menge",
"Mengel",
"Menger",
"Menges",
"Menius",
"Menking",
"Menn",
"Menne",
"Menner",
"Mennig",
"Menning",
"Menninger",
"Menold",
"Mentel",
"Mentzer",
"Menze",
"Menzel",
"Menzer",
"Merck",
"Merfeld",
"Mergel",
"Mergens",
"Mergenthaler",
"Merges",
"Merk",
"Merkel",
"Merker",
"Merkl",
"Merklein",
"Merklin",
"Merkling",
"Merklinger",
"Merkt",
"Merle",
"Mersch",
"Mersinger",
"Mersman",
"Mertins",
"Mertz",
"Merz",
"Mesch",
"Mescher",
"Mesecher",
"Meseck",
"Meseke",
"Mesler",
"Mesman",
"Messer",
"Messerschmidt",
"Messimer",
"Messing",
"Messinger",
"Messler",
"Messman",
"Messmer",
"Meth",
"Methe",
"Methner",
"Metsch",
"Metscher",
"Metten",
"Metter",
"Mettert",
"Metty",
"Metz",
"Metze",
"Metzel",
"Metzen",
"Metzer",
"Metzinger",
"Metzler",
"Metzner",
"Meuer",
"Meurer",
"Meuser",
"Meuth",
"Mews",
"Meyer",
"Meyerhoff",
"Mezger",
"Michaelis",
"Michalk",
"Michelman",
"Michels",
"Michl",
"Mick",
"Mickel",
"Middendorf",
"Mierau",
"Mietz",
"Migl",
"Mihm",
"Mikles",
"Milbrandt",
"Milbrath",
"Milch",
"Milde",
"Mildenberger",
"Milich",
"Miltenberger",
"Miltner",
"Miltz",
"Milz",
"Minck",
"Minckler",
"Mincks",
"Minden",
"Mindt",
"Minge",
"Minges",
"Mingledorff",
"Mininger",
"Mink",
"Minke",
"Minkler",
"Minneman",
"Minner",
"Minnich",
"Minnig",
"Minning",
"Minor",
"Mintz",
"Misch",
"Mische",
"Mischel",
"Mischke",
"Mischo",
"Missel",
"Missimer",
"Missler",
"Mistler",
"Mitschke",
"Mittag",
"Mittel",
"Mittelman",
"Mittelstadt",
"Mittelstaedt",
"Mittendorf",
"Mitter",
"Mittleider",
"Mittler",
"Mittman",
"Moch",
"Mochel",
"Mock",
"Model",
"Moebius",
"Moeck",
"Moeckel",
"Moede",
"Moeder",
"Moehling",
"Moehn",
"Moellering",
"Moench",
"Moening",
"Moerke",
"Moers",
"Moesch",
"Moeser",
"Moessner",
"Mogck",
"Mogel",
"Mohler",
"Mohn",
"Mohr",
"Mohrbacher",
"Mohs",
"Molder",
"Moler",
"Molis",
"Moll",
"Molle",
"Mollman",
"Molt",
"Moltz",
"Molz",
"Molzahn",
"Momberger",
"Mon",
"Mondloch",
"Mondschein",
"Monheit",
"Moninger",
"Monn",
"Monnig",
"Monninger",
"Montag",
"Moog",
"Moos",
"Morasch",
"Morel",
"Moretz",
"Morgen",
"Morgenroth",
"Morgenstern",
"Morgenthaler",
"Mori",
"Moritz",
"Morlock",
"Mormann",
"Morris",
"Morsch",
"Mosbacher",
"Mosch",
"Mosel",
"Moseman",
"Mosler",
"Mosner",
"Mosser",
"Mossholder",
"Mossing",
"Mossman",
"Most",
"Mosteller",
"Motschenbacher",
"Mott",
"Motte",
"Motter",
"Mottern",
"Mower",
"Much",
"Muchow",
"Muck",
"Muckenfuss",
"Mucker",
"Muckerheide",
"Muckle",
"Mueck",
"Muecke",
"Muehl",
"Muehlbauer",
"Muehlberger",
"Muehleisen",
"Muehlhausen",
"Muehling",
"Mueller",
"Muellner",
"Muench",
"Muenchow",
"Muenks",
"Muenster",
"Muenz",
"Muenzer",
"Muessig",
"Mueth",
"Mueting",
"Mugge",
"Muhl",
"Muhlbach",
"Muhlbauer",
"Muhle",
"Muhlenkamp",
"Muhlestein",
"Muhlhauser",
"Muhr",
"Muhs",
"Mulder",
"Mullenbach",
"Muller",
"Mummert",
"Mumper",
"Munch",
"Mund",
"Mundhenk",
"Mundinger",
"Mundorf",
"Mundorff",
"Mundt",
"Munk",
"Munsinger",
"Munster",
"Munsterman",
"Muntz",
"Munz",
"Munzer",
"Murach",
"Murbach",
"Murman",
"Murr",
"Mursch",
"Muscat",
"Muskat",
"Muskopf",
"Musolf",
"Musser",
"Mussman",
"Muth",
"Muthig",
"Mutschler",
"Mutti",
"Naab",
"Naas",
"Naasz",
"Naatz",
"Naber",
"Nabers",
"Nabholz",
"Nachbar",
"Nacht",
"Nachtigal",
"Nachtigall",
"Nachtman",
"Nack",
"Nacke",
"Nadel",
"Nader",
"Nadig",
"Nadler",
"Naeger",
"Naeve",
"Nagel",
"Nagengast",
"Nager",
"Nagle",
"Nagler",
"Nahm",
"Nahrwold",
"Naiser",
"Nansel",
"Napp",
"Narr",
"Nartker",
"Nase",
"Naser",
"Nass",
"Nassau",
"Nasser",
"Nast",
"Nathe",
"Natter",
"Natzke",
"Nau",
"Nauer",
"Nauert",
"Nauman",
"Naumann",
"Naus",
"Nauss",
"Nave",
"Nazarenus",
"Nebel",
"Nebergall",
"Nebgen",
"Neder",
"Neeb",
"Neef",
"Neer",
"Neff",
"Nefzger",
"Neher",
"Nehrbass",
"Nehring",
"Neibert",
"Neider",
"Neiderer",
"Neidert",
"Neidhardt",
"Neidhart",
"Neidig",
"Neidlinger",
"Neier",
"Neifert",
"Neiger",
"Neils",
"Nein",
"Neis",
"Neisen",
"Neiser",
"Neises",
"Neisler",
"Neiss",
"Neiswonger",
"Neitz",
"Neitzel",
"Neitzke",
"Neller",
"Neltner",
"Nembhard",
"Nemetz",
"Nemmers",
"Nennig",
"Nenninger",
"Nentwig",
"Nepper",
"Neske",
"Ness",
"Nessel",
"Nesselrodt",
"Nessen",
"Nesser",
"Nestel",
"Nester",
"Nestler",
"Nestlerode",
"Neth",
"Nethers",
"Nett",
"Netter",
"Nettesheim",
"Netz",
"Netzel",
"Neu",
"Neubarth",
"Neubauer",
"Neubaum",
"Neubecker",
"Neuber",
"Neuberger",
"Neubert",
"Neuburger",
"Neudecker",
"Neuendorf",
"Neuenfeldt",
"Neuens",
"Neuenschwander",
"Neuer",
"Neufeld",
"Neufeldt",
"Neuffer",
"Neugebauer",
"Neuhardt",
"Neuhart",
"Neuhaus",
"Neuhauser",
"Neuhoff",
"Neujahr",
"Neukirch",
"Neumann",
"Neumeier",
"Neumeister",
"Neumeyer",
"Neupert",
"Neuroth",
"Neuse",
"Neuser",
"Neustadt",
"Neustadter",
"Neuwirth",
"Nevel",
"Nevius",
"New",
"Ney",
"Neyer",
"Nibert",
"Nichter",
"Nicklas",
"Nicklaus",
"Nickles",
"Nickol",
"Nickolaus",
"Nicks",
"Nida",
"Niebauer",
"Niebel",
"Nieberding",
"Niebling",
"Nieder",
"Niederberger",
"Niederer",
"Niederkorn",
"Niedermayer",
"Niedermeier",
"Niedermeyer",
"Niedert",
"Niedfeldt",
"Niedringhaus",
"Niemeier",
"Niemuth",
"Nienow",
"Nienstedt",
"Nier",
"Niermann",
"Niesen",
"Niess",
"Niessen",
"Nieters",
"Nietz",
"Nihart",
"Niklas",
"Nikodem",
"Nikolas",
"Nikolaus",
"Nimmer",
"Nimtz",
"Nimz",
"Nipp",
"Nipper",
"Nippert",
"Niss",
"Nissen",
"Nistler",
"Nitsche",
"Nitz",
"Nitzsche",
"Nix",
"Noa",
"Noack",
"Nobel",
"Nobis",
"Noble",
"Noelke",
"Noell",
"Noelle",
"Noeske",
"Noetzel",
"Noffsinger",
"Nofsinger",
"Noftz",
"Nofziger",
"Nohe",
"Nohl",
"Nohr",
"Nolde",
"Nolder",
"Nolf",
"Noll",
"Nolle",
"Nollen",
"Noller",
"Nolte",
"Nondorf",
"Nonnemacher",
"Nonnenmacher",
"Nopper",
"Norder",
"Nordhagen",
"Nordhaus",
"Nordhausen",
"Nordick",
"Nordman",
"Nordmann",
"Nordmeyer",
"Norenberg",
"Nork",
"Normann",
"Norr",
"North",
"Nortman",
"Noser",
"Nosko",
"Noss",
"Noth",
"Nothdurft",
"Nothstein",
"Nott",
"Notte",
"Notter",
"Notz",
"Nowack",
"Noyer",
"Nuckels",
"Nuding",
"Nuechterlein",
"Nuehring",
"Nuernberg",
"Nuernberger",
"Nuffer",
"Nuhn",
"Null",
"Nungesser",
"Nunn",
"Nurnberg",
"Nurnberger",
"Nuse",
"Nuss",
"Nussbaum",
"Nussbaumer",
"Nusz",
"Nuth",
"Nutsch",
"Nuxoll",
"Obenauer",
"Obenauf",
"Obenchain",
"Obenhaus",
"Oberbeck",
"Oberbroeckling",
"Oberdorf",
"Oberg",
"Obergfell",
"Oberhaus",
"Oberhausen",
"Oberhauser",
"Oberhelman",
"Oberholtzer",
"Oberholzer",
"Oberlander",
"Oberle",
"Oberlin",
"Oberman",
"Obermann",
"Obermark",
"Obermeier",
"Obermeyer",
"Oberst",
"Oberstein",
"Obert",
"Oblander",
"Obrecht",
"Obringer",
"Och",
"Ochs",
"Ochsner",
"Ocken",
"Ockenfels",
"Ocker",
"Ockerman",
"Ockert",
"Odem",
"Odenbach",
"Odendahl",
"Odenthal",
"Odenwald",
"Odenweller",
"Oder",
"Oechsner",
"Oeding",
"Oehl",
"Oehlerking",
"Oehlert",
"Oehm",
"Oehrlein",
"Oelkers",
"Oelrich",
"Oertel",
"Oesterling",
"Oesterreich",
"Oestreich",
"Oestreicher",
"Oeth",
"Oetting",
"Oettinger",
"Oetzel",
"Offen",
"Offenbacher",
"Offenberger",
"Offer",
"Offner",
"Ohl",
"Ohle",
"Ohlendorf",
"Ohler",
"Ohlhauser",
"Ohlinger",
"Ohlmann",
"Ohme",
"Ohmer",
"Ohmes",
"Ohnesorge",
"Ohr",
"Ohren",
"Olberding",
"Olbrich",
"Olding",
"Oley",
"Olheiser",
"Olinger",
"Oliva",
"Olk",
"Olle",
"Oller",
"Ollinger",
"Ollmann",
"Olm",
"Olmscheid",
"Olp",
"Olsen",
"Olsson",
"Olt",
"Oltmanns",
"Oltz",
"Oncken",
"Opatz",
"Opel",
"Opelt",
"Opferman",
"Opheim",
"Opp",
"Oppel",
"Oppelt",
"Oppenheim",
"Oppenheimer",
"Oppenlander",
"Opper",
"Orbach",
"Orban",
"Ordner",
"Orf",
"Orff",
"Orians",
"Orner",
"Ort",
"Ortel",
"Orth",
"Ortlieb",
"Ortmann",
"Ortmeier",
"Ortner",
"Ortt",
"Ory",
"Osen",
"Osman",
"Ossman",
"Ost",
"Osten",
"Ostendorf",
"Oster",
"Osterberg",
"Osterland",
"Ostermann",
"Ostermeier",
"Ostermeyer",
"Ostertag",
"Ostheimer",
"Osthoff",
"Ostler",
"Ostwald",
"Oswalt",
"Otte",
"Ottenbacher",
"Otterbein",
"Otterman",
"Ottinger",
"Ottmers",
"Otto",
"Overdorff",
"Oxner",
"Paas",
"Pabst",
"Pach",
"Pachter",
"Packer",
"Packman",
"Padberg",
"Paeth",
"Paetow",
"Paetz",
"Paetzold",
"Paffrath",
"Pagenkopf",
"Pahl",
"Pahls",
"Painter",
"Pake",
"Palas",
"Pallas",
"Palm",
"Palmer",
"Palmersheim",
"Pamer",
"Pamperin",
"Pangle",
"Pankau",
"Panke",
"Pankow",
"Pankratz",
"Panning",
"Panter",
"Panther",
"Pantle",
"Panzer",
"Pape",
"Papen",
"Papp",
"Pappert",
"Papst",
"Parchman",
"Pardon",
"Parduhn",
"Pardun",
"Parler",
"Parlow",
"Parman",
"Parpart",
"Parr",
"Parten",
"Partenheimer",
"Partsch",
"Pasch",
"Pasche",
"Paschen",
"Paschke",
"Paske",
"Pass",
"Passon",
"Passow",
"Paster",
"Pastor",
"Pastorius",
"Pate",
"Patschke",
"Patzer",
"Patzner",
"Pauk",
"Pauley",
"Pauli",
"Paulick",
"Paulik",
"Paulin",
"Paullus",
"Paulus",
"Paustian",
"Pautler",
"Pautsch",
"Pautz",
"Pax",
"Paxman",
"Payer",
"Payson",
"Pech",
"Pecher",
"Pechman",
"Pecht",
"Peckman",
"Peel",
"Peffers",
"Pegler",
"Peglow",
"Pehl",
"Pehlke",
"Peifer",
"Peiffer",
"Peikert",
"Peil",
"Peine",
"Peiser",
"Peitz",
"Pell",
"Pelle",
"Peller",
"Pelot",
"Pelster",
"Peltz",
"Peltzer",
"Pelz",
"Pelzel",
"Pelzer",
"Peninger",
"Penn",
"Penner",
"Penninger",
"Pense",
"Pentz",
"Peplow",
"Peppel",
"Pergande",
"Perl",
"Perle",
"Perleberg",
"Perlich",
"Perlick",
"Perlin",
"Perman",
"Permann",
"Permenter",
"Pernick",
"Perschke",
"Persing",
"Person",
"Perz",
"Peschel",
"Peschke",
"Peterlin",
"Petersheim",
"Petersohn",
"Peth",
"Petri",
"Petry",
"Petsch",
"Petschauer",
"Petter",
"Pettinger",
"Petz",
"Petzel",
"Petzke",
"Petzold",
"Petzoldt",
"Peyser",
"Pfahl",
"Pfahler",
"Pfalzgraf",
"Pfander",
"Pfau",
"Pfeffer",
"Pfefferkorn",
"Pfeifer",
"Pfeiffer",
"Pfeil",
"Pfeiler",
"Pfendler",
"Pfennig",
"Pfenning",
"Pfeuffer",
"Pfiester",
"Pfiffner",
"Pfingsten",
"Pfitzer",
"Pflaum",
"Pflaumer",
"Pfleger",
"Pfleiderer",
"Pflieger",
"Pflueger",
"Pflug",
"Pfluger",
"Pflughoeft",
"Pflum",
"Pfohl",
"Pfost",
"Pfoutz",
"Pfrommer",
"Pfuhl",
"Pfund",
"Phalin",
"Philipp",
"Philippi",
"Phillipp",
"Piatz",
"Pich",
"Piche",
"Pichler",
"Picht",
"Pickar",
"Pickard",
"Pickart",
"Picken",
"Picker",
"Pickert",
"Pickhardt",
"Pickler",
"Piehl",
"Piening",
"Piepenburg",
"Piepmeier",
"Pier",
"Pies",
"Pieske",
"Pietig",
"Pietsch",
"Pietz",
"Pilant",
"Pilger",
"Piller",
"Pilling",
"Pillman",
"Piltz",
"Pilz",
"Pine",
"Pingel",
"Pinger",
"Pingle",
"Pink",
"Pinkert",
"Pinner",
"Pinnick",
"Pinnow",
"Pioch",
"Pippert",
"Pippin",
"Pirkey",
"Pirner",
"Pirrung",
"Piske",
"Pistole",
"Pistorius",
"Pitman",
"Pitsch",
"Pitter",
"Pittinger",
"Pittman",
"Pittner",
"Pittsenbarger",
"Pitzen",
"Pixler",
"Plack",
"Placke",
"Plageman",
"Plagens",
"Plamann",
"Plambeck",
"Planck",
"Planz",
"Plasse",
"Plassmeyer",
"Plaster",
"Plate",
"Plath",
"Platner",
"Platt",
"Platte",
"Platter",
"Plattner",
"Platz",
"Plautz",
"Plein",
"Pleiss",
"Plenge",
"Plessner",
"Plett",
"Plier",
"Plitt",
"Plocher",
"Ploen",
"Ploetz",
"Ploss",
"Plotz",
"Pluemer",
"Pluff",
"Pluim",
"Plum",
"Plumhoff",
"Pluth",
"Pobanz",
"Pobst",
"Poch",
"Pock",
"Poehlein",
"Poehler",
"Poehlman",
"Poelker",
"Poellnitz",
"Poeppelman",
"Poepping",
"Poeschel",
"Poeschl",
"Pofahl",
"Poh",
"Pohl",
"Pohle",
"Poje",
"Pol",
"Polack",
"Poland",
"Polen",
"Polenz",
"Poley",
"Polich",
"Politz",
"Politzer",
"Polk",
"Polka",
"Poll",
"Pollan",
"Polland",
"Poller",
"Pollert",
"Pollman",
"Pollnow",
"Pollock",
"Polster",
"Polt",
"Polzer",
"Polzin",
"Pomerantz",
"Pomerenke",
"Pommer",
"Pommerening",
"Pomper",
"Pomplun",
"Pomrenke",
"Ponath",
"Pong",
"Ponting",
"Pontius",
"Ponto",
"Popke",
"Popp",
"Poppa",
"Poppe",
"Popper",
"Poppert",
"Poppler",
"Porath",
"Porche",
"Porr",
"Porsch",
"Port",
"Porth",
"Portz",
"Posch",
"Poser",
"Posner",
"Poss",
"Possehl",
"Possinger",
"Posson",
"Postel",
"Posten",
"Postler",
"Pothast",
"Potrykus",
"Pottebaum",
"Pottinger",
"Pottorff",
"Pottratz",
"Praeger",
"Prager",
"Prahl",
"Prall",
"Pralle",
"Pranger",
"Prante",
"Prasse",
"Prast",
"Prater",
"Prather",
"Prator",
"Pratz",
"Praus",
"Prause",
"Prechel",
"Pregler",
"Preheim",
"Preis",
"Preisinger",
"Preisler",
"Preiss",
"Preller",
"Premer",
"Prescher",
"Presler",
"Pressel",
"Presser",
"Pressler",
"Prestenbach",
"Pretz",
"Preus",
"Preuss",
"Preusser",
"Prey",
"Preyer",
"Pribbenow",
"Pribnow",
"Priem",
"Prien",
"Pries",
"Prieskorn",
"Priesmeyer",
"Priess",
"Priewe",
"Prigge",
"Prim",
"Primas",
"Primus",
"Prinster",
"Printz",
"Prinz",
"Prinzing",
"Pritz",
"Pritzl",
"Pritzlaff",
"Probst",
"Probus",
"Prochnow",
"Prock",
"Prodoehl",
"Proefrock",
"Proehl",
"Proell",
"Proffer",
"Proft",
"Prokosch",
"Proksch",
"Propes",
"Propson",
"Propst",
"Prosch",
"Prose",
"Prosen",
"Proske",
"Pross",
"Prost",
"Protz",
"Protzman",
"Prust",
"Pruter",
"Puch",
"Puck",
"Pudenz",
"Puder",
"Puderbaugh",
"Pudwill",
"Puetz",
"Puff",
"Puffer",
"Puhr",
"Pulley",
"Pullig",
"Pullman",
"Puls",
"Pulte",
"Pultz",
"Pulver",
"Pulvermacher",
"Pund",
"Pundt",
"Punke",
"Punt",
"Punzel",
"Puppe",
"Purucker",
"Pusch",
"Pust",
"Puthoff",
"Putzier",
"Pyland",
"Pylant",
"Pyron",
"Quaas",
"Quade",
"Quaderer",
"Quandt",
"Quant",
"Quantz",
"Quast",
"Quell",
"Quest",
"Quilling",
"Quillman",
"Quint",
"Quiram",
"Quiring",
"Raab",
"Raabe",
"Raak",
"Raap",
"Raasch",
"Raatz",
"Rabe",
"Rabel",
"Raben",
"Rabenberg",
"Rabenold",
"Rabenstein",
"Raber",
"Rabold",
"Raby",
"Rach",
"Rachel",
"Rachels",
"Rachow",
"Rack",
"Rackers",
"Rackow",
"Rad",
"Radach",
"Radant",
"Radatz",
"Raddatz",
"Radde",
"Radden",
"Radder",
"Radeke",
"Radel",
"Raden",
"Rader",
"Radermacher",
"Radi",
"Radke",
"Radle",
"Radler",
"Radmacher",
"Radmer",
"Radner",
"Raduenz",
"Radunz",
"Radwan",
"Radwanski",
"Rady",
"Raeder",
"Raether",
"Raetz",
"Raff",
"Raffel",
"Raffensperger",
"Rager",
"Ragle",
"Raglin",
"Raguse",
"Rahe",
"Rahl",
"Rahlf",
"Rahm",
"Rahming",
"Rahn",
"Rahner",
"Rahr",
"Rahrig",
"Raifsnider",
"Raimer",
"Rain",
"Rainer",
"Rais",
"Raisch",
"Raiser",
"Raiter",
"Raith",
"Raitz",
"Raker",
"Rall",
"Ramberg",
"Rambo",
"Rambow",
"Ramer",
"Ramig",
"Ramler",
"Ramm",
"Rammel",
"Rammer",
"Ramming",
"Ramp",
"Rampe",
"Ramsburg",
"Ramser",
"Ramthun",
"Ranck",
"Rand",
"Randell",
"Randt",
"Ranft",
"Rang",
"Range",
"Ranger",
"Rank",
"Ranke",
"Ranker",
"Ranly",
"Rannow",
"Rantz",
"Ranz",
"Rape",
"Rapp",
"Rappe",
"Rappel",
"Rappold",
"Rasch",
"Rasche",
"Rascher",
"Raschke",
"Rase",
"Raser",
"Raske",
"Rasmusson",
"Rasner",
"Rasnick",
"Rasp",
"Rassel",
"Rastetter",
"Ratay",
"Rater",
"Ratermann",
"Rath",
"Rathe",
"Rathel",
"Rather",
"Rathert",
"Rathfon",
"Rathgeber",
"Rathmann",
"Rathsack",
"Ratke",
"Ratte",
"Rattler",
"Ratz",
"Ratzel",
"Ratzlaff",
"Rau",
"Raub",
"Rauber",
"Rauch",
"Raue",
"Rauen",
"Rauer",
"Rauh",
"Rauls",
"Raum",
"Raun",
"Rauner",
"Raup",
"Raupp",
"Raus",
"Rausch",
"Rauschenbach",
"Rauschenberg",
"Rauschenberger",
"Rauscher",
"Rauser",
"Rautenberg",
"Raveling",
"Ravert",
"Rayman",
"Rebel",
"Reber",
"Rebert",
"Rebhan",
"Rebholz",
"Rebmann",
"Rebstock",
"Rech",
"Rechner",
"Recht",
"Reck",
"Recknagel",
"Recktenwald",
"Rector",
"Reddin",
"Redding",
"Reddix",
"Redel",
"Redenius",
"Redick",
"Redinger",
"Rediske",
"Redler",
"Redlich",
"Redlin",
"Redling",
"Redlinger",
"Redmann",
"Redner",
"Reeck",
"Reeg",
"Reek",
"Rees",
"Reese",
"Reeter",
"Reetz",
"Reff",
"Reffner",
"Regas",
"Regehr",
"Regel",
"Regen",
"Regenold",
"Reger",
"Regier",
"Regis",
"Regner",
"Reh",
"Rehbein",
"Rehberg",
"Rehberger",
"Rehfeld",
"Rehfeldt",
"Rehkopf",
"Rehl",
"Rehling",
"Rehm",
"Rehmert",
"Rehnberg",
"Rehrer",
"Rehrig",
"Reibel",
"Reiber",
"Reich",
"Reichard",
"Reichardt",
"Reichart",
"Reiche",
"Reichel",
"Reichelderfer",
"Reichelt",
"Reichenbach",
"Reichenberg",
"Reichenberger",
"Reicher",
"Reichert",
"Reichl",
"Reichle",
"Reichling",
"Reichman",
"Reichmann",
"Reichner",
"Reichow",
"Reichstein",
"Reichwein",
"Reicks",
"Reidel",
"Reidenbach",
"Reider",
"Reidinger",
"Reier",
"Reifert",
"Reiff",
"Reifschneider",
"Reifsteck",
"Reigel",
"Reiger",
"Reiher",
"Reihl",
"Reil",
"Reile",
"Reiling",
"Reim",
"Reimann",
"Reimel",
"Reimer",
"Reimold",
"Rein",
"Reinauer",
"Reinbold",
"Reindel",
"Reindl",
"Reineck",
"Reinecker",
"Reineke",
"Reinemann",
"Reiner",
"Reiners",
"Reinfeld",
"Reinhard",
"Reinhardt",
"Reinhart",
"Reinheimer",
"Reinhold",
"Reinholdt",
"Reinholtz",
"Reinholz",
"Reinig",
"Reiniger",
"Reininger",
"Reinitz",
"Reinkemeyer",
"Reinmuth",
"Reinoehl",
"Reinsch",
"Reinschmidt",
"Reis",
"Reisch",
"Reische",
"Reisdorf",
"Reise",
"Reisenauer",
"Reisert",
"Reish",
"Reisig",
"Reising",
"Reisinger",
"Reisler",
"Reisman",
"Reisner",
"Reiss",
"Reissig",
"Reissman",
"Reister",
"Reiswig",
"Reiten",
"Reiter",
"Reith",
"Reither",
"Reitman",
"Reitmeier",
"Reitmeyer",
"Reitter",
"Reitz",
"Reitzel",
"Rekow",
"Rembold",
"Remlinger",
"Remmel",
"Remp",
"Rempe",
"Rempel",
"Rempfer",
"Remus",
"Renck",
"Rendel",
"Render",
"Renfer",
"Renken",
"Renker",
"Renko",
"Rennaker",
"Rennhack",
"Renninger",
"Rensch",
"Renschler",
"Renter",
"Rentsch",
"Rentz",
"Renz",
"Renze",
"Repke",
"Replogle",
"Reppert",
"Requa",
"Reschke",
"Reske",
"Resler",
"Resner",
"Ress",
"Ressel",
"Ressler",
"Rest",
"Rester",
"Rettberg",
"Retter",
"Retterath",
"Retterer",
"Rettig",
"Rettinger",
"Rettke",
"Rettler",
"Retz",
"Retzer",
"Retzlaff",
"Reuber",
"Reuer",
"Reukauf",
"Reul",
"Reum",
"Reus",
"Reusch",
"Reuscher",
"Reuss",
"Reuter",
"Reuther",
"Reutlinger",
"Reutzel",
"Rewerts",
"Rex",
"Rexing",
"Rexroth",
"Rey",
"Reyer",
"Reymann",
"Rhee",
"Rhein",
"Rheingans",
"Rheinheimer",
"Rhine",
"Rhoda",
"Rhode",
"Rhoden",
"Rhody",
"Rhomberg",
"Rhone",
"Ribelin",
"Richardt",
"Richel",
"Richer",
"Richert",
"Richey",
"Richman",
"Richmeier",
"Richner",
"Richter",
"Richters",
"Rick",
"Ricke",
"Rickel",
"Rickelman",
"Rickels",
"Ricken",
"Rickenbach",
"Ricker",
"Ridinger",
"Ridler",
"Riebe",
"Riebel",
"Riebeling",
"Rieben",
"Rieber",
"Riechers",
"Riechmann",
"Rieckhoff",
"Ried",
"Riede",
"Rieder",
"Riederer",
"Riedesel",
"Riedinger",
"Riedman",
"Rief",
"Rieff",
"Rieg",
"Riegel",
"Rieger",
"Riegert",
"Riegler",
"Riehl",
"Riehle",
"Riehm",
"Riek",
"Rieke",
"Rieken",
"Riel",
"Rieland",
"Riels",
"Riemann",
"Riemenschneider",
"Riemer",
"Riepe",
"Ries",
"Riese",
"Riesen",
"Riesenberg",
"Rieser",
"Riess",
"Riessen",
"Riester",
"Rieth",
"Rietmann",
"Rietz",
"Riewe",
"Riff",
"Riffel",
"Rigg",
"Riggenbach",
"Rigler",
"Riker",
"Rill",
"Rilling",
"Rima",
"Rimmel",
"Rinck",
"Rind",
"Rinder",
"Rinderer",
"Rinderknecht",
"Rinderle",
"Rindfleisch",
"Rindt",
"Ring",
"Ringe",
"Ringeisen",
"Ringel",
"Ringenberg",
"Ringer",
"Ringgenberg",
"Ringger",
"Ringhofer",
"Ringle",
"Ringler",
"Ringling",
"Ringold",
"Ringwald",
"Rink",
"Rinke",
"Rinkel",
"Rinkenberger",
"Rinker",
"Rinks",
"Rinkus",
"Rinne",
"Rinner",
"Ripberger",
"Ripke",
"Ripp",
"Rippentrop",
"Ripper",
"Ripperger",
"Ripplinger",
"Ripps",
"Rische",
"Riske",
"Risler",
"Riss",
"Risse",
"Rissler",
"Rissman",
"Rist",
"Ristau",
"Rister",
"Ristow",
"Ritschel",
"Ritt",
"Rittel",
"Ritter",
"Ritterbusch",
"Ritthaler",
"Rittman",
"Rittner",
"Ritz",
"Ritzel",
"Ritzenthaler",
"Ritzer",
"Ritzert",
"Ritzinger",
"Ritzler",
"Ritzman",
"Rivinius",
"Robeck",
"Robel",
"Rober",
"Roberg",
"Robl",
"Robling",
"Roch",
"Roche",
"Rochman",
"Rochow",
"Rock",
"Rocke",
"Rockefeller",
"Rockel",
"Rockenbach",
"Rocker",
"Rockers",
"Rockman",
"Rockoff",
"Rockow",
"Rocks",
"Rockstroh",
"Rod",
"Roda",
"Rodd",
"Rode",
"Rodebaugh",
"Rodefer",
"Rodeffer",
"Rodeman",
"Rodemeyer",
"Roden",
"Rodenberger",
"Rodenburg",
"Roder",
"Rodewald",
"Rodich",
"Rodman",
"Rody",
"Roeber",
"Roecker",
"Roed",
"Roedel",
"Roeder",
"Roeger",
"Roeglin",
"Roegner",
"Roehl",
"Roehling",
"Roehm",
"Roehr",
"Roehrich",
"Roehrig",
"Roelfs",
"Roell",
"Roelle",
"Roemer",
"Roemhildt",
"Roemmich",
"Roen",
"Roeper",
"Roesch",
"Roese",
"Roesel",
"Roeseler",
"Roesener",
"Roeser",
"Roeske",
"Roesler",
"Roesner",
"Roessel",
"Roesser",
"Roessler",
"Roessner",
"Roeth",
"Roethel",
"Roether",
"Roethle",
"Roethler",
"Roetzel",
"Roetzer",
"Roffers",
"Roffman",
"Rogel",
"Rogg",
"Rogge",
"Roggenbuck",
"Roggow",
"Rogus",
"Roh",
"Rohde",
"Roher",
"Rohl",
"Rohland",
"Rohleder",
"Rohlf",
"Rohlfs",
"Rohling",
"Rohlman",
"Rohloff",
"Rohm",
"Rohmer",
"Rohn",
"Rohr",
"Rohrbach",
"Rohrbacher",
"Rohrbeck",
"Rohrer",
"Rohrich",
"Rohrig",
"Rohrman",
"Rohrs",
"Rohs",
"Rohwer",
"Roiger",
"Roker",
"Roll",
"Rolla",
"Rolle",
"Roller",
"Rollin",
"Rolling",
"Rollinger",
"Rom",
"Rombach",
"Romberg",
"Romberger",
"Romer",
"Romes",
"Romey",
"Romig",
"Rominger",
"Romm",
"Romp",
"Ronne",
"Ronnebaum",
"Ronning",
"Roof",
"Rook",
"Ropp",
"Rosacker",
"Rosauer",
"Rosch",
"Rosche",
"Rosel",
"Rosemann",
"Rosemeyer",
"Rosemond",
"Rosen",
"Rosenau",
"Rosenbach",
"Rosenbauer",
"Rosenbaum",
"Rosenbeck",
"Rosenberg",
"Rosenberger",
"Rosenblatt",
"Rosenburg",
"Rosendahl",
"Rosener",
"Rosenfeld",
"Rosenfeldt",
"Rosengarten",
"Rosenheim",
"Rosenkoetter",
"Rosenman",
"Rosenow",
"Rosenstein",
"Rosenstiel",
"Rosenstock",
"Rosenthal",
"Rosentreter",
"Rosenwald",
"Rosenwasser",
"Rosenwinkel",
"Rosenzweig",
"Roser",
"Rosin",
"Rosing",
"Roskam",
"Roske",
"Roskopf",
"Rosler",
"Rosman",
"Rosmarin",
"Rosner",
"Ross",
"Rossbach",
"Rossberg",
"Rosse",
"Rossen",
"Rosser",
"Rossin",
"Rossing",
"Rossler",
"Rossmann",
"Rossner",
"Rossow",
"Rossum",
"Rost",
"Roster",
"Rotenberg",
"Rotering",
"Rotert",
"Roth",
"Rothacker",
"Rothbart",
"Rothbauer",
"Rothberg",
"Rothe",
"Rothenbach",
"Rothenberg",
"Rothenberger",
"Rother",
"Rothermel",
"Rothermich",
"Rothermund",
"Rothert",
"Rothfuss",
"Rothgeb",
"Rothkopf",
"Rothlisberger",
"Rothman",
"Rothmann",
"Rothmeyer",
"Rothrock",
"Roths",
"Rothschild",
"Rothstein",
"Rothweiler",
"Rott",
"Rotter",
"Rottinghaus",
"Rottler",
"Rottmann",
"Rottner",
"Rotz",
"Rout",
"Routzahn",
"Rover",
"Rowekamp",
"Rubach",
"Ruback",
"Rubbelke",
"Rube",
"Rubeck",
"Rubel",
"Ruben",
"Rubenacker",
"Rubenzer",
"Rubert",
"Rubey",
"Rubi",
"Rubin",
"Ruble",
"Rubner",
"Rubsam",
"Ruch",
"Ruck",
"Ruckdeschel",
"Ruckel",
"Rucker",
"Ruckert",
"Ruckman",
"Rudder",
"Rude",
"Rudel",
"Ruden",
"Ruder",
"Ruderman",
"Rudi",
"Rudich",
"Rudiger",
"Rudloff",
"Rudner",
"Rudolf",
"Rueb",
"Ruebel",
"Ruecker",
"Rueckert",
"Ruediger",
"Ruedinger",
"Ruegg",
"Ruehl",
"Ruehle",
"Ruehling",
"Ruen",
"Ruesch",
"Ruess",
"Ruest",
"Rueter",
"Rueth",
"Ruether",
"Ruetten",
"Ruetz",
"Ruf",
"Rufe",
"Rufenacht",
"Rufer",
"Ruff",
"Ruffer",
"Ruffing",
"Ruffner",
"Ruge",
"Rugen",
"Rugenstein",
"Ruger",
"Ruhl",
"Ruhland",
"Ruhle",
"Ruhlman",
"Ruhnke",
"Ruhr",
"Ruhs",
"Ruland",
"Rullman",
"Rumberger",
"Rumbold",
"Rumer",
"Rummel",
"Rummler",
"Rump",
"Rumpel",
"Rumpf",
"Rumschlag",
"Runck",
"Rund",
"Runde",
"Rundel",
"Runge",
"Runk",
"Runke",
"Runkel",
"Runte",
"Ruopp",
"Rupe",
"Rupel",
"Rupiper",
"Ruple",
"Ruplinger",
"Rupnow",
"Rupp",
"Ruppe",
"Ruppenthal",
"Ruppert",
"Rupprecht",
"Ruprecht",
"Rusch",
"Rusche",
"Ruse",
"Russ",
"Russak",
"Russler",
"Russman",
"Russow",
"Rustemeyer",
"Rutenberg",
"Ruter",
"Ruthenberg",
"Ruther",
"Rutt",
"Rutten",
"Rutz",
"Rutzen",
"Rux",
"Rylander",
"Ryll",
"Rymer",
"Saal",
"Saalfeld",
"Saam",
"Saar",
"Saas",
"Sabel",
"Sachen",
"Sacher",
"Sachs",
"Sack",
"Sackmann",
"Sacksteder",
"Sadlier",
"Sadowsky",
"Saenger",
"Saffran",
"Safran",
"Sage",
"Sagehorn",
"Sagendorf",
"Sahl",
"Sahlberg",
"Sahm",
"Sahr",
"Sahs",
"Saile",
"Sailer",
"Salb",
"Saler",
"Saling",
"Salinger",
"Saller",
"Salm",
"Salow",
"Saltz",
"Saltzer",
"Salz",
"Salzberg",
"Salzer",
"Salzmann",
"Samberg",
"Samel",
"Sames",
"Samet",
"Sammet",
"Sandau",
"Sandbach",
"Sandberg",
"Sande",
"Sandel",
"Sander",
"Sandersfeld",
"Sandmann",
"Sandmeier",
"Sandmeyer",
"Sandner",
"Sandrock",
"Sandt",
"Sanft",
"Sang",
"Sanger",
"Sann",
"Sante",
"Santer",
"Sanz",
"Sapp",
"Sarauer",
"Sarge",
"Sartori",
"Sass",
"Sassman",
"Satter",
"Sattler",
"Sauber",
"Sauder",
"Sauer",
"Sauerland",
"Sauerwein",
"Saur",
"Saurer",
"Sauser",
"Sauter",
"Sautner",
"Sautter",
"Sawall",
"Saxe",
"Schaad",
"Schaadt",
"Schaaf",
"Schaal",
"Schaar",
"Schabacker",
"Schaben",
"Schaber",
"Schaberg",
"Schach",
"Schacher",
"Schack",
"Schade",
"Schadegg",
"Schader",
"Schadler",
"Schadt",
"Schaecher",
"Schaedel",
"Schaedler",
"Schaefbauer",
"Schaefer",
"Schaeffer",
"Schaf",
"Schafer",
"Schaff",
"Schaffer",
"Schaffert",
"Schaffler",
"Schaffner",
"Schaffran",
"Schaffter",
"Schager",
"Schaible",
"Schain",
"Schakel",
"Schalk",
"Schall",
"Schaller",
"Schallhorn",
"Schalow",
"Schambach",
"Schamber",
"Schamberger",
"Schanbacher",
"Schanen",
"Schank",
"Schantz",
"Schanzenbach",
"Schanzer",
"Schar",
"Schara",
"Scharber",
"Schardt",
"Scharer",
"Schares",
"Scharfenberg",
"Scharlau",
"Schartner",
"Schartz",
"Schatte",
"Schattner",
"Schatz",
"Schatzberg",
"Schatzel",
"Schatzle",
"Schatzman",
"Schaub",
"Schaubert",
"Schauble",
"Schauder",
"Schauer",
"Schauf",
"Schaufele",
"Schaufler",
"Schaum",
"Schaumann",
"Schaumberg",
"Schaumburg",
"Schaus",
"Schauss",
"Schauwecker",
"Schechinger",
"Schechner",
"Scheck",
"Scheckel",
"Schedler",
"Scheeler",
"Scheer",
"Scheerer",
"Scheffer",
"Scheffert",
"Schehr",
"Scheib",
"Scheibe",
"Scheibel",
"Scheiber",
"Scheibner",
"Scheid",
"Scheidel",
"Scheideler",
"Scheideman",
"Scheider",
"Scheiderer",
"Scheidler",
"Scheidt",
"Scheier",
"Scheihing",
"Scheiman",
"Schein",
"Scheiner",
"Scheirer",
"Schelb",
"Scheler",
"Schelin",
"Schell",
"Schelle",
"Schellenberg",
"Schellenberger",
"Schellenger",
"Scheller",
"Schellhaas",
"Schellhammer",
"Schellhase",
"Schellhorn",
"Schellin",
"Schelling",
"Schellinger",
"Schelske",
"Schemel",
"Schemenauer",
"Schemm",
"Schemmel",
"Schemmer",
"Schempp",
"Schenck",
"Schendel",
"Schenk",
"Schenke",
"Schenkel",
"Schenkelberg",
"Scher",
"Scherbarth",
"Scherber",
"Scherer",
"Scherf",
"Scherich",
"Scherle",
"Scherling",
"Scherman",
"Scherr",
"Scherrer",
"Scherschel",
"Schertz",
"Schertzer",
"Scherz",
"Scherzer",
"Schessler",
"Schettler",
"Scheuer",
"Scheuermann",
"Scheufler",
"Scheumann",
"Scheurer",
"Scheurich",
"Scheuring",
"Scheve",
"Scheyer",
"Schichtel",
"Schick",
"Schicker",
"Schickler",
"Schickling",
"Schieber",
"Schieck",
"Schied",
"Schiedel",
"Schiefelbein",
"Schiefen",
"Schiefer",
"Schieferstein",
"Schieffer",
"Schiek",
"Schiele",
"Schielke",
"Schiemann",
"Schierling",
"Schierman",
"Schiess",
"Schiesser",
"Schiewe",
"Schiff",
"Schiffbauer",
"Schiffer",
"Schiffhauer",
"Schiffler",
"Schiffman",
"Schiffner",
"Schilb",
"Schild",
"Schilder",
"Schildgen",
"Schildknecht",
"Schildt",
"Schill",
"Schille",
"Schiller",
"Schillig",
"Schilling",
"Schillinger",
"Schillo",
"Schilt",
"Schiltz",
"Schilz",
"Schimke",
"Schimmel",
"Schimmelpfennig",
"Schimmer",
"Schimmoeller",
"Schimpf",
"Schindel",
"Schindele",
"Schindler",
"Schinke",
"Schinkel",
"Schinker",
"Schirm",
"Schirmacher",
"Schirmer",
"Schirtzinger",
"Schissel",
"Schissler",
"Schkade",
"Schlabach",
"Schladweiler",
"Schlaefer",
"Schlafer",
"Schlaff",
"Schlagel",
"Schlager",
"Schlageter",
"Schlais",
"Schlamp",
"Schlangen",
"Schlarman",
"Schlater",
"Schlau",
"Schlauch",
"Schlechter",
"Schleder",
"Schlee",
"Schlegel",
"Schlegelmilch",
"Schlei",
"Schleich",
"Schleicher",
"Schleider",
"Schleif",
"Schleifer",
"Schleiger",
"Schlein",
"Schleis",
"Schleisman",
"Schlemmer",
"Schlenk",
"Schlenker",
"Schlenz",
"Schlepp",
"Schlereth",
"Schlesener",
"Schlesinger",
"Schlesselman",
"Schlesser",
"Schlessinger",
"Schleusner",
"Schley",
"Schleyer",
"Schlicher",
"Schlicht",
"Schlichte",
"Schlichter",
"Schlick",
"Schlicker",
"Schlies",
"Schliesman",
"Schlimgen",
"Schlinger",
"Schlink",
"Schlitt",
"Schlitter",
"Schlitz",
"Schloegel",
"Schloesser",
"Schloss",
"Schlosser",
"Schlossman",
"Schlotfeldt",
"Schlotthauer",
"Schlotzhauer",
"Schluckebier",
"Schlund",
"Schlundt",
"Schlup",
"Schlussel",
"Schmadeke",
"Schmader",
"Schmahl",
"Schmal",
"Schmall",
"Schmaltz",
"Schmalz",
"Schmalzried",
"Schmauch",
"Schmauder",
"Schmaus",
"Schmechel",
"Schmeck",
"Schmeckpeper",
"Schmeer",
"Schmeichel",
"Schmeisser",
"Schmeltz",
"Schmeltzer",
"Schmelz",
"Schmelzer",
"Schmelzle",
"Schmenk",
"Schmer",
"Schmidgall",
"Schmidlkofer",
"Schmidt",
"Schmidtberger",
"Schmidtke",
"Schmied",
"Schmieder",
"Schmiege",
"Schmier",
"Schmierer",
"Schminke",
"Schmith",
"Schmitter",
"Schmitz",
"Schmitzer",
"Schmoll",
"Schmuck",
"Schmuhl",
"Schmunk",
"Schnabel",
"Schnackenberg",
"Schnaible",
"Schnakenberg",
"Schnall",
"Schnapp",
"Schnarr",
"Schnaufer",
"Schneck",
"Schnee",
"Schneeberg",
"Schneeberger",
"Schneeman",
"Schneider",
"Schneiderhan",
"Schneiderman",
"Schneidewind",
"Schneidman",
"Schneier",
"Schneiter",
"Schnell",
"Schnelle",
"Schneller",
"Schnepf",
"Schnettler",
"Schnetzer",
"Schnetzler",
"Schnick",
"Schnider",
"Schnitz",
"Schnitzer",
"Schnitzius",
"Schnitzler",
"Schnoebelen",
"Schnorr",
"Schnupp",
"Schnur",
"Schnurbusch",
"Schnurr",
"Schobel",
"Schober",
"Schobert",
"Schock",
"Schoeck",
"Schoedel",
"Schoeder",
"Schoeff",
"Schoeffel",
"Schoell",
"Schoellkopf",
"Schoemann",
"Schoemer",
"Schoen",
"Schoenbachler",
"Schoenbauer",
"Schoenberg",
"Schoenberger",
"Schoenborn",
"Schoendorf",
"Schoene",
"Schoeneberg",
"Schoeneck",
"Schoenecker",
"Schoeneman",
"Schoenemann",
"Schoenenberger",
"Schoener",
"Schoenfeld",
"Schoenfelder",
"Schoenfeldt",
"Schoenhals",
"Schoenherr",
"Schoenig",
"Schoenike",
"Schoenrock",
"Schoenstein",
"Schoenthal",
"Schoenthaler",
"Schoenwald",
"Schoenwetter",
"Schoepf",
"Schoepke",
"Schoettle",
"Schoettmer",
"Schofer",
"Schoff",
"Scholer",
"Scholl",
"Scholler",
"Schollmeyer",
"Scholze",
"Schomberg",
"Schomburg",
"Schomer",
"Schomp",
"Schon",
"Schonauer",
"Schonberg",
"Schonberger",
"Schone",
"Schoneman",
"Schoner",
"Schonert",
"Schonfeld",
"Schoof",
"Schopf",
"Schopp",
"Schoppert",
"Schorer",
"Schorr",
"Schorsch",
"Schorzman",
"Schott",
"Schowalter",
"Schraeder",
"Schraer",
"Schrag",
"Schrage",
"Schrager",
"Schramel",
"Schramer",
"Schramm",
"Schrantz",
"Schranz",
"Schratz",
"Schraub",
"Schrauben",
"Schraut",
"Schrauth",
"Schrecengost",
"Schreck",
"Schreffler",
"Schreiber",
"Schreier",
"Schreifels",
"Schreiner",
"Schreiter",
"Schremmer",
"Schremp",
"Schrempp",
"Schrenk",
"Schrepfer",
"Schreyer",
"Schrick",
"Schricker",
"Schrider",
"Schrimpf",
"Schrock",
"Schrodt",
"Schroeck",
"Schroedel",
"Schroedl",
"Schroepfer",
"Schrom",
"Schroth",
"Schubach",
"Schubbe",
"Schubel",
"Schubert",
"Schubring",
"Schuch",
"Schuchardt",
"Schuchart",
"Schuchert",
"Schuchmann",
"Schuder",
"Schuele",
"Schueler",
"Schueneman",
"Schuenke",
"Schuessler",
"Schuetz",
"Schuetze",
"Schuff",
"Schug",
"Schuh",
"Schuhmacher",
"Schuhmann",
"Schuknecht",
"Schul",
"Schuld",
"Schuldt",
"Schule",
"Schulenberg",
"Schulke",
"Schull",
"Schulman",
"Schulmeister",
"Schultheis",
"Schultheiss",
"Schultz",
"Schultze",
"Schulz",
"Schulze",
"Schumacher",
"Schumann",
"Schumer",
"Schumpert",
"Schunk",
"Schunke",
"Schupbach",
"Schupp",
"Schuppe",
"Schuppert",
"Schur",
"Schurtz",
"Schurz",
"Schussler",
"Schuster",
"Schutz",
"Schutze",
"Schutzman",
"Schwaab",
"Schwab",
"Schwabauer",
"Schwabe",
"Schwager",
"Schwahn",
"Schwaiger",
"Schwalbach",
"Schwalbe",
"Schwalenberg",
"Schwalm",
"Schwamb",
"Schwamberger",
"Schwan",
"Schwanbeck",
"Schwaner",
"Schwaninger",
"Schwantes",
"Schwantz",
"Schwanz",
"Schwarm",
"Schwartz",
"Schwartzbauer",
"Schwartze",
"Schwartzenberger",
"Schwartzkopf",
"Schwartzman",
"Schwarz",
"Schwarzbach",
"Schwarze",
"Schwarzenbach",
"Schwarzer",
"Schwarzkopf",
"Schwebach",
"Schwebel",
"Schwebke",
"Schwed",
"Schweda",
"Schwede",
"Schweder",
"Schwegel",
"Schwehr",
"Schweich",
"Schweickert",
"Schweiger",
"Schweigert",
"Schweighardt",
"Schwein",
"Schweinfurth",
"Schweinsberg",
"Schweiss",
"Schweitz",
"Schweitzer",
"Schweizer",
"Schwemmer",
"Schwend",
"Schwendeman",
"Schwendemann",
"Schwender",
"Schwendiman",
"Schwendinger",
"Schwenke",
"Schwer",
"Schwerdt",
"Schwerdtfeger",
"Schwerin",
"Schwering",
"Schwertfeger",
"Schwertner",
"Schwery",
"Schwetz",
"Schwichtenberg",
"Schwickerath",
"Schwiebert",
"Schwimmer",
"Schwing",
"Schwinger",
"Schwinghammer",
"Schwinn",
"Schwitters",
"Schwitzer",
"Schwoch",
"Schworm",
"Sealander",
"Seba",
"Sebald",
"Sebastian",
"Sebert",
"Seckel",
"Seckinger",
"Seckler",
"Sedler",
"Seebach",
"Seeberger",
"Seeburger",
"Seedorf",
"Seefeldt",
"Seefried",
"Seeger",
"Seegert",
"Seehafer",
"Seelbach",
"Seelen",
"Seelig",
"Seeliger",
"Seeling",
"Seelinger",
"Seem",
"Seemann",
"Sees",
"Seese",
"Seewald",
"Sehnert",
"Seiberlich",
"Seiberling",
"Seibert",
"Seibold",
"Seid",
"Seide",
"Seidelman",
"Seideman",
"Seiden",
"Seidenberg",
"Seidensticker",
"Seidler",
"Seidlitz",
"Seidner",
"Seif",
"Seifer",
"Seifert",
"Seiferth",
"Seiffert",
"Seifried",
"Seiger",
"Seil",
"Seiler",
"Seiling",
"Seils",
"Seim",
"Seiser",
"Seiss",
"Seiter",
"Seith",
"Seither",
"Seitter",
"Seitzer",
"Seiz",
"Selbach",
"Selbe",
"Selders",
"Seliger",
"Seligman",
"Seligmann",
"Selinger",
"Selk",
"Selke",
"Sell",
"Selle",
"Sellen",
"Seller",
"Sellmeyer",
"Seltz",
"Seltzer",
"Selzer",
"Selzler",
"Semar",
"Semer",
"Semler",
"Semmel",
"Semmler",
"Semrau",
"Sendelbach",
"Senf",
"Senft",
"Senger",
"Sengstock",
"Senk",
"Senkbeil",
"Senne",
"Senseman",
"Sensenig",
"Sensing",
"Sentner",
"Sentz",
"Sepp",
"Seraphin",
"Serber",
"Serfling",
"Sermersheim",
"Serr",
"Servatius",
"Sessler",
"Setter",
"Setzer",
"Setzler",
"Seubert",
"Seufert",
"Sevin",
"Sewald",
"Sexauer",
"Seybert",
"Seybold",
"Seydel",
"Seyfarth",
"Seyfert",
"Seyferth",
"Seyfried",
"Seyler",
"Seyller",
"Shada",
"Shaft",
"Shafter",
"Sheckler",
"Sheler",
"Shiffman",
"Shortz",
"Shuda",
"Shuter",
"Sibert",
"Sichel",
"Sicher",
"Sickel",
"Sickler",
"Sidel",
"Siebenaler",
"Sieber",
"Sieberg",
"Siebert",
"Siebrecht",
"Siedler",
"Siefring",
"Sieg",
"Siegel",
"Siegelman",
"Siegenthaler",
"Sieger",
"Siegert",
"Siegfried",
"Siegler",
"Siegmund",
"Siegrist",
"Sielaff",
"Sieler",
"Sieloff",
"Siemen",
"Siemer",
"Sies",
"Sigl",
"Sigler",
"Sigmund",
"Sigrist",
"Silber",
"Silberberg",
"Silberg",
"Silberman",
"Silbernagel",
"Silberstein",
"Silbert",
"Siler",
"Sillman",
"Simbeck",
"Simler",
"Simm",
"Simmen",
"Simmer",
"Simmon",
"Simson",
"Sindel",
"Sinder",
"Sindler",
"Sindlinger",
"Sindt",
"Sing",
"Singer",
"Single",
"Singler",
"Sinkhorn",
"Sinn",
"Sipper",
"Sissel",
"Sitler",
"Sitter",
"Sittig",
"Sittler",
"Sittner",
"Sitz",
"Sitze",
"Sitzer",
"Sitzes",
"Sitzler",
"Sivers",
"Skroch",
"Slabach",
"Slinger",
"Slote",
"Slowiak",
"Snitker",
"Sobania",
"Sock",
"Soder",
"Soehner",
"Soergel",
"Sohl",
"Sohler",
"Sohmer",
"Sohn",
"Sohns",
"Sohr",
"Solberg",
"Solinger",
"Soll",
"Sollberger",
"Soller",
"Sollman",
"Soltau",
"Sommer",
"Sommerer",
"Sommerfeld",
"Sommerfeldt",
"Sonderman",
"Sonnabend",
"Sonne",
"Sonneborn",
"Sonnek",
"Sonneman",
"Sonnen",
"Sonnenberg",
"Sonnenburg",
"Sonnenfeld",
"Sonnenschein",
"Sonnentag",
"Sonntag",
"Sonsalla",
"Sontag",
"Sontheimer",
"Sopp",
"Sorber",
"Sorg",
"Sorge",
"Sorgen",
"Sorgenfrei",
"Sorger",
"Sornberger",
"Spaar",
"Spach",
"Spade",
"Spader",
"Spaeth",
"Spahn",
"Span",
"Spang",
"Spangenberg",
"Spangler",
"Spanier",
"Spann",
"Spannagel",
"Spar",
"Sparber",
"Sparger",
"Spargur",
"Spark",
"Sparr",
"Spartz",
"Spath",
"Spaude",
"Specht",
"Speck",
"Specker",
"Speer",
"Speich",
"Speicher",
"Speidel",
"Speier",
"Speiser",
"Spell",
"Speller",
"Spellman",
"Speltz",
"Spengler",
"Spenner",
"Sperber",
"Sperberg",
"Sperl",
"Speth",
"Spetz",
"Speyer",
"Speyrer",
"Spicher",
"Spickler",
"Spiegel",
"Spiegelberg",
"Spiegler",
"Spiekerman",
"Spielberg",
"Spieler",
"Spielmann",
"Spielvogel",
"Spier",
"Spiering",
"Spiers",
"Spies",
"Spiess",
"Spieth",
"Spigner",
"Spille",
"Spiller",
"Spillman",
"Spindel",
"Spitz",
"Spitzer",
"Spitznagel",
"Spitzner",
"Spoden",
"Spohn",
"Spohr",
"Sponholz",
"Sponsel",
"Spores",
"Sporn",
"Spors",
"Spott",
"Sprang",
"Spranger",
"Sprangers",
"Sprau",
"Sprecher",
"Spreitzer",
"Sprengel",
"Spring",
"Springborn",
"Springmeyer",
"Spross",
"Sprott",
"Sprung",
"Spuhler",
"Staab",
"Stabenow",
"Stablein",
"Stabler",
"Stach",
"Stache",
"Stachel",
"Stachler",
"Stack",
"Stade",
"Stadel",
"Stadelman",
"Stadick",
"Stadig",
"Stading",
"Stadler",
"Stadt",
"Stadtler",
"Stadtmueller",
"Staebler",
"Staehle",
"Stahl",
"Stahlberg",
"Stahle",
"Stahlecker",
"Stahler",
"Stahlhut",
"Stahlman",
"Stahr",
"Staib",
"Stallman",
"Stamm",
"Stamp",
"Stampe",
"Stang",
"Stange",
"Stangel",
"Stanger",
"Stanke",
"Stanzel",
"Stapf",
"Star",
"Starck",
"Stark",
"Starke",
"Starkel",
"Starker",
"Starner",
"Stasch",
"Stassen",
"State",
"Stater",
"Statz",
"Statzer",
"Staub",
"Staubach",
"Stauber",
"Stauch",
"Staudacher",
"Staude",
"Staudenmaier",
"Stauder",
"Staudt",
"Stauff",
"Stauffacher",
"Staup",
"Staus",
"Stavinoha",
"Stayer",
"Steber",
"Stecher",
"Steck",
"Steckbauer",
"Steckbeck",
"Steckel",
"Steckman",
"Steege",
"Steenbergen",
"Steff",
"Steffek",
"Stefl",
"Steg",
"Stege",
"Stegemann",
"Stegemoller",
"Steger",
"Stegmaier",
"Stegman",
"Stegmann",
"Stegmeier",
"Stegner",
"Stehl",
"Stehle",
"Stehlin",
"Stehr",
"Steib",
"Steiber",
"Steichen",
"Steidel",
"Steidl",
"Steidle",
"Steier",
"Steig",
"Steiger",
"Steigerwald",
"Steigman",
"Steil",
"Steiman",
"Steimel",
"Steimer",
"Steimle",
"Stein",
"Steinacker",
"Steinauer",
"Steinbach",
"Steinbacher",
"Steinbeck",
"Steinberg",
"Steinberger",
"Steinbock",
"Steinborn",
"Steinbrecher",
"Steinbrenner",
"Steinbrink",
"Steinbrunner",
"Steindorf",
"Steiner",
"Steinert",
"Steinfeld",
"Steinfeldt",
"Steingraber",
"Steinhagen",
"Steinhardt",
"Steinhauer",
"Steinhaus",
"Steinhauser",
"Steinhilber",
"Steinhofer",
"Steiniger",
"Steininger",
"Steinke",
"Steinkirchner",
"Steinle",
"Steinmann",
"Steinmetz",
"Steinmeyer",
"Steinruck",
"Steinwand",
"Steitz",
"Steller",
"Stelling",
"Stellmach",
"Stellmacher",
"Stellrecht",
"Stellwagen",
"Steltz",
"Stelzer",
"Stelzner",
"Stemmler",
"Stempel",
"Stemper",
"Stempler",
"Stengel",
"Stenger",
"Stenz",
"Stenzel",
"Stephan",
"Stephani",
"Stephanus",
"Stepp",
"Stepper",
"Sterbenz",
"Sterkel",
"Sterling",
"Stern",
"Sternberg",
"Sternberger",
"Sterner",
"Sternfeld",
"Sternhagen",
"Sterr",
"Stertz",
"Sterzinger",
"Stetter",
"Stettler",
"Stettner",
"Stetz",
"Stetzer",
"Steuber",
"Steubing",
"Steuer",
"Steuerwald",
"Steurer",
"Stever",
"Steyer",
"Stich",
"Stickel",
"Stickler",
"Stieb",
"Stiebel",
"Stieben",
"Stieber",
"Stief",
"Stiefel",
"Stiefvater",
"Stieg",
"Stiegler",
"Stiehl",
"Stiel",
"Stieler",
"Stielow",
"Stien",
"Stier",
"Stiers",
"Stiffler",
"Stifter",
"Stigler",
"Stiglitz",
"Still",
"Stiller",
"Stillings",
"Stilp",
"Stiltz",
"Stimmel",
"Stimmell",
"Stingle",
"Stipp",
"Stippich",
"Stirn",
"Stitz",
"Stitzel",
"Stob",
"Stober",
"Stock",
"Stocker",
"Stockert",
"Stockhausen",
"Stocklin",
"Stockman",
"Stockmann",
"Stockner",
"Stoebe",
"Stoebner",
"Stoecker",
"Stoeckle",
"Stoecklein",
"Stoeffler",
"Stoeger",
"Stoel",
"Stoessel",
"Stoesz",
"Stoffels",
"Stohler",
"Stohs",
"Stoiber",
"Stoick",
"Stolberg",
"Stoliker",
"Stoll",
"Stolle",
"Stollenwerk",
"Stoller",
"Stoltenberg",
"Stoltman",
"Stoltz",
"Stolz",
"Stolze",
"Stolzenberg",
"Stolzenburg",
"Stolzer",
"Stolzman",
"Stommel",
"Stoos",
"Stoots",
"Stophel",
"Stopher",
"Stopper",
"Storch",
"Storck",
"Stork",
"Storms",
"Storrer",
"Stortz",
"Storz",
"Stoskopf",
"Stoss",
"Stotz",
"Stoy",
"Stradtman",
"Strahl",
"Strahle",
"Strahler",
"Strahm",
"Stram",
"Strang",
"Strantz",
"Stranz",
"Strasburg",
"Strassburg",
"Strassburger",
"Strasser",
"Strassman",
"Strassner",
"Straub",
"Straube",
"Strauch",
"Straus",
"Strause",
"Strauser",
"Strauss",
"Straut",
"Streb",
"Strebe",
"Strebel",
"Streck",
"Strecker",
"Strege",
"Strehl",
"Strehle",
"Strehlow",
"Streib",
"Streich",
"Streicher",
"Streif",
"Streifel",
"Streiff",
"Streit",
"Streitz",
"Strelow",
"Streng",
"Strenge",
"Strenger",
"Strenk",
"Stretz",
"Streu",
"Streufert",
"Strey",
"Strick",
"Stricker",
"Strickfaden",
"Strickler",
"Strickling",
"Striebel",
"Stritzel",
"Stritzinger",
"Strobel",
"Strober",
"Strode",
"Stroder",
"Strodtman",
"Stroebel",
"Stroh",
"Strohecker",
"Strohm",
"Strohman",
"Strohmeier",
"Strohmeyer",
"Strohschein",
"Strom",
"Stromberg",
"Stromer",
"Strommer",
"Strop",
"Stroschein",
"Stross",
"Stroth",
"Strub",
"Strubel",
"Struckmeyer",
"Strumpf",
"Strutt",
"Strutz",
"Stubenrauch",
"Stuber",
"Stubler",
"Stuck",
"Stucke",
"Stucker",
"Stuckert",
"Stucki",
"Stuckman",
"Stuckwisch",
"Stucky",
"Stude",
"Student",
"Studer",
"Stueber",
"Stuebs",
"Stueck",
"Stuedemann",
"Stuermer",
"Stueven",
"Stuff",
"Stuhl",
"Stuhler",
"Stuhlman",
"Stull",
"Stuller",
"Stultz",
"Stulz",
"Stumm",
"Stumme",
"Stump",
"Stumpe",
"Stumpf",
"Stumpff",
"Stumph",
"Stumpp",
"Stunkel",
"Stuntz",
"Stupp",
"Stuppy",
"Sturm",
"Sturmer",
"Sturn",
"Sturtz",
"Stutheit",
"Stutz",
"Stutzman",
"Subbert",
"Suber",
"Sucher",
"Suchman",
"Suckow",
"Sudbeck",
"Suderman",
"Sudhoff",
"Suer",
"Suess",
"Suhl",
"Suhre",
"Sukow",
"Sullenger",
"Sultemeier",
"Sultzer",
"Sulzbach",
"Sulzberger",
"Sulzer",
"Summer",
"Summerlin",
"Sunderhaus",
"Sundermann",
"Sundheim",
"Sunkel",
"Supan",
"Suppes",
"Supple",
"Sur",
"Surges",
"Suss",
"Susser",
"Sussman",
"Suszek",
"Suter",
"Suther",
"Sutherlin",
"Sutor",
"Sutterer",
"Suver",
"Swartzfager",
"Swem",
"Synder",
"Taake",
"Tabbert",
"Tabert",
"Tacker",
"Tafel",
"Taflinger",
"Tag",
"Tager",
"Tagert",
"Tagge",
"Tandberg",
"Tanenbaum",
"Tann",
"Tannen",
"Tannenbaum",
"Tanzer",
"Tape",
"Taphorn",
"Tapp",
"Tappe",
"Tarnow",
"Tarter",
"Tasch",
"Taschner",
"Tasler",
"Tatsch",
"Taub",
"Taube",
"Tauber",
"Taubert",
"Taucher",
"Tauer",
"Tausch",
"Tauscher",
"Taute",
"Tautges",
"Tax",
"Tech",
"Tecklenburg",
"Tedrick",
"Tegen",
"Tegtmeier",
"Teich",
"Teicher",
"Teichert",
"Teichmann",
"Teig",
"Telkamp",
"Teller",
"Tellman",
"Templeman",
"Templin",
"Tendick",
"Tendler",
"Tengler",
"Tennenbaum",
"Tenner",
"Tenzer",
"Teplitz",
"Tepper",
"Ternes",
"Ternus",
"Terp",
"Terres",
"Tesch",
"Teschendorf",
"Teschke",
"Teschner",
"Teska",
"Teske",
"Tesler",
"Tesmer",
"Tesnow",
"Tess",
"Tessin",
"Tessler",
"Tessmann",
"Tessmer",
"Tester",
"Tetz",
"Teuber",
"Teubert",
"Teubner",
"Teufel",
"Teuscher",
"Tewes",
"Textor",
"Thal",
"Thalacker",
"Thalheimer",
"Thalmann",
"Thamm",
"Theesfeld",
"Theile",
"Theilen",
"Thein",
"Theisen",
"Thell",
"Then",
"Thering",
"Theune",
"Thewes",
"Thielbar",
"Thiemann",
"Thieme",
"Thien",
"Thier",
"Thierer",
"Thissell",
"Thissen",
"Thoma",
"Thomae",
"Thome",
"Thomes",
"Thometz",
"Thon",
"Thone",
"Thor",
"Thorn",
"Thorner",
"Thran",
"Thress",
"Thron",
"Thrun",
"Thul",
"Thull",
"Thum",
"Thuma",
"Thumm",
"Thummel",
"Thun",
"Thune",
"Thur",
"Thuringer",
"Thurm",
"Thurman",
"Thurn",
"Thurnau",
"Thurner",
"Thye",
"Thyen",
"Thyssen",
"Tiefenthaler",
"Tikalsky",
"Timmel",
"Tinder",
"Ting",
"Tingler",
"Tinnes",
"Tinsman",
"Tippen",
"Tipper",
"Tipple",
"Tischendorf",
"Tischer",
"Tischler",
"Titus",
"Titzer",
"Tobe",
"Toben",
"Tober",
"Tock",
"Todt",
"Toelke",
"Toelle",
"Toensing",
"Toepel",
"Toepfer",
"Toll",
"Tolle",
"Toller",
"Tolzman",
"Tolzmann",
"Tonge",
"Tonn",
"Tonne",
"Topel",
"Topf",
"Topp",
"Toppel",
"Topper",
"Torney",
"Tornow",
"Toth",
"Totzke",
"Trabert",
"Trabold",
"Trachsel",
"Tracht",
"Trader",
"Traeger",
"Trager",
"Trageser",
"Tragesser",
"Trampe",
"Tranel",
"Trank",
"Trapp",
"Traub",
"Traube",
"Traudt",
"Trauernicht",
"Traugott",
"Traum",
"Trausch",
"Traut",
"Trauth",
"Trautmann",
"Trautner",
"Trautwein",
"Travis",
"Trebesch",
"Trebing",
"Treder",
"Treiber",
"Treinen",
"Tremel",
"Treml",
"Tremmel",
"Trenkamp",
"Trenner",
"Tress",
"Tressel",
"Tressler",
"Trester",
"Tretter",
"Trettin",
"Treu",
"Trexler",
"Tribe",
"Trier",
"Trierweiler",
"Trilling",
"Trimbach",
"Trimberger",
"Trinklein",
"Tripp",
"Trippel",
"Trisko",
"Trisler",
"Trissel",
"Tritsch",
"Tritschler",
"Tritt",
"Tritz",
"Troeger",
"Troendle",
"Troester",
"Troll",
"Trommer",
"Tromp",
"Trompeter",
"Tropf",
"Tross",
"Trost",
"Trotter",
"Troudt",
"Troxel",
"Trucks",
"Trull",
"Trumbauer",
"Trumm",
"Trummer",
"Trump",
"Trunk",
"Tschetter",
"Tschirhart",
"Tschudy",
"Tubbesing",
"Tuch",
"Tuchman",
"Tuchscherer",
"Tuell",
"Tueller",
"Tuerk",
"Tulk",
"Tuller",
"Tullius",
"Tupa",
"Tupper",
"Turck",
"Turke",
"Tuss",
"Tutt",
"Tuxhorn",
"Ubel",
"Uber",
"Ubl",
"Ude",
"Udelhofen",
"Udelhoven",
"Uden",
"Uebel",
"Uebelacker",
"Uebele",
"Uehlein",
"Uehling",
"Ufer",
"Uffelman",
"Uhde",
"Uhl",
"Uhle",
"Uhler",
"Uhles",
"Uhlhorn",
"Uhlich",
"Uhlig",
"Uhlmann",
"Uhr",
"Uhrich",
"Uhrig",
"Ulberg",
"Ulbrich",
"Ulbricht",
"Ulland",
"Ullmann",
"Ullmer",
"Ullrich",
"Ulm",
"Ulman",
"Ulmen",
"Ulmer",
"Ulrich",
"Umberger",
"Umbreit",
"Umhoefer",
"Umholtz",
"Umlauf",
"Umscheid",
"Underkofler",
"Unfried",
"Ungar",
"Unger",
"Ungerer",
"Ungerleider",
"Ungerman",
"Unkel",
"Unrath",
"Unrau",
"Unrein",
"Unruh",
"Unterberger",
"Unverzagt",
"Unzicker",
"Uplinger",
"Urbach",
"Urbon",
"Urfer",
"Urich",
"Urlacher",
"Urlaub",
"Urschel",
"Urtz",
"Ury",
"Usner",
"Usselman",
"Utech",
"Utecht",
"Utesch",
"Uthe",
"Uthoff",
"Utke",
"Utsler",
"Utt",
"Uttech",
"Utzig",
"Vagts",
"Valerius",
"Vasel",
"Vath",
"Vatter",
"Vaupel",
"Veigel",
"Veil",
"Veit",
"Veitenheimer",
"Veith",
"Velte",
"Venhaus",
"Venn",
"Venne",
"Venteicher",
"Venter",
"Venzke",
"Verderber",
"Vermette",
"Verser",
"Vesper",
"Vesperman",
"Vest",
"Vester",
"Vette",
"Vettel",
"Vetter",
"Vetters",
"Vey",
"Viau",
"Viehmann",
"Viehweg",
"Viel",
"Viereck",
"Viering",
"Vierling",
"Viertel",
"Vieth",
"Vietmeier",
"Vietor",
"Vieweg",
"Vilhauer",
"Vink",
"Visel",
"Vitt",
"Vix",
"Voecks",
"Voegele",
"Voehl",
"Voeks",
"Voelkel",
"Voelker",
"Voeller",
"Voellinger",
"Voeltz",
"Voelz",
"Vogel",
"Vogele",
"Vogeler",
"Vogelgesang",
"Vogelman",
"Vogelsang",
"Vogelsberg",
"Vogl",
"Vogle",
"Vogler",
"Vogt",
"Vogts",
"Vogus",
"Vohs",
"Voigt",
"Voit",
"Volbrecht",
"Volk",
"Volker",
"Volkers",
"Volkert",
"Volkmann",
"Volkmar",
"Volkmer",
"Volland",
"Vollbrecht",
"Volle",
"Vollenweider",
"Vollman",
"Vollmar",
"Vollmer",
"Vollrath",
"Vollstedt",
"Volmer",
"Voltmer",
"Voltz",
"Volz",
"Von Bank",
"Von Bargen",
"Von Behren",
"Von Berg",
"Von Bergen",
"Von Der Ahe",
"Von Der Au",
"Von Der Heide",
"Von Eschen",
"Von Essen",
"Von Feldt",
"Von Glahn",
"Von Holten",
"Von Kaenel",
"Von Ruden",
"Von Stein",
"Von Wald",
"Vonada",
"Vondran",
"Vonnahme",
"Voos",
"Voran",
"Vorbeck",
"Vorderbruggen",
"Vorndran",
"Vorpagel",
"Vorpahl",
"Vorwald",
"Vorwerk",
"Voss",
"Waack",
"Waag",
"Waage",
"Waak",
"Waas",
"Waber",
"Wach",
"Wachholz",
"Wachs",
"Wachsman",
"Wachsmuth",
"Wachtel",
"Wachter",
"Wachtler",
"Wachtman",
"Wack",
"Wacker",
"Wackerle",
"Wadel",
"Waechter",
"Wage",
"Wageman",
"Wagemann",
"Wagenbach",
"Wagenblast",
"Wagener",
"Wagenknecht",
"Wagenman",
"Wager",
"Wages",
"Wagler",
"Wagman",
"Wagner",
"Wah",
"Wahl",
"Wahlberg",
"Wahle",
"Wahlen",
"Wahler",
"Wahlers",
"Wahlert",
"Wahlig",
"Wahls",
"Waibel",
"Waid",
"Waide",
"Waidelich",
"Wainer",
"Waisner",
"Walbeck",
"Walberg",
"Walbert",
"Walburg",
"Walch",
"Walcher",
"Walck",
"Wald",
"Walde",
"Waldeck",
"Waldecker",
"Waldemar",
"Walder",
"Waldinger",
"Waldmann",
"Waldner",
"Waldo",
"Waldoch",
"Waldorf",
"Waldow",
"Waldschmidt",
"Waldstein",
"Waldvogel",
"Walk",
"Walke",
"Walkenhorst",
"Walkes",
"Wall",
"Walla",
"Wallach",
"Wallberg",
"Wallenhorst",
"Wallenstein",
"Wallerich",
"Wallerstein",
"Walling",
"Wallinger",
"Wallisch",
"Wallman",
"Wallner",
"Walloch",
"Wallschlaeger",
"Walper",
"Walraven",
"Walsdorf",
"Walser",
"Walt",
"Waltemath",
"Walter",
"Walterman",
"Walterscheid",
"Walth",
"Walther",
"Walthers",
"Waltke",
"Waltman",
"Waltz",
"Walz",
"Wambach",
"Wambold",
"Wamboldt",
"Wambolt",
"Wamhoff",
"Wampler",
"Wamser",
"Wand",
"Wander",
"Wanderer",
"Waner",
"Wang",
"Wangelin",
"Wangen",
"Wanger",
"Wangler",
"Wank",
"Wanke",
"Wankel",
"Wann",
"Wannemacher",
"Wanner",
"Wanninger",
"Wantuch",
"Wantz",
"Wapner",
"Wardenburg",
"Warfel",
"Wargel",
"Warm",
"Warmke",
"Warmkessel",
"Warmuth",
"Warn",
"Warncke",
"Warneke",
"Warning",
"Warnke",
"Warnken",
"Warns",
"Warrenfeltz",
"Warstler",
"Wartenberg",
"Warth",
"Warthen",
"Was",
"Wascher",
"Wasem",
"Waser",
"Wasinger",
"Wasmer",
"Wass",
"Wassenberg",
"Wasser",
"Wasserman",
"Wassermann",
"Wassink",
"Wassmann",
"Wassmer",
"Wassmuth",
"Watling",
"Wattenberg",
"Watz",
"Webel",
"Weber",
"Weberg",
"Wechsler",
"Weck",
"Wecker",
"Weckesser",
"Weckman",
"Weckwerth",
"Wedde",
"Wedding",
"Wedeking",
"Wedel",
"Weder",
"Wedig",
"Weeber",
"Weech",
"Wees",
"Weese",
"Wege",
"Wegener",
"Weger",
"Weghorst",
"Wegmann",
"Wegner",
"Wehe",
"Wehinger",
"Wehle",
"Wehler",
"Wehmeier",
"Wehmeyer",
"Wehner",
"Wehr",
"Wehrenberg",
"Wehrer",
"Wehrheim",
"Wehrkamp",
"Wehrle",
"Wehrmann",
"Wehrs",
"Wehrung",
"Wehry",
"Weibel",
"Weible",
"Weich",
"Weichel",
"Weichert",
"Weichman",
"Weicht",
"Weick",
"Weickert",
"Weida",
"Weide",
"Weidel",
"Weidemann",
"Weiden",
"Weidenbach",
"Weidenfeller",
"Weidenhamer",
"Weidenhammer",
"Weider",
"Weidig",
"Weidinger",
"Weidler",
"Weidlich",
"Weidmann",
"Weidner",
"Weig",
"Weigand",
"Weigel",
"Weigelt",
"Weiger",
"Weigert",
"Weigl",
"Weigle",
"Weigman",
"Weigold",
"Weigt",
"Weigum",
"Weihe",
"Weiher",
"Weihl",
"Weihs",
"Weik",
"Weikart",
"Weikel",
"Weiker",
"Weikert",
"Weikum",
"Weiland",
"Weilbacher",
"Weiler",
"Weilert",
"Weill",
"Weimann",
"Weimar",
"Weimer",
"Weimerskirch",
"Weimert",
"Wein",
"Weinand",
"Weinberg",
"Weinberger",
"Weinbrecht",
"Weinbrenner",
"Weindel",
"Weinel",
"Weiner",
"Weinert",
"Weinfeld",
"Weinfurter",
"Weingard",
"Weingardt",
"Weinhardt",
"Weinheimer",
"Weinhold",
"Weinkauf",
"Weinke",
"Weinland",
"Weinmann",
"Weinmeister",
"Weinreb",
"Weinrich",
"Weinschenk",
"Weinstock",
"Weintraub",
"Weinzapfel",
"Weinzetl",
"Weipert",
"Weippert",
"Weirauch",
"Weirich",
"Weis",
"Weisbach",
"Weisbeck",
"Weisbecker",
"Weisberg",
"Weisberger",
"Weise",
"Weisel",
"Weisenbach",
"Weisenberg",
"Weisenberger",
"Weisenborn",
"Weisenburger",
"Weisenfeld",
"Weisensel",
"Weiser",
"Weisert",
"Weisfeld",
"Weisgerber",
"Weishaar",
"Weishaupt",
"Weisheit",
"Weishuhn",
"Weisiger",
"Weisinger",
"Weiske",
"Weiskopf",
"Weisler",
"Weismann",
"Weismantel",
"Weisner",
"Weiss",
"Weissberg",
"Weisse",
"Weissenberger",
"Weissenborn",
"Weisser",
"Weissert",
"Weissinger",
"Weissmann",
"Weist",
"Weister",
"Weisz",
"Weith",
"Weitz",
"Weitzel",
"Weitzman",
"Weitzner",
"Weix",
"Weixel",
"Welch",
"Welchel",
"Welcher",
"Welde",
"Welden",
"Welder",
"Weldin",
"Welge",
"Welk",
"Welke",
"Well",
"Wellbaum",
"Wellborn",
"Welle",
"Weller",
"Wellhausen",
"Welling",
"Wellmann",
"Wellnitz",
"Wels",
"Welsch",
"Welser",
"Welt",
"Welte",
"Welter",
"Weltman",
"Weltmer",
"Weltz",
"Welz",
"Wemmer",
"Wempe",
"Wenck",
"Wend",
"Wende",
"Wendel",
"Wender",
"Wenderoth",
"Wendl",
"Wendland",
"Wendlandt",
"Wendle",
"Wendler",
"Wendling",
"Wendorff",
"Wendt",
"Wendtland",
"Wener",
"Weng",
"Wengel",
"Wenger",
"Wengert",
"Wengler",
"Wenhold",
"Wenig",
"Weniger",
"Weninger",
"Wenk",
"Wenke",
"Wenker",
"Wenner",
"Wenning",
"Wenninger",
"Wenrich",
"Wensel",
"Wente",
"Wenthe",
"Wentz",
"Wentzel",
"Wentzell",
"Wenz",
"Wenzel",
"Wenzinger",
"Wenzl",
"Wenzler",
"Wenzlick",
"Weppler",
"Werber",
"Werden",
"Werfel",
"Werk",
"Werkheiser",
"Werking",
"Werkman",
"Werkmeister",
"Werle",
"Werlein",
"Werling",
"Werlinger",
"Werman",
"Wermers",
"Wermuth",
"Werner",
"Wernert",
"Wernet",
"Wernick",
"Wernicke",
"Wernig",
"Werning",
"Wernke",
"Wernsing",
"Wernsman",
"Werntz",
"Werra",
"Werre",
"Wersal",
"Werst",
"Werstler",
"Wert",
"Werth",
"Wertheim",
"Wertheimer",
"Werther",
"Werthmann",
"Wertman",
"Wertz",
"Wesch",
"Weschler",
"Weseloh",
"Wesner",
"Wess",
"Wessel",
"Wesselmann",
"Wessinger",
"Wessling",
"Wessman",
"Wessner",
"Westen",
"Westenberger",
"Westendorf",
"Wester",
"Westerberg",
"Westerfeld",
"Westerhaus",
"Westermeyer",
"Westfahl",
"Westfall",
"Westheimer",
"Westmark",
"Westmeyer",
"Westpfahl",
"Westphal",
"Westphalen",
"Westphall",
"Westrich",
"Westrick",
"Westrum",
"Westrup",
"Wetenkamp",
"Wetsch",
"Wettengel",
"Wetter",
"Wetterau",
"Wetterer",
"Wettig",
"Wettlaufer",
"Wetz",
"Wetzel",
"Wetzell",
"Wetzler",
"Wetzstein",
"Wexler",
"Weyenberg",
"Weyer",
"Weygand",
"Weygandt",
"Weyhrich",
"Weyl",
"Weyland",
"Weyrauch",
"Weyrich",
"Wiand",
"Wiant",
"Wibbenmeyer",
"Wichert",
"Wicht",
"Wicka",
"Wickel",
"Wickenheiser",
"Wicker",
"Wickers",
"Wickersheim",
"Wickert",
"Wickland",
"Wicklein",
"Wickman",
"Widder",
"Wideman",
"Widmaier",
"Widmann",
"Widmar",
"Widmer",
"Widmeyer",
"Widner",
"Widrig",
"Wieand",
"Wiebe",
"Wiebelhaus",
"Wieber",
"Wiebke",
"Wiebold",
"Wieboldt",
"Wiech",
"Wiechert",
"Wieck",
"Wied",
"Wiedel",
"Wiedeman",
"Wiedemann",
"Wiedemeier",
"Wiedenmann",
"Wieder",
"Wiederhold",
"Wiederholt",
"Wiederkehr",
"Wiedmaier",
"Wiedmeyer",
"Wiedner",
"Wiedrich",
"Wiegand",
"Wiegel",
"Wieger",
"Wiegmann",
"Wiegner",
"Wieland",
"Wiele",
"Wieler",
"Wiemer",
"Wien",
"Wiener",
"Wienke",
"Wiens",
"Wier",
"Wierman",
"Wies",
"Wiese",
"Wiesel",
"Wieseler",
"Wiesemann",
"Wiesen",
"Wiesenfeld",
"Wiesenthal",
"Wieser",
"Wiesinger",
"Wiesler",
"Wiesman",
"Wiesmann",
"Wiesner",
"Wiest",
"Wieters",
"Wiewel",
"Wigand",
"Wigger",
"Wiggers",
"Wigner",
"Wikert",
"Wilberding",
"Wilberg",
"Wilberger",
"Wilbers",
"Wilch",
"Wild",
"Wilda",
"Wildberger",
"Wilden",
"Wildenberg",
"Wildermuth",
"Wildhaber",
"Wilding",
"Wildman",
"Wildstein",
"Wildt",
"Wilfert",
"Wilger",
"Wilham",
"Wilharm",
"Wilhelm",
"Wilhelmi",
"Wilhelms",
"Wilhelmy",
"Wilhite",
"Wilkens",
"Wilker",
"Will",
"Willauer",
"Wille",
"Willen",
"Willenberg",
"Willenborg",
"Willenbring",
"Willenbrink",
"Willer",
"Willert",
"Willhelm",
"Willi",
"Williard",
"Willig",
"Willing",
"Willinger",
"Willkomm",
"Willmann",
"Willmer",
"Willner",
"Willrich",
"Wills",
"Willwerth",
"Wilm",
"Wilmer",
"Wilner",
"Wilt",
"Wiltz",
"Wiltzius",
"Wilz",
"Wimmer",
"Wimmers",
"Winchenbach",
"Winckler",
"Wind",
"Windels",
"Winden",
"Windholz",
"Windisch",
"Windler",
"Windschitl",
"Windt",
"Winge",
"Winger",
"Wingert",
"Wingerter",
"Wingler",
"Winiger",
"Wininger",
"Winings",
"Winkel",
"Winkelbauer",
"Winkeler",
"Winkelman",
"Winkelmann",
"Winkels",
"Winker",
"Winkleblack",
"Winkler",
"Winstel",
"Winterberg",
"Winterfeld",
"Winterfeldt",
"Winterhalter",
"Winterroth",
"Winterstein",
"Winther",
"Wintz",
"Winzeler",
"Winzer",
"Wion",
"Wipf",
"Wipperfurth",
"Wipperman",
"Wirgau",
"Wirsing",
"Wirt",
"Wirth",
"Wirtz",
"Wirz",
"Wischer",
"Wiskow",
"Wismer",
"Wisner",
"Wiss",
"Wisse",
"Wissel",
"Wisser",
"Wissing",
"Wissinger",
"Wissler",
"Wissmann",
"Wittenauer",
"Witter",
"Witters",
"Wittich",
"Wittig",
"Wittkamp",
"Wittke",
"Wittler",
"Wittlinger",
"Wittmann",
"Wittmer",
"Wittmeyer",
"Wittner",
"Wittwer",
"Witwer",
"Witz",
"Witzel",
"Witzig",
"Witzman",
"Wobschall",
"Woehler",
"Woehr",
"Woelfel",
"Woelfle",
"Woelk",
"Woelke",
"Woerner",
"Woertz",
"Woessner",
"Woeste",
"Wohl",
"Wohlfarth",
"Wohlfeil",
"Wohlgemuth",
"Wohlman",
"Wojahn",
"Wolbach",
"Wolber",
"Wolbers",
"Wolbert",
"Woldt",
"Wolf",
"Wolfanger",
"Wolfel",
"Wolfer",
"Wolfert",
"Wolff",
"Wolfgang",
"Wolfgram",
"Wolfinger",
"Wolfmeyer",
"Wolfrom",
"Wolfrum",
"Wolgast",
"Wolgemuth",
"Wolk",
"Wolke",
"Wolken",
"Woll",
"Wolle",
"Wollenberg",
"Wollenburg",
"Wollenhaupt",
"Wollenweber",
"Woller",
"Wollerman",
"Wollett",
"Wollin",
"Wollitz",
"Wollmann",
"Wollner",
"Wollschlager",
"Wolper",
"Wolpert",
"Woltmann",
"Woltz",
"Wolz",
"Wombacher",
"Womeldorf",
"Womelsdorf",
"Worl",
"Worm",
"Worms",
"Wormser",
"Wormuth",
"Worner",
"Worst",
"Worster",
"Wortz",
"Wragge",
"Wruck",
"Wuchter",
"Wuebker",
"Wuellner",
"Wuensch",
"Wuensche",
"Wuerth",
"Wuertz",
"Wuest",
"Wuesthoff",
"Wuethrich",
"Wulfekuhle",
"Wullschleger",
"Wunder",
"Wunderlich",
"Wunderlin",
"Wunsch",
"Wurdeman",
"Wurl",
"Wurm",
"Wurst",
"Wurster",
"Wurth",
"Wurtz",
"Wurz",
"Wurzbach",
"Wurzel",
"Wurzer",
"Wussow",
"Wuthrich",
"Wuttke",
"Wutzke",
"Wyland",
"Xander",
"Xanders",
"Zabel",
"Zabka",
"Zach",
"Zacharias",
"Zacher",
"Zachmann",
"Zachrich",
"Zacker",
"Zaeske",
"Zager",
"Zahl",
"Zahler",
"Zahm",
"Zahn",
"Zahner",
"Zahniser",
"Zahrt",
"Zamzow",
"Zand",
"Zander",
"Zanger",
"Zant",
"Zaring",
"Zarling",
"Zarr",
"Zarse",
"Zartman",
"Zaske",
"Zastrow",
"Zaun",
"Zaunbrecher",
"Zavitz",
"Zech",
"Zecher",
"Zeglin",
"Zeh",
"Zehler",
"Zehm",
"Zehner",
"Zehr",
"Zehring",
"Zehrung",
"Zeichner",
"Zeier",
"Zeiger",
"Zeilinger",
"Zeilman",
"Zeinert",
"Zeise",
"Zeiser",
"Zeiss",
"Zeitz",
"Zell",
"Zellar",
"Zellars",
"Zelle",
"Zeller",
"Zellmann",
"Zellmer",
"Zellner",
"Zelmer",
"Zelt",
"Zemke",
"Zemp",
"Zempel",
"Zender",
"Zens",
"Zent",
"Zentgraf",
"Zentner",
"Zentz",
"Zenz",
"Zepf",
"Zepp",
"Zerbe",
"Zerbel",
"Zerbst",
"Zerfas",
"Zerfoss",
"Zerger",
"Zern",
"Zessin",
"Zettel",
"Zettler",
"Zewe",
"Zibell",
"Ziebell",
"Ziegel",
"Ziegelbauer",
"Ziegenbein",
"Ziegenfuss",
"Ziegenhagen",
"Ziegenhorn",
"Zieger",
"Ziegler",
"Ziehl",
"Ziel",
"Zielke",
"Zielsdorf",
"Ziems",
"Zier",
"Zierden",
"Zierer",
"Zierke",
"Ziesemer",
"Zieser",
"Zietlow",
"Zilch",
"Zill",
"Ziller",
"Zilles",
"Zilliox",
"Zillman",
"Zillmer",
"Zills",
"Zima",
"Zimet",
"Zimmel",
"Zimmer",
"Zimmerer",
"Zimmermann",
"Zimmers",
"Zinck",
"Zindel",
"Zindler",
"Zingler",
"Zingsheim",
"Zink",
"Zinke",
"Zinn",
"Zinnecker",
"Zinnel",
"Zinner",
"Zins",
"Zinser",
"Zinsmeister",
"Zinter",
"Zipf",
"Zipfel",
"Zipp",
"Zipper",
"Zipperer",
"Zipprich",
"Zipse",
"Zipser",
"Zirbel",
"Zirbes",
"Zirk",
"Zirkel",
"Zirkelbach",
"Ziter",
"Zittel",
"Zobel",
"Zoch",
"Zoeller",
"Zoellick",
"Zoellner",
"Zoerb",
"Zoerner",
"Zoll",
"Zoller",
"Zollinger",
"Zollner",
"Zopf",
"Zorn",
"Zornes",
"Zornow",
"Zotter",
"Zuber",
"Zubke",
"Zuck",
"Zucker",
"Zuckerman",
"Zuehl",
"Zuehlke",
"Zuercher",
"Zufall",
"Zufelt",
"Zuhlke",
"Zuleger",
"Zumalt",
"Zumbach",
"Zumbrun",
"Zumbrunnen",
"Zumstein",
"Zumwalt",
"Zundel",
"Zunk",
"Zunker",
"Zurbuchen",
"Zurcher",
"Zurn",
"Zutz",
"Zuver",
"Zwack",
"Zwanziger",
"Zweber",
"Zweifel",
"Zweig",
"Zwerling",
"Zwicker",
"Zwiebel",
"Zwilling",
"Zwirn"]>>
<<set setup.swissSurnames to [
"Abderhalden",
"Abdorf",
"Abegglen",
"Adlischwil",
"Aebersold",
"Aebi",
"Aegerter",
"Aeschbacher",
"Aeschlimann",
"Affholtern",
"Affry",
"Aichou",
"Aichan",
"Airoloou",
"Airoly",
"Albenas",
"Almentz",
"Althausenou",
"Althusen",
"Altorf",
"Altsteten",
"Altwys",
"Ambring",
"Amenhusen",
"Ammann",
"Ammolteren",
"Ampringenou",
"Andelfingen",
"Andelon",
"Argau",
"Arnold",
"Attal",
"Auch",
"Aych",
"Bach",
"Bachmann",
"Baden",
"Badwegen",
"Baldoff",
"Ball",
"Balmoss",
"Balswyl",
"Banderet",
"Basel",
"Basserstoff",
"Basterot",
"Baumann",
"Baumgartner",
"Bazenberg",
"Beausobre",
"Beckenhofen",
"Beerli",
"Beinweil",
"Belsholz",
"Bentheim",
"Berenburg",
"Berger",
"Berlickon",
"Bernau",
"Berneck",
"Bernstos",
"Besenval",
"Besseningen",
"Besson",
"Bettwingen",
"Biberlisburg",
"Bidarich",
"Bieberstein",
"Biederthan",
"Biel",
"Bienburg",
"Bieri",
"Bilstein",
"Bischoff",
"Bizzenhoven",
"Blaser",
"Blasshorn",
"Blattenberg",
"Blatzheim",
"Bleuler",
"Bludenz",
"Blümenberg",
"Bochardt",
"Bodmann",
"Boltschhausen",
"Bondeli",
"Bonlant",
"Bonnivard",
"Bonstetten",
"Bossenstein",
"Bottensulz",
"Brechter",
"Bregenz",
"Bremgartz",
"Briner",
"Brofelden",
"Bruckthal",
"Brugger",
"Brünighofen",
"Brunnen",
"Brunnenfeldt",
"Brunner",
"Bubendorf",
"Buch",
"Buchberg",
"Bücheck",
"Buchennas",
"Buchenstein",
"Bucher",
"Buchhain",
"Buchman",
"Buhler",
"Bürglen",
"Burgthör",
"Bürkli",
"Burri",
"Burst",
"Busingen",
"Buttenstein",
"Buwenburg",
"Buzer",
"Carbonnier",
"Casselberg",
"Castella",
"Castelmur",
"Castris",
"Cazenove",
"Chalg",
"Chienstein",
"Chouppart",
"Christen",
"Clavel",
"Clingenberg",
"Courten",
"Crachenfels",
"Criech",
"Cussen",
"Dachsfelden",
"Dagstein",
"Desmartinez",
"Dienberg",
"Diesbach",
"Diess",
"Dinnbach",
"Dornach",
"Dübelstein",
"Durnach",
"Dürnten",
"Dux",
"Eberhart",
"Eckhart",
"Eckholt",
"Egbrecht",
"Egbret",
"Egger",
"Egli",
"Egoltsweil",
"Ehrenfels",
"Eichelberg",
"Ellgau",
"Elnhoven",
"Elsass",
"Empzou",
"Ems",
"Endgasser",
"Endikon",
"Engelsberg",
"Eppenberg",
"Eppenstein",
"Eptingen",
"Ergemer",
"Ergow",
"Ergsingen",
"Erischweil",
"Ertzlin",
"Eschentz",
"Escherny",
"Espinoy",
"Esslinger",
"Estbach",
"Falckner",
"Fankhauser",
"Farr",
"Favre",
"Federspihl",
"Feeren",
"First",
"Fischer",
"Fleckenstein",
"Flegelberg",
"Fluckiger",
"Fluntern",
"Flüntern",
"Focksberg",
"Fogelwerder",
"Folckenschweil",
"Frauwier",
"Frei",
"Freidenach",
"Frey",
"Freyburg",
"Friberg",
"Fridheim",
"Fridpolt",
"Friedberg",
"Frieneck",
"Frienstein",
"Friesenberg",
"Froburg",
"Frödenach",
"Fröhlich",
"Fronspurg",
"Frowyss",
"Fuchs",
"Fuessli",
"Fürberg",
"Furrer",
"Füssli",
"Gacheo",
"Gamerswang",
"Gärtringen",
"Gasser",
"Gaswyler",
"Geissriem",
"Gelterchingen",
"Geltern",
"Geltingen",
"Gerber",
"Germanstorff",
"Gex",
"Giel de",
"Giger",
"Gilgen",
"Gilgenberg",
"Gisler",
"Glatfelden",
"Gnaepfer",
"Goedli",
"Goessier",
"Gonzenbach",
"Gosser",
"Gotsch",
"Gowenstein",
"Graber",
"Graf",
"Grandson",
"Grasburg",
"Grassower",
"Greling",
"Grencken",
"Greüt",
"Grienenfels",
"Griess",
"Grimslen",
"Grosbach",
"Grunenberg",
"Grunenfels",
"Guetenfels",
"Guldinen",
"Gumoens",
"Gundisau",
"Guotenberg",
"Haben",
"Häberli",
"Haberlin",
"Habich",
"Hackbret",
"Hädern",
"Hadlickon",
"Hagenbach",
"Hagendorn",
"Haldenstein",
"Hall",
"Halten",
"Hane",
"Hans",
"Hansler",
"Hardegg",
"Hari",
"Hartmann",
"Hasenbain",
"Hasenweiler",
"Hasler",
"Hatingen",
"Hauser",
"Haydnow",
"Hechlingen",
"Hedingen",
"Heffelfinger",
"Hegenheim",
"Heggetzer",
"Hegnow",
"Helmshoven",
"Helt",
"Herlinberg",
"Herrschen",
"Hertenberg",
"Hess",
"Hessy",
"Hettlingen",
"Heudebert",
"Heutler",
"Hexendorf",
"Heydegger",
"Heymenstein",
"Hinweil",
"Hirseg",
"Hochenberg",
"Hochst",
"Hochuli",
"Hofer",
"Hoff",
"Hoffsteten",
"Hofmann",
"Hofstetten",
"Hoheneck",
"Hohenheim",
"Holtzhalb",
"Holtzhalben",
"Holzhausen",
"Honberg",
"Honbergou",
"Hondorf",
"Honrein",
"Hör",
"Horenberg",
"Horw",
"Hosthan",
"Hottingen",
"Huber",
"Huenou",
"Hueneberg",
"Huenen",
"Huet",
"Hug",
"Hugelshofen",
"Huirling",
"Hünerhausen",
"Huntzickon",
"Hunziker",
"Hurt-Binet",
"Hurus",
"Husswyl",
"Hutenberg",
"Hutsberg",
"Huwyler",
"Ibzich",
"Ifenthal",
"Ilickhausen",
"Illens",
"Illnoir",
"Imhof",
"Imthurn",
"In der Maur",
"Inggweil",
"Irmensee",
"Isnach",
"Itelhusen",
"Jaggi",
"Jegglin",
"Jemmendingen",
"Jestetten",
"Juncker",
"Juvalt",
"Kalin",
"Kammermeister",
"Kämrer",
"Kaplan",
"Kaufmann",
"Keller",
"Kemloten",
"Kemmat",
"Kenzingen",
"Keszwill",
"Ketschwyl",
"Kielholz",
"Kienberg",
"Kilchain",
"Kim",
"Kimmich",
"Klotten",
"Knoblauch",
"Koch",
"Koehl",
"Koenigstein",
"Kohler",
"Kohli",
"Koller",
"Königstein",
"Kopffenberg",
"Kornberg",
"Kraft",
"Krais",
"Krebser",
"Krenckingen",
"Kriechhen",
"Kromm",
"Kronthal",
"Kuhn",
"Kung",
"Kunz",
"Kurberg",
"Kürnbach",
"Kussenberg",
"Kussnach",
"Lagern",
"Laimeren",
"Laiterberg",
"Landerpfau",
"Landolt",
"Landskron",
"Lang",
"Langenstein",
"Langes de",
"Lanzhuet",
"Lauffe",
"Lauternau",
"Lavater",
"Lehmann",
"Leuenberger",
"Liebeck",
"Liebenburg",
"Liebenstein",
"Liechti",
"Liel",
"Lindiberg",
"Lindnack",
"Lindow",
"Littenhaidt",
"Littow",
"Lochnow",
"Lönburg",
"Lorack",
"Lörrach",
"Lotzweyl",
"Lubières",
"Lucadou",
"Lullin",
"Lummerins",
"Lunckhofen",
"Lussi",
"Lustenberger",
"Luterberg",
"Luthi",
"Lütolsdorf",
"Lutra",
"Luttersberg",
"Lygertz",
"Lynsy",
"Maa",
"Magelshofen",
"Magstat",
"Maienthal",
"Malrein",
"Malters",
"Maneck",
"Manegg",
"Mangoltshofen",
"Mannenbach",
"Manoël",
"Mansperg",
"Marbach",
"Marmels",
"Marolf",
"Marquardt",
"Marrer",
"Martdorf",
"Marti",
"Martin",
"Mascraniou",
"Mascrany",
"Massburg",
"Mattstetten",
"Maurer",
"Mazereller",
"Megenheim",
"Meggenheim",
"Megken",
"Meier",
"Merian",
"Messickhon",
"Metenwyl",
"Mettenbuch",
"Meyer",
"Meys",
"Michel",
"Miner",
"Monchsberg",
"Monier",
"Montsax",
"Monyer",
"Mos",
"Mosburg",
"Moser",
"Moss",
"Mosshart",
"Mossheim",
"Mowensee",
"Muff",
"Mülerein",
"Mülhain",
"Muller",
"Müller",
"Multberg",
"Munzingen",
"Münzmeister",
"Murckhart",
"Murer",
"Müris",
"Murnhart",
"Muxheim",
"Natterer",
"Nennickon",
"Neudeck",
"Neuenstein",
"Neuentuffen",
"Neufchâtel",
"Neuscheler",
"Nideg",
"Nordholz",
"Nordtholz",
"Norrenberg",
"Norttenberg",
"Nosickon",
"Nüfron",
"Nusslingen",
"Nüwenburg",
"Nyfar",
"Oberkam",
"Oberkampf",
"Oberriedern",
"Obrahoven",
"Obstfelden",
"Odermatt",
"Oentz",
"Oeringen",
"Om",
"Omen",
"Opffingen",
"Opfikon",
"Origny",
"Orstein",
"Osterbach",
"Ostzweil",
"Otandem",
"Ott de Pierbaum",
"Ottelfingen",
"Ottenbach",
"Ottenfels",
"Ottikon",
"Ottlikon",
"Ougsburg",
"Panigaden",
"Passellen",
"Pavier",
"Pestalozza",
"Peter",
"Pfaeffikon",
"Pfaff",
"Pfenninger",
"Pfister",
"Pfungen",
"Pfyfer",
"Pfyffer",
"Polweil",
"Portmann",
"Praegler",
"Praun",
"Prévost",
"Pubix",
"Puirs",
"Raevell",
"Rallemberg",
"Ramensperg",
"Ramstein",
"Rand",
"Randeck",
"Randeg",
"Räner",
"Rast",
"Ratolsdorf",
"Razenriet",
"Rechli",
"Reding",
"Reinold",
"Reinsberg",
"Remontstein",
"Rhinau",
"Rhynhart",
"Riaens",
"Richartzhoven",
"Richenbach",
"Richenburg",
"Riefern",
"Riehen",
"Riet",
"Riethusen",
"Rifferschweil",
"Rineck",
"Rinfelden",
"Rinow",
"Rinsfelden",
"Roggliesweil",
"Roggweil",
"Romanshorn",
"Rordorf",
"Rorschach",
"Roseck",
"Rosenberg",
"Rosenhatz",
"Rosnow",
"Rossberg",
"Rossliner d\'Altmanshofen",
"Rotelen",
"Rötenberg",
"Rotenstein",
"Roth",
"Röthlisberger",
"Rubisweil",
"Rubli",
"Ruchenstein",
"Ruchti",
"Rüdberg",
"Rüdischweil",
"Rudolf",
"Ruedt",
"Ruegg",
"Rüegg",
"Rüti",
"Ryffemberg",
"Saint Viner",
"Saladin",
"Salenstein",
"Salis",
"Sandolshain",
"Sarinow",
"Sausin",
"Sax",
"Schaffauser",
"Schalcken",
"Schar",
"Scharer",
"Schärer",
"Schauenber",
"Schauenburg",
"Schauenstein",
"Scheidegger",
"Schein",
"Schenck d\'Oberkilch",
"Schenck de Bremgarten",
"Schenck de Gossikon",
"Schenck de Landegg",
"Schenck de Liebenberg",
"Schenk von Basel",
"Scherrer",
"Scherzburg",
"Schilter",
"Schladt",
"Schläppi",
"Schliengen",
"Schlierbach",
"Schmid",
"Schmidt",
"Schmidtmayer",
"Schneeberg",
"Schneider",
"Schneitt",
"Schnelkh",
"Schneuwly",
"Schoch",
"Schollenberg",
"Schönau",
"Schönbächler",
"Schönbühel",
"Schonen",
"Schönen",
"Schönenwert",
"Schönkind",
"Schönno",
"Schopf",
"Schörlin",
"Schowenburg",
"Schowenstein",
"Schrennen",
"Schuler",
"Schulthais",
"Schultheis",
"Schupffhaim",
"Schussenriedt",
"Schwandeck",
"Schwaninger",
"Schwartzmurer",
"Schwarz",
"Schwegler",
"Schweizer",
"Schyterberg",
"Sebergüntz",
"Seeberg",
"Seedorf",
"Seiler",
"Seldenburen",
"Sempach",
"Senn",
"Sewen",
"Seymandy de",
"Siegenthaler",
"Siemeding",
"Sigelmann",
"Sigristlin",
"Simpelen",
"Sissach",
"Slutolx",
"Sommer",
"Sonnenberg",
"Soppensee",
"Spändli",
"Spilberg",
"Spulen",
"Spysser",
"St Gervais",
"Staal",
"Staheli",
"Staina",
"Stalder",
"Stampa",
"Stauffacher",
"Steffis",
"Stegen",
"Steineck",
"Steiner",
"Stelten",
"Stettiurth",
"Stickel",
"Stockarou",
"Stocker",
"Störi",
"Straleneck",
"Strass",
"Strausberg",
"Stuckar",
"Stucki",
"Studengast",
"Studer",
"Stuffis",
"Sturzenegger",
"Stussin",
"Sultz",
"Sunthain",
"Sürg",
"Sursee",
"Suter",
"Suther",
"Sutter",
"Tägerfeld",
"Tal",
"Talckenberg",
"Tallikam",
"Tallwyl",
"Talmesingen",
"Tannenfels",
"Tanner",
"Tartanac",
"Tascher",
"Tegerman",
"Tegernen",
"Teissier",
"Teller",
"Tengen",
"Terwenler",
"Tess",
"Tetnang",
"Tettnow",
"Textor",
"Thomé",
"Tieringer",
"Titenschein",
"Titler",
"Tobel",
"Toggenburg",
"Tor",
"Tosters",
"Trachselwald",
"Tribberg",
"Triboeck",
"Trimis",
"Trostberg",
"Trullerey",
"Trutgeselle",
"Tüdingen",
"Tüfel",
"Tuffenstein",
"Turber",
"Turnach",
"Twingenstein",
"Tyffen",
"Uetendorf",
"Uffenstein",
"Uffheim",
"Ufheim",
"Ulingen",
"Ulrich",
"Urburg",
"Urslingen",
"Utliburg",
"Utzingen",
"Varbüler",
"Venner",
"Verne de Luze",
"Veseneck",
"Vilingen",
"Villiger",
"Virkarn",
"Vogel",
"Vogt",
"Vonlanthen",
"Wabern",
"Wagenberg",
"Wagner",
"Waldenberg",
"Waldkirch",
"Waler",
"Walissellen",
"Waltenheim",
"Walterswyl",
"Waltpach",
"Walwis",
"Wangen",
"Wartensee",
"Wasserburg",
"Wassersteltz",
"Wath",
"Weber",
"Wedstain",
"Wegenstetten",
"Wegmann",
"Wellenberg",
"Wellener",
"Wenger",
"Wengi",
"Werdeck",
"Weriant",
"Weschhaus",
"Wesperspul",
"Wetzwyl",
"Wichser",
"Widmer",
"Wieladingen",
"Wiener",
"Wildenberg",
"Wildenfels",
"Wildenstein",
"Wildperg",
"Wildrich",
"Wile",
"Wilfendingen",
"Willers",
"Winckelzen",
"Winckles",
"Windeg",
"Winterberg",
"Wirtz",
"Wisnang",
"Wissenang",
"Wisskilch",
"Wissweil",
"Witnow",
"Wolen",
"Wölfflin",
"Wölfli",
"Wolishofen",
"Wolrow",
"Wolsattel",
"Wulffingen",
"Wulp",
"Wulpisberg",
"Würtz",
"Wuthrich",
"Wüthrich",
"Wyden",
"Wydenbach",
"Wydenhuber",
"Wyl",
"Wylberg",
"Wyler",
"Wynfelden",
"Wyss",
"Yffendal",
"Ylingen",
"Yllbrunn",
"Yoder",
"Yter",
"Zaugg",
"Zbinden",
"Zellweger",
"Zerkinden",
"Zesingen",
"Zgloltzweil",
"Zielwer",
"Zimmermann",
"Zinnicken",
"Zinnickon",
"Zollikon",
"Zollner",
"Zschokke",
"Zumthor",
"Zundel",
"Zurcher",
"Zureich",
"Zürnler",
"Zwicken",
"Zwiengenberg",
"Zwingenhofen",
"Zwyssig"]>>
<<set setup.frenchSurnames to [
"Abel",
"Abraham",
"Adam",
"Albert",
"Allard",
"André",
"Archambault",
"Arthur",
"Augustin",
"Babin",
"Babineaux",
"Barre",
"Baudin",
"Beauchêne",
"Beaufort",
"Beaulieu",
"Beaumont",
"Bélanger",
"Bellamy",
"Bellerose",
"Belmont",
"Belrose",
"Béranger",
"Berger",
"Béringer",
"Bernard",
"Bertrand",
"Blaise",
"Blanc",
"Blanchar",
"Blanchet",
"Blanchett",
"Boivin",
"Bonfils",
"Bonheur",
"Bonhomme",
"Bonnaire",
"Bonnay",
"Bonnet",
"Borde",
"Bouchard",
"Boucher",
"Bourdillon",
"Bourreau",
"Bret",
"Brisbois",
"Brodeur",
"Bureau",
"Caron",
"Chaput",
"Charbonneau",
"Charpentier",
"Charron",
"Chastain",
"Chevalier",
"Chevrolet",
"Christian",
"Clément",
"Cloutier",
"Colbert",
"Comtois",
"Coste",
"Côté",
"Courtemanche",
"Cousineau",
"Couture",
"D\'aramitz",
"Daniau",
"Daniel",
"Daviau",
"David",
"De La Fontaine",
"Deforest",
"Degarmo",
"Delacroix",
"Deniau",
"Deniaud",
"Deniel",
"Denis",
"Dennel",
"Deschamps",
"Descoteaux",
"Desjardins",
"Desroches",
"Desrosiers",
"Droit",
"Dubois",
"Duchamps",
"Dufort",
"Dufour",
"Duguay",
"Dumont",
"Dupond",
"Dupont",
"Durand",
"Durant",
"Duval",
"Émile",
"Fabien",
"Fabre",
"Fabron",
"Faucher",
"Faucheux",
"Faure",
"Favager",
"Favre",
"Favreau",
"Fay",
"Félix",
"Fèvre",
"Firmin",
"Fontaine",
"Forest",
"Forestier",
"Fortier",
"Fosse",
"Fournier",
"François",
"Gage",
"Gagneux",
"Gagnier",
"Gagnon",
"Garçon",
"Gardinier",
"Garnier",
"Gauthier",
"Germain",
"Géroux",
"Girard",
"Giroux",
"Gosse",
"Gosselin",
"Granger",
"Gros",
"Guérin",
"Guillory",
"Hardy",
"Hébert",
"Herbert",
"Jacques",
"Janvier",
"Jordan",
"Joubert",
"Labelle",
"Lachance",
"Lachapelle",
"Lamar",
"Lambert",
"Lane",
"Langlais",
"Langlois",
"Lapointe",
"Larue",
"Laurent",
"Lavigne",
"Lavoie",
"Leandres",
"Lebeau",
"Leblanc",
"Leclair",
"Leclerc",
"Lécuyer",
"Lefebvre",
"Lefèvre",
"Lefurgey",
"Legrand",
"Lemaire",
"Lémieux",
"Leon",
"Leroy",
"Lesauvage",
"Lestrange",
"Lévêque",
"Lévesque",
"Linville",
"Lucas",
"Lyon",
"Maçon",
"Marchand",
"Marie",
"Marion",
"Martel",
"Martin",
"Masson",
"Mathieu",
"Mercier",
"Merle",
"Michaud",
"Michel",
"Monet",
"Monette",
"Montagne",
"Moreau",
"Morel",
"Moulin",
"Mullins",
"Nicolas",
"Noel",
"Noyer",
"Olivier",
"Paget",
"Palomer",
"Pan",
"Pape",
"Paquet",
"Parent",
"Paris",
"Parris",
"Pascal",
"Patenaude",
"Paternoster",
"Paul",
"Pelletier",
"Perrault",
"Perreault",
"Perrin",
"Perrot",
"Petit",
"Pettigrew",
"Pierre",
"Plamondon",
"Plourde",
"Poirier",
"Porcher",
"Poulin",
"Proulx",
"Renaud",
"Rey",
"Reyer",
"Richard",
"Richelieu",
"Robert",
"Roche",
"Rome",
"Romilly",
"Rose",
"Rousseau",
"Roussel",
"Roux",
"Roy",
"Royer",
"Salmon",
"Salomon",
"Samson",
"Samuel",
"Sartre",
"Sault",
"Sauvage",
"Sauvageau",
"Sauvageon",
"Sauvageot",
"Sauveterre",
"Savatier",
"Segal",
"Sergeant",
"Séverin",
"Simon",
"Soucy",
"Sourd",
"St Martin",
"St Pierre",
"Tailler",
"Tasse",
"Thayer",
"Thibault",
"Thomas",
"Traver",
"Travere",
"Travers",
"Traverse",
"Travert",
"Tremblay",
"Tremble",
"Victor",
"Villeneuve",
"Vincent",
"Voclain"]>>
<<set setup.irishMaleFirstnames to [
"Aaron",
"Adam",
"Aidan",
"Alby",
"Alex",
"Alexander",
"Alfie",
"Andrew",
"Anthony",
"Aodh",
"Barry",
"Ben",
"Benjamin",
"Billy",
"Bobby",
"Braden",
"Brendan",
"Brian",
"Bryan",
"Byrne",
"Cairbre",
"Callum",
"Calum",
"Carey",
"Casey",
"Cassidy",
"Cathal",
"Charlie",
"Christopher",
"Cian",
"Ciaran",
"Cillian",
"Colin",
"Colm",
"Conall",
"Connor",
"Conor",
"Cormac",
"Courtney",
"Craig",
"Culkin",
"Cullen",
"Dáire",
"Dáithí",
"Daniel",
"Danny",
"Dara",
"Daragh",
"Darragh",
"Darren",
"David",
"Declan",
"Denis",
"Desmond",
"Dillon",
"Domnall",
"Donal",
"Donnacha",
"Donnchad",
"Dylan",
"Edward",
"Emmanuel",
"Emmet",
"Ennis",
"Eoghan",
"Eoin",
"Eric",
"Erskine",
"Ethan",
"Evan",
"Fergus",
"Filip",
"Finian",
"Finn",
"Finnian",
"Fionn",
"Flannery",
"Gary",
"George",
"Gerard",
"Gilroy",
"Glen",
"Harry",
"Henry",
"Hugh",
"Hugo",
"Ian",
"Isaac",
"Jack",
"Jacob",
"Jake",
"Jakub",
"James",
"Jamie",
"Jannon",
"Jayden",
"John",
"Jonathan",
"Jordan",
"Joseph",
"Josh",
"Joshua",
"Kacper",
"Kai",
"Karl",
"Kassidy",
"Kayden",
"Keiran",
"Keith",
"Kelly",
"Kevin",
"Kian",
"Kier",
"Kieran",
"Kiernan",
"Kieron",
"Killian",
"Kyle",
"Kyran",
"Leary",
"Leo",
"Leon",
"Liam",
"Logan",
"Lorcan",
"Luca",
"Lucas",
"Luke",
"Mannix",
"Marcas",
"Marcus",
"Mark",
"Martin",
"Mason",
"Matthew",
"Max",
"Michael",
"Nathan",
"Neil",
"Noah",
"Odhrán",
"Oisin",
"Oliver",
"Ollie",
"Oscar",
"Owen",
"Patrick",
"Patryk",
"Paul",
"Peadar",
"Peter",
"Philip",
"Quinn",
"Reagan",
"Regan",
"Rhys",
"Rian",
"Richard",
"Robert",
"Ronan",
"Rory",
"Rowan",
"Ruairí",
"Ryan",
"Sam",
"Samuel",
"Scott",
"Seamus",
"Sean",
"Sebastian",
"Senan",
"Shane",
"Shaun",
"Shay",
"Simon",
"Steven",
"Szymon",
"Tadhg",
"Thomas",
"Tom",
"Tomas",
"Tommy",
"Tristan",
"Tyler",
"William",
"Zach"]>>
<<set setup.irishSurnames to [
"Abraham",
"Agan",
"Agnew",
"Ahearn",
"Ahern",
"Aherne",
"Anglim",
"Anglin",
"Ansbro",
"Argue",
"Armstrong",
"Art",
"Ashe",
"Athey",
"Athy",
"Baldwin",
"Balfe",
"Ballagh",
"Bane",
"Banfield",
"Banfill",
"Banks",
"Bannan",
"Bannon",
"Banwell",
"Bardeen",
"Barnes",
"Baron",
"Barr",
"Barrington",
"Barry",
"Basnett",
"Beams",
"Beary",
"Beers",
"Begley",
"Behan",
"Beirne",
"Bell",
"Belton",
"Bergin",
"Berkery",
"Bermingham",
"Berne",
"Berrigan",
"Berry",
"Bigley",
"Bilbo",
"Bird",
"Birns",
"Blake",
"Blanchfield",
"Blaney",
"Blayney",
"Bleigh",
"Bligh",
"Blight",
"Boal",
"Boden",
"Bodkin",
"Bogan",
"Boggan",
"Bogue",
"Bohan",
"Bohanan",
"Bohannan",
"Bohannon",
"Bohanon",
"Bolan",
"Boland",
"Bole",
"Bolger",
"Bonar",
"Bonfield",
"Boran",
"Boreen",
"Boughan",
"Bovaird",
"Bow",
"Bowden",
"Bowen",
"Bowes",
"Bowlan",
"Boyce",
"Boylan",
"Boyland",
"Boyle",
"Boyles",
"Boyne",
"Brackeen",
"Bracken",
"Brackin",
"Bradeen",
"Braden",
"Bradigan",
"Bradley",
"Brady",
"Bragan",
"Brain",
"Branagan",
"Brandon",
"Braniff",
"Branigan",
"Brannan",
"Brannen",
"Brannick",
"Brannigan",
"Brannock",
"Brassil",
"Brawley",
"Brazeal",
"Brazel",
"Brazell",
"Braziel",
"Brazil",
"Brazill",
"Brazzel",
"Brazzle",
"Bready",
"Brean",
"Brecheen",
"Bredin",
"Bree",
"Breen",
"Breene",
"Breheny",
"Brennan",
"Breslin",
"Bresnahan",
"Bresnan",
"Brew",
"Brewin",
"Brian",
"Brians",
"Briant",
"Brick",
"Brickley",
"Bride",
"Brien",
"Briody",
"Broderick",
"Brodigan",
"Brodrick",
"Broe",
"Brogan",
"Bronaugh",
"Brophy",
"Brosnahan",
"Brosnan",
"Brosnihan",
"Brothers",
"Brown",
"Broy",
"Bruen",
"Brunty",
"Bryan",
"Bryson",
"Buckley",
"Burke",
"Burney",
"Burns",
"Busteed",
"Byrne",
"Byrnes",
"Byrns",
"Bywater",
"Cabe",
"Caden",
"Caffee",
"Cafferty",
"Caffery",
"Caffey",
"Caffrey",
"Cagney",
"Cahalan",
"Cahalane",
"Cahall",
"Cahan",
"Cahill",
"Cairney",
"Calahan",
"Caldon",
"Caley",
"Calhoon",
"Calhoun",
"Calkin",
"Calkins",
"Call",
"Callaghan",
"Callahan",
"Callan",
"Callanan",
"Callen",
"Callery",
"Calley",
"Calligan",
"Callihan",
"Callinan",
"Callins",
"Calnan",
"Calvey",
"Cambridge",
"Cammack",
"Campbell",
"Canaan",
"Canavan",
"Caniff",
"Cannan",
"Canney",
"Canniff",
"Canning",
"Cannon",
"Canny",
"Cantey",
"Cantlin",
"Canty",
"Carbary",
"Carberry",
"Carey",
"Cariker",
"Carlan",
"Carland",
"Carlin",
"Carlton",
"Carmody",
"Carnahan",
"Carnes",
"Carney",
"Carol",
"Carolan",
"Carolin",
"Caroline",
"Caroll",
"Carr",
"Carragher",
"Carraher",
"Carrick",
"Carrig",
"Carrigan",
"Carrol",
"Carroll",
"Carry",
"Carton",
"Carty",
"Carvell",
"Carver",
"Carvey",
"Carwell",
"Cary",
"Casey",
"Cashel",
"Cashell",
"Cashen",
"Cashin",
"Cashion",
"Cashman",
"Cashon",
"Caslin",
"Cassaday",
"Cassady",
"Cassedy",
"Casserly",
"Cassiday",
"Cassidy",
"Caughell",
"Caughey",
"Caughlin",
"Cauley",
"Caulkins",
"Cavan",
"Cavanagh",
"Cavanah",
"Cavanaugh",
"Caveney",
"Caveny",
"Cavey",
"Cavitt",
"Cawley",
"Charlton",
"Chism",
"Chivers",
"Claffey",
"Claflin",
"Clancey",
"Clancy",
"Clardy",
"Clare",
"Clarey",
"Clarke",
"Clary",
"Clavin",
"Claymore",
"Cleary",
"Clinton",
"Cloherty",
"Clohessy",
"Cloney",
"Cloonan",
"Clooney",
"Cloran",
"Clougherty",
"Clucas",
"Clune",
"Cluney",
"Clure",
"Clyne",
"Clynes",
"Coady",
"Coakley",
"Coan",
"Coday",
"Codd",
"Cody",
"Coen",
"Coffee",
"Coffeen",
"Coffey",
"Cogan",
"Coggan",
"Coggin",
"Coggins",
"Coghlan",
"Cogley",
"Cohea",
"Cohee",
"Coil",
"Coile",
"Coin",
"Cokeley",
"Cokely",
"Cokley",
"Colahan",
"Coleman",
"Colfer",
"Colgan",
"Colgin",
"Colleran",
"Colleton",
"Colley",
"Colligan",
"Collins",
"Collister",
"Colliton",
"Collopy",
"Colman",
"Colopy",
"Comb",
"Combe",
"Comber",
"Comerford",
"Comiskey",
"Comisky",
"Commerford",
"Commins",
"Common",
"Commons",
"Conaghan",
"Conahan",
"Conary",
"Conaty",
"Conboy",
"Concannon",
"Condon",
"Condran",
"Condron",
"Cone",
"Conery",
"Conkin",
"Conlan",
"Conley",
"Conlin",
"Conlon",
"Conly",
"Conmy",
"Conn",
"Connally",
"Connaughton",
"Connaway",
"Connealy",
"Conneely",
"Connel",
"Connell",
"Connelley",
"Connelly",
"Connely",
"Conner",
"Connerley",
"Connerly",
"Conners",
"Connery",
"Connick",
"Conniff",
"Connolley",
"Connolly",
"Connon",
"Connor",
"Connors",
"Conolly",
"Conoly",
"Conran",
"Conrey",
"Conroy",
"Conry",
"Considine",
"Convery",
"Convey",
"Conville",
"Conway",
"Conwell",
"Conwill",
"Coody",
"Coogan",
"Cook",
"Cool",
"Coole",
"Cooley",
"Coon",
"Coonan",
"Coonen",
"Cooney",
"Corban",
"Corbett",
"Corboy",
"Corby",
"Corcoran",
"Corkery",
"Corkill",
"Corkran",
"Corley",
"Corr",
"Corrick",
"Corrigan",
"Corrin",
"Corry",
"Cosgray",
"Cosgriff",
"Cosgrove",
"Coskey",
"Costello",
"Costigan",
"Costilow",
"Costine",
"Costley",
"Costlow",
"Cotter",
"Coughlan",
"Coughlin",
"Coulson",
"Counihan",
"Coursey",
"Court",
"Courtney",
"Coury",
"Covey",
"Cowley",
"Cox",
"Coy",
"Coyan",
"Coye",
"Coyle",
"Coyne",
"Crady",
"Crahan",
"Crain",
"Craney",
"Cranney",
"Cranor",
"Cratty",
"Craven",
"Cray",
"Creagan",
"Creagh",
"Crean",
"Creary",
"Creeden",
"Creegan",
"Creely",
"Creevy",
"Cregan",
"Crehan",
"Creighton",
"Cremin",
"Cremins",
"Crilley",
"Crilly",
"Crimmins",
"Croak",
"Croan",
"Crogan",
"Croghan",
"Croke",
"Croley",
"Cromley",
"Cronan",
"Crone",
"Cronen",
"Croney",
"Cronin",
"Crosby",
"Cross",
"Crossan",
"Crossen",
"Crossgrove",
"Crossin",
"Crotty",
"Crough",
"Crow",
"Crowe",
"Crowley",
"Croy",
"Crumley",
"Crumlish",
"Crumly",
"Cryan",
"Cudahy",
"Cuddihy",
"Cue",
"Cuff",
"Cuffee",
"Cuffie",
"Culhane",
"Culkin",
"Cullen",
"Cullens",
"Culleton",
"Culley",
"Culligan",
"Cullinan",
"Cullinane",
"Culliton",
"Cullivan",
"Cully",
"Cumber",
"Cumiskey",
"Cumming",
"Cummings",
"Cummins",
"Cummiskey",
"Cundiff",
"Cunnane",
"Cunneen",
"Cunniff",
"Cunniffe",
"Cunningham",
"Curley",
"Curran",
"Curren",
"Currin",
"Curry",
"Curtain",
"Curtin",
"Cusack",
"Dacey",
"Dacy",
"Dade",
"Dady",
"Dagnan",
"Dahill",
"Dailey",
"Daily",
"Dale",
"Daley",
"Dalley",
"Dally",
"Daly",
"Danaher",
"Danahy",
"Dane",
"Daniel",
"Danvers",
"Darby",
"Darcy",
"Dardis",
"Dargan",
"Darmody",
"Daugherty",
"Daughety",
"Davenport",
"Davern",
"Davin",
"Davitt",
"Davlin",
"Davoren",
"Daw",
"Dawley",
"Day",
"Dea",
"Deacon",
"Deacy",
"Deady",
"Dealy",
"Deam",
"Deamer",
"Dean",
"Deane",
"Dearmond",
"Dease",
"Deasy",
"Deaver",
"Deavers",
"Dee",
"Deegan",
"Deehan",
"Deeley",
"Deely",
"Deeney",
"Deere",
"Deery",
"Degan",
"Degnan",
"Deighan",
"Deignan",
"Deily",
"Delacey",
"Delacy",
"Delahunt",
"Delahunty",
"Delaney",
"Delap",
"Delay",
"Delee",
"Delehanty",
"Dempsey",
"Dempster",
"Denehy",
"Dennehy",
"Denning",
"Dennis",
"Denny",
"Derham",
"Dermody",
"Dermott",
"Derrick",
"Derrig",
"Derry",
"Derwin",
"Desmond",
"Devan",
"Devane",
"Devaney",
"Devanney",
"Devany",
"Deveney",
"Devenney",
"Devenny",
"Devenport",
"Dever",
"Devers",
"Devery",
"Devey",
"Devin",
"Devine",
"Devitt",
"Devlin",
"Devney",
"Devon",
"Devoy",
"Dewane",
"Diamond",
"Diffin",
"Diffley",
"Dignam",
"Dignan",
"Dillion",
"Dillon",
"Dilworth",
"Dimon",
"Dinan",
"Dineen",
"Dinkin",
"Dinneen",
"Diskin",
"Divan",
"Diven",
"Diver",
"Divine",
"Diviney",
"Doak",
"Doan",
"Doane",
"Dockens",
"Dockery",
"Dockins",
"Dodd",
"Doheny",
"Doherty",
"Dohoney",
"Dolan",
"Dole",
"Dolen",
"Dollahite",
"Dollard",
"Dollarhide",
"Dolly",
"Donaghey",
"Donaghue",
"Donaghy",
"Donaher",
"Donahey",
"Donaho",
"Donahoe",
"Donahue",
"Donavan",
"Donegan",
"Donelan",
"Donigan",
"Donivan",
"Donlan",
"Donlevy",
"Donley",
"Donlin",
"Donnally",
"Donnan",
"Donnell",
"Donnellan",
"Donnelley",
"Donnellon",
"Donnelly",
"Donoghue",
"Donoho",
"Donohoe",
"Donohoo",
"Donohue",
"Donovan",
"Doody",
"Doogan",
"Doolan",
"Doolen",
"Dooley",
"Doolin",
"Dooling",
"Dooly",
"Doonan",
"Dooner",
"Dooney",
"Doorley",
"Doran",
"Dorcas",
"Dorcey",
"Dore",
"Dorgan",
"Dorian",
"Doris",
"Dority",
"Dormady",
"Dormer",
"Dornan",
"Dorney",
"Dornon",
"Dorrian",
"Dorriety",
"Dorris",
"Dorrity",
"Doud",
"Dougharty",
"Dougher",
"Dougherty",
"Dovey",
"Dowd",
"Dowda",
"Dowdall",
"Dowdell",
"Dowell",
"Dowland",
"Dowley",
"Dowlin",
"Dowling",
"Downer",
"Downes",
"Downey",
"Downing",
"Doyal",
"Doyel",
"Doyle",
"Doyne",
"Drain",
"Drea",
"Drennan",
"Drennen",
"Drennon",
"Drew",
"Drinan",
"Drinnen",
"Driscoll",
"Driskel",
"Driskell",
"Driskill",
"Drisko",
"Drohan",
"Dromgoole",
"Droney",
"Drought",
"Drugan",
"Drum",
"Drumgoole",
"Drumm",
"Drury",
"Duane",
"Ducey",
"Duck",
"Duddy",
"Dudley",
"Duffin",
"Duffy",
"Dugan",
"Duggin",
"Duggins",
"Duignan",
"Dullea",
"Dunagin",
"Dunavan",
"Dunavin",
"Duncan",
"Dundon",
"Dunegan",
"Dungan",
"Dunigan",
"Dunivan",
"Dunkin",
"Dunlavey",
"Dunlavy",
"Dunlea",
"Dunleavy",
"Dunlevy",
"Dunlop",
"Dunn",
"Dunne",
"Dunnigan",
"Dunning",
"Dunphy",
"Durgan",
"Durgin",
"Duris",
"Durkan",
"Durkee",
"Durkin",
"Durley",
"Durnan",
"Durney",
"Durnin",
"Duross",
"Durrett",
"Dwan",
"Dwiggins",
"Dwyer",
"Dyer",
"Dynan",
"Dynes",
"Eagan",
"Eagen",
"Eakin",
"Earley",
"Early",
"Egan",
"English",
"Enis",
"Ennis",
"Enright",
"Evoy",
"Fagan",
"Fagen",
"Faherty",
"Fahey",
"Fahy",
"Fair",
"Falin",
"Fallin",
"Fallon",
"Falvey",
"Fannin",
"Fannon",
"Faragher",
"Farley",
"Farmer",
"Farnan",
"Farnen",
"Farrall",
"Farran",
"Farrel",
"Farrell",
"Farrelly",
"Farren",
"Farrens",
"Farrey",
"Faughnan",
"Faul",
"Fay",
"Feagan",
"Feagans",
"Feagin",
"Feagins",
"Fealy",
"Fedrick",
"Fee",
"Feehan",
"Feeley",
"Feely",
"Feeney",
"Feeny",
"Feerick",
"Fegan",
"Fenelon",
"Fenerty",
"Fenlon",
"Fennell",
"Fennelly",
"Fennessey",
"Fennessy",
"Fenton",
"Fereday",
"Fergus",
"Ferrall",
"Ferran",
"Ferrel",
"Ferrell",
"Ferrick",
"Ferrill",
"Ferrin",
"Ferris",
"Ferriss",
"Ferry",
"Feury",
"Fiddes",
"Finan",
"Finegan",
"Fineran",
"Finerty",
"Finigan",
"Finlan",
"Finn",
"Finnan",
"Finnegan",
"Finnen",
"Finneran",
"Finnerty",
"Finnigan",
"Finnin",
"Finucan",
"Finucane",
"Fisher",
"Fitzgerald",
"Fitzgibbon",
"Fitzgibbons",
"Fitzharris",
"Fitzhenry",
"Fitzherbert",
"Fitzmaurice",
"Fitzmorris",
"Fitzpatrick",
"Fitzroy",
"Fitzsimmons",
"Fitzsimons",
"Fitzwater",
"Flaharty",
"Flaherty",
"Flahive",
"Flanagan",
"Flanagin",
"Flanary",
"Flanery",
"Flanigan",
"Flannagan",
"Flannery",
"Flannigan",
"Flatley",
"Flattery",
"Flavin",
"Flinn",
"Flood",
"Flynn",
"Fogarty",
"Fogerty",
"Fohey",
"Folan",
"Foley",
"Follin",
"Foody",
"Foran",
"Forbes",
"Ford",
"Foren",
"Forkin",
"Forrestal",
"Fox",
"Foy",
"Fraher",
"Frawley",
"Freeman",
"Friel",
"Frizzell",
"Furey",
"Furry",
"Fury",
"Fye",
"Gaffey",
"Gaffin",
"Gaffney",
"Gagan",
"Gagen",
"Gahagan",
"Gahan",
"Gainer",
"Gainey",
"Gainor",
"Gallager",
"Gallagher",
"Gallahan",
"Gallaher",
"Gallahue",
"Gallaugher",
"Galleher",
"Gallery",
"Galligher",
"Galliher",
"Gallivan",
"Gallogly",
"Galvin",
"Galway",
"Ganley",
"Gann",
"Gannon",
"Gara",
"Gargan",
"Garity",
"Garman",
"Garmon",
"Garr",
"Garrahan",
"Garrigan",
"Garrity",
"Garry",
"Garvey",
"Garvin",
"Gary",
"Gatchel",
"Gatchell",
"Gately",
"Gatens",
"Gaugh",
"Gaughan",
"Gaughran",
"Gavaghan",
"Gavan",
"Gavigan",
"Gavin",
"Gawley",
"Gaynor",
"Geagan",
"Gearty",
"Geary",
"Gee",
"Geelan",
"Geery",
"Geoghagan",
"Geoghan",
"Geoghegan",
"Geraghty",
"Geraty",
"Gerety",
"Gerity",
"Gerrity",
"Ghee",
"Gibboney",
"Gibney",
"Giffen",
"Giffin",
"Gilboy",
"Gilbride",
"Gildea",
"Giles",
"Gilhooley",
"Gilhooly",
"Gillan",
"Gillen",
"Gilleran",
"Gillian",
"Gilliand",
"Gilligan",
"Gillilan",
"Gillin",
"Gillooly",
"Gilmartin",
"Gilmore",
"Gilpatrick",
"Gilpin",
"Gilroy",
"Gilsenan",
"Ging",
"Ginley",
"Ginn",
"Ginty",
"Given",
"Glacken",
"Glancey",
"Glancy",
"Glasgow",
"Glasheen",
"Glaspey",
"Glaspy",
"Glass",
"Glave",
"Glavin",
"Gleason",
"Gleeson",
"Glendon",
"Glenna",
"Glenney",
"Glennon",
"Glenny",
"Glow",
"Glynn",
"Goff",
"Goffney",
"Gogan",
"Gogerty",
"Goggin",
"Goggins",
"Going",
"Goings",
"Goins",
"Golden",
"Goldrick",
"Golightly",
"Golliher",
"Gookin",
"Gooley",
"Goonan",
"Gordon",
"Gorman",
"Gormley",
"Gormly",
"Gorry",
"Gory",
"Gosnell",
"Gough",
"Govern",
"Gowan",
"Gowers",
"Gowing",
"Goyne",
"Graddy",
"Grady",
"Graham",
"Granahan",
"Graney",
"Grannan",
"Grealish",
"Greaney",
"Greany",
"Green",
"Greenan",
"Greene",
"Grennan",
"Grew",
"Gribben",
"Gribbin",
"Gribbins",
"Gribbon",
"Griffee",
"Griffey",
"Griffie",
"Griffin",
"Griffy",
"Grimley",
"Groark",
"Grody",
"Grogan",
"Gromley",
"Growney",
"Grugan",
"Guffey",
"Guffin",
"Guffy",
"Guider",
"Guilfoil",
"Guilfoyle",
"Guinan",
"Guinane",
"Guinee",
"Guiney",
"Guinn",
"Gunnell",
"Gunnells",
"Gunning",
"Gurry",
"Guthrie",
"Guttery",
"Hackett",
"Hadden",
"Hade",
"Hafey",
"Haffey",
"Hafford",
"Hagan",
"Hagarty",
"Hagerty",
"Haggan",
"Haggerty",
"Hagin",
"Hague",
"Haig",
"Hainey",
"Hale",
"Hales",
"Halferty",
"Hallahan",
"Halleran",
"Halley",
"Halligan",
"Hallin",
"Hallinan",
"Hallisey",
"Halloran",
"Halpin",
"Halton",
"Hamil",
"Hamill",
"Hampson",
"Hamrock",
"Hanafin",
"Hanagan",
"Hanahan",
"Hanavan",
"Hanaway",
"Hanbury",
"Hand",
"Handlin",
"Handlon",
"Handly",
"Handrahan",
"Hanifan",
"Hanifin",
"Hanigan",
"Hanlan",
"Hanley",
"Hanlon",
"Hanna",
"Hannagan",
"Hannan",
"Hannaway",
"Hannegan",
"Hannigan",
"Hannon",
"Hanrahan",
"Hanratty",
"Hanson",
"Haran",
"Harbin",
"Harden",
"Hardiman",
"Hardman",
"Hardrick",
"Hardy",
"Hare",
"Haren",
"Harford",
"Hargadon",
"Hargan",
"Harkin",
"Harkins",
"Harley",
"Harman",
"Harmon",
"Harmond",
"Harnett",
"Harney",
"Harold",
"Harrell",
"Harren",
"Harrington",
"Harrity",
"Harron",
"Hart",
"Harte",
"Hartigan",
"Hartin",
"Hartley",
"Hartnett",
"Hartney",
"Harton",
"Harty",
"Harvey",
"Haskin",
"Haskins",
"Hassan",
"Hassett",
"Hassey",
"Hastie",
"Hastings",
"Hatton",
"Haugh",
"Haughey",
"Haughney",
"Haughton",
"Haven",
"Haverty",
"Havlin",
"Havron",
"Hawe",
"Hawkins",
"Hayden",
"Hayes",
"Haynes",
"Hays",
"Heagerty",
"Heagney",
"Healan",
"Healy",
"Heaney",
"Heaphy",
"Hearin",
"Hearn",
"Hearne",
"Hearns",
"Hearon",
"Hearron",
"Hearty",
"Heary",
"Heaven",
"Heelan",
"Heenan",
"Heeney",
"Heery",
"Hefferan",
"Heffern",
"Heffernan",
"Hefferon",
"Heffron",
"Hegarty",
"Hehir",
"Hellen",
"Henagan",
"Henchey",
"Heneghan",
"Henehan",
"Henery",
"Heney",
"Henigan",
"Hennegan",
"Hennelly",
"Hennesey",
"Hennessey",
"Hennessy",
"Hennesy",
"Hennigan",
"Henrick",
"Henry",
"Henson",
"Heraty",
"Herley",
"Herlihy",
"Hernon",
"Heron",
"Herr",
"Herrick",
"Herrity",
"Herron",
"Heskin",
"Heslin",
"Hession",
"Hester",
"Heuston",
"Heyne",
"Hickey",
"Higgins",
"Hilferty",
"Hinds",
"Hines",
"Hiney",
"Hinsey",
"Hiskey",
"Hoban",
"Hoctor",
"Hoey",
"Hogan",
"Hogarty",
"Hoggan",
"Holahan",
"Holey",
"Holian",
"Holihan",
"Holland",
"Holleran",
"Holloran",
"Holly",
"Hollywood",
"Holohan",
"Honan",
"Hood",
"Hooey",
"Hoolihan",
"Hopkins",
"Hora",
"Horan",
"Horgan",
"Horigan",
"Horkan",
"Horrigan",
"Hosey",
"Hough",
"Houlahan",
"Houlihan",
"Hourigan",
"Hourihan",
"Hovan",
"Howard",
"Howey",
"Howley",
"Hoyle",
"Hoyne",
"Huddy",
"Huey",
"Hughes",
"Hughey",
"Hunt",
"Hurley",
"Hurney",
"Hurrell",
"Hurst",
"Hussey",
"Hyland",
"Hynds",
"Hynes",
"Irvan",
"Irvin",
"Ivers",
"Johnston",
"Judge",
"Junkin",
"Junkins",
"Kahoe",
"Kahoun",
"Kane",
"Karn",
"Karnes",
"Karney",
"Karns",
"Kary",
"Kavanagh",
"Kavanaugh",
"Keady",
"Keahey",
"Kealy",
"Kean",
"Keane",
"Keaney",
"Kearn",
"Kearney",
"Kearns",
"Kearse",
"Keary",
"Keating",
"Keaveney",
"Keaveny",
"Kee",
"Keedy",
"Keef",
"Keefe",
"Keeffe",
"Keegan",
"Keehan",
"Keel",
"Keelan",
"Keelen",
"Keeley",
"Keeling",
"Keely",
"Keena",
"Keenan",
"Keeney",
"Keeny",
"Keever",
"Kegley",
"Kehoe",
"Keightley",
"Keilty",
"Keily",
"Keirn",
"Keirsey",
"Keleher",
"Keliher",
"Kelleher",
"Keller",
"Kelley",
"Kelliher",
"Kelly",
"Kemmet",
"Kemmis",
"Kenealy",
"Kenefick",
"Kenna",
"Kenneally",
"Kennealy",
"Kennedy",
"Kennelly",
"Kenney",
"Kennon",
"Kenny",
"Kenyon",
"Keogh",
"Keohane",
"Keon",
"Keough",
"Keown",
"Kerans",
"Kerin",
"Kerins",
"Kerley",
"Kerlin",
"Kermode",
"Kern",
"Kernaghan",
"Kernan",
"Kernes",
"Kerney",
"Kerns",
"Kerr",
"Kerrigan",
"Kerwick",
"Kerwin",
"Kevin",
"Kew",
"Key",
"Keyes",
"Kidney",
"Kielty",
"Kiely",
"Kieran",
"Kiernan",
"Kiggins",
"Kilbane",
"Kilbride",
"Kilcoyne",
"Kilcullen",
"Kilday",
"Kildow",
"Kilduff",
"Kiley",
"Kilfoyle",
"Kilgallen",
"Kilgallon",
"Kilkelly",
"Kilkenny",
"Killeen",
"Killelea",
"Killen",
"Killian",
"Killilea",
"Killin",
"Killion",
"Killip",
"Killips",
"Killoran",
"Killoren",
"Kilmartin",
"Kilpatrick",
"Kilroy",
"Kilty",
"Kinahan",
"Kinane",
"Kincannon",
"Kinch",
"King",
"Kinion",
"Kiniry",
"Kinlaw",
"Kinler",
"Kinna",
"Kinnan",
"Kinnane",
"Kinsella",
"Kirby",
"Kirgan",
"Kirker",
"Kirley",
"Kirlin",
"Kirvan",
"Kirven",
"Kirvin",
"Kirwan",
"Kirwin",
"Kissane",
"Knee",
"Knight",
"Knowland",
"Knowles",
"Kough",
"Koyle",
"Kyne",
"Laferty",
"Laffan",
"Lafferty",
"Laffey",
"Laffin",
"Lagan",
"Lahart",
"Lahiff",
"Lalley",
"Lally",
"Lalor",
"Lamb",
"Lambe",
"Lamore",
"Lanagan",
"Lanahan",
"Landrigan",
"Lane",
"Laney",
"Langan",
"Langin",
"Lanigan",
"Lannan",
"Lannen",
"Lannigan",
"Lannin",
"Lannon",
"Larkin",
"Laughlin",
"Laughrey",
"Lavell",
"Lavelle",
"Laverty",
"Lavery",
"Lavey",
"Lavin",
"Lawler",
"Lawlor",
"Layden",
"Leahey",
"Leahy",
"Lean",
"Lear",
"Leary",
"Leavey",
"Leday",
"Leddy",
"Lee",
"Leech",
"Lehan",
"Lehane",
"Lehigh",
"Lenahan",
"Lenane",
"Lenehan",
"Lenihan",
"Lennon",
"Lenon",
"Leonard",
"Lewin",
"Lewis",
"Leyden",
"Leydon",
"Liddy",
"Lillis",
"Limerick",
"Linch",
"Linden",
"Lindsay",
"Lindsey",
"Linehan",
"Linn",
"Linnane",
"Linnehan",
"Linskey",
"Linsky",
"Lipsett",
"Little",
"Livingston",
"Loftus",
"Logan",
"Loghry",
"Logue",
"Lohan",
"Lomasney",
"Londergan",
"Lonergan",
"Loney",
"Long",
"Longan",
"Looby",
"Looney",
"Loran",
"Lord",
"Lordan",
"Loudy",
"Lough",
"Loughlin",
"Loughnane",
"Loughney",
"Loughran",
"Loughrey",
"Louth",
"Lowery",
"Lowney",
"Luby",
"Lucey",
"Lucid",
"Lucy",
"Ludden",
"Luddy",
"Lundergan",
"Lundrigan",
"Lundy",
"Lunney",
"Lunny",
"Lyden",
"Lydon",
"Lynam",
"Lynaugh",
"Lynch",
"Lyne",
"Lynn",
"Lynott",
"Lynskey",
"Lyon",
"Lyons",
"Lysaght",
"MacBride",
"MacCarthy",
"MacCartney",
"MacDermott",
"MacDonald",
"MacDonell",
"MacDonnell",
"MacDonough",
"MacDowell",
"MacGuire",
"Macken",
"MacKenna",
"Mackin",
"Macklem",
"MacKnight",
"MacMahon",
"MacManus",
"MacMurray",
"MacNamara",
"MacNeal",
"MacNeil",
"MacNeill",
"Macomber",
"Macumber",
"Madden",
"Maddin",
"Madigan",
"Madill",
"Magaha",
"Magann",
"Magee",
"Magennis",
"Maginn",
"Maginnis",
"Magner",
"Magouirk",
"Magrath",
"Maguire",
"Mahady",
"Mahaffey",
"Mahan",
"Mahaney",
"Mahany",
"Mahar",
"Maher",
"Mahon",
"Mahone",
"Mahoney",
"Mahony",
"Mahood",
"Mahorney",
"Malady",
"Malarkey",
"Malbrough",
"Malcolm",
"Mallen",
"Malley",
"Mallon",
"Malloy",
"Mally",
"Malone",
"Maloney",
"Malony",
"Manahan",
"Manary",
"Manatt",
"Maneely",
"Maney",
"Mangan",
"Manix",
"Manley",
"Mannering",
"Manney",
"Manning",
"Mannings",
"Mannion",
"Mannis",
"Mannix",
"Manny",
"Manry",
"Mansfield",
"Manton",
"Manus",
"Mara",
"Maready",
"Maree",
"Mark",
"Markey",
"Markham",
"Marmion",
"Marn",
"Marnell",
"Maroney",
"Marrinan",
"Marron",
"Marry",
"Martin",
"Matthews",
"Mattimore",
"Maughan",
"Maun",
"Maune",
"Mavity",
"Mawn",
"Maxey",
"Maxwell",
"May",
"Maybin",
"Mayne",
"Maynes",
"McAbee",
"McAlhany",
"McAllen",
"McAmis",
"McAnallen",
"McAnany",
"McAnelly",
"McAneny",
"McAnnally",
"McAnulty",
"McArdle",
"McAuliff",
"McAuliffe",
"McBratney",
"McBrearty",
"McBreen",
"McBride",
"McBridge",
"McBrien",
"McCadden",
"McCafferty",
"McCaghren",
"McCague",
"McCahan",
"McCahill",
"McCahon",
"McCaig",
"McCain",
"McCall",
"McCalla",
"McCallen",
"McCallion",
"McCallon",
"McCally",
"McCan",
"McCane",
"McCann",
"McCanna",
"McCannon",
"McCarey",
"McCargar",
"McCarl",
"McCarley",
"McCarn",
"McCarrick",
"McCarroll",
"McCarron",
"McCarry",
"McCarthy",
"McCartin",
"McCarty",
"McCarver",
"McCarville",
"McCary",
"McCasland",
"McCaslin",
"McCathern",
"McCaughey",
"McCaul",
"McCawley",
"McClam",
"McClard",
"McClarnon",
"McClary",
"McClaskey",
"McClaugherty",
"McClaughry",
"McClave",
"McCleaf",
"McClearn",
"McCleave",
"McClenaghan",
"McClenahan",
"McClendon",
"McClenton",
"McClernon",
"McCleskey",
"McClone",
"McCloskey",
"McClosky",
"McCloughan",
"McClurkin",
"McCluskey",
"McClusky",
"McCoid",
"McCole",
"McColgan",
"McColley",
"McCollough",
"McColly",
"McComber",
"McComiskey",
"McCommon",
"McComsey",
"McCone",
"McConn",
"McConnell",
"McConnon",
"McCooey",
"McCool",
"McCort",
"McCory",
"McCoun",
"McCourt",
"McCourtney",
"McCoury",
"McCoy",
"McCrady",
"McCranie",
"McCrann",
"McCraven",
"McCraw",
"McCready",
"McCreedy",
"McCreery",
"McCreless",
"McCrickard",
"McCrohan",
"McCrossen",
"McCrossin",
"McCroy",
"McCuin",
"McCullagh",
"McCullen",
"McCullough",
"McCully",
"McCurley",
"McCurry",
"McCurtain",
"McCuskey",
"McDade",
"McDaid",
"McDaniels",
"McDavitt",
"McDermitt",
"McDermott",
"McDevitt",
"McDole",
"McDonagh",
"McDoniel",
"McDonnel",
"McDonnell",
"McDonough",
"McDorman",
"McDuffy",
"McDunn",
"McEachern",
"McElderry",
"McEleney",
"McElhaney",
"McElhannon",
"McElhenny",
"McElheny",
"McElhiney",
"McElhinney",
"McElhinny",
"McElhone",
"McElligott",
"McElmurray",
"McElrath",
"McElroy",
"McElveen",
"McElwain",
"McElwee",
"McElyea",
"McEnaney",
"McEnany",
"McEndree",
"McEneaney",
"McEnerney",
"McEnery",
"McEniry",
"McEnroe",
"McEntee",
"McEvilly",
"McEvoy",
"McFarren",
"McFatridge",
"McFeeley",
"McFeely",
"McGaffey",
"McGaha",
"McGahee",
"McGahey",
"McGalliard",
"McGann",
"McGannon",
"McGarity",
"McGarr",
"McGarrah",
"McGarrigle",
"McGarrity",
"McGarry",
"McGarty",
"McGarvey",
"McGary",
"McGaugh",
"McGaughey",
"McGaughy",
"McGauley",
"McGavock",
"McGeady",
"McGeary",
"McGee",
"McGeehan",
"McGeever",
"McGehee",
"McGeough",
"McGhan",
"McGibney",
"McGiboney",
"McGiffin",
"McGilberry",
"McGill",
"McGillen",
"McGillicuddy",
"McGimsey",
"McGinity",
"McGinley",
"McGinn",
"McGinnes",
"McGinness",
"McGinnis",
"McGinniss",
"McGinnity",
"McGinty",
"McGivney",
"McGlathery",
"McGlaun",
"McGlinchey",
"McGlinn",
"McGlocklin",
"McGloin",
"McGlone",
"McGlory",
"McGlynn",
"McGoey",
"McGoff",
"McGoldrick",
"McGonagle",
"McGonegal",
"McGonigal",
"McGonigle",
"McGoogan",
"McGorry",
"McGorty",
"McGory",
"McGougan",
"McGough",
"McGourty",
"McGovern",
"McGrade",
"McGrady",
"McGrail",
"McGranaghan",
"McGranahan",
"McGrane",
"McGrann",
"McGrath",
"McGreal",
"McGrew",
"McGriff",
"McGroarty",
"McGuane",
"McGuckin",
"McGuff",
"McGuffin",
"McGugan",
"McGuiggan",
"McGuiness",
"McGuinn",
"McGuinness",
"McGuire",
"McGuirk",
"McGuirl",
"McGuirt",
"McGurl",
"McGurn",
"McGurrin",
"McGuyer",
"McHale",
"McHan",
"McHarg",
"McHenry",
"McHone",
"McHugh",
"McIlhenny",
"McIlveen",
"McIlwee",
"McInally",
"McInerney",
"McInerny",
"McIntee",
"McInturf",
"McInturff",
"McIrvin",
"McJunkin",
"McJunkins",
"McKague",
"McKahan",
"McKanna",
"McKaughan",
"McKeehan",
"McKeel",
"McKeighan",
"McKelvey",
"McKendrick",
"McKendry",
"McKenna",
"McKennon",
"McKenrick",
"McKeough",
"McKern",
"McKethan",
"McKevitt",
"McKibben",
"McKibbin",
"McKibbon",
"McKnight",
"McKone",
"McKowen",
"McKown",
"McLamb",
"McLamore",
"McLaney",
"McLarney",
"McLarnon",
"McLaughlan",
"McLaughlin",
"McLean",
"McLear",
"McLeary",
"McLemore",
"McLernon",
"McLeroy",
"McLeskey",
"McLester",
"McLinden",
"McLoone",
"McLoughlin",
"McMackin",
"McMahan",
"McMahen",
"McMahon",
"McMain",
"McManama",
"McManaman",
"McManamon",
"McManamy",
"McManaway",
"McManis",
"McMann",
"McMannis",
"McManus",
"McMeen",
"McMellon",
"McMenamin",
"McMenamy",
"McMenemy",
"McMicken",
"McMillin",
"McMonagle",
"McMonigal",
"McMonigle",
"McMorran",
"McMorrow",
"McMurphy",
"McMurrin",
"McNalley",
"McNally",
"McNamar",
"McNamara",
"McNamee",
"McNamer",
"McNaney",
"McNary",
"McNaught",
"McNearney",
"McNeary",
"McNeely",
"McNees",
"McNeese",
"McNeff",
"McNeice",
"McNeil",
"McNeill",
"McNeish",
"McNelis",
"McNellis",
"McNerney",
"McNicholas",
"McNiff",
"McNinch",
"McNulty",
"McNutt",
"McOmber",
"McOwen",
"McPadden",
"McQuade",
"McQuaid",
"McQuaide",
"McQuaig",
"McQuain",
"McQuate",
"McQueeney",
"McQuerry",
"McQuigg",
"McQuiggan",
"McQuilkin",
"McQuillan",
"McQuillen",
"McQuillin",
"McQuinn",
"McQuoid",
"McRight",
"McRoy",
"McSharry",
"McShea",
"McSherry",
"McSweeney",
"McSweeny",
"McTague",
"McTeague",
"McTeer",
"McTernan",
"McTiernan",
"McTighe",
"McTigue",
"McVoy",
"McWade",
"McWain",
"McWeeney",
"McWethy",
"McWhirt",
"McWhite",
"McWilliams",
"McWright",
"Meade",
"Meagher",
"Mealey",
"Mealy",
"Meaney",
"Means",
"Meany",
"Meara",
"Meath",
"Mee",
"Meegan",
"Meehan",
"Meenan",
"Megahan",
"Megan",
"Mehaffey",
"Meharg",
"Mehegan",
"Meighan",
"Meighen",
"Melia",
"Mellett",
"Mellott",
"Melody",
"Melott",
"Meloy",
"Melville",
"Melvin",
"Menton",
"Merrick",
"Merrigan",
"Merriman",
"Merry",
"Meskill",
"Meyer",
"Meyers",
"Mick",
"Miles",
"Miley",
"Milford",
"Millea",
"Millen",
"Millerick",
"Millett",
"Millholland",
"Milligan",
"Millikan",
"Milliken",
"Millikin",
"Millin",
"Milling",
"Mills",
"Milroy",
"Mimnaugh",
"Minahan",
"Minch",
"Minehan",
"Minihan",
"Minish",
"Minnick",
"Minnis",
"Minogue",
"Minteer",
"Miskell",
"Miskelly",
"Moan",
"Mogan",
"Mohar",
"Moher",
"Mollen",
"Mollohan",
"Molloy",
"Moloney",
"Molony",
"Molyneux",
"Monaghan",
"Monagle",
"Monahan",
"Monday",
"Monds",
"Mone",
"Money",
"Mongan",
"Monhollen",
"Monk",
"Monohan",
"Montague",
"Moon",
"Moonan",
"Moone",
"Mooney",
"Mooneyhan",
"Moore",
"Morahan",
"Moran",
"Morein",
"Morey",
"Morgan",
"Moriarity",
"Moriarty",
"Morken",
"Moroney",
"Morphy",
"Morris",
"Morrisey",
"Morrisroe",
"Morrissey",
"Morrow",
"Morsey",
"Mortell",
"Moss",
"Mountain",
"Mountcastle",
"Mowen",
"Moy",
"Moyer",
"Moylan",
"Moyles",
"Moynahan",
"Moynihan",
"Muckleroy",
"Mulanax",
"Mulberry",
"Mulcahey",
"Mulcahy",
"Mulcare",
"Muldoon",
"Muldowney",
"Muldrew",
"Mulgrew",
"Mulhall",
"Mulhearn",
"Mulherin",
"Mulhern",
"Mulheron",
"Mulhollan",
"Mulholland",
"Mulhollen",
"Mulick",
"Mulkern",
"Mulkey",
"Mulkins",
"Mullady",
"Mullahy",
"Mullally",
"Mullaly",
"Mullan",
"Mullane",
"Mullaney",
"Mullany",
"Mullarkey",
"Mullee",
"Mullen",
"Mullenax",
"Mullenix",
"Mullennix",
"Mullery",
"Mullett",
"Mulley",
"Mullican",
"Mulligan",
"Mulliken",
"Mullikin",
"Mullin",
"Mullinax",
"Mullineaux",
"Mullinix",
"Mullinnix",
"Mullowney",
"Mulloy",
"Mulnix",
"Mulqueen",
"Mulready",
"Mulroney",
"Mulrooney",
"Mulroy",
"Mulry",
"Mulvaney",
"Mulvany",
"Mulvehill",
"Mulvenna",
"Mulvey",
"Mulvihill",
"Mulville",
"Mungovan",
"Munley",
"Munnelly",
"Munster",
"Munyan",
"Munyon",
"Murdoch",
"Murley",
"Murnahan",
"Murnan",
"Murnane",
"Murphey",
"Murphy",
"Murray",
"Murren",
"Murrin",
"Murrow",
"Murtagh",
"Murtaugh",
"Murtha",
"Murty",
"Myers",
"Myler",
"Mylott",
"Nace",
"Nagle",
"Nally",
"Nangle",
"Nary",
"Naugher",
"Naughton",
"Naulty",
"Nealey",
"Nealis",
"Neally",
"Nealon",
"Nealy",
"Neary",
"Neas",
"Nease",
"Neason",
"Nee",
"Neece",
"Needham",
"Neel",
"Neeld",
"Neeley",
"Neely",
"Neenan",
"Nees",
"Neese",
"Neeson",
"Neil",
"Neilan",
"Neild",
"Neill",
"Neils",
"Neily",
"Nelis",
"Nelligan",
"Nerney",
"Nesson",
"Nestor",
"Nett",
"Netterville",
"Nevells",
"Nevil",
"Nevill",
"Neville",
"Nevin",
"Newell",
"Ney",
"Neyland",
"Neylon",
"Niel",
"Nieland",
"Nield",
"Nihill",
"Nilan",
"Niland",
"Nix",
"Nolan",
"Noland",
"Nolen",
"Noon",
"Noonan",
"Noone",
"Nooney",
"Normile",
"Normoyle",
"North",
"Norton",
"Nowlan",
"Nulty",
"Nunan",
"Nunnally",
"Nutt",
"Nuzum",
"Nyhan",
"O\'Banion",
"O\'Bannon",
"O\'Bear",
"O\'Beirne",
"O\'Berry",
"O\'Boyle",
"O\'Brian",
"O\'Briant",
"O\'Brien",
"O\'Brion",
"O\'Bryan",
"O\'Bryant",
"O\'Bryon",
"O\'Byrne",
"O\'Cain",
"O\'Callaghan",
"O\'Callahan",
"O\'Carroll",
"O\'Connell",
"O\'Conner",
"O\'Connor",
"O\'Conor",
"O\'Daniel",
"O\'Day",
"O\'Dea",
"O\'Dean",
"O\'Doherty",
"O\'Donnel",
"O\'Donnell",
"O\'Donoghue",
"O\'Donohue",
"O\'Donovan",
"O\'Dowd",
"O\'Driscoll",
"O\'Dwyer",
"O\'Fallon",
"O\'Farrell",
"O\'Flaherty",
"O\'Flanagan",
"O\'Flynn",
"O\'Gara",
"O\'Gorman",
"O\'Grady",
"O\'Guin",
"O\'Guinn",
"O\'Hagan",
"O\'Hair",
"O\'Haire",
"O\'Halloran",
"O\'Hanlon",
"O\'Hara",
"O\'Hare",
"O\'Harra",
"O\'Harrow",
"O\'Haver",
"O\'Hearn",
"O\'Hern",
"O\'Herron",
"O\'Higgins",
"O\'Hora",
"O\'Kane",
"O\'Keefe",
"O\'Keeffe",
"O\'Kelley",
"O\'Kelly",
"O\'Laughlin",
"O\'Leary",
"O\'Loughlin",
"O\'Mahoney",
"O\'Mahony",
"O\'Maley",
"O\'Malley",
"O\'Mara",
"O\'Mary",
"O\'Meara",
"O\'Melia",
"O\'Neal",
"O\'Neall",
"O\'Neil",
"O\'Neill",
"O\'Ney",
"O\'Quinn",
"O\'Regan",
"O\'Reilly",
"O\'Riley",
"O\'Riordan",
"O\'Roark",
"O\'Rorke",
"O\'Rourke",
"O\'Ryan",
"O\'Shaughnessy",
"O\'Shea",
"O\'Shields",
"O\'Sullivan",
"O\'Tool",
"O\'Toole",
"Oakes",
"Ogan",
"Orman",
"Ormond",
"Oswald",
"Oswell",
"Owens",
"Padden",
"Paden",
"Padrick",
"Pallas",
"Palmer",
"Parlin",
"Parsons",
"Patterson",
"Paul",
"Pay",
"Payton",
"Peaden",
"Peck",
"Peek",
"Peery",
"Peoples",
"Peppard",
"Pepper",
"Perrigan",
"Perrill",
"Perrot",
"Peters",
"Pharis",
"Phariss",
"Pharris",
"Phelan",
"Philbin",
"Piatt",
"Pidgeon",
"Pike",
"Pillion",
"Pogue",
"Polan",
"Poland",
"Polin",
"Portis",
"Powderly",
"Powell",
"Power",
"Pray",
"Prendergast",
"Prey",
"Prior",
"Prunty",
"Pry",
"Quade",
"Quaid",
"Quaife",
"Quail",
"Quain",
"Qualey",
"Qualters",
"Quan",
"Quann",
"Quarry",
"Quealy",
"Queenan",
"Queeney",
"Query",
"Quigg",
"Quigley",
"Quill",
"Quillan",
"Quillen",
"Quillian",
"Quillin",
"Quilty",
"Quin",
"Quine",
"Quinlan",
"Quinlin",
"Quinlivan",
"Quinn",
"Quinney",
"Quirk",
"Quirke",
"Quitter",
"Rabbitt",
"Radigan",
"Rafferty",
"Rafter",
"Raftery",
"Rahill",
"Rahilly",
"Rainey",
"Rairdon",
"Rape",
"Ratchford",
"Rath",
"Ratigan",
"Rattigan",
"Raun",
"Rawl",
"Rayhill",
"Ready",
"Reagan",
"Reagh",
"Reagin",
"Reap",
"Rearden",
"Reardon",
"Reavey",
"Reddin",
"Reddy",
"Redican",
"Redmond",
"Reedy",
"Reen",
"Regan",
"Rehill",
"Reid",
"Reidy",
"Reiley",
"Reilley",
"Reilly",
"Reily",
"Relihan",
"Renehan",
"Rhatigan",
"Rhyan",
"Rian",
"Rider",
"Riely",
"Riley",
"Ring",
"Rinn",
"Riordan",
"Roache",
"Roan",
"Roane",
"Roark",
"Roarty",
"Robinson",
"Roche",
"Rodden",
"Roddy",
"Roden",
"Rogan",
"Roger",
"Ronan",
"Ronayne",
"Roney",
"Roon",
"Rooney",
"Rork",
"Rorke",
"Rotchford",
"Rourk",
"Rourke",
"Ruan",
"Ruane",
"Ruark",
"Rudden",
"Runion",
"Runnion",
"Runyan",
"Runyon",
"Rush",
"Ryan",
"Rynn",
"Rynne",
"Sage",
"Sally",
"Salmon",
"Sankey",
"Sarsfield",
"Savage",
"Savin",
"Sayers",
"Scadden",
"Scahill",
"Scallan",
"Scalley",
"Scallion",
"Scallon",
"Scally",
"Scanlan",
"Scanlon",
"Scannell",
"Scantling",
"Scarry",
"Scollon",
"Scott",
"Sculley",
"Scullin",
"Scullion",
"Scully",
"Scurry",
"Sealy",
"Sears",
"Seeney",
"Seery",
"Sennett",
"Sennott",
"Seward",
"Sexton",
"Shahan",
"Shallow",
"Shanahan",
"Shanley",
"Shannahan",
"Shannon",
"Sharkey",
"Sharp",
"Shaughnessy",
"Shawley",
"Shay",
"Shayne",
"Shea",
"Shead",
"Sheahan",
"Shealey",
"Shealy",
"Shean",
"Shearin",
"Shearon",
"Sheedy",
"Sheehan",
"Sheehe",
"Sheehy",
"Sheeley",
"Sheely",
"Sheen",
"Sheeran",
"Sheerin",
"Shehan",
"Shehane",
"Sheil",
"Sheilds",
"Sheley",
"Shera",
"Sheridan",
"Sherrow",
"Sherry",
"Shevlin",
"Shiel",
"Shield",
"Shields",
"Shiell",
"Shimmin",
"Shine",
"Shinners",
"Shinnick",
"Shirey",
"Shirkey",
"Shivers",
"Shortell",
"Shorten",
"Shovlin",
"Shugrue",
"Shurden",
"Siford",
"Siggins",
"Silk",
"Silke",
"Silkey",
"Sillery",
"Simonton",
"Sinnett",
"Sinon",
"Sisk",
"Skahill",
"Skeans",
"Skehan",
"Skelley",
"Skellie",
"Skelly",
"Skerry",
"Skillen",
"Slane",
"Slaney",
"Slattery",
"Slaven",
"Slavens",
"Slavin",
"Sleeth",
"Slevin",
"Sliney",
"Sloan",
"Sloane",
"Slowey",
"Smallen",
"Smith",
"Smollen",
"Smullen",
"Snee",
"Solan",
"Solly",
"Solon",
"Somer",
"Somers",
"Somerville",
"Speed",
"Spillane",
"Splain",
"Splaine",
"Stackpole",
"Stackpoole",
"Stake",
"Stapleton",
"Staunton",
"Stay",
"Stewart",
"Stout",
"Stoute",
"Stranahan",
"Suffern",
"Sughrue",
"Sugrue",
"Sullivan",
"Sullivant",
"Summer",
"Summers",
"Supple",
"Swanigan",
"Sweeney",
"Sweeny",
"Sweetnam",
"Sweeton",
"Sweney",
"Swift",
"Swiney",
"Sword",
"Swords",
"Synan",
"Syron",
"Taaffe",
"Taffe",
"Tague",
"Tallant",
"Talley",
"Tally",
"Talty",
"Tansey",
"Tarpey",
"Tarrant",
"Teague",
"Teahan",
"Teaney",
"Teehan",
"Tehan",
"Terrance",
"Terry",
"Tevlin",
"Thompson",
"Thornsberry",
"Thornton",
"Tiernan",
"Tierney",
"Tiger",
"Tighe",
"Tigue",
"Tilly",
"Timlin",
"Timmons",
"Timon",
"Timoney",
"Timothy",
"Tinney",
"Tivnan",
"Toal",
"Tobin",
"Toman",
"Tomb",
"Toner",
"Tonner",
"Toohey",
"Tool",
"Toolan",
"Toole",
"Tooley",
"Tooman",
"Toomey",
"Toran",
"Tormey",
"Torney",
"Torpey",
"Torpy",
"Torrence",
"Touhey",
"Towell",
"Towey",
"Toye",
"Tracey",
"Tracy",
"Trainor",
"Trant",
"Traynor",
"Treacy",
"Treanor",
"Trevor",
"Trim",
"Trower",
"Troy",
"Truell",
"Tubridy",
"Tucker",
"Tuhy",
"Tuite",
"Tully",
"Tumulty",
"Tunney",
"Tuohey",
"Tuohy",
"Turley",
"Twohey",
"Twohig",
"Twohy",
"Twombley",
"Twomey",
"Tydings",
"Tynan",
"Tyne",
"Tyrone",
"Vahey",
"Vail",
"Vallely",
"Varian",
"Vaugh",
"Veale",
"Vey",
"Vicker",
"Victory",
"Vincent",
"Vogan",
"Walch",
"Wall",
"Walsh",
"Walshe",
"Ward",
"Warner",
"Warren",
"Water",
"Waters",
"Wead",
"Weir",
"Welsh",
"Welshans",
"Whalen",
"Whalin",
"Whaling",
"Wheelan",
"Whelan",
"Whelihan",
"Whelton",
"White",
"Whitehead",
"Wholey",
"Wholley",
"Whooley",
"Wilde",
"Wilson",
"Windham",
"Winter",
"Wogan",
"Wolf",
"Wolfe",
"Woodlock",
"Woods",
"Woulfe",
"Wren",
"Wrinn",
"Wyer",
"Wynne",
"Wyse"]>>
<<set setup.irishFemaleFirstnames to [
"Abbie",
"Abigail",
"Adan",
"Aella",
"Afric",
"Aifric",
"Ailbhe",
"Ailis",
"Aimee",
"Aine",
"Aisling",
"Akaisha",
"Alana",
"Alanna",
"Alannah",
"Alexandra",
"Alice",
"Alicia",
"Alison",
"Amber",
"Amelia",
"Amy",
"Andrea",
"Anna",
"Annabelle",
"Annie",
"Aoibhe",
"Aoibheann",
"Aoibhinn",
"Aoife",
"Arlene",
"Ava",
"Bedelia",
"Berit",
"Biddy",
"Birgit",
"Birgitta",
"Birte",
"Breck",
"Bree",
"Breena",
"Brena",
"Brenda",
"Brianna",
"Brice",
"Bridget",
"Brigida",
"Brita",
"Britt",
"Cacey",
"Caitlin",
"Caitriona",
"Callan",
"Caoimhe",
"Cara",
"Carey",
"Carin",
"Casey",
"Cassidy",
"Catherine",
"Ceara",
"Charlotte",
"Chay",
"Chelsea",
"Chloe",
"Ciannait",
"Ciara",
"Claire",
"Clara",
"Clodagh",
"Colleen",
"Cordelia",
"Courtney",
"Daisy",
"Danielle",
"Darby",
"Darcie",
"Daryn",
"Derry",
"Dierdre",
"Donelle",
"Duvessa",
"Dymphna",
"Eabha",
"Earlene",
"Eimear",
"Elizabeth",
"Ella",
"Ellen",
"Ellie",
"Emer",
"Emilia",
"Emily",
"Emma",
"Ennis",
"Erin",
"Eva",
"Eve",
"Evie",
"Fallon",
"Farran",
"Faye",
"Feena",
"Fenella",
"Fiadh",
"Finola",
"Fiona",
"Fionola",
"Flannery",
"Freya",
"Gail",
"Gemma",
"Georgia",
"Gilda",
"Gittan",
"Glen",
"Gormlaith",
"Grace",
"Grainne",
"Guinevere",
"Haley",
"Hanna",
"Hannah",
"Hayley",
"Hazel",
"Hiolair",
"Hisolda",
"Hollie",
"Holly",
"Ilene",
"Ina",
"Innis",
"Isabella",
"Isabelle",
"Isla",
"Jade",
"Jessica",
"Jodie",
"Julia",
"Julie",
"Kacey",
"Kaci",
"Kaelin",
"Kalin",
"Kasey",
"Kasie",
"Kassidy",
"Kassie",
"Kate",
"Katelin",
"Katelyn",
"Katen",
"Kathleen",
"Katie",
"Katlin",
"Kayla",
"Kayleigh",
"Kayley",
"Keanna",
"Keara",
"Keavy",
"Keegan",
"Keeley",
"Keelia",
"Keelin",
"Keira",
"Kella",
"Kellen",
"Kelly",
"Kellyn",
"Kennedy",
"Kevina",
"Kianna",
"Kiarra",
"Kiera",
"Kiley",
"Killian",
"Kira",
"Kyara",
"Kyla",
"Kyle",
"Kyleigh",
"Kylene",
"Kyra",
"Lanni",
"Laoise",
"Lara",
"Lassie",
"Laura",
"Lauren",
"Layla",
"Leah",
"Leanne",
"Lee",
"Lena",
"Leona",
"Lexi",
"Liadan",
"Lilly",
"Lily",
"Lisa",
"Louise",
"Lucy",
"Mackenzie",
"Madison",
"Maegan",
"Maeron",
"Maeve",
"Maire",
"Maisie",
"Maja",
"Mallow",
"Margaret",
"Maria",
"Mary",
"Maura",
"Maureen",
"Maya",
"Meabh",
"Megan",
"Melissa",
"Meryl",
"Mia",
"Michaela",
"Michelle",
"Mila",
"Millie",
"Moira",
"Mollie",
"Molly",
"Mona",
"Morna",
"Muna",
"Muriel",
"Murphy",
"Naomi",
"Natalia",
"Nelda",
"Nessa",
"Neve",
"Nevina",
"Niamh",
"Nicola",
"Nicole",
"Nora",
"Nuala",
"Nya",
"Nyah",
"Nyasia",
"Ohnicio",
"Olivia",
"Oliwia",
"Onora",
"Oola",
"Oria",
"Orla",
"Piritta",
"Pirjo",
"Pirkko",
"Quinn",
"Rachel",
"Reagan",
"Rebecca",
"Regan",
"Reilley",
"Riana",
"Richael",
"Robyn",
"Roisin",
"Rosa",
"Rose",
"Rosie",
"Rowan",
"Ruby",
"Ruth",
"Ryan",
"Sadhbh",
"Sadie",
"Saoirse",
"Sara",
"Sarah",
"Shanessa",
"Shannon",
"Shauna",
"Shawnee",
"Shawnnessy",
"Shay",
"Shayla",
"Shaylee",
"Shea",
"Sheena",
"Shenna",
"Sienna",
"Sine",
"Sinead",
"Siobhan",
"Slaine",
"Sloane",
"Sofia",
"Sophia",
"Sophie",
"Sorcha",
"Sosanna",
"Taban",
"Tara",
"Teagan",
"Tully",
"Tyree",
"Ula",
"Victoria",
"Viona",
"Zara",
"Zenevieva",
"Zephan",
"Zoe"]>>
<<set setup.nigerianMaleFirstnames to ["Placeholder Bob",
"Placeholder Joe"]>>
<<set setup.nigerianSurnames to ["Placeholder Bob",
"Placeholder Joe"]>>
<<set setup.nigerianFemaleFirstnames to ["Placeholder Bob",
"Placeholder Joe"]>>
<<set setup.greekMaleFirstnames to [
"Achilles",
"Adonis",
"Adrian",
"Aegeus",
"Aeneas",
"Aesop",
"Agamemnon",
"Aindrea",
"Ajax",
"Alastair",
"Alcander",
"Alcibiades",
"Ale",
"Alec",
"Aleixo",
"Alejandro",
"Aleksander",
"Aleksanteri",
"Aleksy",
"Ales",
"Alessandro",
"Alex",
"Alexander",
"Alexandro",
"Alexei",
"Alexis",
"Alfio",
"Alika",
"Alistaire",
"Altair",
"Alyosha",
"Amar",
"Ambrogio",
"Ambroos",
"Ambrose",
"Ambrosio",
"Ambrus",
"Anacletus",
"Anastacio",
"Anastasius",
"Anatole",
"Anatoli",
"Anatolio",
"Andel",
"Ander",
"Anders",
"Anderson",
"Andras",
"Andre",
"Andreas",
"Andrei",
"Andres",
"Andrew",
"Andries",
"Andris",
"Andromeda",
"Andronicus",
"Andrzej",
"Andy",
"Ange",
"Angel",
"Angelo",
"Aniello",
"Anker",
"Anson",
"Anstice",
"Antenor",
"Antero",
"Anthony",
"Antigonus",
"Antreas",
"Apollo",
"Apolonio",
"Apostolos",
"Aquarius",
"Arastoo",
"Archelaus",
"Archimedes",
"Ares",
"Argos",
"Argus",
"Aries",
"Arion",
"Aristide",
"Aristides",
"Aristophanes",
"Aristotle",
"Arsen",
"Arsene",
"Arsenio",
"Artemas",
"Artyom",
"Asmodel",
"Aster",
"Athan",
"Athanasios",
"Athos",
"Atlas",
"Atreo",
"Atticus",
"Autolocus",
"Avel",
"Bacchus",
"Bandi",
"Baptist",
"Baptiste",
"Bart",
"Bartholomew",
"Bartlett",
"Bartolomej",
"Basil",
"Basilius",
"Bates",
"Bautista",
"Bazyli",
"Bemus",
"Bishop",
"Bronte",
"Broos",
"Caesar",
"Callister",
"Callisthenes",
"Callistus",
"Cancer",
"Carsten",
"Castor",
"Centaurus",
"Chaos",
"Charon",
"Chiron",
"Chris",
"Christian",
"Christoffel",
"Christopher",
"Chronos",
"Claes",
"Claus",
"Cleo",
"Cleon",
"Cletus",
"Coeus",
"Cohn",
"Cola",
"Colin",
"Collin",
"Collis",
"Colson",
"Corinthian",
"Corydon",
"Cosimo",
"Cosmo",
"Cristo",
"Cristobal",
"Cristovao",
"Cronus",
"Cyan",
"Cyd",
"Cypress",
"Cyril",
"Cyrus",
"Damasus",
"Damien",
"Damon",
"Dand",
"Dard",
"Darius",
"Deacon",
"Deion",
"Demetrius",
"Denes",
"Dennis",
"Denny",
"Deo",
"Deondre",
"Deorsa",
"Dima",
"Dimitri",
"Dinis",
"Diomedes",
"Dionte",
"Dionysus",
"Dooley",
"Doran",
"Dorian",
"Draco",
"Dre",
"Drew",
"Dryas",
"Dwight",
"Dyson",
"Egor",
"Elek",
"Elie",
"Eneas",
"Erasmo",
"Erasmus",
"Erastus",
"Ercole",
"Eris",
"Ermolai",
"Eros",
"Eskandar",
"Esteban",
"Estefan",
"Estevao",
"Euclid",
"Eugene",
"Eugenio",
"Eugeniusz",
"Eustace",
"Eustacio",
"Evagelos",
"Evander",
"Evangelista",
"Evgeni",
"Evzen",
"Fane",
"Felipe",
"Felipinho",
"Feofan",
"Ferris",
"Filib",
"Filip",
"Filipe",
"Filippus",
"Flavian",
"Flip",
"Galen",
"Gavriil",
"Gelasius",
"Gene",
"Geode",
"Geordi",
"Georg",
"George",
"Gergely",
"Gergo",
"Geronimo",
"Giles",
"Gino",
"Giorgio",
"Goran",
"Grear",
"Greer",
"Greg",
"Greger",
"Gregers",
"Gregor",
"Gregorio",
"Gregory",
"Gregson",
"Greig",
"Grigori",
"Griogair",
"Grisha",
"Grzegorz",
"Gyorgy",
"Gyuri",
"Hades",
"Hadrian",
"Hamon",
"Harmon",
"Heck",
"Hector",
"Heitor",
"Hektor",
"Helios",
"Hephaestus",
"Heracles",
"Hercules",
"Hermes",
"Heros",
"Hieronymus",
"Hipparchus",
"Hippias",
"Hippocrates",
"Homer",
"Horace",
"Hydrus",
"Hyginus",
"Hyperion",
"Hypnos",
"Iakobos",
"Icarus",
"Ilias",
"Indigo",
"Ioan",
"Iosif",
"Isadore",
"Isandro",
"Isaurus",
"Iskander",
"Iskinder",
"Istvan",
"Izador",
"Jace",
"Jacinto",
"Jason",
"Jedrick",
"Jedrzej",
"Jeroen",
"Jerome",
"Jeronimo",
"Jerzy",
"Jiri",
"Joran",
"Jordy",
"Jorg",
"Jorge",
"Jorgen",
"Jorginho",
"Jorn",
"Jory",
"Jurek",
"Jurgen",
"Juris",
"Jyri",
"Kai",
"Kalin",
"Kallen",
"Karey",
"Karsten",
"Kayson",
"Keandre",
"Keion",
"Keoki",
"Kester",
"Khronos",
"Kiril",
"Kirill",
"Kit",
"Klas",
"Klaus",
"Kolya",
"Konstantinos",
"Kosmo",
"Kozma",
"Krischnan",
"Kristoffer",
"Kronos",
"Krystof",
"Krzys",
"Krzysiek",
"Krzysztof",
"Kuzma",
"Kyros",
"Laertes",
"Leander",
"Leandre",
"Leandro",
"Leon",
"Leonidas",
"Lex",
"Linus",
"Lionel",
"Loikanos",
"Luc",
"Luca",
"Lucas",
"Lucky",
"Lukacs",
"Lukas",
"Lukasz",
"Luke",
"Luukas",
"Lykaios",
"Lyosha",
"Lyric",
"Lysander",
"Lysias",
"Macario",
"Manases",
"Marinos",
"Mateo",
"Mel",
"Melancton",
"Melun",
"Menelaus",
"Mete",
"Miklos",
"Mikolaj",
"Mikolas",
"Mikula",
"Mikulas",
"Minos",
"Momus",
"Mona",
"Morpheus",
"Myles",
"Myron",
"Narciso",
"Narcissus",
"Narcyz",
"Neacel",
"Nectarios",
"Nektarios",
"Neo",
"Nereus",
"Nestor",
"Nestori",
"Niccolo",
"Nicholas",
"Nicholson",
"Nick",
"Nicky",
"Nico",
"Nicodemus",
"Nicolai",
"Nicolau",
"Niels",
"Niilo",
"Nike",
"Nikita",
"Niklas",
"Nikodem",
"Nikola",
"Nikolai",
"Nikolaj",
"Nikos",
"Nils",
"Obelia",
"Obelix",
"Ocean",
"Oceana",
"Oceanus",
"Odea",
"Odele",
"Odessa",
"Odette",
"Odysseus",
"Olek",
"Olympia",
"Omega",
"Ondrej",
"Orea",
"Orestes",
"Orion",
"Orpheus",
"Orrin",
"Osanna",
"Osias",
"Otis",
"Owen",
"Pan",
"Panos",
"Panthea",
"Paris",
"Pasi",
"Patroclus",
"Peadar",
"Pearson",
"Peder",
"Pedro",
"Peer",
"Pekka",
"Pelle",
"Pello",
"Per",
"Pericles",
"Perkins",
"Perseus",
"Peter",
"Petr",
"Petri",
"Petteri",
"Petya",
"Phelps",
"Phil",
"Philander",
"Philemon",
"Philip",
"Philo",
"Philomenos",
"Philostrate",
"Philotus",
"Phoenix",
"Pierce",
"Pierre",
"Pika",
"Piotr",
"Pista",
"Plato",
"Platon",
"Pluto",
"Plutus",
"Poseidon",
"Priam",
"Prometheus",
"Proteus",
"Ptolemy",
"Pyotr",
"Pyrrhus",
"Rasmus",
"Rastus",
"Rehor",
"Reko",
"Rhodes",
"Ries",
"Risto",
"Sander",
"Sanders",
"Sandor",
"Sandro",
"Sandy",
"Sanyi",
"Saunder",
"Saunders",
"Saunderson",
"Sawney",
"Seoras",
"Sesame",
"Shura",
"Simonides",
"Sisyphus",
"Socrates",
"Sofronio",
"Solinus",
"Soteria",
"Soterios",
"Spiridon",
"Stacy",
"Staffan",
"Stamos",
"Stavros",
"Steafan",
"Stefan",
"Steffen",
"Stepan",
"Stephen",
"Stevie",
"Strom",
"Symeon",
"Szczepan",
"Tadeas",
"Tadeo",
"Tahvo",
"Talos",
"Tansy",
"Tapani",
"Taras",
"Tarasios",
"Ted",
"Teddy",
"Tenney",
"Tennyson",
"Teodor",
"Teodoro",
"Teppo",
"Teuvo",
"Thad",
"Thaddeus",
"Thanases",
"Thanos",
"Theo",
"Theodore",
"Theophanes",
"Theophilus",
"Theron",
"Theseus",
"Thomas",
"Tibalt",
"Tiger",
"Tim",
"Timeus",
"Timoleon",
"Timon",
"Timoteo",
"Timothy",
"Titus",
"Tivadar",
"Tony",
"Tracy",
"Tryphon",
"Tychon",
"Tyge",
"Tymon",
"Tymoteusz",
"Tyrone",
"Ulysses",
"Uranus",
"Urian",
"Urien",
"Vander",
"Vangelis",
"Vasil",
"Vasili",
"Vasilios",
"Vilppu",
"Vitaly",
"Vitas",
"Vivar",
"Volney",
"Xander",
"Xanthus",
"Xeno",
"Xenon",
"Xenophanes",
"Xenophon",
"Xerarch",
"Xuthus",
"Xylo",
"Xylon",
"Xyst",
"Xystum",
"Xystus",
"Yannis",
"Yegor",
"Yermolai",
"Yevgeni",
"York",
"Yuri",
"Zale",
"Zander",
"Zefirino",
"Zendo",
"Zeno",
"Zenobio",
"Zenon",
"Zenos",
"Zephyr",
"Zero",
"Zeth",
"Zeus",
"Zoello",
"Zorba",
"Zosimo"]>>
<<set setup.greekSurnames to [
"Adamos",
"Aetós",
"Afroudakis",
"Agne",
"Agnes",
"Alafouzos",
"Alanis",
"Alexakis",
"Alexandris",
"Alexandropoulos",
"Alexandrou",
"Alexiadis",
"Alexiou",
"Alexopoulos",
"Alexoudis",
"Ambrosia",
"Anagnos",
"Anagnostou",
"Anastas",
"Anastasiadis",
"Anastasopoulos",
"Anastopoulos",
"Anastos",
"Andino",
"Andreadis",
"Andreas",
"Andreou",
"Andrianopoulos",
"Andris",
"Androulakis",
"Anestis",
"Angelis",
"Angelopoulos",
"Angelos",
"Anthes",
"Anthis",
"Antoni",
"Antoniadis",
"Antoniou",
"Antonopoulos",
"Apostolidis",
"Apostolos",
"Apostolou",
"Argyropoulos",
"Argyros",
"Ariti",
"Artino",
"Arvanitis",
"Asker",
"Athan",
"Athanas",
"Athanasiadis",
"Athanasiou",
"Athanasoulas",
"Athans",
"Athas",
"Avramidis",
"Axiotis",
"Bakas",
"Bakirtzis",
"Bakoyannis",
"Balaban",
"Balaska",
"Balaskas",
"Ballas",
"Balli",
"Ballis",
"Banis",
"Barba",
"Barbas",
"Barberis",
"Barlas",
"Barlos",
"Baros",
"Bella",
"Bernardakis",
"Biros",
"Booras",
"Boosalis",
"Botsaris",
"Botsis",
"Bouras",
"Buros",
"Calathes",
"Calazans",
"Callas",
"Calligaris",
"Callis",
"Caras",
"Carras",
"Cassavetes",
"Castellanos",
"Chaconas",
"Chalkias",
"Chloros",
"Cholevas",
"Chondroyannos",
"Chontos",
"Chris",
"Christakis",
"Christakos",
"Christodoulopoulos",
"Christodoulou",
"Christoforou",
"Christopoulos",
"Christos",
"Christou",
"Christoyannopoulos",
"Chronis",
"Cirillo",
"Collias",
"Comis",
"Condos",
"Constantinides",
"Constantinou",
"Contos",
"Cora",
"Cosmos",
"Cosse",
"Costas",
"Coumantaros",
"Danielopoulos",
"Danielos",
"Daskalakis",
"Delis",
"Dellis",
"Demetriou",
"Demo",
"Demopoulos",
"Demos",
"Diakos",
"Diamandis",
"Diamantopoulos",
"Dimakos",
"Dimas",
"Dimitriadis",
"Dimitriou",
"Dimitropoulos",
"Dimopoulos",
"Doukas",
"Dousmanis",
"Doxiadis",
"Dragoumis",
"Drakos",
"Drivas",
"Dukakis",
"Dukas",
"Economides",
"Economos",
"Economou",
"Eliades",
"Elias",
"Eliopoulos",
"Filo",
"Florakis",
"Floros",
"Fotakis",
"Fotilas",
"Fotiou",
"Fotopoulos",
"Fotos",
"Fourlis",
"Frangopoulos",
"Frangos",
"Gabris",
"Galanis",
"Galanos",
"Galatas",
"Galifianakis",
"Ganas",
"Ganis",
"Garis",
"Gataki",
"Gavalas",
"Gavras",
"Gavril",
"Gazis",
"Gekas",
"Georgas",
"Georgiades",
"Georgiadis",
"Georgiou",
"Georgopoulos",
"German",
"Gerou",
"Giakoumakis",
"Gianakos",
"Giannakopoulos",
"Giannopoulos",
"Gianopoulos",
"Gikas",
"Gikopoulos",
"Glaros",
"Glezos",
"Goga",
"Gogola",
"Golias",
"Gonce",
"Goulandris",
"Goulas",
"Gounaris",
"Grammatikopoulou",
"Grivas",
"Halkias",
"Hallas",
"Hanas",
"Harris",
"Hatzi",
"Hatzidakis",
"Hatziioannou",
"Hatzimichalis",
"Hatzis",
"Hero",
"Herod",
"Hondros",
"Hrisoverghi",
"Iakovou",
"Iliopoulos",
"Ioannidis",
"Ioannou",
"Iraklidis",
"Kafatos",
"Kairis",
"Kaklamanis",
"Kakos",
"Kalfas",
"Kalivas",
"Kallas",
"Kallis",
"Kalogeras",
"Kalogeropoulos",
"Kamber",
"Kanakaris",
"Kanas",
"Kanellopoulos",
"Kanelos",
"Kappas",
"Kara",
"Karahalios",
"Karakatsanis",
"Karakostas",
"Karalis",
"Karas",
"Karavitis",
"Karras",
"Katechis",
"Katopodis",
"Katrakis",
"Katsaros",
"Katsifaras",
"Kazan",
"Kefalas",
"Kefalogiannis",
"Kellis",
"Kiriakidis",
"Kokes",
"Kokkinakis",
"Kokolakis",
"Kolettis",
"Kollias",
"Kondos",
"Kondylis",
"Konstantinidis",
"Konstantinopolites",
"Konstantinou",
"Konstantopoulos",
"Kontogouris",
"Kontos",
"Korba",
"Kordolaimi",
"Kormos",
"Kosko",
"Kosta",
"Kostas",
"Kostopoulos",
"Kotas",
"Kotzias",
"Koufos",
"Koundouros",
"Kourakis",
"Kouris",
"Koutsis",
"Koutsopoulos",
"Krestenitis",
"Kriezis",
"Kritikos",
"Kyrgios",
"Kyriakou",
"Kyriazis",
"Kyrkos",
"Labropoulos",
"Ladas",
"Lagana",
"Lagos",
"Lagoudakis",
"Lambrakis",
"Lambros",
"Lampros",
"Laskaris",
"Lasko",
"Latsis",
"Lazos",
"Leandros",
"Leichoudes",
"Lekas",
"Lekkas",
"Leon",
"Leos",
"Leva",
"Leventis",
"Levidis",
"Liakos",
"Lias",
"Lillis",
"Linard",
"Liourdis",
"Livas",
"Logo",
"Logothetis",
"Lois",
"Loris",
"Louganis",
"Louis",
"Loukanis",
"Loukas",
"Loverdos",
"Lykaios",
"Macris",
"Magoulas",
"Maheras",
"Maimonides",
"Makos",
"Makris",
"Makriyannis",
"Mallas",
"Mandrapilias",
"Manetas",
"Mangas",
"Maniatis",
"Manikas",
"Manis",
"Manolas",
"Manolis",
"Manos",
"Manousakis",
"Manousos",
"Mantalos",
"Mantzaris",
"Mantzios",
"Maragos",
"Marangos",
"Maras",
"Mardas",
"Margaritis",
"Marinakis",
"Marinos",
"Maris",
"Markakis",
"Markides",
"Markopoulos",
"Markos",
"Martinos",
"Martis",
"Masalis",
"Mate",
"Mates",
"Matis",
"Matraxia",
"Matsouka",
"Matsoukas",
"Mattas",
"Matthias",
"Matthiou",
"Mavridis",
"Mavros",
"Mega",
"Melis",
"Mellas",
"Mellis",
"Mena",
"Metaxas",
"Metro",
"Miaoulis",
"Michaelides",
"Michail",
"Michailidis",
"Michalidis",
"Michalos",
"Michel",
"Mihal",
"Mikos",
"Milas",
"Milonas",
"Mina",
"Minas",
"Minga",
"Mires",
"Miron",
"Misko",
"Mitropoulos",
"Mitsopoulos",
"Mitsotakis",
"Mitzou",
"Mola",
"Moraitis",
"Moralis",
"Moros",
"Moustakas",
"Moysiadis",
"Mula",
"Mundis",
"Mylonas",
"Myron",
"Nafpliotis",
"Nakos",
"Nanos",
"Nasso",
"Nephus",
"Nerantzis",
"Nevrakis",
"Nicolaides",
"Nicolaou",
"Nicoli",
"Nicolo",
"Nikas",
"Nikitas",
"Nikolaidis",
"Nikolaou",
"Nikolas",
"Nikolopoulos",
"Nikoloudis",
"Nini",
"Nino",
"Nomikos",
"Notaras",
"Oikonomopoulos",
"Oikonomou",
"Onasis",
"Orologas",
"Othonos",
"Pagonis",
"Palas",
"Pallas",
"Pallis",
"Panagakos",
"Panagiotidis",
"Panagiotopoulos",
"Panagopoulos",
"Panagos",
"Panas",
"Panayiotou",
"Panos",
"Panousis",
"Pantazis",
"Papa",
"Papachristodoulopoulos",
"Papachristos",
"Papadakis",
"Papadatos",
"Papademos",
"Papadiamantopoulos",
"Papadimitriou",
"Papadopoulos",
"Papageorgiou",
"Papageorgopoulos",
"Papagiannis",
"Papaioannou",
"Papajohn",
"Papakonstantinou",
"Papamichael",
"Papanastasiou",
"Papandreou",
"Papanikolaou",
"Papantoniou",
"Papapostolou",
"Papas",
"Papathanasiou",
"Papatonis",
"Papazoglou",
"Papoulias",
"Pappas",
"Paraschos",
"Paraskevas",
"Paraskevopoulos",
"Paschalidis",
"Patera",
"Patras",
"Paules",
"Paulos",
"Pavlides",
"Pavlidis",
"Pavlis",
"Pavlopoulos",
"Pavlou",
"Penna",
"Pepi",
"Peri",
"Peris",
"Perris",
"Perro",
"Persopoulos",
"Petimezas",
"Petinos",
"Petrakis",
"Petralia",
"Petras",
"Petrides",
"Petridis",
"Petro",
"Petropoulos",
"Petros",
"Petrou",
"Philippidis",
"Pipes",
"Polites",
"Politis",
"Poulos",
"Primo",
"Protopapas",
"Psaltis",
"Psomas",
"Pulos",
"Rallis",
"Raptis",
"Raskopoulos",
"Regas",
"Rella",
"Remes",
"Remis",
"Rigas",
"Rines",
"Roda",
"Rodi",
"Rodia",
"Rodis",
"Rodocanachi",
"Rokos",
"Romanos",
"Ronda",
"Rondo",
"Rosi",
"Rosso",
"Rota",
"Roubanis",
"Rouphos",
"Rousopoulos",
"Roussopoulos",
"Roussos",
"Rubis",
"Sagona",
"Sakellaridis",
"Sakellarios",
"Sakkari",
"Salis",
"Sallas",
"Sallis",
"Samaras",
"Sanna",
"Sarantos",
"Sarkis",
"Sarris",
"Sava",
"Savalas",
"Savas",
"Savva",
"Savvas",
"Scala",
"Schinas",
"Selinofoto",
"Servopoulos",
"Sgouros",
"Sica",
"Sideris",
"Sifakis",
"Simopoulos",
"Simos",
"Siopis",
"Sisinis",
"Siska",
"Sisko",
"Skarlatos",
"Skourletis",
"Soter",
"Sotir",
"Sotiropoulos",
"Soulis",
"Spanakos",
"Spanos",
"Speros",
"Spheeris",
"Spiliotopoulos",
"Spiros",
"Spyropoulos",
"Stamas",
"Stamatis",
"Stamatopoulos",
"Stamos",
"Stanis",
"Stasinopoulos",
"Stathakis",
"Stathis",
"Stathopoulos",
"Stathos",
"Stavridis",
"Stavropoulos",
"Stavros",
"Stavrou",
"Stefanopoulos",
"Stephanides",
"Stephanopoulos",
"Stratigos",
"Stratis",
"Straton",
"Stratos",
"Tadros",
"Takes",
"Taskasaplidis",
"Tassi",
"Tasso",
"Tavoularis",
"Teresi",
"Terzi",
"Terzis",
"Thanos",
"Theodorakis",
"Theodoridis",
"Theodoropoulos",
"Theodorou",
"Thoma",
"Tocci",
"Toles",
"Tomaras",
"Tombras",
"Toto",
"Trakas",
"Triantafyllou",
"Tripi",
"Tsakalidis",
"Tsakalotos",
"Tsakiris",
"Tsakonas",
"Tsaldaris",
"Tsamis",
"Tsaoussis",
"Tsekrekos",
"Tsitak",
"Tsitsipas",
"Tzavaras",
"Valaoritis",
"Valavanis",
"Valis",
"Vallas",
"Valli",
"Vallis",
"Vardinogiannis",
"Varela",
"Vasco",
"Vasil",
"Vasilakakis",
"Vasilakis",
"Vasileiou",
"Vasiliadis",
"Vasiliou",
"Vasilopoulos",
"Vassilakis",
"Vassos",
"Velis",
"Venizelos",
"Vgenopoulos",
"Vidales",
"Vitalis",
"Vlachodimos",
"Vlachopoulos",
"Vlachos",
"Vlahakis",
"Vlahos",
"Vlasopoulos",
"Vokos",
"Volikakis",
"Voskopoulos",
"Votsis",
"Vougiouklakis",
"Voulgaris",
"Voulgaropoulos",
"Vovos",
"Vranas",
"Vrettos",
"Xanthopoulos",
"Xanthos",
"Xenakis",
"Xenos",
"Xiphias",
"Xydakis",
"Yannakakis",
"Yiannopoulos",
"Zafeiriou",
"Zaimis",
"Zenon",
"Zervas",
"Zervos",
"Zika",
"Zochonis",
"Zografos"]>>
<<set setup.greekFemaleFirstnames to [
"Acantha",
"Adara",
"Adelpha",
"Adrienne",
"Aegle",
"Afrodite",
"Agafya",
"Agape",
"Agata",
"Agatha",
"Agda",
"Aggie",
"Aglaia",
"Agnes",
"Agneta",
"Agnete",
"Agnetha",
"Agnieszka",
"Agot",
"Agota",
"Agueda",
"Aileen",
"Alcina",
"Aldora",
"Alecta",
"Alecto",
"Alejandra",
"Alena",
"Alessa",
"Alessandra",
"Aleta",
"Alethea",
"Alex",
"Alexa",
"Alexandra",
"Alexis",
"Alice",
"Alida",
"Alisha",
"Alixia",
"Althea",
"Aludra",
"Alyona",
"Alyx",
"Amara",
"Ambrosia",
"Ambrosine",
"Amethyst",
"Aminta",
"Amphitrite",
"Anastasia",
"Anastazie",
"Anastazja",
"Andela",
"Andrea",
"Andreia",
"Andrina",
"Andromache",
"Andromeda",
"Andy",
"Andzelika",
"Anfisa",
"Angel",
"Angela",
"Angelica",
"Angelina",
"Angelique",
"Angie",
"Angyalka",
"Aniela",
"Anielka",
"Annis",
"Anstice",
"Anthea",
"Antigone",
"Antonia",
"Anysia",
"Aphrodite",
"Apus",
"Arachne",
"Arali",
"Aretha",
"Ariadne",
"Ariana",
"Arina",
"Arissa",
"Artemia",
"Artemis",
"Aspasia",
"Astra",
"Astrid",
"Athena",
"Atropos",
"Aune",
"Aurianna",
"Aurora",
"Avel",
"Azalea",
"Babs",
"Bara",
"Barabal",
"Barbara",
"Barbie",
"Barbora",
"Barbra",
"Barbro",
"Basalt",
"Basia",
"Basilia",
"Basilissa",
"Berenice",
"Bernice",
"Bloodstone",
"Bobbie",
"Borbala",
"Brisa",
"Bronte",
"Bryony",
"Caitlin",
"Caitriona",
"Cajsa",
"Calandra",
"Calantha",
"Calanthe",
"Calista",
"Calla",
"Calliope",
"Candace",
"Candra",
"Carin",
"Carina",
"Caris",
"Carisa",
"Carissa",
"Cassandra",
"Cassie",
"Cassiopeia",
"Catalina",
"Catherine",
"Catia",
"Catrina",
"Catriona",
"Celandia",
"Cerelia",
"Chalcedony",
"Charis",
"Charisma",
"Charissa",
"Charmaine",
"Chloe",
"Chris",
"Christina",
"Chrysanthe",
"Chryssa",
"Chrystal",
"Cindy",
"Cinnabar",
"Cintia",
"Cleo",
"Cleopatra",
"Clio",
"Cloe",
"Cloris",
"Clotho",
"Colette",
"Cora",
"Coral",
"Coralie",
"Corinna",
"Cosima",
"Cressida",
"Crystal",
"Cybill",
"Cyd",
"Cynthia",
"Damaris",
"Damia",
"Damiana",
"Danae",
"Daphne",
"Daria",
"Darja",
"Daryn",
"Dasha",
"Dea",
"Delbin",
"Delia",
"Della",
"Delphina",
"Delphine",
"Delta",
"Demetria",
"Demi",
"Denisa",
"Denise",
"Desdemona",
"Desma",
"Despina",
"Diamond",
"Diantha",
"Dike",
"Dionisia",
"Dionne",
"Dionysia",
"Diotama",
"Docia",
"Dolly",
"Dora",
"Dorcas",
"Doreen",
"Dorete",
"Doria",
"Dorian",
"Dorika",
"Dorinda",
"Doris",
"Dorit",
"Dorita",
"Dorota",
"Doroteia",
"Dorothy",
"Dorottya",
"Dorrit",
"Dorte",
"Dottie",
"Drea",
"Drew",
"Drucilla",
"Dysis",
"Ebony",
"Echo",
"Effie",
"Efigenia",
"Eileen",
"Eilidh",
"Eilionoir",
"Eireen",
"Elaina",
"Elaine",
"Elani",
"Eleanor",
"Electa",
"Electra",
"Elida",
"Eliina",
"Elin",
"Elina",
"Elke",
"Ella",
"Ellen",
"Ellie",
"Ellinor",
"Elma",
"Elodie",
"Emerald",
"Eos",
"Eppie",
"Erasma",
"Eris",
"Esmeralda",
"Estefania",
"Ethereal",
"Etiennette",
"Eudora",
"Eugenia",
"Eulalia",
"Eunice",
"Eunika",
"Euphemia",
"Euphrosyne",
"Eurydice",
"Euterpe",
"Evadne",
"Evangeline",
"Febe",
"Fedora",
"Filipina",
"Filippa",
"Filmena",
"Filomena",
"Frona",
"Gaea",
"Gaia",
"Gala",
"Galina",
"Gelasia",
"Gemini",
"Genesis",
"Genie",
"Gennadiya",
"Georgette",
"Georgia",
"Georgina",
"Giacinta",
"Greer",
"Greet",
"Greetje",
"Greta",
"Gretchen",
"Grete",
"Griet",
"Gyorgyi",
"Gyorgyike",
"Halina",
"Harmony",
"Hebe",
"Hecate",
"Hecuba",
"Heleentje",
"Helen",
"Helena",
"Hera",
"Hermia",
"Hermione",
"Hero",
"Hestia",
"Hilary",
"Hippolyta",
"Hyacinth",
"Hydra",
"Hypatia",
"Ianthe",
"Iines",
"Ileana",
"Ilena",
"Ilene",
"Ili",
"Ilka",
"Ilona",
"Indigo",
"Ines",
"Iole",
"Iolite",
"Iona",
"Ione",
"Iphigenia",
"Iren",
"Irena",
"Irene",
"Iria",
"Irina",
"Irinushka",
"Iris",
"Irja",
"Isadora",
"Isidore",
"Jacey",
"Jacinta",
"Jagienka",
"Jagna",
"Jagusia",
"Jakayla",
"Jekaterina",
"Jelena",
"Jirina",
"Jolanta",
"Jordy",
"Jorie",
"Jorja",
"Kaarina",
"Kacia",
"Kaethe",
"Kaia",
"Kaija",
"Kairi",
"Kairos",
"Kaisa",
"Kaj",
"Kajsa",
"Kakalina",
"Kalena",
"Kaley",
"Kali",
"Kalidas",
"Kalika",
"Kalista",
"Kalli",
"Kalliope",
"Kallista",
"Kalonice",
"Kalyca",
"Kanchana",
"Kandace",
"Kara",
"Karana",
"Karen",
"Kari",
"Karin",
"Karina",
"Karis",
"Karissa",
"Karlyn",
"Kasandra",
"Kasia",
"Kassandra",
"Kata",
"Katalin",
"Katalinka",
"Katariina",
"Katarina",
"Katarzyna",
"Kate",
"Katelijne",
"Katelyn",
"Katerina",
"Katherine",
"Kathleen",
"Kathy",
"Kati",
"Katina",
"Katka",
"Kato",
"Katri",
"Katrien",
"Katrina",
"Katrine",
"Katya",
"Kay",
"Kayla",
"Kaylee",
"Kekepania",
"Khina",
"Kineta",
"Kirsten",
"Kitti",
"Kitty",
"Klasina",
"Kolina",
"Kora",
"Koren",
"Korina",
"Kosma",
"Kristen",
"Kristi",
"Kristina",
"Kristine",
"Kristy",
"Kristyn",
"Krystal",
"Krysten",
"Krystina",
"Kseniya",
"Kynthia",
"Kyra",
"Kyrene",
"Kyria",
"Lacy",
"Lali",
"Laney",
"Lara",
"Lareina",
"Laria",
"Larina",
"Larisa",
"Larissa",
"Lasthenia",
"Latona",
"Layna",
"Leandra",
"Leda",
"Ledell",
"Leena",
"Lenka",
"Lenore",
"Leona",
"Leonor",
"Leonora",
"Leontine",
"Lesya",
"Leta",
"Letha",
"Lethia",
"Lexi",
"Lexie",
"Lidia",
"Lidka",
"Lidochka",
"Lieke",
"Lilika",
"Lina",
"Linore",
"Litsa",
"Livana",
"Livvy",
"Loida",
"Lois",
"Lotus",
"Lyanne",
"Lycorida",
"Lycoris",
"Lydia",
"Lydie",
"Lykaios",
"Lyra",
"Lyric",
"Lyris",
"Lysandra",
"Lyydia",
"Lyyti",
"Maarit",
"Macaria",
"Madalena",
"Madelia",
"Madeline",
"Madge",
"Maeve",
"Magan",
"Magdalen",
"Maggie",
"Maia",
"Mairead",
"Maisie",
"Mala",
"Malissa",
"Mamie",
"Mara",
"Margaret",
"Margareta",
"Margarida",
"Marge",
"Margit",
"Margita",
"Margot",
"Margrete",
"Marigold",
"Marilee",
"Marit",
"Marita",
"Marjorie",
"Marketa",
"Marlene",
"Marmara",
"Maya",
"Mazie",
"Meda",
"Medea",
"Medora",
"Megan",
"Megara",
"Mel",
"Melanctha",
"Melanie",
"Melba",
"Melenna",
"Melia",
"Melika",
"Melina",
"Melinda",
"Melissa",
"Melitta",
"Melody",
"Melora",
"Melpomene",
"Merete",
"Meta",
"Mette",
"Mindy",
"Minta",
"Missy",
"Mnemosyne",
"Mona",
"Monica",
"Moyna",
"Muse",
"Myda",
"Myrtle",
"Naia",
"Naida",
"Naiyah",
"Narcissa",
"Narella",
"Nastasya",
"Natasha",
"Nelda",
"Nell",
"Nellie",
"Nellis",
"Nelly",
"Nemesis",
"Neola",
"Neoma",
"Nephele",
"Nereida",
"Nerin",
"Nerina",
"Nerissa",
"Nes",
"Neske",
"Neysa",
"Nichole",
"Nicia",
"Nicki",
"Nicky",
"Nicolasa",
"Nicole",
"Nicolette",
"Nicoline",
"Nika",
"Nike",
"Nikita",
"Nikki",
"Nikol",
"Nikola",
"Nikolett",
"Niobe",
"Nitsa",
"Noire",
"Nonie",
"Noor",
"Noortje",
"Nora",
"Nyla",
"Nysa",
"Nyssa",
"Nyx",
"Obelia",
"Oceana",
"Odea",
"Odessa",
"Ofelia",
"Oksana",
"Olalla",
"Olena",
"Olympia",
"Omega",
"Onyx",
"Ophelia",
"Ophira",
"Orea",
"Oriana",
"Padgett",
"Pallas",
"Pam",
"Pamela",
"Pandora",
"Panphila",
"Panthea",
"Paris",
"Parthenia",
"Peggy",
"Peigi",
"Pelagia",
"Penelope",
"Penny",
"Persis",
"Peta",
"Petra",
"Petrina",
"Phaedra",
"Phedra",
"Philadelphia",
"Philana",
"Philippa",
"Philomena",
"Phoebe",
"Phoenix",
"Phyllis",
"Pirene",
"Prisma",
"Psyche",
"Ptolema",
"Pyhrrha",
"Pyrena",
"Pythia",
"Raisa",
"Raissa",
"Rasia",
"Reatha",
"Reeta",
"Rene",
"Ressie",
"Rhea",
"Rhoda",
"Rhodanthe",
"Rita",
"Rizpah",
"Saba",
"Sandra",
"Sandrin",
"Sandrine",
"Sandy",
"Sapphira",
"Sappho",
"Saundra",
"Seema",
"Selena",
"Selene",
"Selina",
"Sema",
"Senga",
"Senja",
"Shalonda",
"Sharmaine",
"Sherise",
"Shura",
"Sibley",
"Sibyl",
"Sindy",
"Sirena",
"Sofi",
"Sohvi",
"Sondra",
"Sonia",
"Sophia",
"Sophie",
"Sophronia",
"Spirituality",
"Spodumene",
"Stacia",
"Stacy",
"Stasya",
"Stefania",
"Steffi",
"Stephaney",
"Stephanie",
"Stesha",
"Stevie",
"Sybella",
"Sybil",
"Syna",
"Syntyche",
"Szandra",
"Tabitha",
"Talia",
"Talieya",
"Taliyah",
"Tallya",
"Tamesis",
"Tangela",
"Tanith",
"Tansy",
"Tarja",
"Taryn",
"Tasha",
"Tasia",
"Teca",
"Tedra",
"Teigra",
"Tekla",
"Telma",
"Tennie",
"Terentia",
"Terese",
"Teresinha",
"Terez",
"Tereza",
"Terezia",
"Teri",
"Terpsichore",
"Terri",
"Tess",
"Tessa",
"Thaddea",
"Thais",
"Thaisa",
"Thalassa",
"Thalia",
"Than",
"Thea",
"Theda",
"Thekla",
"Thelma",
"Themis",
"Theodora",
"Theodosia",
"Theola",
"Theone",
"Theophania",
"Theophilia",
"Thera",
"Theresa",
"Thisbe",
"Thomasa",
"Thracia",
"Thyra",
"Tiana",
"Tiara",
"Tienette",
"Tiffany",
"Timandra",
"Timothea",
"Titania",
"Titian",
"Tomai",
"Tona",
"Topaz",
"Treasure",
"Tresa",
"Tressa",
"Triana",
"Trifine",
"Trijntje",
"Trina",
"Trine",
"Tryna",
"Tryphena",
"Tryphosa",
"Ulyssa",
"Unice",
"Urania",
"Uriana",
"Vanessa",
"Varvara",
"Varya",
"Vasiliki",
"Vasilisa",
"Velma",
"Venus",
"Vitaliya",
"Voleta",
"Xandra",
"Xandria",
"Xandy",
"Xantha",
"Xanthe",
"Xenia",
"Xenobia",
"Xianthippe",
"Xylia",
"Xylona",
"Yekaterina",
"Yelena",
"Yevgeniya",
"Yolanda",
"Yolie",
"Zagros",
"Zale",
"Zanaide",
"Zandra",
"Zanita",
"Zanthe",
"Zebina",
"Zelia",
"Zena",
"Zenaida",
"Zenaide",
"Zenia",
"Zenobia",
"Zenon",
"Zera",
"Zeta",
"Zeuti",
"Zeva",
"Zina",
"Zinaida",
"Zinovia",
"Zoe",
"Zona",
"Zosia",
"Zosima",
"Zowie",
"Zoya",
"Zsofia",
"Zsofika"]>>
<<set setup.secretMaleFirstnames to ["Secret"]>>
<<set setup.secretSurnames to [" "]>>
<<set setup.secretFemaleFirstnames to ["Secret"]>>
<<set setup.scottishMaleFirstnames to ["Scottish Bob Placeholder",
"Placeholder Joe"]>>
<<set setup.scottishSurnames to ["Placeholder Bob",
"Placeholder Joe"]>>
<<set setup.scottishFemaleFirstnames to ["Placeholder Bob",
"Placeholder Joe"]>>
<<set setup.africanMaleFirstnames to [
"Aasir",
"Abbo",
"Abdalah",
"Abdalala",
"Abdalalim",
"Abdalla",
"Abdi",
"Abdou",
"Abdu",
"Abdulmuiz",
"Abdulkareem",
"Abdulkhaaliq",
"Abdullateef",
"Abdulmateen",
"Abdulraheem",
"Abdulrahmaan",
"Abdulraouf",
"Abdulrazaaq",
"Abdulsaboor",
"Abdultawaab",
"Abdulwaahid",
"Abdulwahaab",
"Abedi",
"Abeer",
"Abimbola",
"Abiola",
"Abioye",
"Absko",
"Abuchi",
"Abulmughayyis",
"Achebe",
"Addo",
"Ade",
"Adeben",
"Adebowale",
"Ademola",
"Adetokunbo",
"Adisa",
"Adom",
"Adric",
"Adwin",
"Afe",
"Afolabi",
"Afram",
"Africa",
"Agu",
"Ahanti",
"Ajahni",
"Ajaka",
"Ajala",
"Ajani",
"Akachi",
"Akhyar",
"Akuchi",
"Akuji",
"Alake",
"Amare",
"Amari",
"Anane",
"Andwele",
"Arali",
"Armani",
"Asante",
"Ato",
"Atu",
"Auni",
"Ayanda",
"Ayo",
"Ayodele",
"Ayomide",
"Ayotunde",
"Ayzize",
"Baako",
"Babajide",
"Babatunde",
"Bakari",
"Bandile",
"Banji",
"Barack",
"Barasa",
"Barke",
"Bayo",
"Belay",
"Bello",
"Bem",
"Berko",
"Biko",
"Biton",
"Bobo",
"Boipelo",
"Bokamoso",
"Bomani",
"Bongani",
"Bosede",
"Buru",
"Camar",
"Camarsa",
"Carrizoa",
"Cayman",
"Chacha",
"Chaga",
"Chata",
"Chege",
"Chi",
"Chiamaka",
"Chiazam",
"Chibueze",
"Chibuzo",
"Chidhatma",
"Chidi",
"Chidike",
"Chidubem",
"Chiedozie",
"Chike",
"Chikelu",
"Chikere",
"Chikodi",
"Chilemba",
"Chima",
"Chimalsi",
"Chimelu",
"Chitundu",
"Chiumbo",
"Chuks",
"Chukwuemeka",
"Clevon",
"Dabir",
"Dada",
"Dakarai",
"Dakari",
"Daktari",
"Damisi",
"Daquan",
"Darweshi",
"Davion",
"Davu",
"Dawit",
"Dayo",
"Deandre",
"Deion",
"Deiondre",
"Dele",
"Demarco",
"Dembe",
"Demond",
"Denzel",
"Deogracia",
"Deon",
"Deontay",
"Deonte",
"Desta",
"Dewayne",
"Diallo",
"Diello",
"Dikembe",
"Dion",
"Duante",
"Dubaku",
"Dubem",
"Duka",
"Dume",
"Dumi",
"Ebele",
"Ebi",
"Eega",
"Ekene",
"Ekundayo",
"Elon",
"Emeka",
"Emem",
"Emene",
"Enam",
"Enzokuhle",
"Essien",
"Etemaad",
"Eze",
"Fadhili",
"Fahmeeb",
"Faraji",
"Farhani",
"Fariji",
"Fehed",
"Femi",
"Feruzi",
"Feye",
"Firash",
"Firhun",
"Folami",
"Fynn",
"Gacoki",
"Gakere",
"Gakuru",
"Gamba",
"Gatete",
"Gathee",
"Gathii",
"Gatimu",
"Gazali",
"Genet",
"Geteye",
"Ghadhanfar",
"Ghana",
"Ghanapriya",
"Gichinga",
"Gicicio",
"Gikuyu",
"Gimbya",
"Githinji",
"Gitonga",
"Gogana",
"Goredenna",
"Gother",
"Guban",
"Gucauno",
"Gulussa",
"Gure",
"Haadhir",
"Haba",
"Haider",
"Haile",
"Hajari",
"Halif",
"Harbel",
"Harif",
"Harmalah",
"Haruni",
"Hasani",
"Hekima",
"Himayat",
"Huba",
"Hubaab",
"Hubab",
"Ibeamaka",
"Imamu",
"Imari",
"Jaali",
"Jabali",
"Jabari",
"Jabilo",
"Jabulani",
"Jaheem",
"Jaheim",
"Jahi",
"Jahiem",
"Jahir",
"Jaja",
"Jali",
"Jamar",
"Jawara",
"Jayvyn",
"Jaz",
"Jela",
"Jelaluddin",
"Jelani",
"Jengo",
"Jenue",
"Jettie",
"Jevonte",
"Jimiyu",
"Jioni",
"Jira",
"Jojo",
"Jomo",
"Jonbenet",
"Juji",
"Juma",
"Jumah",
"Jumoke",
"Junior",
"Juwan",
"Juwaun",
"Kabili",
"Kabonero",
"Kabonesa",
"Kadeem",
"Kafu",
"Kaikara",
"Kaikura",
"Kaleb",
"Kamau",
"Kame",
"Kamogelo",
"Kanelo",
"Kanye",
"Kasi",
"Katlego",
"Katungi",
"Kayen",
"Kayode",
"Kayonga",
"Kazi",
"Keanjaho",
"Keb",
"Keita",
"Keldon",
"Kendi",
"Kendis",
"Kentay",
"Kenyi",
"Keshawn",
"Kesia",
"Keyon",
"Khalon",
"Khamari",
"Khari",
"Khayone",
"Kiho",
"Kijana",
"Kijani",
"Kimoni",
"Kimotho",
"Kinfe",
"Kione",
"Kirabo",
"Kiros",
"Kitoko",
"Kofi",
"Kojo",
"Kosi",
"Kungawo",
"Kuron",
"Kwabena",
"Kwadwo",
"Kwame",
"Kwamin",
"Kwanza",
"Kwau",
"Kyan",
"Kyrone",
"Lado",
"Laken",
"Lakista",
"Lamech",
"Laquan",
"Lavaughn",
"Lebron",
"Leeto",
"Lekan",
"Lemma",
"Lencho",
"Lethabo",
"Limba",
"Lishan",
"Lisimba",
"Loba",
"Lolonyo",
"Lolovivi",
"Lonan",
"Lubanzi",
"Ludacris",
"Lugono",
"Luister",
"Luthando",
"Mablevi",
"Mahdi",
"Maitho",
"Makalo",
"Makena",
"Malomo",
"Mandela",
"Mandla",
"Manu",
"Manute",
"Marques",
"Masego",
"Mashaka",
"Mashawn",
"Mbwana",
"Mejdan",
"Melokuhle",
"Mensa",
"Mewelde",
"Mhina",
"Mikenna",
"Milandu",
"Mirembe",
"Miyanda",
"Montraie",
"Morathi",
"Mosi",
"Mpasa",
"Mpenda",
"Mpho",
"Mukami",
"Mykelti",
"Naaib",
"Naaji",
"Naashaad",
"Naasi",
"Nabeh",
"Nabulung",
"Naeem",
"Naftali",
"Naiser",
"Nanji",
"Napoleon",
"Naserian",
"Nathaar",
"Natine",
"Natori",
"Natoya",
"Ndamukong",
"Ndwiga",
"Neo",
"Ngozi",
"Nnamdi",
"Nuru",
"Nwa",
"Nyack",
"Nzinga",
"Obasi",
"Obi",
"Obiajulu",
"Obuya",
"Ochieng",
"Odikinyi",
"Odo",
"Odongo",
"Odour",
"Oghenerioborue",
"Ohon",
"Oja",
"Ojwang",
"Okal",
"Okapi",
"Okello",
"Okeyo",
"Okoth",
"Olajuwan",
"Olamide",
"Olamilekan",
"Olu",
"Olufemi",
"Olufunke",
"Oluoch",
"Oluyomi",
"Omariba",
"Omondi",
"Omwancha",
"Onaedo",
"Onkwani",
"Ontibile",
"Onyeka",
"Onyekachi",
"Opiyo",
"Oratilwe",
"Oringo",
"Orma",
"Osogo",
"Othenio",
"Othiambo",
"Otieno",
"Owiti",
"Owuor",
"Paki",
"Paulo",
"Peabo",
"Penda",
"Phornello",
"Pili",
"Polo",
"Pretoria",
"Qani",
"Quaashie",
"Quaddus",
"Quadrees",
"Quannell",
"Quarren",
"Quashawn",
"Quintavius",
"Quoitrel",
"Rael",
"Rafiki",
"Raimi",
"Raimy",
"Rashidi",
"Rashon",
"Rayle",
"Razi",
"Riitho",
"Roho",
"Roshaun",
"Ruguru",
"Ruhiu",
"Runako",
"Russom",
"Rutendo",
"Sadik",
"Safari",
"Salim",
"Sanga",
"Saran",
"Sarki",
"Seghen",
"Selas",
"Selassie",
"Senwe",
"Shange",
"Shaquan",
"Shaquille",
"Shevon",
"Shontae",
"Simba",
"Sindhile",
"Sisi",
"Siyabonga",
"Sokoro",
"Sondo",
"Sudi",
"Sulaiman",
"Sulayman",
"Tabansi",
"Tabari",
"Tadelesh",
"Tafadhdhal",
"Tafadzwa",
"Tafari",
"Tahir",
"Talib",
"Tamarius",
"Tambia",
"Tanisha",
"Tanishia",
"Tano",
"Tatenda",
"Tavarius",
"Tavon",
"Tedros",
"Tefo",
"Tegama",
"Tene",
"Tenen",
"Tennant",
"Teshi",
"Tevaughn",
"Tevin",
"Thabiti",
"Thabo",
"Thandiwe",
"Thato",
"Thulani",
"Tiassale",
"Tiwa",
"Tokunbo",
"Toure",
"Trory",
"Tuma",
"Tumaini",
"Tumelo",
"Tumo",
"Tuwile",
"Tyrell",
"Uba",
"Ubanwa",
"Udenwa",
"Ulan",
"Uland",
"Umi",
"Useni",
"Usi",
"Uzoma",
"Uzondu",
"Vandwon",
"Vashon",
"Veltry",
"Verlyn",
"Voshon",
"Vul",
"Wachiru",
"Waithaka",
"Waitimu",
"Waiyaki",
"Wamai",
"Wambua",
"Wamugunda",
"Wamukota",
"Wamwarav",
"Wangombe",
"Wangondu",
"Wanjala",
"Wanjohi",
"Waruhiu",
"Warui",
"Wasaki",
"Waweru",
"Wekesa",
"Xayvion",
"Xhosas",
"Xyshaun",
"Yafeu",
"Yaro",
"Yobachi",
"Zaid",
"Zaire",
"Zareb",
"Zashawn",
"Zuberi",
"Zula"]>>
<<set setup.africanSurnames to [
"Abara",
"Abebe",
"Abimbola",
"Abiodun",
"Abioye",
"Acheampong",
"Achebe",
"Adebayo",
"Adebisi",
"Adebowale",
"Adegoke",
"Adekunle",
"Adelakun",
"Adeleke",
"Ademola",
"Adesina",
"Adesiyan",
"Adeyemi",
"Adisa",
"Afia",
"Afolabi",
"Afolayan",
"Agrinya",
"Agu",
"Aguta",
"Agwuegbo",
"Akinjide",
"Akintola",
"Akinyemi",
"Akpabio",
"Aku",
"Alaneme",
"Alasa",
"Alioune",
"Amaechi",
"Amaike",
"Ameziane",
"Anenih",
"Aniefuna",
"Anotidaishe",
"Apara",
"Arendse",
"Asaju",
"Awolowo",
"Ayodele",
"Ba",
"Babangida",
"Babatunde",
"Bah",
"Ballo",
"Bankole",
"Banmeke",
"Biobaku",
"Botha",
"Buhle",
"Chamapiwa",
"Chidozie",
"Chidubem",
"Chuke",
"Chukwunyelu",
"Cisse",
"Contee",
"Conteh",
"Diallo",
"Dogo",
"Eesuola",
"Egebe",
"Eke",
"Ele",
"Emem",
"Etienam",
"Falade",
"Fall",
"Folorunsho",
"Furaha",
"Gcobani",
"Gowon",
"Idowu",
"Igbinedion",
"Igwe",
"Ihejirika",
"Jelani",
"Kamau",
"Kanye",
"Kariuki",
"Kayode",
"Keita",
"Kenyatta",
"Kikelomo",
"Kone",
"Ladipo",
"Maina",
"Mensah",
"Mmeremikwu",
"Mwanajuma",
"Ndiaye",
"Nenge",
"Nnadi",
"Nnamani",
"Nwachukwu",
"Nwadike",
"Nwangi",
"Nwosu",
"Obama",
"Obi",
"Obiakolam",
"Okafor",
"Okeke",
"Okiro",
"Okonkwo",
"Okorie",
"Okoro",
"Okoye",
"Okpara",
"Okusanya",
"Oladele",
"Oladoyinbo",
"Olanrewaju",
"Olatunji",
"Olayinka",
"Olowe",
"Oluwusi",
"Omenma",
"Omenuko",
"Onai",
"Onyeneme",
"Onyilogwu",
"Opeyemi",
"Orji",
"Osei",
"Otieno",
"Otueome",
"Owusu",
"Ọyáwálé",
"Oyekan",
"Oyinlola",
"Popoola",
"Pretorius",
"Sall",
"Sane",
"Sarpong",
"Sarr",
"Selassie",
"Sesay",
"Sow",
"Sy",
"Temitope",
"Tersoo",
"Toure",
"Traore",
"Turay",
"Uduike",
"Umburter",
"Yeboah",
"Zadzisai",
"Zivai"]>>
<<set setup.africanFemaleFirstnames to [
"Aba",
"Abana",
"Abeba",
"Abena",
"Abeni",
"Abiba",
"Abimbola",
"Abiona",
"Abla",
"Abmaba",
"Abraha",
"Absco",
"Abuya",
"Achebe",
"Achieng",
"Adabelle",
"Adaeh",
"Adamma",
"Adana",
"Adanne",
"Addiah",
"Adebola",
"Adebowale",
"Adenike",
"Adeola",
"Adhiambo",
"Adhra",
"Adilah",
"Adjoa",
"Adongo",
"Adwin",
"Affrica",
"Afi",
"Afia",
"Afiya",
"Afua",
"Ahanti",
"Ahnika",
"Aissa",
"Aiysha",
"Ajua",
"Akachi",
"Akello",
"Akeyo",
"Akia",
"Akinyi",
"Akosua",
"Akua",
"Akuchi",
"Aluna",
"Aluoch",
"Ama",
"Amahle",
"Amaka",
"Amandla",
"Amara",
"Amarachukwu",
"Amare",
"Amari",
"Amne",
"Amogelang",
"Amondi",
"Amurta",
"Anaya",
"Angweng",
"Anyango",
"Apiyo",
"Armani",
"Arogo",
"Arusi",
"Arziki",
"Asabi",
"Asha",
"Ashaki",
"Ashanti",
"Asis",
"Athiambo",
"Atieno",
"Avongara",
"Awino",
"Awo",
"Ayah",
"Ayana",
"Ayanna",
"Ayira",
"Ayo",
"Ayodele",
"Ayoka",
"Ayomide",
"Ayotunde",
"Aziza",
"Baako",
"Babetta",
"Baina",
"Bandele",
"Banji",
"Barongo",
"Bashira",
"Becca",
"Becka",
"Becky",
"Behati",
"Beheshta",
"Beka",
"Beyonce",
"Bikita",
"Binah",
"Binta",
"Bisa",
"Bishara",
"Boipelo",
"Bokamoso",
"Braima",
"Bunme",
"Bunmi",
"Busara",
"Cacey",
"Camara",
"Cassietta",
"Catava",
"Chalondra",
"Charminique",
"Chausiku",
"Chiamaka",
"Chibueze",
"Chibuzo",
"Chidhatma",
"Chidubem",
"Chiedozie",
"Chike",
"Chikelu",
"Chikere",
"Chinelo",
"Chineye",
"Chinue",
"Chipo",
"Chuki",
"Cleotha",
"Dabiku",
"Dada",
"Daisha",
"Dalilah",
"Dalma",
"Dayo",
"Debelah",
"Deiondre",
"Deka",
"Delu",
"Dembe",
"Dericia",
"Desta",
"Dhakiya",
"Diara",
"Diata",
"Dikeledi",
"Doli",
"Dubaku",
"Ducha",
"Dumi",
"Dumisani",
"Duni",
"Durah",
"Durra",
"Ebele",
"Ebere",
"Eega",
"Efia",
"Efua",
"Efuru",
"Eidi",
"Ekene",
"Ekua",
"Ekundayo",
"Ellema",
"Emem",
"Emene",
"Enzokuhle",
"Eshe",
"Esiankiki",
"Fabunni",
"Fadiya",
"Faika",
"Faizah",
"Fana",
"Fanaka",
"Fara",
"Faraja",
"Farashuu",
"Fayola",
"Feechi",
"Finnley",
"Firyali",
"Floarea",
"Flodwig",
"Fola",
"Folami",
"Fumnaya",
"Furaha",
"Gakeri",
"Gamada",
"Gasira",
"Gathoni",
"Gavivi",
"Gawahir",
"Gaynelle",
"Genet",
"Ghalyela",
"Ghana",
"Ghanima",
"Gheche",
"Gzifa",
"Habika",
"Hadaya",
"Hagos",
"Haiba",
"Hamisi",
"Hanuni",
"Hanzila",
"Haracha",
"Haseena",
"Hashiki",
"Hawa",
"Hawla",
"Hiari",
"Hidi",
"Hinaa",
"Hinna",
"Hiwot",
"Hoor",
"Hoyam",
"Huso",
"Ife",
"Imani",
"Iminathi",
"Indusa",
"Ingumba",
"Isoke",
"Jahia",
"Jahmelia",
"Jahzara",
"Jala",
"Jalah",
"Jamala",
"Jameelah",
"Jameila",
"Jamelia",
"Jamelle",
"Jamilia",
"Japera",
"Jariah",
"Jela",
"Jelani",
"Jendayi",
"Jenue",
"Jetta",
"Jettie",
"Jioni",
"Jira",
"Johari",
"Jojo",
"Jonbenet",
"Joos",
"Jozua",
"Juji",
"Julene",
"Jumapili",
"Jumoke",
"Juza",
"Jwahir",
"Kabibe",
"Kabili",
"Kabira",
"Kacela",
"Kacondra",
"Kadija",
"Kaikara",
"Kainda",
"Kalere",
"Kamaria",
"Kambo",
"Kande",
"Kanene",
"Kanesha",
"Kaniqua",
"Kanoni",
"Kapera",
"Kapuki",
"Karabo",
"Karasi",
"Karimah",
"Karna",
"Kasinda",
"Katlego",
"Kaula",
"Kaweria",
"Kaya",
"Kayin",
"Kecia",
"Keeya",
"Keilantra",
"Keisha",
"Keishla",
"Keita",
"Kelenna",
"Kendi",
"Kendis",
"Kendy",
"Kenia",
"Kenya",
"Kenyatta",
"Kerubo",
"Keshia",
"Keshon",
"Kesia",
"Kesin",
"Kesslee",
"Keyah",
"Kia",
"Kianga",
"Kiden",
"Kiho",
"Kijana",
"Kimani",
"Kimmie",
"Kimonia",
"Kimya",
"Kinfe",
"Kione",
"Kioni",
"Kirabo",
"Kiros",
"Kitoko",
"Kubwa",
"Kumani",
"Kunto",
"Kuron",
"Kwamboka",
"Kwashi",
"Kya",
"Kymbre",
"Lachelle",
"Lakin",
"Lanelle",
"Laquanna",
"Laqueta",
"Laquinta",
"Laquita",
"Lashawn",
"Latanya",
"Latifah",
"Latonya",
"Latoya",
"Layla",
"Ledisi",
"Leeda",
"Lehana",
"Lerato",
"Lesedi",
"Lethabo",
"Lewa",
"Lilovarti",
"Limber",
"Lindiwe",
"Lisimba",
"Lissa",
"Loba",
"Loloo",
"Lolovivi",
"Loveie",
"Lu lu",
"Lulana",
"Lulu",
"Lu\’lu",
"Luthando",
"Machupa",
"Madana",
"Maha",
"Mahari",
"Mahdi",
"Maisha",
"Maizah",
"Makena",
"Malaika",
"Malkia",
"Mandere",
"Mandisa",
"Manica",
"Mansa",
"Manyara",
"Mardea",
"Mariatu",
"Marini",
"Marjani",
"Marjean",
"Marka",
"Masara",
"Masego",
"Mashaka",
"Masika",
"Mbali",
"Mekell",
"Meleni",
"Melokuhle",
"Meron",
"Mesi",
"Messina",
"Mhina",
"Miah",
"Mikenna",
"Milandu",
"Minenhle",
"Miniya",
"Mirembe",
"Miyanda",
"Modupe",
"Moesha",
"Monifa",
"Montsho",
"Morathi",
"Mugure",
"Mukondi",
"Mumbi",
"Muncel",
"Murigo",
"Muthoni",
"Mwassaa",
"Naaila",
"Naataanii",
"Nafula",
"Nafuna",
"Nailah",
"Naiser",
"Naja",
"Najwa",
"Nakato",
"Nakeisha",
"Naki",
"Nakimera",
"Nala",
"Nalo",
"Nalorie",
"Narkaesha",
"Naserian",
"Nasha",
"Nashaly",
"Nataki",
"Nathaara",
"Nathifa",
"Natine",
"Natoya",
"Nduta",
"Neema",
"Neliah",
"Neo",
"Netta",
"Ngendo",
"Ngina",
"Ngozi",
"Nia",
"Niana",
"Nichelle",
"Niesha",
"Nimeesha",
"Nisar",
"Njeri",
"Njoki",
"Nkechi",
"Nkechinyere",
"Nkiru",
"Nkiruka",
"Nneka",
"Nnenia",
"Nnenna",
"Nnenne",
"Noma",
"Nomalanga",
"Nomasonto",
"Nombeko",
"Nomusa",
"Nomuula",
"Nontle",
"Noxolo",
"Nsombi",
"Nuru",
"Nuzhah",
"Nyaguthii",
"Nyah",
"Nyakio",
"Nyala",
"Nyambura",
"Nyanjera",
"Nyarai",
"Nyasha",
"Nyathera",
"Nyawira",
"Nyeki",
"Nyla",
"Nyoka",
"Nyokabi",
"Ode",
"Ogechi",
"Ogechukwukama",
"Okal",
"Okapi",
"Okoth",
"Olajuwan",
"Olamide",
"Olufemi",
"Olufunke",
"Oluyomi",
"Omolara",
"Omphile",
"Onaedo",
"Oni",
"Onnie",
"Ontibile",
"Onyeka",
"Onyekachi",
"Oratilwe",
"Orma",
"Osa",
"Osith",
"Otieno",
"Oya",
"Paka",
"Palesa",
"Pamojan",
"Panya",
"Panyin",
"Pasua",
"Pedzi",
"Peeta",
"Pemba",
"Penda",
"Penha",
"Phenyo",
"Phomello",
"Pita",
"Pretoria",
"Pulika",
"Quanella",
"Quanesha",
"Quisha",
"Rafiki",
"Raimy",
"Ranielle",
"Rashida",
"Raziya",
"Rethabile",
"Rhaxma",
"Roep",
"Ronnell",
"Rufaro",
"Russom",
"Rutendo",
"Saada",
"Sadaka",
"Sade",
"Safara",
"Safari",
"Safiya",
"Saidah",
"Sala",
"Salihah",
"Sanaa",
"Sanura",
"Sarafina",
"Sauda",
"Sekai",
"Semira",
"Serwa",
"Sesen",
"Shakila",
"Shakina",
"Shakini",
"Shandra",
"Shange",
"Shaquana",
"Sharik",
"Shasa",
"Shasmecka",
"Shateque",
"Sibongile",
"Sidone",
"Sika",
"Sima",
"Simisola",
"Sisi",
"Sitembile",
"Sitembileq",
"Siyanda",
"Subira",
"Sukutai",
"Tafadzwa",
"Tahira",
"Taifa",
"Taiwo",
"Taja",
"Takala",
"Takiyah",
"Talaitha",
"Tale",
"Taleisha",
"Talisa",
"Talisha",
"Tamasha",
"Tamika",
"Tamira",
"Tamyra",
"Tanasha",
"Tandice",
"Tanesha",
"Tanginika",
"Taniel",
"Tanisha",
"Tannie",
"Tapanga",
"Tapiwa",
"Taraji",
"Tarana",
"Tariana",
"Tarisai",
"Tatenda",
"Tawanda",
"Tawia",
"Tazara",
"Temima",
"Temwa",
"Tendai",
"Tene",
"Tenesha",
"Terehasa",
"Tererai",
"Teshi",
"Thandeka",
"Thandi",
"Thandie",
"Thandiwe",
"Thandolwethu",
"Thema",
"Thembeka",
"Tiaret",
"Timberly",
"Tinashe",
"Tinecia",
"Tineka-Jawana",
"Tiombe",
"Titilayo",
"Tiwa",
"Tokunbo",
"Tomika",
"Toure",
"Tshegofatso",
"Tumelo",
"Tyesha",
"Tyrell",
"Tyrina",
"Tyronica",
"Uchenna",
"Ulu",
"Urbi",
"Uwimana",
"Vatusia",
"Velinda",
"Visola",
"Waceera",
"Wairimu",
"Waitherero",
"Wakiuru",
"Walta",
"Wambui",
"Wamuhu",
"Wamuiru",
"Wamweru",
"Wangai",
"Wangari",
"Wangera",
"Wangu",
"Wanja",
"Wanjeri",
"Wanjiku",
"Wanjiru",
"Waseme",
"Winda",
"Winta",
"Wokabi",
"Wyetta",
"Xinavane",
"Xolani",
"Yaa",
"Yakini",
"Yejide",
"Yetty",
"Zabia",
"Zaci",
"Zahra",
"Zahwa",
"Zaila",
"Zaire",
"Zakiya",
"Zalika",
"Zanta",
"Zarina",
"Zasu",
"Zawadi",
"Zilli",
"Zina",
"Zoila",
"Zula"]>>
<<set setup.turkishMaleFirstnames to ["Placeholder Bob",
"Aagha",
"Aaghaa",
"Abay",
"Abdulkadir",
"Abdullah",
"Abi",
"Adalar",
"Adem",
"Adlee",
"Afridi",
"Afshin",
"Agha",
"Agin",
"Ahmet",
"Aimal",
"Ajdin",
"Ajnur",
"Akara",
"Akay",
"Ali",
"Alibek",
"Alp",
"Alperen",
"Altan",
"Anarbek",
"Aras",
"Arda",
"Arslan",
"Arystanbek",
"Asen",
"Asil",
"Asker",
"Aslan",
"Asuman",
"Asur",
"Ata",
"Ataa",
"Atil",
"Ayaz",
"Ayberk",
"Aydar",
"Aydin",
"Azizbek",
"Azzat",
"Bahadir",
"Baki",
"Bakytbek",
"Balian",
"Baran",
"Baris",
"Bariş",
"Bata",
"Batuhan",
"Bayar",
"Bayram",
"Bechir",
"Bedirhan",
"Beg",
"Behrem",
"Beibut",
"Bekarys",
"Berat",
"Berk",
"Berkan",
"Berkant",
"Berkay",
"Bilal",
"Bulut",
"Bünyamin",
"Buqat",
"Burak",
"Cahil",
"Can",
"Candana",
"Candanin",
"Candon",
"Cem",
"Cemil",
"Cenk",
"Cetin",
"Ceyhun",
"Çinar",
"Cumhur",
"Demir",
"Deniz",
"Derya",
"Devran",
"Devrim",
"Doruk",
"Đulaga",
"Đulizar",
"Duman",
"Ebubekir",
"Ediz",
"Edric",
"Efe",
"Ege",
"Egemen",
"Eldar",
"Elvan",
"Emin",
"Emir",
"Emirhan",
"Emmad",
"Emre",
"Emree",
"Emry",
"Enayat",
"Encarna",
"Ender",
"Enes",
"Engin",
"Ensar",
"Enver",
"Erdem",
"Eren",
"Ergin",
"Erol",
"Ertugrul",
"Eser",
"Eshaq",
"Esmaeel",
"Esmail",
"Etemad",
"Evren",
"Eymen",
"Eyüp",
"Fatih",
"Ferit",
"Firat",
"Furkan",
"Galip",
"Guney",
"Gyula",
"Hakan",
"Halil",
"Haluk",
"Hamit",
"Hamza",
"Harun",
"Hasad",
"Hasan",
"Hayri",
"Hidir",
"Hosmunt",
"Hüseyin",
"Ibrahim",
"Ihsan",
"Ilkay",
"Ilker",
"Ismail",
"Izzet",
"Kaan",
"Kadir",
"Kadri",
"Kahraman",
"Karawan",
"Kerem",
"Kiral",
"Koray",
"Kudret",
"Kuzey",
"Latafat",
"Latifah",
"Levent",
"Mahir",
"Mahmut",
"Mahzun",
"Mart",
"Mazhar",
"Mehmet",
"Mert",
"Mesich",
"Mesut",
"Mete",
"Metehan",
"Metin",
"Mirac",
"Miraç",
"Muahammed",
"Muhammed",
"Muhammet",
"Murat",
"Musa",
"Mustafa",
"Muzaffer",
"Nedim",
"Nesim",
"Nesip",
"Neval",
"Nijaz",
"Niroop",
"Nouis",
"Oguz",
"Okan",
"Olcay",
"Omer",
"Ömer",
"Onan",
"Onur",
"Orhan",
"Osman",
"Osmanek",
"Osmen",
"Otar",
"Ozan",
"Ozaner",
"Ozanich",
"Ozge",
"Poyraz",
"Ramazan",
"Rifaat",
"Roshan",
"Ruslan",
"Rüzgar",
"Sadi",
"Safak",
"Safet",
"Salih",
"Samet",
"Savas",
"Selim",
"Semih",
"Sencer",
"Serhan",
"Serhat",
"Serkan",
"Sevilin",
"Sevket",
"Shakirat",
"Sinan",
"Soner",
"Sukru",
"Suleyman",
"Süleyman",
"Tabib",
"Taha",
"Talha",
"Tamraz",
"Taner",
"Tanju",
"Tansu",
"Tarkan",
"Taylan",
"Tecer",
"Tengiz",
"Tercan",
"Tezer",
"Timur",
"Tolga",
"Toygar",
"Truong",
"Tuncay",
"Tuncer",
"Tutku",
"Ufuk",
"Ugur",
"Ulucan",
"Ulugbek",
"Umut",
"Utku",
"Volkan",
"Yadgar",
"Yagiz",
"Yağiz",
"Yakup",
"Yasin",
"Yavuz",
"Yigit",
"Yiğit",
"Yilmaz",
"Yucel",
"Yunus",
"Yusef",
"Yusuf",
"Zafer",
"Zehab",
"Zeki",
"Zeren",
"Zhumabek",
"Zoltan"
]>>
<<set setup.turkishSurnames to [
"Abaci",
"Abas",
"Abay",
"Abdallah",
"Abdil",
"Acar",
"Achik",
"Açik",
"Adali",
"Adanir",
"Adem",
"Adin",
"Adivar",
"Aga",
"Agaoglu",
"Agca",
"Agçay",
"Agchay",
"Ahmad",
"Ak",
"Akagunduz",
"Akalay",
"Akalin",
"Akan",
"Akar",
"Akarsu",
"Akbaba",
"Akbaş",
"Akbash",
"Akbay",
"Akbulut",
"Akburç",
"Akburch",
"Akça",
"Akçam",
"Akçatepe",
"Akcha",
"Akcham",
"Akchatepe",
"Akdag",
"Akdari",
"Akdemir",
"Akdeniz",
"Akgul",
"Akgun",
"Akin",
"Akinci",
"Akkaş",
"Akkash",
"Akkaya",
"Akkoyun",
"Akman",
"Akpinar",
"Akshit",
"Akşit",
"Aksoy",
"Aksu",
"Aktaş",
"Aktash",
"Aktuna",
"Akyildiz",
"Akyol",
"Akyurek",
"Akyuz",
"Alabora",
"Aladag",
"Albaf",
"Albayrak",
"Aldemir",
"Ali",
"Alican",
"Alişik",
"Alkan",
"Alpay",
"Alptekin",
"Altan",
"Altayoglu",
"Altin",
"Altinay",
"Altinkaynak",
"Altintaş",
"Altintop",
"Altinyildiz",
"Altiparmak",
"Altug",
"Altun",
"Apak",
"Arach",
"Araci",
"Arap",
"Aras",
"Arat",
"Arica",
"Aricanli",
"Arif",
"Arikan",
"Armagan",
"Arman",
"Arslan",
"Asani",
"Asena",
"Ashik",
"Aşik",
"Asim",
"Asker",
"Aslan",
"Aslanoglu",
"Ata",
"Atahan",
"Atakan",
"Atalar",
"Atalay",
"Ataman",
"Atan",
"Ataseven",
"Atay",
"Ateş",
"Atesh",
"Atil",
"Atli",
"Avci",
"Avni",
"Avsar",
"Aybar",
"Ayda",
"Aydan",
"Aydemir",
"Aydin",
"Aydinlar",
"Aydogan",
"Aydogdu",
"Aygun",
"Ayhan",
"Ayik",
"Aykaç",
"Aykach",
"Aykut",
"Ayral",
"Ayranci",
"Aytaç",
"Aytach",
"Aytekin",
"Ayvaz",
"Baba",
"Babacan",
"Babaoglu",
"Bachar",
"Badem",
"Bagci",
"Bahadir",
"Bahadirli",
"Bahar",
"Bahcheli",
"Bakkal",
"Bal",
"Balbay",
"Balcan",
"Balci",
"Balian",
"Balik",
"Balkan",
"Barak",
"Bardakchi",
"Bardakçi",
"Bariş",
"Barish",
"Başak",
"Basar",
"Başar",
"Başaran",
"Başer",
"Basgil",
"Bashak",
"Bashar",
"Basharan",
"Basher",
"Bashturk",
"Başturk",
"Bata",
"Batuk",
"Batur",
"Bayar",
"Bayat",
"Baybashin",
"Baybaşin",
"Baydar",
"Bayindir",
"Baykal",
"Baykara",
"Baykurt",
"Bayrak",
"Bayraktar",
"Bayram",
"Bayramoglu",
"Bedreddin",
"Beg",
"Behçet",
"Behchet",
"Behramoglu",
"Belciler",
"Bele",
"Benli",
"Bereket",
"Berk",
"Berker",
"Berkes",
"Besikci",
"Bilge",
"Bilgi",
"Bilgili",
"Bilgin",
"Bilici",
"Binark",
"Bingol",
"Binici",
"Birand",
"Birdal",
"Birkan",
"Birol",
"Birsen",
"Bolat",
"Bolukbashi",
"Bora",
"Boran",
"Boratav",
"Borazan",
"Boyaci",
"Boz",
"Bozbeyli",
"Bozdag",
"Bozer",
"Bozguney",
"Bozkir",
"Bozkurt",
"Boztepe",
"Bucak",
"Budak",
"Bugra",
"Buker",
"Bulbul",
"Buldan",
"Bulent",
"Bulut",
"Burakgazi",
"Burhanneddin",
"Buruk",
"Buyuk",
"Buyukakçay",
"Çagatay",
"Çaglar",
"Çaglayan",
"Cagman",
"Çagri",
"Cakar",
"Çakir",
"Çakmak",
"Çalik",
"Çaliş",
"Can",
"Canbulatoglu",
"Candan",
"Candemir",
"Caner",
"Çarkçi",
"Çatli",
"Çavdarli",
"Cavit",
"Cavus",
"Cebesoy",
"Celal",
"Çelebi",
"Çelik",
"Cengiz",
"Cerci",
"Ceren",
"Cetin",
"Çetin",
"Çetinkaya",
"Cetinok",
"Cevahir",
"Cevdet",
"Cevik",
"Çevik",
"Cevri",
"Ceylan",
"Chagatay",
"Chaglar",
"Chaglayan",
"Chagri",
"Chakir",
"Chakmak",
"Chalik",
"Chalish",
"Chandarli",
"Chark",
"Chatli",
"Chavdarli",
"Chelebi",
"Chelik",
"Chetin",
"Chetinkaya",
"Chevik",
"Chichek",
"Chiftchi",
"Chimen",
"Chinar",
"Chinchin",
"Chiray",
"Choban",
"Cholak",
"Cholasan",
"Chorlu",
"Chubukchu",
"Chuhadar",
"Çiçek",
"Çiftçi",
"Cig",
"Cigerci",
"Cihan",
"Cikirikci",
"Ciller",
"Çimen",
"Çinar",
"Çoban",
"Cobanoglu",
"Çolak",
"Comert",
"Corekci",
"Çorlu",
"Cosar",
"Coshkun",
"Coskun",
"Coşkun",
"Çubukçu",
"Cumali",
"Dagdelen",
"Dagli",
"Daglioglu",
"Dagtekin",
"Dal",
"Dalkiliç",
"Dalkilich",
"Dalman",
"Danishmend",
"Dede",
"Degirmenci",
"Deliktaş",
"Deliktash",
"Demir",
"Demirbaş",
"Demirbash",
"Demirci",
"Demirel",
"Demirkan",
"Demiroren",
"Demirtas",
"Demirtaş",
"Demirtash",
"Deniz",
"Denizli",
"Denkel",
"Denktaş",
"Denktash",
"Derbil",
"Dereli",
"Derici",
"Deringil",
"Derviş",
"Dervish",
"Dicle",
"Dikerdem",
"Dikmen",
"Dilaver",
"Dinç",
"Dinçer",
"Dinch",
"Dincher",
"Dink",
"Diyadin",
"Dogan",
"Dogançay",
"Doganchay",
"Dogramaci",
"Dogu",
"Donmez",
"Doruk",
"Duman",
"Durak",
"Durel",
"Durmaz",
"Durmuş",
"Durmushoglu",
"Dursun",
"Duzgun",
"Ebussuud",
"Ece",
"Ecevit",
"Edebali",
"Edip",
"Efendi",
"Effendi",
"Egemen",
"Ekici",
"Ekinci",
"Ekmekchi",
"Ekmekçi",
"Ekren",
"Ekshi",
"Ekşi",
"Elchi",
"Elipe",
"Elmaci",
"Elmas",
"Emer",
"Emin",
"Emir",
"Emirler",
"Emiroglu",
"Emre",
"Engin",
"Enver",
"Eray",
"Eraydin",
"Erbakan",
"Erbil",
"Ercan",
"Erçetin",
"Erchetin",
"Erdal",
"Erdem",
"Erdemir",
"Erden",
"Erdenk",
"Erdinç",
"Erdinch",
"Erdogan",
"Erduran",
"Erem",
"Eren",
"Erez",
"Ergen",
"Ergin",
"Ergun",
"Erim",
"Eriş",
"Erish",
"Erkal",
"Erkan",
"Erkin",
"Erkmen",
"Erkoç",
"Erkoch",
"Eroglu",
"Erol",
"Ersin",
"Ersoy",
"Ersoz",
"Ertegun",
"Ertem",
"Ertug",
"Ertugrul",
"Eser",
"Evlendi",
"Evren",
"Eyice",
"Eyuboglu",
"Fahri",
"Farhi",
"Feyzioglu",
"Firat",
"Fişek",
"Fishek",
"Fraşerli",
"Ganem",
"Ganim",
"Ganis",
"Gazi",
"Gazioglu",
"Gedik",
"Gelik",
"Genç",
"Gencay",
"Gencebay",
"Gench",
"Genchoglu",
"Genco",
"Gezmen",
"Ghanem",
"Giray",
"Gochek",
"Gokalp",
"Gokay",
"Gokbakar",
"Gokçe",
"Gokçek",
"Gokçen",
"Gokche",
"Gokchek",
"Gokchen",
"Gokdemir",
"Gokmen",
"Goktaş",
"Gollu",
"Goncu",
"Gonul",
"Gorgulu",
"Goyman",
"Goyunc",
"Gozubuyuk",
"Guçer",
"Gucher",
"Guchlu",
"Guçlu",
"Guder",
"Gul",
"Gulden",
"Gulech",
"Gulek",
"Gulen",
"Guler",
"Guleryuz",
"Gulpinar",
"Gultekin",
"Gulum",
"Gun",
"Gunay",
"Gunaydin",
"Gundogan",
"Gundogdu",
"Gunduz",
"Guneş",
"Gunesh",
"Guney",
"Gungor",
"Gunver",
"Gur",
"Gurani",
"Gurbuz",
"Gurcan",
"Gurler",
"Gursel",
"Gurses",
"Gursu",
"Guven",
"Guvenç",
"Guvench",
"Guzey",
"Hacioglu",
"Haktanir",
"Halefoglu",
"Halici",
"Halil",
"Halis",
"Halit",
"Hamdi",
"Hami",
"Hamzaoglu",
"Hanim",
"Haniminonu",
"Hashim",
"Haşim",
"Haydaroglu",
"Hayreddin",
"Hayrettin",
"Hazinedar",
"Haznedaroglu",
"Hekimoglu",
"Heper",
"Hikmet",
"Hoca",
"Hocaoglu",
"Hocazade",
"Hulusi",
"Hunkaroglu",
"Hussein",
"İbrahimoglu",
"Ihsanoglu",
"Ilahi",
"Ilgaz",
"Ilhan",
"İlkel",
"Ilker",
"Ilkin",
"Inal",
"Inalcik",
"Inan",
"İnan",
"Inanc",
"İnanç",
"Inanch",
"Ince",
"Incesu",
"İncesu",
"Inci",
"İnci",
"Inonu",
"İnonu",
"Ipekchi",
"İpekçi",
"Irmak",
"Isa",
"İşcan",
"Ishcan",
"Ishik",
"Işik",
"Isikli",
"Isler",
"İsmailoglu",
"Izzet",
"Jamaković",
"Jirecek",
"Kaan",
"Kaba",
"Kaçar",
"Kadri",
"Kahraman",
"Kahveci",
"Kahya",
"Kaldirim",
"Kalkan",
"Kaner",
"Kanibir",
"Kanmaz",
"Kapkin",
"Kaplan",
"Kaptan",
"Karabacak",
"Karabekir",
"Karabulut",
"Karaca",
"Karacan",
"Karadag",
"Karadayi",
"Karadeniz",
"Karadere",
"Karaduman",
"Karagoz",
"Karahan",
"Karakaş",
"Karakash",
"Karakaya",
"Karakoç",
"Karakoch",
"Karakuş",
"Karakush",
"Karaman",
"Karaosmanglu",
"Karasu",
"Karatash",
"Karatay",
"Karay",
"Karga",
"Karpat",
"Kartal",
"Kaş",
"Kasaba",
"Kasapoglu",
"Kash",
"Kashani",
"Katirci",
"Kavak",
"Kavur",
"Kaya",
"Kayhan",
"Kaymak",
"Kaynarca",
"Kaynetli",
"Kayyali",
"Kazancigil",
"Kazaz",
"Kekilli",
"Keleş",
"Kelesh",
"Kemal",
"Kemalettin",
"Kent",
"Kerimoglu",
"Keser",
"Keskin",
"Keyder",
"Kiliç",
"Kilich",
"Kilichli",
"Kiliçli",
"Killic",
"Kimyacioglu",
"Kinali",
"Kiraç",
"Kirach",
"Kiraz",
"Kirdar",
"Kivanç",
"Kivanch",
"Kizil",
"Kizilirmak",
"Kizilkaya",
"Kobal",
"Koc",
"Koç",
"Koca",
"Kocak",
"Koçak",
"Kocaman",
"Koçer",
"Koch",
"Kochak",
"Kocher",
"Kochyigit",
"Koçyigit",
"Koksal",
"Konca",
"Konukman",
"Koprulu",
"Koraltan",
"Koray",
"Korcan",
"Korkmaz",
"Korkut",
"Koruturk",
"Kose",
"Kostadinov",
"Koyuncu",
"Koz",
"Kozen",
"Kubat",
"Kubilay",
"Kuchuk",
"Kuçuk",
"Kundakchi",
"Kundakçi",
"Kunt",
"Kunter",
"Kuntman",
"Kurshun",
"Kurt",
"Kurtar",
"Kurtbek",
"Kurtoglu",
"Kurtulan",
"Kurtuluş",
"Kurtulush",
"Kuru",
"Kuş",
"Kuschu",
"Kuseyri",
"Kush",
"Kut",
"Kutay",
"Kutchuk",
"Kutlu",
"Kutsal",
"Levni",
"Lufi",
"Macar",
"Madakbas",
"Mahomet",
"Makal",
"Malas",
"Mandirali",
"Mansur",
"Marangoz",
"Mardin",
"Masuki",
"Mataraci",
"Mehmed",
"Melek",
"Melen",
"Memiş",
"Memish",
"Mencik",
"Menderes",
"Mercan",
"Meric",
"Merich",
"Metin",
"Mimaroglu",
"Mistikoglu",
"Mogul",
"Muaviye",
"Muftuoglu",
"Muge",
"Muhiddin",
"Muhtar",
"Mujde",
"Mumcu",
"Mungan",
"Murat",
"Musa",
"Mustafa",
"Mutlu",
"Nabi",
"Nacar",
"Nadi",
"Nalband",
"Nalci",
"Namik",
"Namli",
"Nas",
"Nazif",
"Nazli",
"Nazmi",
"Necipoglu",
"Necmi",
"Nedim",
"Neftchi",
"Nejdet",
"Neyzi",
"Niazi",
"Nisanci",
"Noor",
"Nur",
"Nuri",
"Ocak",
"Ocal",
"oçal",
"Ocalan",
"Ochal",
"Odabashi",
"Odabaşi",
"Ogun",
"Ogutmen",
"Oguz",
"Okay",
"Okte",
"Oktem",
"Okur",
"Okyar",
"Okyay",
"Olgun",
"Olmez",
"Onal",
"Onan",
"Onaral",
"Onarici",
"Onay",
"Oncel",
"Onder",
"Onut",
"Orbay",
"Oren",
"Orga",
"Orhan",
"Ornek",
"Osman",
"Osmanoglu",
"Oyan",
"Oz",
"Ozal",
"Ozalan",
"Ozan",
"Ozbek",
"Ozbey",
"Ozbilen",
"Ozbilgin",
"Ozbudun",
"Ozcan",
"ozçelik",
"Ozchekich",
"Ozchelik",
"Ozdaglaar",
"Ozdemir",
"Ozden",
"ozdilek",
"Ozek",
"Ozel",
"Ozen",
"Ozer",
"Ozergin",
"Ozgen",
"Ozgur",
"Ozhan",
"Ozkan",
"Ozker",
"Ozko",
"Ozkok",
"Ozkul",
"Ozmen",
"Ozmert",
"Ozoguz",
"Ozsoy",
"oztekin",
"Oztoprak",
"Oztorun",
"Ozturk",
"ozudogru",
"ozyurek",
"Ozyurt",
"Pakalin",
"Pamuk",
"Parlak",
"Pasha",
"Peker",
"Pekmezci",
"Periganovlu",
"Peynirci",
"Pirinçci",
"Poçan",
"Pochan",
"Polat",
"Polatkan",
"Poyraz",
"Rahim",
"Raif",
"Ramsaur",
"Recep",
"Reis",
"Remzi",
"Renda",
"Reza",
"Rifaioglu",
"Rumi",
"Rustemoglu",
"Rustu",
"Saatchi",
"Sabanci",
"Sabri",
"Sabuncu",
"Saçan",
"Sachan",
"Sadak",
"Sadik",
"Sadikoglu",
"Şafak",
"Safavi",
"Saffet",
"Sagiroglu",
"Saglam",
"Saglik",
"Şahan",
"Şahin",
"Saka",
"Şakir",
"Saltik",
"Şamdereli",
"Samet",
"Samim",
"Sancak",
"Sancakli",
"Sançar",
"Sanchar",
"Sandalli",
"Şanli",
"Sarcoglu",
"Sari",
"Sarica",
"Sarigul",
"Sarikaya",
"Sarp",
"Sarper",
"Şaşmaz",
"Savaş",
"Savash",
"Saydam",
"Saygi",
"Saygisunar",
"Sayin",
"Saylan",
"Sechkin",
"Sechmen",
"Segem",
"Şeker",
"Selaniki",
"Selchuk",
"Selçuk",
"Selen",
"Şen",
"Şener",
"Sengor",
"Şengul",
"Şensoy",
"Şenturk",
"Serif",
"Şerif",
"Sert",
"Sertel",
"Sevgi",
"Sevim",
"Seyfi",
"Seyh",
"Sezen",
"Sezer",
"Sezgin",
"Shafak",
"Shahan",
"Shahin",
"Shakir",
"Shamdereli",
"Shanli",
"Shashmaz",
"Sheker",
"Shen",
"Shener",
"Shengul",
"Shensoy",
"Shenturk",
"Sherif",
"Shimshek",
"Shipal",
"Shirin",
"Shishli",
"Shushud",
"Sihabeddin",
"Şimşek",
"Sinan",
"Şipal",
"Siper",
"Sirach",
"Şirin",
"Şişli",
"Skender",
"Sofuoglu",
"Sokmen",
"Sokullu",
"Solak",
"Sonmez",
"Soracaz",
"Soyadi",
"Soylu",
"Soysal",
"Sozen",
"Sporel",
"Suker",
"Suleymanoglu",
"Sumer",
"Sunalp",
"Sunay",
"Sunter",
"Suphi",
"Suvari",
"Suveydan",
"Tabak",
"Tagmach",
"Taher",
"Tahir",
"Talay",
"Talu",
"Tanaoglu",
"Tandogan",
"Taner",
"Tanir",
"Tanish",
"Tanju",
"Tansel",
"Tanyu",
"Tarcan",
"Tarhan",
"Tarik",
"Taş",
"Taşçi",
"Taşdemir",
"Tash",
"Tashchi",
"Tashdemir",
"Tashkiran",
"Tasilova",
"Taşkiran",
"Taskopruluzade",
"Tata",
"Tatli",
"Tatlises",
"Tavukcu",
"Tayfur",
"Taylan",
"Teke",
"Tekeli",
"Tekin",
"Tekoz",
"Teksoz",
"Temiz",
"Terzi",
"Terzioglu",
"Tezcan",
"Tezel",
"Tilki",
"Tiryaki",
"Togan",
"Togay",
"Toker",
"Toner",
"Top",
"Topal",
"Topaloglu",
"Topbaş",
"Topbash",
"Topchu",
"Topçu",
"Toprak",
"Topuz",
"Toraman",
"Torlak",
"Torumtay",
"Torun",
"Tosun",
"Tufan",
"Tufekchi",
"Tufekçi",
"Tugai",
"Tumer",
"Tuna",
"Tunc",
"Tunç",
"Tuncay",
"Tuncel",
"Tuncer",
"Tunch",
"Tural",
"Turan",
"Turel",
"Turgut",
"Turk",
"Turkan",
"Turkay",
"Turker",
"Turkes",
"Turkmen",
"Turkoglu",
"Turkyilmaz",
"Tuzmen",
"Tuzun",
"Uçar",
"Uchar",
"Uche",
"Uchuncu",
"uçuncu",
"Ugur",
"Ugurlu",
"Ugurluer",
"Ulash",
"Ulkumen",
"Ulusoy",
"Ulusu",
"Unal",
"Uner",
"Unsal",
"Urfali",
"Uruisamoglu",
"Usak",
"Uslu",
"Usta",
"Uyanik",
"Uygun",
"Uygur",
"Uysal",
"Uzer",
"Uzumcu",
"Uzun",
"Uzuncharsili",
"Uzunlar",
"Vaner",
"Vardar",
"Vedat",
"Veli",
"Virgin",
"Volkan",
"Vural",
"Vuran",
"Yagci",
"Yagcilar",
"Yagmur",
"Yakin",
"Yakut",
"Yalaz",
"Yalchin",
"Yalchinkaya",
"Yalçin",
"Yalçinkaya",
"Yalman",
"Yalpat",
"Yamak",
"Yaman",
"Yanki",
"Yardim",
"Yardimci",
"Yaşar",
"Yashar",
"Yasin",
"Yavaş",
"Yavash",
"Yavuz",
"Yazar",
"Yazici",
"Yazicioglu",
"Yazicizade",
"Yenal",
"Yener",
"Yerli",
"Yerlikaya",
"Yeshil",
"Yeshilnil",
"Yeşil",
"Yeşilnil",
"Yetiş",
"Yetish",
"Yigit",
"Yildirim",
"Yildiz",
"Yildizeli",
"Yildizoglu",
"Yilmanz",
"Yilmaz",
"Younan",
"Yuce",
"Yucel",
"Yuksel",
"Yumlu",
"Zafer",
"Zaganos",
"Zaim",
"Zaimoglu",
"Zarakolu",
"Zengin",
"Zeybek",
"Zorlu"
]>>
<<set setup.turkishFemaleFirstnames to [
"Ada",
"Aergul",
"Afet",
"Ahu",
"Aiyla",
"Akara",
"Akasma",
"Akay",
"Alara",
"Alev",
"Asli",
"Asmin",
"Asuman",
"Asya",
"Ayleen",
"Aylin",
"Aymelek",
"Aynur",
"Ayperi",
"Ayşe",
"Ayşegül",
"Aysel",
"Ayşenur",
"Aysima",
"Aysun",
"Ayten",
"Azra",
"Bahar",
"Banou",
"Banu",
"Basak",
"Belgin",
"Belinay",
"Beren",
"Berfin",
"Beril",
"Berna",
"Berra",
"Berrak",
"Beste",
"Betül",
"Beyza",
"Buğlem",
"Burcu",
"Büşra",
"Canan",
"Caria",
"Cemre",
"Ceren",
"Ceyda",
"Ceylan",
"Ceylin",
"Damla",
"Defne",
"Deniz",
"Derin",
"Derya",
"Dicle",
"Dilara",
"Dilay",
"Dilek",
"Doga",
"Duru",
"Ebrar",
"Ece",
"Ecrin",
"Eda",
"Edanur",
"Ekin",
"Ela",
"Elanur",
"Elif",
"Elifnur",
"Elmas",
"Elnara",
"Elvan",
"Emel",
"Emine",
"Emira",
"Emirhan",
"Emiri",
"Emre",
"Enfleda",
"Erva",
"Esana",
"Esen",
"Eser",
"Esila",
"Esin",
"Eslem",
"Esma",
"Esmanur",
"Esmeray",
"Esra",
"Evren",
"Eylul",
"Eylül",
"Fatma",
"Fatmanur",
"Feray",
"Feriha",
"Feyza",
"Filiz",
"Funda",
"Fusun",
"Gamze",
"Gaye",
"Gulizar",
"Gulya",
"Halime",
"Handan",
"Hande",
"Hatice",
"Havin",
"Hayrunnisa",
"Hazal",
"Hazan",
"Hilal",
"Hira",
"Hiranur",
"Hümeyra",
"Huseyin",
"İkra",
"İlayda",
"Ilkay",
"İpek",
"İrem",
"Irmak",
"Jale",
"Joozher",
"Jorawar",
"Juandalynn",
"Jubaila",
"Kader",
"Kadri",
"Kari",
"Karli",
"Kelebek",
"Kerzi",
"Kiral",
"Kiraz",
"Kübra",
"Lalam",
"Lale",
"Lunara",
"Makbule",
"Medine",
"Mehtap",
"Melek",
"Melike",
"Melis",
"Melisa",
"Meltem",
"Merve",
"Meryem",
"Mina",
"Mira",
"Miray",
"Nagihan",
"Naz",
"Nazik",
"Nazli",
"Necla",
"Nehir",
"Nerhim",
"Nermin",
"Neylan",
"Nilgun",
"Nisa",
"Nisanur",
"Nuray",
"Nurgul",
"Nurhan",
"Nurten",
"Olcay",
"Omer",
"Onur",
"Öykü",
"Ozge",
"Paša",
"Pembe",
"Pinar",
"Rabia",
"Rahsheda",
"Ravza",
"Reyhan",
"Rezan",
"Roshan",
"Roxelana",
"Rümeysa",
"Safak",
"Safiye",
"Sanem",
"Seda",
"Sefa",
"Sefika",
"Semanur",
"Semra",
"Serap",
"Sevda",
"Sevgili",
"Sevil",
"Sevinc",
"Şevval",
"Şeyma",
"Seyyal",
"Sezen",
"Shahinaz",
"Shakirat",
"Sibel",
"Sibeli",
"Sidika",
"Sila",
"Silaah",
"Songl",
"Sudenaz",
"Sumeyye",
"Sümeyye",
"Tansu",
"Toulin",
"Tuana",
"Tubba",
"Tuğba",
"Tutku",
"Umut",
"Yagmur",
"Yağmur",
"Yaren",
"Yeter",
"Yildiz",
"Yonca",
"Zambak",
"Zehra",
"Zel",
"Zerdali",
"Zeynep",
"Zlem",
"Zümra"
]>>
<<set setup.dutchMaleFirstnames to ["Wesley",
"Kevin",
"Jeroen",
"Thomas",
"Johannes",
"Robin",
"Dennis",
"Tim",
"Nick",
"Jan",
"Mark",
"Jeffrey",
"Rick",
"Mike",
"Tom",
"Bart",
"Stefan",
"Niels",
"Roy",
"Michael",
"Martijn",
"Sander",
"Patrick",
"Pieter",
"Richard",
"Niels",
"Paul",
"Sebastiaan",
"Rob",
"Marcel",
"Robin",
"Dirk",
"Joost",
"David",
"Johan",
"Jasper",
"Stephan",
"René",
"Marco",
"Nicky",
"Bram",
"Joris"]>>
<<set setup.dutchSurnames to ["de Jong",
"Jansen",
"de Vries",
"van den Berg",
"van Dijk",
"Bakker",
"Janssen",
"Visser",
"Smit",
"Meijer",
"de Boer",
"Mulder",
"de Groot",
"Bos",
"Vos",
"Peters",
"Hendriks",
"van Leeuwen",
"Dekker",
"Brouwer",
"de Wit",
"Dijkstra",
"Smits",
"de Graaf",
"van der Meer",
"Kok",
"Jacobs",
"van der Linden",
"de Haan",
"Vermeulen",
"van den Heuvel",
"van der Veen",
"van den Broek",
"de Bruin",
"Schouten",
"de Bruijn",
"Beek",
"van der Heijden",
"Willems",
"van Vliet",
"Hoekstra",
"Maas",
"Verhoeven",
"Koster",
"van Dam",
"Prins",
"Blom",
"Huisman",
"Peeters",
"de Jonge"]>>
<<set setup.dutchFemaleFirstnames to ["Lisa",
"Laura",
"Anne",
"Maria",
"Michelle",
"Iris",
"Sanne",
"Johanna",
"Melissa",
"Kim",
"Kelly",
"Anna",
"Anouk",
"Chantal",
"Denise",
"Manon",
"Tessa",
"Linda",
"Joyce",
"Esther",
"Eline",
"Daniëlle",
"Mandy",
"Eva",
"Charlotte",
"Lisanne",
"Lotte ",
"Maria",
"Patricia",
"Marjolein",
"Cornelia",
"Suzanne",
"Judith",
"Maaike",
"Marloes",
"Jessica",
"Monique",
"Tamara",
"Stephanie",
"Saskia"]>>
<<set setup.belgianMaleFirstnames to ["Marc",
"Patrick",
"Luc",
"Philippe",
"Jean",
"Peter",
"David",
"Jan",
"Johan",
"Dirk",
"Michel",
"Bart",
"Erik",
"Alain",
"Olivier",
"Simon",
"Hugo",
"Théo",
"Mathis",
"Thomas",
"Wout",
"Vincent",
"Geert",
"Pierre",
"Robin",
"Matteo",
"Wim",
"Steven",
"Paul",
"Eddy",
"Seppe",
"Mathias",
"Didier",
"Guy",
"Koen",
"Ruben",
"Tom",
"Daan",
"Danny",
"Frank",
"Julien",
"Jonathan",
"Aaron",
"Loïc",
"Elias",
"François",
"Guillaume",
"Benjamin",
"Stan",
"Tristan",
"Kristof",
"Stéphane",
"Kurt",
"Cédric",
"Florian",
"Arne",
"Axel",
"Tim",
"Jeroen",
"Julien",
"Quinter",
"Xander",
"Clément",
"Oscar",
"Dimitri",
"Hans",
"Sven",
"Alexis",
"Jelle",
"Noa",
"Steve",
"Mario",
"Jens",
"Tuur",
"Laurence",
"Wannes",
"Mats",
"Vince"]>>
<<set setup.belgianSurnames to ["Peeters",
"Janssens",
"Maes",
"Jacobs",
"Mertens",
"Willems",
"Claes",
"Goossens",
"Wouters",
"De Smet",
"Dubois",
"Lambert",
"Martin",
"Dupont",
"Simon",
"Leclercq",
"Dumont",
"Laurent",
"Lejeune",
"Renard",
"Van Damme",
"Van de Velde",
"Segers",
"Hendrickx",
"Coppens",
"Leroy",
"Van den Broeck",
"Wauters",
"François",
"De Cock",
"Verhoeven",
"Cools",
"Laurent",
"Denis",
"Renard",
"Timmermans",
"Vandenberghe",
"De Ridder",
"Lemaire",
"De Pauw",
"De Wilde",
"De Smedt",
"Moens",
"Wuyts",
"Michel",
"Vermeersch",
"Verstraeten",
"Claessens",
"Beckers",
"Heylen",
"Adam",
"Bogaerts",
"Van Acker",
"De Coster",
"Matthys",
"Mahieu",
"Legrand",
"Carlier",
"Van Hoof",
"Gielen",
"Thiry",
"Vandevelde",
"Luyten",
"Vervoort",
"Somers",
"Raes",
"Nys",
"Moreau",
"Collard",
"Delvaux",
"Parmentier",
"De Witte",
"Swinnen",
"Jacques",
"Verhulst",
"De Bock",
"Mortier",
"De Bruyn",
"Guillaume",
"Verbeek",
"Claus",
"De Wolf",
"Smeets",
"Leemans",
"Rousseau",
"Gillet",
"Léonard",
"Servais",
"Van Daele",
"Descamps",
"Goffin",
"Cleysters",
"Toussaint",
"Michel",
"De Wever",
"De Crem"]>>
<<set setup.belgianFemaleFirstnames to ["Maria",
"Emma",
"Marie",
"Louise",
"Nathalie",
"Martine",
"Isabelle",
"Anne",
"Christine",
"Elise",
"Sarah",
"Julie",
"Laura",
"Charlotte",
"Manon",
"Camille",
"Lisa",
"Chloé",
"Clara",
"Lucie",
"Lotte",
"Juliette",
"Olivia",
"Lina",
"Amber",
"Luna",
"Sara",
"Eva",
"Jade",
"Alice",
"Lore",
"Nina",
"Zoé",
"Anna",
"Noor",
"Ella",
"Elena",
"Pauline",
"Lena",
"Lara",
"Elisa",
"Ann",
"Carine",
"Patricia",
"Marleen",
"Véronique",
"Sophie",
"Els",
"Cindy",
"Sabine",
"Katrien",
"Nicole",
"Stéphanie",
"Monique"]>>
<<set setup.spanishSurnames to [
"Abadía",
"Abadiano",
"Abalo",
"Abarca",
"Abascal",
"Abasolo",
"Abrigo",
"Abril",
"Acevedo",
"Aceves",
"Acosta",
"Adames",
"Adan",
"Aguado",
"Agüera",
"Agüero",
"Aguilar",
"Aguinaga",
"Aguinis",
"Alas",
"Alba",
"Albacete",
"Albaladejo",
"Albareda",
"Albarracín",
"Albarrán",
"Alburquerque",
"Alcalá",
"Alcantara",
"Aldana",
"Alegre",
"Alegría",
"Alén",
"Alfonseca",
"Almánzar",
"Almirón",
"Almodóvar",
"Alonso",
"Alou",
"Altamira",
"Altamirano",
"Alvarado",
"Alvarez",
"Álvarez",
"Alvear",
"Alzamora",
"Amaya",
"Amescua",
"Andres",
"Anglada",
"Angulo",
"Anon",
"Aracil",
"Aragonés",
"Arancibia",
"Aranda",
"Araya",
"Arcaño",
"Arce",
"Arévalo",
"Arguello",
"Argüello",
"Arias",
"Ariza",
"Armenteros",
"Arraiza",
"Arrate",
"Arredondo",
"Arroyo",
"Arrúa",
"Arruabarrena",
"Arruebarrena",
"Artiñano",
"Asencio",
"Asensi",
"Asensio",
"Asín",
"Asquerino",
"Astudillo",
"Ávalos",
"Ávila",
"Avilés",
"Aznar",
"Azpilicueta",
"Azucena",
"Badillo",
"Balenciaga",
"Ballesta",
"Baltra",
"Banegas",
"Barbero",
"Barboza",
"Barea",
"Barquín",
"Barradas",
"Barragan",
"Barrientos",
"Barrionuevo",
"Barrios",
"Batista",
"Bautista",
"Baviera",
"Becerril",
"Bejarano",
"Bellido",
"Bello",
"Beltrán",
"Benavente",
"Benitez",
"Bermudez",
"Bernal",
"Bernárdez",
"Berrios",
"Betancor",
"Bettencourt",
"Bielsa",
"Bilbao",
"Blanco",
"Blandón",
"Blas",
"Bobadilla",
"Bolaño",
"Bolaños",
"Bonastre",
"Borges",
"Borla",
"Borrero",
"Bracamontes",
"Bracho",
"Bravo",
"Brenes",
"Brugués",
"Bueno",
"Buenvenida",
"Bustamante",
"Cabal",
"Caballero",
"Cabello",
"Cabrera",
"Calderón",
"Calvente",
"Calvo",
"Camargo",
"Campillo",
"Campos",
"Cañizares",
"Cannella",
"Cano",
"Caraballo",
"Carazo",
"Carbonell",
"Cárdenas",
"Cardona",
"Carmona",
"Carpintero",
"Carpio",
"Carrasco",
"Carrasquillo",
"Carrera",
"Carreras",
"Cartagena",
"Casablancas",
"Casas",
"Casilla",
"Casillas",
"Castañeda",
"Castelblanco",
"Castellano",
"Castellanos",
"Castillo",
"Castrillón",
"Castro",
"Ceballos",
"Cebrián",
"Cepeda",
"Cervantes",
"Cevallos",
"Chacón",
"Chávez",
"Cienfuegos",
"Cisneros",
"Cisternas",
"Claros",
"Claver",
"Collantes",
"Colomer",
"Colón",
"Congost",
"Copello",
"Cordero",
"Cordova",
"Coria",
"Coronado",
"Corrales",
"Correa",
"Cortes",
"Cortizo",
"Covarrubias",
"Crespi",
"Crespo",
"Cruz",
"Cuadra",
"Cubilla",
"Cuellar",
"Cuello",
"Cuesta",
"Cueto",
"Damirón",
"Dávila",
"De Argüello",
"De Jesus",
"De la Cruz",
"De la Fuente",
"De La Rosa",
"De la Vega",
"De León",
"De Los Santos",
"De Lucas",
"De Minaur",
"De Miñaur",
"De Ribera",
"De Soto",
"De Vargas",
"Del Granado",
"Del Negro",
"Del Rosario",
"Del Toro",
"Delfin",
"Delgado",
"Derbez",
"Desoto",
"Diaz",
"Díaz",
"Diego",
"Diez",
"Dimas",
"Dominguez",
"Domínguez",
"Dosman",
"Duarte",
"Duque",
"Duran",
"Echazú",
"Eizaguirre",
"Enríquez",
"Escalera",
"Escobar",
"Esguerra",
"Espejo",
"Espina",
"Espinal",
"Espinosa",
"Esteve",
"Estrada",
"Expósito",
"Fajardo",
"Falcon",
"Fandiño",
"Fernandez",
"Fernández",
"Ferreiro",
"Ferrer",
"Ferrero",
"Ferriz",
"Ferro",
"Figueras",
"Figuerola",
"Florencio",
"Flores",
"Florimón",
"Forero",
"Fuenmayor",
"Fuentes",
"Gabarain",
"Galarza",
"Galaz",
"Galdames",
"Galdón",
"Galdós",
"Gallardo",
"Gallego",
"Gallegos",
"Gallo",
"Galvan",
"Galvez",
"Gamboa",
"Garbajosa",
"Garci",
"Garcia",
"García",
"Garrido",
"Garza",
"Gay",
"Gil",
"Gimenez",
"Giraldo",
"Godínez",
"Godoy",
"Gomez",
"Gómez",
"Gonzalez",
"González",
"Gordon",
"Gracián",
"Grande",
"Guaita",
"Guajardo",
"Guardado",
"Guardia",
"Guerra",
"Guerrero",
"Gutierrez",
"Gutiérrez",
"Guzmán",
"Hechavarría",
"Henao",
"Heredia",
"Hermosillo",
"Hermoza",
"Hernandez",
"Hernández",
"Hernanz",
"Herrada",
"Herrera",
"Herrero",
"Herreros",
"Hervás",
"Hidalgo",
"Horta",
"Huertas",
"Hurtado",
"Ibanez",
"Ibáñez",
"Iglesias",
"Inciarte",
"Iniesta",
"Iraheta",
"Iturri",
"Izquierdo",
"Jaén",
"Jara",
"Jerónimo",
"Jimenez",
"Jiménez",
"Juárez",
"Kindelán",
"Landa",
"Lavalle",
"Lebrón",
"Leon",
"Leyva",
"Libertad",
"Lizano",
"Lizárraga",
"Llompart",
"Llorente",
"Lobo",
"Lopez",
"López",
"Lorenzo",
"Loya",
"Lozano",
"Lucena",
"Lucero",
"Lucio",
"Luengo",
"Lugo",
"Luna",
"Luz",
"Machuca",
"Macias",
"Madero",
"Madrazo",
"Madrigal",
"Maestre",
"Maldonado",
"Malla",
"Mancisidor",
"Mansilla",
"Marciano",
"Marcos",
"Mariano",
"Mariátegui",
"Marin",
"Marqués",
"Marquez",
"Marrero",
"Marron",
"Marroquín",
"Martin",
"Martinez",
"Martínez",
"Martos",
"Marzo",
"Mata",
"Mateo",
"Mateos",
"Máynez",
"Mayor",
"Mayoral",
"Maytín",
"Mazo",
"Medel",
"Medina",
"Mejía",
"Menaldo",
"Mendez",
"Mendia",
"Mendoza",
"Menem",
"Menendez",
"Menezes",
"Merino",
"Milian",
"Miranda",
"Molina",
"Molinero",
"Montana",
"Montaño",
"Montenegro",
"Montero",
"Montes",
"Mora",
"Morales",
"Moreno",
"Morillo",
"Morón",
"Moya",
"Mucciolo",
"Muniz",
"Munoz",
"Muñoz",
"Muralles",
"Murillo",
"Nabarro",
"Nápoles",
"Navarro",
"Navas",
"Negrin",
"Negro",
"Nieto",
"Nieves",
"Ñíguez",
"Noguera",
"Norales",
"Novoa",
"Nunez",
"Ocampos",
"Ochoa",
"Ojeda",
"Olivencia",
"Olmos",
"Oquendo",
"Ordóñez",
"Orjuela",
"Oropeza",
"Ortega",
"Ortiz",
"Oseguera",
"Otero",
"Ozuna",
"Pabón",
"Pacheco",
"Padilla",
"Palacios",
"Palazuelos",
"Palomo",
"Pardo",
"Paredes",
"Parejo",
"Parera",
"Parra",
"Partida",
"Pascual",
"Pastor",
"Pastrana",
"Paz",
"Pazmiño",
"Peguero",
"Peinado",
"Pena",
"Peña",
"Penagos",
"Peñate",
"Peralta",
"Perdomo",
"Perea",
"Perez",
"Pérez",
"Perroni",
"Perurena",
"Pestano",
"Picallo",
"Picazo",
"Pichardo",
"Pimentel",
"Pineda",
"Piñera",
"Pinto",
"Piquer",
"Polaco",
"Polanco",
"Ponce",
"Porcel",
"Portela",
"Posada",
"Postigo",
"Poveda",
"Prado",
"Prieto",
"Punto",
"Purita",
"Quesada",
"Quevedo",
"Quezada",
"Quintal",
"Quintana",
"Quintanilla",
"Quintero",
"Rada",
"Rafaeli",
"Ramirez",
"Ramírez",
"Ramiro",
"Ramos",
"Rascon",
"Recarte",
"Redondo",
"Renteria",
"Restrepo",
"Rey",
"Reyes",
"Ríos",
"Rivera",
"Riveros",
"Rodriguez",
"Rodríguez",
"Rojas",
"Rojo",
"Roman",
"Romaña",
"Romero",
"Rondon",
"Rosa",
"Rosario",
"Rubio",
"Ruiz",
"Ruvalcaba",
"Sacasa",
"Saez",
"Saiz",
"Salazar",
"Salcido",
"Saldaña",
"Saldívar",
"Sales",
"Salvador",
"Salvatierra",
"Samaniego",
"Sanchez",
"Sánchez",
"Sandoval",
"Santa Cruz",
"Santayana",
"Santiago",
"Santillán",
"Santisteban",
"Santos",
"Sanz",
"Sarasola",
"Sastre",
"Saucedo",
"Sedeño",
"Seguel",
"Sepúlveda",
"Serrano",
"Silvestre",
"Sinaloa",
"Siqueiros",
"Solana",
"Solano",
"Solarte",
"Soler",
"Sosa",
"Soto",
"Sotomayor",
"Suarez",
"Tatís",
"Tato",
"Tavarez",
"Taveras",
"Tejada",
"Tobón",
"Todero",
"Toledano",
"Toledo",
"Tomás",
"Topete",
"Torre",
"Torres",
"Totanés",
"Treviño",
"Triana",
"Truan",
"Trueba",
"Unzaga",
"Ureña",
"Uriarte",
"Urías",
"Uriburu",
"Urquía",
"Valbuena",
"Valderrama",
"Valdivieso",
"Vale",
"Valenciano",
"Valiente",
"Vallejos",
"Valverde",
"Vasquez",
"Vazquez",
"Vega",
"Velasco",
"Velazco",
"Velazquez",
"Velázquez",
"Verdasco",
"Vicario",
"Vicente",
"Victorino",
"Vidal",
"Vila",
"Vilana",
"Villa",
"Villalobos",
"Villanueva",
"Villaseñor",
"Viniegra",
"Yagüe",
"Yanes",
"Zamacois",
"Zambrano",
"Zapata",
"Zapatero",
"Zarazúa",
"Zayas",
"Zorrilla",
"Zuloaga"]>>
<<set setup.usBoyNames1990 to [
"Mike",
"Michael",
"Chris",
"Christopher",
"Matt",
"Matthew",
"Josh",
"Joshua",
"Dan",
"Daniel",
"Danny",
"David",
"Dave",
"Andrew",
"Andy",
"James",
"Jim",
"Jimmy",
"Justin",
"Joe",
"Joseph",
"Ryan",
"John",
"Johnny",
"Robert",
"Rob",
"Robbie",
"Nick",
"Nicholas",
"Ant",
"Anthony",
"Tony",
"William",
"Will",
"Billy",
"Jonathan",
"Kyle",
"Brandon",
"Jacob",
"Jake",
"Tyler",
"Zachary",
"Zach",
"Kevin",
"Kev",
"Eric",
"Steven",
"Steve",
"Thomas",
"Tom",
"Tommy",
"Brian",
"Alex",
"Alexander",
"Xander",
"Jordan",
"Tim",
"Timmy",
"Timothy",
"Cody",
"Adam",
"Benjamin",
"Ben",
"Benjy",
"Aaron",
"Richard",
"Richie",
"Rich",
"Patrick",
"Pat",
"Paddy",
"Sean",
"Charles",
"Charlie",
"Stephen",
"Jeremy",
"Jez",
"Jose",
"Travis",
"Jeff",
"Jeffrey",
"Nate",
"Nathan",
"Sam",
"Mark",
"Jason",
"Jase",
"Jesse",
"Paul",
"Dustin",
"Greg",
"Ken",
"Scott",
"Derek",
"Austin",
"Corey",
"Bryan",
"Ethan",
"Christian",
"Juan",
"Cam",
"Cameron",
"Jared",
"Taylor",
"Brad",
"Bradley",
"Luis",
"Cory",
"Edward",
"Shawn",
"Ian",
"Evan",
"Marcus",
"Marc",
"Shane",
"Peter",
"Pete",
"Carlos",
"Trevor",
"Antonio",
"Vincent",
"George",
"Vinny",
"Keith",
"Phil",
"Phillip",
"Vic",
"Victor",
"Dylan",
"Brett",
"Chad",
"Nathaniel",
"Don",
"Caleb",
"Casey",
"Blake",
"Ray",
"Raymond",
"Mitchell",
"Mitch",
"Adrian",
"Joel",
"Erik",
"Ronnie",
"Devin",
"Garrett",
"Gabe",
"Gabriel"]>>
<<set setup.ukBoyNames1984 to [
"Christopher",
"Chris",
"James",
"Jim",
"David",
"Dave",
"Dan",
"Danny",
"Mike",
"Michael",
"Matt",
"Matthew",
"Andrew",
"Andy",
"Richard",
"Rich",
"Ricky",
"Paul",
"Mark",
"Tom",
"Adam",
"Robert",
"Robbie",
"Rob",
"John",
"Lee",
"Ben",
"Steven",
"Steve",
"Jonathan",
"Craig",
"Stephen",
"Simon",
"Nick",
"Pete",
"Peter",
"Anthony",
"Ant",
"Tony",
"Alex",
"Alexander",
"Gary",
"Ian",
"Ryan",
"Luke",
"Jamie",
"Stu",
"Stuart",
"Phil",
"Philip",
"Darren",
"Will",
"William",
"Billy",
"Gareth",
"Gaz",
"Martin",
"Kevin",
"Kev",
"Scott",
"Dean",
"Joe",
"Joseph",
"Jason",
"Jase",
"Neil",
"Sam",
"Carl",
"Sean",
"Tim",
"Ollie",
"Oli",
"Ashley",
"Wayne",
"Ed",
"Shaun",
"Aaron",
"Mohammed",
"Gav",
"Liam",
"Nathan",
"Alan",
"Graham",
"Ross",
"Karl",
"Marc",
"Adrian",
"Phillip",
"Patrick",
"Paddy",
"Pat",
"Lewis",
"Colin",
"Russell",
"Russ",
"Charles",
"Charlie",
"Shane",
"George",
"Mathew",
"Jack",
"Dale",
"Josh",
"Dom",
"Dominic",
"Barry",
"Leon",
"Terry",
"Greg",
"Brian",
"Keith",
"Antony",
"Kieran",
"Justin",
"Bradley",
"Brad",
"Jordan",
"Martyn",
"Leigh",
"Damien",
"Robin",
"Ian",
"Stewart"
]>>
<<set setup.canadianBoyNames1990 to [
"Mike",
"Michael",
"Chris",
"Christopher",
"Matt",
"Matthew",
"Josh",
"Joshua",
"Dan",
"Daniel",
"Danny",
"David",
"Dave",
"Andrew",
"Andy",
"James",
"Jim",
"Jimmy",
"Justin",
"Joe",
"Joseph",
"Ryan",
"John",
"Johnny",
"Robert",
"Rob",
"Robbie",
"Nick",
"Nicholas",
"Ant",
"Anthony",
"Tony",
"William",
"Will",
"Billy",
"Jonathan",
"Kyle",
"Brandon",
"Jacob",
"Jake",
"Tyler",
"Zachary",
"Zach",
"Kevin",
"Kev",
"Eric",
"Steven",
"Steve",
"Thomas",
"Tom",
"Tommy",
"Brian",
"Alex",
"Alexander",
"Xander",
"Jordan",
"Tim",
"Timmy",
"Timothy",
"Cody",
"Adam",
"Benjamin",
"Ben",
"Benjy",
"Aaron",
"Richard",
"Richie",
"Rich",
"Patrick",
"Pat",
"Paddy",
"Sean",
"Charles",
"Charlie",
"Stephen",
"Jeremy",
"Jez",
"Travis",
"Jeff",
"Jeffrey",
"Nate",
"Nathan",
"Sam",
"Mark",
"Jason",
"Jase",
"Jesse",
"Paul",
"Dustin",
"Greg",
"Ken",
"Scott",
"Derek",
"Austin",
"Corey",
"Bryan",
"Ethan",
"Christian",
"Cam",
"Cameron",
"Jared",
"Taylor",
"Brad",
"Bradley",
"Cory",
"Edward",
"Shawn",
"Ian",
"Evan",
"Marcus",
"Marc",
"Shane",
"Peter",
"Pete",
"Carlos",
"Trevor",
"Vincent",
"George",
"Vinny",
"Keith",
"Phil",
"Phillip",
"Vic",
"Victor",
"Dylan",
"Brett",
"Chad",
"Nathaniel",
"Don",
"Caleb",
"Casey",
"Blake",
"Ray",
"Raymond",
"Mitchell",
"Mitch",
"Adrian",
"Joel",
"Erik",
"Ronnie",
"Devin",
"Garrett",
"Gabe",
"Gabriel",
"Gordy",
"Darcy",
"Graeme",
"Mathieu",
"Michel",
"Blair",
"Liam",
"Duncan",
"Simon",
"Nigel"]>>
<<set setup.aussieBoyNames1990 to [
"Matt",
"Matthew",
"James",
"Jim",
"Jimmy",
"Dan",
"Daniel",
"Danny",
"Josh",
"Joshua",
"Mike",
"Michael",
"Thomas",
"Tom",
"Tommy",
"Nick",
"Nicholas",
"Jack",
"Ben",
"Benjamin",
"Benjy",
"Luke",
"Chris",
"Christopher",
"Jake",
"Nate",
"Nathan",
"Andrew",
"Andy",
"Lachlan",
"Sam",
"Samuel",
"Dylan",
"Mitch",
"Mitchell",
"Alex",
"Alexander",
"Xander",
"Ryan",
"Jordan",
"Will",
"William",
"Billy",
"Dave",
"David",
"Liam",
"Aaron",
"Adam",
"Jacob",
"Tim",
"Timothy",
"Tony",
"Anthony",
"Ant",
"Jesse",
"Patrick",
"Pat",
"Cam",
"Cameron",
"Brad",
"Bradley",
"Jason",
"John",
"Johnny",
"Robert",
"Rob",
"Robbie",
"Justin",
"Joel",
"Zachary",
"Zach",
"Jayden",
"Kyle",
"Brandon",
"Pete",
"Peter",
"Steve",
"Steven",
"Jackson",
"Sean",
"Mark",
"Hayden",
"Joseph",
"Joe",
"Corey",
"Scott",
"Callum",
"Ash",
"Ashley",
"Dean",
"Jamie",
"Rhys",
"Harrison",
"Stephen",
"Paul",
"Jeremy",
"Jez",
"Jonathan",
"Jon",
"Brendan",
"Tyler",
"Adrian",
"Darcy",
"Jarrod",
"Shaun",
"Connor",
"Blake",
"Mathew",
"Ethan",
"Simon",
"Riley",
"George",
"Trent",
"Ed",
"Edward",
"Eddie",
"Christian",
"Harley",
"Marcus",
"Angus",
"Gus",
"Kevin",
"Kev",
"Shane",
"Oliver",
"Oli",
"Max",
"Lucas",
"Travis",
"Aidan",
"Tyson",
"Bailey",
"Richard",
"Richie",
"Charlie",
"Charles",
"Julian",
"Jules",
"Harry",
"Brayden",
"Bryce",
"Tristan",
"Brodie"]>>
<<set setup.survalGirlNames to [
"Adeline",
"Charlotte",
"Gloria",
"Natalia",
"Alexandria",
"Chelsea",
"Grace",
"Natasha",
"Alexis",
"Chloe",
"Hannah",
"Olivia",
"Amanda",
"Christina",
"Harper",
"Paige",
"Amelia",
"Claire",
"India",
"Paris",
"Anais",
"Clara",
"Isabelle",
"Penelope",
"Anastasia",
"Claudia",
"Isla",
"Peyton",
"Angelica",
"Colette",
"Jacqueline",
"Phoebe",
"Angelina",
"Danielle",
"Jane",
"Portia",
"Anne",
"Daphne",
"Josephine",
"Rosalind",
"Arabella",
"Davina",
"Julia",
"Scarlett",
"Arianna",
"Dominique",
"Juliet",
"Sloane",
"Ashley",
"Elizabeth",
"Kendra",
"Sophia",
"Ava",
"Eloise",
"Laura",
"Stella",
"Beatrice",
"Emery",
"Laurel",
"Tatiana",
"Blair",
"Emily",
"Leighton",
"Tiffany",
"Brittany",
"Emma",
"Lilian",
"Valentina",
"Brooke",
"Esme",
"Maeve",
"Vanessa",
"Camille",
"Felicia",
"Margaret",
"Veronica",
"Caroline",
"Francesca",
"Margot",
"Victoria",
"Catherine",
"Gabrielle",
"Millicent",
"Vivienne",
"Celeste",
"Georgia",
"Naomi",
"Whitney"]>>
<<set setup.survalBoyNames to [
"Adrien",
"Alberto",
"Albin",
"Aldo",
"Alessandro",
"Alexandre",
"Alois",
"Andre",
"Antoine",
"Armando",
"Arnaud",
"Axel",
"Baptiste",
"Bart",
"Bastien",
"Benoit",
"Bernard",
"Bertrand",
"Boris",
"Bruno",
"Carlo",
"Christophe",
"Claude",
"Constantin",
"Cyril",
"Damien",
"Daniele",
"Dario",
"Davide",
"Didier",
"Dieter",
"Dino",
"Dirk",
"Dominik",
"Eduardo",
"Egon",
"Elvin",
"Emmanuel",
"Enrico",
"Erik",
"Ernst",
"Fabien",
"Farid",
"Federico",
"Felix",
"Fernando",
"Flavio",
"Francis",
"Francois",
"Fritz",
"Gabriel",
"Gaston",
"Gautier",
"Gerard",
"Gianluca",
"Gianni",
"Gilberto",
"Giorgio",
"Gregoire",
"Guy",
"Hans",
"Harald",
"Henrik",
"Herve",
"Hugo",
"Ivan",
"Jacques",
"Joachim",
"Joerg",
"Jonas",
"Josef",
"Juergen",
"Kurt",
"Lars",
"Leon",
"Louis",
"Luc",
"Lukas",
"Marc",
"Marcel",
"Mario",
"Martyn",
"Max",
"Michel",
"Nico",
"Niklaus",
"Olaf",
"Olli",
"Pascal",
"Patrik",
"Paulo",
"Pieter",
"Phillipe",
"Pierre",
"Rafael",
"Ralf",
"Remy",
"Renaud",
"Roby",
"Rolf",
"Rudy",
"Sandro",
"Sebastien",
"Sepp",
"Stefan",
"Sven",
"Thierry",
"Tobias",
"Tomas",
"Valentin",
"Viktor",
"Walter",
"Werner",
"Willem",
"Willi",
"Xavier",
"Yannick"]>>
<<set setup.frenchCanadianSurnames to [
"Barbeau",
"Barbier",
"Beaudoin",
"Beaulieu",
"Bedard",
"Belanger",
"Belair",
"Bergeron",
"Boucher",
"Boissoneau",
"Cartier",
"Charpentier",
"Clermont",
"Cloutier",
"Cote",
"Desjardins",
"Dube",
"Dupis",
"Fortin",
"Fournier",
"Gagnon",
"Ganthier",
"Gendor",
"Grenier",
"Jourdian",
"Laferriere",
"Lafitte",
"Lapointe",
"Lavoie",
"Leblanc",
"Leclerc",
"Lefevre",
"Levesque",
"Martel",
"Morin",
"Nadeau",
"Ouellet",
"Pelletier",
"Poirier",
"Richard",
"Roussin",
"Roy",
"Simard",
"St Matte",
"Taylor",
"Thibault",
"Toussaint",
"Tremblay"
]>>
<<set setup.polishAmercanSurnames to [
"Nowak",
"Kowalski",
"Wiśniewski",
"Dabrowski",
"Kaminski",
"Kowalcyzk",
"Zielinski",
"Symanski",
"Wozniak",
"Kozlowski",
"Wojciechowski",
"Kwiatkowski",
"Kaczmarek",
"Piotrowski",
"Grabowski",
"Nowakowski",
"Pawlowski",
"Michalski",
"Nowicki",
"Adamczyk",
"Dudek",
"Zajac",
"Wieczorek",
"Jablonski",
"Krol",
"Majewski",
"Olszewski",
"Jaworski",
"Pawlak",
"Walczak",
"Gorski",
"Rutkowski",
"Ostrowski",
"Duda",
"Tomaszewski",
"Jasinski",
"Zawadzki",
"Chmielewski",
"Borkowski",
"Czarnecki",
"Sawicki",
"Sokolowski",
"Maciejewski",
"Szczepanski",
"Kucharski",
"Kalinowski",
"Wysocki",
"Adamski",
"Sobczak",
"Czerwinski"
]>>
<<set setup.irishAmercanSurnames to [
"Brennan",
"Brown",
"Boyle",
"Burke",
"Byrne",
"Callaghan",
"Campbell",
"Carroll",
"Clarke",
"Collins",
"Connell",
"Connolly",
"Connor",
"Daly",
"Doherty",
"Doyle",
"Duffy",
"Dunne",
"Farrell",
"Fitzgerald",
"Flynn",
"Gallagher",
"Healy",
"Hughes",
"Johnston",
"Kelly",
"Kennedy",
"Lynch",
"MacCarthy",
"Maguire",
"Mahony",
"Martin",
"McCracken",
"McMullen",
"Moore",
"Murphy",
"Murray",
"Nolan",
"O'Brien",
"O'Donnell",
"O'Neill",
"Quinn",
"Reilly",
"Ryan",
"Shea",
"Smith",
"Sullivan",
"Sweeney",
"Thompson",
"Walsh",
"White"
]>>
<<set setup.italianAmericanSurnames to [
"Aiello",
"Amato",
"Barone",
"Bello",
"Bruno",
"Calabrese",
"Caputo",
"Carbone",
"Caruso",
"Castellano",
"Catalano",
"Conti",
"Coppola",
"D'Amico",
"D'Angelo",
"DeLuca",
"DeMarco",
"De Santis",
"Esposito",
"Ferrara",
"Fiore",
"Fusco",
"Gallo",
"Gentile",
"Greco",
"Giordano",
"Leone",
"Lombardo",
"Longo",
"Luciano",
"Mancini",
"Mancuso",
"Manzo",
"Marino",
"Messina",
"Orlando",
"Palumbo",
"Pagano",
"Piazza",
"Romano",
"Rossi",
"Ricci",
"Rizzo",
"Ruggiero",
"Russo",
"Salerno",
"Santoro",
"Vitale"
]>>
<<set setup.codeNames to [
"Rabbit",
"Walrus",
"Seal",
"Hare",
"Plimsoll",
"Pony",
"Peach",
"Persimmon",
"Terror",
"Freezer",
"Blue Beam",
"Green Beam",
"Crimson River",
"Dragon Rouge",
"Dragon Noire",
"Corporate",
"Keyhole",
"Red Bean",
"Sparrowhawk",
"Anakim",
"Krohcol",
"Livery",
"Sabre",
"Tepid Extremities",
"Erebus",
"Harmony",
"Granite",
"Blackout",
"Wunderkind",
"Brass Nightmare",
"Bad Voodoo",
"Grey Phantom",
"Interlude",
"Cyclone",
"Urgent Fury",
"Bold Mariner",
"Willing Disaster",
"Endless Love",
"Hidden Dragon",
"Crouching Tiger",
"Red Paladin",
"Blind Whirlwind",
"Phalat",
"Sourisak Montry",
"Black Lion",
"Southern Breeze",
"Death Trains",
"Firework Fanfare",
"Active Endeavour",
"Tigris",
"Haven"
]>>/* a place for widgets that just change words based on game logic. e.g. the parser <<Olivia>> displays "Olivia" unless Kate's name is Olivia, in which case it displays "Amanda" */
<<widget "Adriana">><<nobr>>
<<if $kate.cover.firstName != "Adriana" and $kate.firstName != "Adriana">>
\<<= "Adriana">>\
<<else>>
\<<= "Carina">>\
<</if>>
<</nobr>><</widget>>
<<widget "Amanda">><<nobr>>
<<if $kate.cover.firstName != "Amanda">>
\<<= "Amanda">>\
<<else>>
\<<= "Samantha">>\
<</if>>
<</nobr>><</widget>>
<<widget "apartment">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "apartment">>\
<<else>>
\<<= "flat">>\
<</if>>
<</nobr>><</widget>>
<<widget "Campbell">><<nobr>>
<<if $kate.surname != "Campbell">>
\<<= "Campbell">>\
<<else>>
\<<= "Hynes">>\
<</if>>
<</nobr>><</widget>>
<<widget "Chen">><<nobr>>
<<if $kate.surname != "Chen">>
\<<= "Chen">>\
<<else>>
\<<= "Li">>\
<</if>>
<</nobr>><</widget>>
<<widget "Colby">><<nobr>>
<<if $kate.surname[0] != "C">>
\<<= "Colby">>\
<<else>>
\<<= "Downing">>\
<</if>>
<</nobr>><</widget>>
<<widget "Gina">><<nobr>>
<<if $kate.firstName != "Gina">>
\<<= "Gina">>\
<<else>>
\<<= "Frankie">>\
<</if>>
<</nobr>><</widget>>
<<widget "Greenwood">><<nobr>>
<<if $kate.surname[0] != "G">>
\<<= "Greenwood">>\
<<else>>
\<<= "Healy">>\
<</if>>
<</nobr>><</widget>>
<<widget "handbag">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "handbag">>\
<<else>>
\<<= "purse">>\
<</if>>
<</nobr>><</widget>>
<<widget "holiday">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "holiday">>\
<<else>>
\<<= "vacation">>\
<</if>>
<</nobr>><</widget>>
<<widget "Knickers">><<nobr>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
\<<= "Panties">>\
<<elseif $kate.agency == "mi6">>
\<<= "Knickers">>\
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
\<<= "Undies">>\
<<else>>\
\<<= "(ERROR IN KNICKERS PARSER)">>\
<</if>>
<</nobr>><</widget>>
<<widget "knickers">><<nobr>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
\<<= "panties">>\
<<elseif $kate.agency == "mi6">>
\<<= "knickers">>\
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
\<<= "undies">>\
<<else>>\
\<<= "(ERROR IN KNICKERS PARSER)">>\
<</if>>
<</nobr>><</widget>>
<<widget "lift">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "lift">>\
<<else>>
\<<= "elevator">>\
<</if>>
<</nobr>><</widget>>
<<widget "Mandy">><<nobr>>
<<if $kate.firstName != "Amanda">>
\<<= "Mandy">>\
<<else>>
\<<= "Sam">>\
<</if>>
<</nobr>><</widget>>
<<widget "McKenzie">><<nobr>>
<<if $kate.surname[0] != "M">>
\<<= "McKenzie">>\
<<else>>
\<<= "Healy">>\
<</if>>
<</nobr>><</widget>>
<<widget "Miller">><<nobr>>
<<if $kate.surname != "Miller">>
\<<= "Miller">>\
<<else>>
\<<= "Fisher">>\
<</if>>
<</nobr>><</widget>>
<<widget "Olivia">><<nobr>>
<<if $kate.firstName != "Olivia">>
\<<= "Olivia">>\
<<else>>
\<<= "Amanda">>\
<</if>>
<</nobr>><</widget>>
<<widget "OLIVIA">><<nobr>>
<<if $kate.firstName != "Olivia">>
\<<= "OLIVIA">>\
<<else>>
\<<= "AMANDA">>\
<</if>>
<</nobr>><</widget>>
<<widget "queue">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "queue">>\
<<else>>
\<<= "line">>\
<</if>>
<</nobr>><</widget>>
<<widget "recruitHQ">><<nobr>>
<<if $kate.agency == "cia">>
\<<= "The Farm">>\
<<elseif $kate.agency == "mi6">>
\<<= "Fort Monckton">>\
<<elseif $kate.agency == "asis">>
\<<= "Swan Island">>\
<<elseif $kate.agency == "csis">>
\<<= "Dwyer Hill">>\
<<elseif $kate.agency == "nzsis">>
\<<= "Papakura Camp">>\
<<else>>
\<<= "(ERROR IN STAG PARSER)">>\
<</if>>
<</nobr>><</widget>>
<<widget "Rigg">><<nobr>>
<<if $kate.surname != "Rigg">>
\<<= "Rigg">>\
<<else>>
\<<= "Griggs">>\
<</if>>
<</nobr>><</widget>>
<<widget "Sadie">><<nobr>>
<<if $kate.firstName != "Sadie">>
\<<= "Sadie">>\
<<else>>
\<<= "Mercedes">>\
<</if>>
<</nobr>><</widget>>
<<widget "stag">><<nobr>>
<<if $kate.agency == "cia">>
\<<= "bachelor">>\
<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>
\<<= "stag">>\
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
\<<= "buck">>\
<<else>>
\<<= "(ERROR IN STAG PARSER)">>\
<</if>>
<</nobr>><</widget>>
<<widget "Stephanie">><<nobr>>
<<if $kate.firstName != "Stephanie">>
\<<= "Stephanie">>\
<<else>>
\<<= "Christy">>\
<</if>>
<</nobr>><</widget>>
<<widget "Talisker">><<nobr>>
<<if $kate.surname[0] != "T">>
\<<= "Talisker">>\
<<else>>
\<<= "Ellis">>\
<</if>>
<</nobr>><</widget>>
<<widget "trainer">><<nobr>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
\<<= "sneaker">>\
<<elseif $kate.agency == "mi6">>
\<<= "trainer">>\
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
\<<= "runner">>\
<<else>>
\<<= "(ERROR IN TRAINER PARSER)">>\
<</if>>
<</nobr>><</widget>>
<<widget "trousers">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "trousers">>\
<<else>>
\<<= "pants">>\
<</if>>
<</nobr>><</widget>>
<<widget "Uni">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "Uni">>\
<<else>>
\<<= "College">>\
<</if>>
<</nobr>><</widget>>
<<widget "uni">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "uni">>\
<<else>>
\<<= "college">>\
<</if>>
<</nobr>><</widget>>
<<widget "University">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "University">>\
<<else>>
\<<= "College">>\
<</if>>
<</nobr>><</widget>>
<<widget "university">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "university">>\
<<else>>
\<<= "college">>\
<</if>>
<</nobr>><</widget>>
<<widget "Wheelan">><<nobr>>
<<if $kate.surname[0] != "W">>
\<<= "Wheelan">>\
<<else>>
\<<= "Healy">>\
<</if>>
<</nobr>><</widget>>
<<widget "Wheeler">><<nobr>>
<<if $kate.surname[0] != "W">>
\<<= "Wheeler">>\
<<else>>
\<<= "Turner">>\
<</if>>
<</nobr>><</widget>>
<<widget "zip">><<nobr>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>
\<<= "zip">>\
<<else>>
\<<= "zipper">>\
<</if>>
<</nobr>><</widget>>
<<widget "Zo">><<nobr>>
<<if $kate.firstName != "Zoe" and $kate.firstName != "Zooey" and $kate.firstName != "Zoey" and $kate.firstName != "Zoë" and $kate.firstName != "Zoé">>
\<<= "Zo">>\
<<else>>
\<<= "Izzy">>\
<</if>>
<</nobr>><</widget>>
<<widget "Zoe">><<nobr>>
<<if $kate.firstName != "Zoe" and $kate.firstName != "Zooey" and $kate.firstName != "Zoey" and $kate.firstName != "Zoë" and $kate.firstName != "Zoé">>
\<<= "Zoe">>\
<<else>>
\<<= "Izzy">>\
<</if>>
<</nobr>><</widget>><<silently>>
<<set $thisIsTheFreeEdition to false>> /*Set to false for Patreon edition!!!*/
<<if $thisIsTheFreeEdition>>
<<set setup.thisIsTheFreeEdition to true>>
<</if>>
<<set $avatar = {
background: [],
body: [],
bodyMods: [],
underwear: [],
clothing: [],
foreground: [],
blink : false,
barefoot : false,
cleavage : true,
cleavageCounter : 0,
showRear : false,
sixPack : false,
rearViewEnabled : false
}>>
<<set $ui ={
avatarSize: 1,
textSize: 1
}>>
<<set $header to {}>>
<<set $temp to {}>>
<<set $kate = {
age: 24,
agency: "mi6",
complexion: "fair",
ethnicity: "english",
nationality: "british",
kinks: [],
quirks: [],
attributes: {},
statusEffects: [],
personalBio: [],
achievements: [],
relationshipHistory: [],
isWearing : []
}>>
<<set $kate.age to random(24,26)>>
<<set $kate.agency to either("mi6","cia","asis","csis","nzsis")>>
/*statusEffects: ["Test","Test","Test"],*/
/* personalBio: [{timestamp: "2018", entry: "Some placeholder test entry 1"},{timestamp: "2018", entry: "Some placeholder test entry 2"}],
achievements: ["test1","test2","test2","test2","test2"],
[[1,""],[2,"Jackson"]]
*/
/*$kate.statusEffects should be an array containing: the names of the Status effect. -> a widget will display it in the character sheet*/
/*$kate.personalBio should be an array with objects {timestamp: "2018", entry: "Some entry"}, oldest entry first in array*/
/*{header: "Operation placeholder", relations: []}*/
/*[{name: "Jacob", description: "Placeholder description one", effects:"Effect placeholder 1"}]*/
<<set _startingKink to either("exhibitionist", "masochist", "submissive"),
$kate.kinks.pushUnique(_startingKink)>>
/*
<<set _randomQuirks to random(1,100)>>
<<if _randomQuirks lte 20>>
<<set $kate.quirks.pushUnique("batarian")>>
<<elseif _randomQuirks gt 20 and _randomQuirks lte 30>>
<<set $kate.quirks.pushUnique("resting bitch face")>>
<<elseif _randomQuirks gt 30 and _randomQuirks lte 5>>
<<set $kate.quirks.pushUnique("commando")>>
<<else>>
<</if>>
*/
<<set _randomClass to random(1,100)>>
<<if _randomQuirks lte 17>>
<<set $kate.quirks.pushUnique("working class")>>
<<set _randomMOM to random(1,4)>>
<<if _randomMOM eq 1>>
<<set $kate.quirks.pushUnique("single mum")>>
<</if>>
<<elseif _randomQuirks gt 17 and _randomQuirks lte 84>>
<<set _randomMOM to random(1,10)>>
<<if _randomMOM eq 1>>
<<set $kate.quirks.pushUnique("single mum")>>
<</if>>
<<set $kate.quirks.pushUnique("middle class")>>
<<else>>
<<set $kate.quirks.pushUnique("elite")>>
<</if>>
<<set _randomSiblings to random(1,100)>>
<<set _siblingArray to ["big brother","big sister","kid brother","kid sister"]>>
<<if _randomSiblings lte 45>>
/*Noting*/
<<elseif _randomSiblings gt 45 and _randomSiblings lte 83>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<elseif _randomSiblings gt 83 and _randomSiblings lte 95>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<elseif _randomSiblings gt 85 and _randomSiblings lte 99>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<else>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<<set $kate.quirks.pushUnique(_siblingArray.pluck())>>
<</if>>
<<set _d100 to random(1,100)>>
<<if $kate.braSize == "large">>
<<set _d100 += 8>>
<</if>>
<<if _d100 lte 16>>
<<set $kate.quirks.pushUnique("picky")>>
<<elseif _d100 gte 84>>
<<set $kate.quirks.pushUnique("easy")>>
<</if>>
<<characterCreator-randomiseKateAttributes>>
<<set $kate.faceShape to either("round", "heart", "square", "diamond", "oval"),
$kate.noseShape to either("Celestial", "Greek", "Nubian", "Princess", "Roman"),
$kate.mouthShape to either("Cupid", "Hollywood", "Pearlique", "Rubina", "Thin"),
$kate.eyeShape to either("Almond", "Cat", "Downturned", "Round", "Wide"),
$kate.eyeColour to either("Blue", "Chestnut", "Emerald", "Grey", "Hazelnut", "Sapphire"),
$kate.bikiniLine to "georgeW"
>>
<<if $kate.agency eq "mi6">>
<<set $kate.nationality to "british">>
<<set $kate.ethnicity to either("English")>>
<<if $kate.ethnicity eq "English">>
<<set $kate.firstName to setup.englishFemaleFirstnames1990s.random(),
$kate.surname to setup.englishSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<set $kate.nationality to "american">>
<<set $kate.ethnicity to either("Anglo American", "Irish American", "Italian American", "Polish American")>>
<<if $kate.ethnicity eq "Anglo American">>
<<set $kate.firstName to setup.usFirstname.random(),
$kate.surname to setup.usSurname.random()>>
<<elseif $kate.ethnicity eq "Irish American">>
<<set $kate.firstName to setup.irishAmercanSurnames.random()>>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Italian American">>
<<set $kate.firstName to setup.italianAmericanSurnames.random()>>
<<set $kate.firstName to setup.usFirstname.random()>>
<<elseif $kate.ethnicity eq "Polish American">>
<<set $kate.firstName to setup.usFirstname.random(),
$kate.surname to setup.polishAmercanSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<set $kate.nationality to "australian">>
<<set $kate.ethnicity to either("Anglo Australian")>>
<<if $kate.ethnicity eq "Anglo Australian">>
<<set $kate.firstName to setup.ausNZFirstname.random(),
$kate.surname to setup.ausNZSurname.random()>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<set $kate.nationality to "canadian">>
<<set $kate.ethnicity to either("Anglo Canadian","French Canadian")>>
<<if $kate.ethnicity eq "Anglo Canadian">>
<<set $kate.firstName to setup.canadianFirstname.random(),
$kate.surname to setup.canadianSurname.random()>>
<<elseif $kate.ethnicity eq "French Canadian">>
<<set $kate.firstName to setup.canadianFirstname.random(),
$kate.surname to setup.frenchCanadianSurnames.random()>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<set $kate.nationality to "New Zealander">>
<<set $kate.ethnicity to either("NZ European")>>
<<if $kate.ethnicity eq "NZ European">>
<<set $kate.firstName to setup.ausNZFirstname.random(),
$kate.surname to setup.ausNZSurname.random()>>
<</if>>
<<else>>
<<set $kate.firstName to "Walrus",
$kate.surname to "Walrusson">>
<</if>>
<<set $kate.cover to {}>>
<<set $kate.cover.firstname to "",
$kate.cover.knownAs to "",
$kate.cover.surname to "">>
<<set $kate.codename to setup.codeNames.random()>>
<<set $kate.piercings to []>>
<<set $kate.tattoos to []>>
/* calculate Kate's hair colour */
<<set _coinToss to either("heads", "tails")>>
<<if _coinToss == "heads">>
<<set $kate.hairColour to ("Brown")>>
<<else>>
<<set $kate.hairColour to either("Brown", "Black", "Ginger", "Blonde", "Auburn", "Champagne")>>
<</if>>
/* calculate Kate's hairstyle */
<<set $kate.hairStyle to either("Short bob","Long straight","Long curly","Short", "Bun with bangs", "Wavy bob")>>
<<if $kate.hairColour eq "Ginger">>
<<set _chanceFres to 80>>
<<else>>
<<set _chanceFres to 13>>
<</if>>
/*
<<set _random to random(1,100)>>
<<if _random < _chanceFres>>
<<set $kate.quirks.pushUnique("freckles")>>
<</if>>
*/
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>
/* calculate Kate's bra size FREE EDITION*/
<<consoleLog 'Free Edition'>>
<<set _d100 to random(1,100)>>
<<switch _d100>>
<<case lte 25>>
<<set $kate.braSize to "small">>
<<default>>
<<set $kate.braSize to "medium">>
<</switch>>
<<else>>
/*Patreon Edition !!!*/
<<consoleLog 'Patreon Edition'>>
<<set _d100 to random(1,100)>>
<<switch _d100>>
<<case lte 16>>
<<set $kate.braSize to "small">>
<<case gte 84>>
<<set $kate.braSize to "large">>
<<default>>
<<set $kate.braSize to "medium">>
<</switch>>
<</if>>
<<set $kate.arousal to 0>> /*Value range (0-3)*/
<<set $kate.skills to {}>>
<<set $kate.skills.academic to {}>>
<<set $kate.skills.academic.level to -4,
$kate.skills.academic.xp to 0,
$kate.skills.academic.specialities to []>>
<<set $kate.skills.agent to {}>>
<<set $kate.skills.agent.level to -4,
$kate.skills.agent.xp to 0,
$kate.skills.agent.specialities to []>>
<<set $kate.skills.athlete to {}>>
<<set $kate.skills.athlete.level to -4,
$kate.skills.athlete.xp to 0,
$kate.skills.athlete.specialities to []>>
<<set $kate.skills.brawler to {}>>
<<set $kate.skills.brawler.level to -4,
$kate.skills.brawler.xp to 0,
$kate.skills.brawler.specialities to []>>
<<set $kate.skills.charmer to {}>>
<<set $kate.skills.charmer.level to -4,
$kate.skills.charmer.xp to 0,
$kate.skills.charmer.specialities to []>>
<<set $kate.skills.cook to {}>>
<<set $kate.skills.cook.level to -4,
$kate.skills.cook.xp to 0,
$kate.skills.cook.specialities to []>>
<<set $kate.skills.dancer to {}>>
<<set $kate.skills.dancer.level to -4,
$kate.skills.dancer.xp to 0,
$kate.skills.dancer.specialities to []>>
<<set $kate.skills.driver to {}>>
<<set $kate.skills.driver.level to -4,
$kate.skills.driver.xp to 0,
$kate.skills.driver.specialities to []>>
<<set $kate.skills.musician to {}>>
<<set $kate.skills.musician.level to -4,
$kate.skills.musician.xp to 0,
$kate.skills.musician.specialities to []>>
<<set $kate.skills.partyAnimal to {}>>
<<set $kate.skills.partyAnimal.level to -4,
$kate.skills.partyAnimal.xp to 0,
$kate.skills.partyAnimal.specialities to []>>
<<set $kate.skills.sexpert to {}>>
<<set $kate.skills.sexpert.level to -4,
$kate.skills.sexpert.xp to 0,
$kate.skills.sexpert.specialities to []>>
<<set $kate.skills.shooter to {}>>
<<set $kate.skills.shooter.level to -4,
$kate.skills.shooter.xp to 0,
$kate.skills.shooter.specialities to []>>
<<set $kate.skills.singer to {}>>
<<set $kate.skills.singer.level to -4,
$kate.skills.singer.xp to 0,
$kate.skills.singer.specialities to []>>
<<set $kate.skills.writer to {}>>
<<set $kate.skills.writer.level to -4,
$kate.skills.writer.xp to 0,
$kate.skills.writer.specialities to []>>
<<set $imagePath to {}>>
/* for offline version, change these vars to "media/..." */
<<set $imagePath.base to "media/">>
<<set $imagePath.avatar to "media/avatar/">>
<<set $imagePath.ui to "media/ui/">>
<<set $avatar.top to 0>>
<<set $notifications to {}>>
<<set $notifications.list to []>>
<<set $statistics = new Map()>>
<</silently>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique("10_holdUps-40denier-black")>>
<<set $avatar.clothing.pushUnique("20_highHeels-patent-black")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_skirt-blackMiniPencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-pinkAndBlackPolkaDotShortSleevedBlouse-" +$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''SUN TOURS,'' WARDOUR ST">>
<<if $kate.firstName == "Rebecca" or $kate.firstName == "Becca" or $kate.firstName == "Becky">>
<<set _becky to "Natalie">>
<<else>>
<<set _becky to "Becky">>
<</if>>
<<if $kate.firstName == "Joanne" or $kate.firstName == "Joanna" or $kate.firstName == "Jo">>
<<set _jo to "Liz">>
<<else>>
<<set _jo to "Jo">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You send in your application forms. A short while later, dressed as smartly as possible, you and $temp.firstFriend attend a group interview at the Sun Tours head office in central London.
You and ten others are interviewed by two attractive women in their thirties, wearing uniforms with flight attendant-style neckerchiefs. They introduce themselves as _becky and _jo, area managers.
From their demeanour you can tell they're a little reserved, not necessarily looking for wild party animals. One guy talks a lot about drinking and partying, and says that he wants a lively resort; you can just tell he's not going to get the job, and he's asked to leave at [[lunchtime|CORFU-1100 Presentation]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the afternoon you each have to give a solo presentation to the group. One girl – keen, pretty, and fluent in Spanish, who seemed all day like the model candidate – falls to pieces here, mumbling all through her presentation and then bursting into tears afterwards. You give her a pat on the shoulder to comfort her afterwards, but you know you'll never see her again.
<<if $kate.attributes.neuroticism.level gt -1>>You're tense and scared<<else>>You feel a twinge of stage fright<</if>> before your turn to present, but in the end it goes well. <<if $kate.attributes.extraversion.level lt 0>>Public speaking isn't something you enjoy, but having given a few class presentations at sixth form, you at least know what to expect.<<else>>In group work at sixth form you were often picked to give the class presentations, so you feel reasonably comfortable standing up and talking in front of a group.<</if>>
$temp.firstFriend sticks to the structure you helped her prepare, and her presentation also goes smoothly. You're reasonably confident that you'll both be invited back for a [[second interview|CORFU-1200 Job offer]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-niceToMeetYou>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/10_socks-greyCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/10_leggings-greyThreeQuarterLengthCottonLeggings")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-yellowAndBlackCottonFlaredVest-" +$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<</silently>>\
<<header>>\
<<page>>\
A few days later, you receive a letter from Sun Tour Holidays. You open it, hoping to be invited for a second interview – but instead find a job offer, as a holiday rep on the island of Corfu!
$temp.firstFriend gets a similar letter on the same day, and the two of you go for pints at The Bricklayers to celebrate. "Sun, sea, sand, blokes...I can't //wait,"// she squeals.
Your <<if $kate.quirks.includes("single mum")>>mum isn't<<else>>mum and dad aren't<</if>> so enthusiastic, but <<if $kate.quirks.includes("single mum")>>she takes<<else>>they take<</if>> some comfort in the fact $temp.firstFriend will be with you. (You have to swear a solemn oath to //her// mum that you'll look after her diligently.)
There's not much time to prep: Sun Tours want you on a [[5-day training course|CORFU-1200 Embus at Wardour St]] at the end of the month, flying out to Corfu just a few days later.
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_jeans-darkBlueDenimBootcutJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-blackHighHeeledStrappySandals")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-blackVNeckLongSheerSleevedBlouse-" +$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''SUN TOURS,'' WARDOUR ST",
$header.line2 to "A FEW WEEKS LATER...">>
<</silently>>\
<<header>>\
<<page>>\
When you return to head office to start your training course, you're in for a shock – you're among around 300 other young people who've been selected for holiday rep training!
"Not many blokes," observes $temp.firstFriend, and she's right – there must be seven or eight girls to every guy. An excited buzz takes hold of the group as it swells, hundreds of nervous teenagers waiting for the coaches that will transport you to the training course.
When you board [[your coach|CORFU-2000 Holiday Inn Stansted]], you take a seat beside one of the boys. Paul's a cheeky, confident 23-year old with a cleft chin and cute dimples. He's brags excitedly that he's going on to Ibiza, a party resort.
<</page>><<silently>>
<<set $header.line1 to "''HOLIDAY INN,'' STANSTED",
$header.line2 to "2010 / AGE 18">>
<</silently>>\
<<header>>\
<<page>>\
The company's booked out an entire hotel near Stansted Airport. You're met by a team of supervisors in their thirties, wearing Sun Tours uniforms and stern expressions.
"C'mon, you lot, hurry up!" They bark and hustle you around like they're sergeant majors in an army film, then organise you into groups based on the resorts you'll be working in. You and Jade are in a group of 19 who'll be working in Rhodes or Corfu: 13 girls, six blokes.
"Over the next five days we'll teach you everything about the job," the lead supervisor announces. "If you miss a session, you'll fail the course and go home. If you're late in the morning, you'll fail the course and go home. And if there's any reason any of us think you'll be a bad rep, you'll fail the course and go home. Is that clear?"
[[Clear!|CORFU-2100 Training course]]
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
The course is full-on, involving lots of presentations and roleplays as you learn the basics of transfers, welcome meetings, excursion guiding and handling complaints. Some people drop out, others are kicked off the course, but you and $temp.firstFriend perform pretty well.
After-training drinks in the hotel bar are compulsory – and probably good practice for the resorts. In these long, boozy sessions you get to know the others, including the surprising fact that many of the boys are gay. They want some time abroad so they can work things out without being judged by their families and friends.
You're 100% sure that Paul's not gay, though. He comes to look for you and Jade after every session, and seems like he's into you.
<<if $kate.quirks.includes("easy")>>\
//[Easy]// <<link "//Hook up with him.//" "CORFU-2200 Kate hooks up with Paul">><</link>>
<<else>>\
<span class="greyedOut">//[Easy] Hook up with him.//</span>
<</if>>\
<<link "//Concentrate on the course.//" "CORFU-2500 Jade hooks up with Paul">><</link>>
<</page>><<silently>>
<<avatar-horny>>
<<set $avatar.clothing.delete("/foreignAdventure/30_top-blackVNeckLongSheerSleevedBlouse-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-blackCottonFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<<if $kate.quirks.includesAny("strictCondomPolicy")>>
<<set _protectedSex to true>>
<<else>>
<<set _d100 to random(1,100)>>
<<if $kate.quirks.includes("normalCondomPolicy")>>
<<if _d100 lte 80>>
<<set _protectedSex to true>>
<</if>>
<<elseif $kate.quirks.includes("laxCondomPolicy")>>
<<if _d100 lte 50>>
<<set _protectedSex to true>>
<</if>>
<</if>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You end up having sex with him on the second night, slipping away from the bar and going up to his room together.
You snog in the lift, his hands all over your <<if $kate.braSize == "large">>boobs<<else>>butt<</if>>. Once you're in his bed he goes down on you very skillfully...then spreads your legs apart and thrusts his cock inside you. <<if not _protectedSex>>No condom.<</if>>
You're having a great time until his roommate comes back, a [[Welsh girl from one of the other groups|CORFU-2300 Coitus interruptus]] in tow.
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-sexFace>>
<<if $kate.firstName == "Dionne" or $kate.firstName == "Diane" or $kate.firstName == "Diana">>
<<set _dionne to "Gwen">>
<<else>>
<<set _dionne to "Dionne">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Paul rolls hastily off you, and you cover yourselves in the duvet. There's a brief negotiation, after which the roommate agrees to shag _dionne in the bathroom.
As soon as the door clicks shut, Paul resumes his affections, with renewed vigour. Soon your cries and moans are harmonising with _dionne's through the thin interior walls of the [[Holiday Inn Stansted|CORFU-2400 Walk of shame]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_jeans-darkBlueDenimBootcutJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-blackHighHeeledStrappySandals")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-blackCottonFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-embarrassed2>>
<</silently>>\
<<header>>\
<<page>>\
Jade giggles when you sneak back into your room later. "We haven't even left the country yet, babe," she says. "Might wanna [[pace yourself|CORFU-2600 Kit issue]]!"
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/30_top-blackVNeckLongSheerSleevedBlouse-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-blackCottonFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You play it cool with Paul, not wanting to find out if you can get kicked off the course for a romantic entanglement.
Your best friend has no such reservations, though. On the second night, you return to the twin room you share...and get greeted by the sight of Jade, naked on all fours, getting it doggy style from Paul.
[[I'll come back later...|CORFU-2600 Kit issue]]
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_jeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/10_socks-greyCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-blackAndWhiteConverseTrainers")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-blackCottonFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
At the end of the course, you're issued your uniforms, then sent home for the weekend.
It'll be the last weekend you spend in London for a while. On Monday, you and Jade are [[flying out to Corfu|CORFU-3000 Arriving Corfu]]!
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/10_socks-greyCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-blackAndWhiteConverseTrainers")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.delete("/foreignAdventure/30_top-blackCottonFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.clothing.delete("/foreignAdventure/20_jeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-yellowAndBlackCottonFlaredVest-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_skirt-lightBlueDenimMiniWithBrownBelt")>>
<<set $avatar.background.pushUnique("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.pushUnique("/foreignAdventure/30_airportLuggageWorkingClass")>>
<<set $avatar.background.pushUnique("/foreignAdventure/29_airportLuggageWorkingClassShadow")>>
<<if $kate.firstName == "Dionne" or $kate.firstName == "Diane" or $kate.firstName == "Diana">>
<<set _diana to "Helena">>
<<else>>
<<set _diana to "Diana">>
<</if>>
<<set $header.line1 to "''CORFU,'' GREECE">>
<</silently>>\
<<header>>\
<<page>>\
You fly out of London Gatwick on a drizzly grey Monday morning, landing three hours later in sunny Corfu! "We're doing it," Jade coos excitedly as you step off the aircraft, out into the blazing hot Mediterranean air. "We're really doing it!"
<<image "/locationPhotos/corfu/corfuTown.jpg" 0 1000 250 0>>\
You're met at the airport by a poised, suntanned rep named _diana. You and the other reps are taken by minibus to your accommodation, various small apartments scattered around Corfu town. You're sharing with Jade, and although your place is small, it's cute and has a little balcony looking out over some palm trees and scrubland.
You spend the [[first night|CORFU-3100 Shadowing Diana]] screaming and chasing lizards out of the apartment. By mid-season each of you will have a pet lizard living permanently in her bedroom, to protect you from the island's massive, scary spiders.
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformShoes-navyPatentHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformSkirt-navyOverTheKneePencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_sunToursUniformTop-skyBlueShirtWithRolledUpSleevesAndNavyNeckScarf-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/40_sunToursUniformBelt-navyAndSkyBlueStripedBelt")>>
<<if $kate.firstName == "Dionne" or $kate.firstName == "Diane" or $kate.firstName == "Diana">>
<<set _diana to "Helena">>
<<else>>
<<set _diana to "Diana">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The rookies are each assigned to an experienced rep to shadow for the first week. You get _diana.
In her late twenties, she has a dozen seasons under her belt, and it shows in the calm and knowledgeable way she conducts welcome meetings and transfers, directs the guests, and deals with problems and complaints.
Her days are long and busy, filled with guests peppering her with questions about the island and excursions that you'd have //no// idea how to answer. "You'll get the hang," she assures you. "In six months you'll know this place like the [[back of your hand|CORFU-3200 Island tour]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She introduces you to a bunch of local businessmen – bar owners, restaurateurs, shopkeepers, excursion guides – as her replacement. You get the sense they like and respect her, but are a little dubious about you.
On your last day together – her day off – she takes you on a long drive all around the island, showing you the landmarks and the sights.
<<image "/locationPhotos/corfu/restaurantViewOfIonianSea.jpg" 100 1000 450 0>>\
You sit and have a beer together in a hotel bar, gazing out over the warm waters of the Ionian Sea. Soaking in the heat and the spectacular view, you realise that – despite feeling unready, and despite all the running around of the last seven days – you don't want to be home.
<<link "//Continue//" "CORFU-3300 A day in the life of a rep">><</link>>
<</page>><<silently>>
<<if $kate.firstName == "Dionne" or $kate.firstName == "Diane" or $kate.firstName == "Diana">>
<<set _diana to "Helena">>
<<else>>
<<set _diana to "Diana">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Then your mentor's gone, and you're a rep in your own right!
It's overwhelming at first. You have to herd several diverse groups of holidaymakers at a time, while hitting a sales target in excursion sales, and smoothing over emergencies as they arise.
You have to handle flight delays, a hire car write-off, disputes with the locals, a drunken brawl, and a frantic requirement for a morning after pill...and that's all in the first week!
The days are long, and there's after-work drinks every night. Sometimes you go clubbing or to a bar, and sometimes you and some other reps just sit and drink on a beach or a balcony under the stars.
You get one day off per week, to [[use how you like|CORTOP-1000 Moped rental]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformShoes-navyPatentHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformSkirt-navyOverTheKneePencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_sunToursUniformTop-skyBlueShirtWithRolledUpSleevesAndNavyNeckScarf-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/40_sunToursUniformBelt-navyAndSkyBlueStripedBelt")>>
<<set $header.line1 to "''CORFU,'' GREECE">>
<</silently>>\
<<header>>\
<<page>>\
The weeks turn to months. "I can tell you're getting the hang of this," your mum tells you on one of your phone calls home. "You sound less stressed."
She's right; you've gotten more and more confident in the role. All the locals know you, and you're a practiced hand at managing the guests.
The pay's lousy, but it's almost impossible for you to spend money here anywhere that isn't a supermarket – you drink for free, you eat for free, vehicle hire and excursions are free. All the local businesses are desperate for you to steer tourists to them, so you feel like a celebrity every time you pop into one for a drink or a bite to eat.
<<image "/locationPhotos/corfu/sidariNight.jpg" 200 1000 550 0>>\
One night in Sidari, when a group of about twenty drunk blokes are hassling you and blocking your way, a bar owner called Lefteris comes running out into the street with one of his barmen, standing between you and the mob. For a moment you think it's going to turn into a massive street brawl, but Lefteris threatens to get them all blacklisted in every bar on the island, and they all back down and move on.
[[Wow, thanks, Lef.|CORFU-4100 Thanks Lef]]
<</page>><<silently>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
He just shrugs and says, "We look after each other." Then he and his barman go back to work.
As to your job, the rules are simple: don't get drunk while you're working, don't smoke in front of the guests, and never "chicken". Chickening is when a rep spends all their time with guests of the opposite sex (other reps will walk past and cluck like a chicken if they think you're doing it).
Reps aren't encouraged to sleep with guests, because it can cause dramas. That said, it's very common, but it has to be after work and [[in secret|CORFU-4200 Chickening]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The two straight male reps in your team are truly prolific, each sleeping with at least one or two guests per week.
$temp.firstFriend also throws herself pretty enthusiastically into the "holiday fling" thing, enough so that the rest of the team considers her "a bit of a slag" – even though her body count of hot guest and local hunks can't be half that of the guys.
What's your reputation?
<<if $kate.quirks.includes("easy")>>\
//[Easy] [[Easy Lover.|CORFU-4300 Love life][$temp.kateSays to "easy"]]//
<<else>>\
<span class="greyedOut">//[Easy] Easy Lover.//</span>
<</if>>\
[[Funloving.|CORFU-4300 Love life][$temp.kateSays to "normal"]]
<<if $kate.quirks.includes("picky")>>\
//[Picky] [[Ice Queen.|CORFU-4300 Love life][$temp.kateSays to "picky"]]//
<<else>>\
<span class="greyedOut">//[Picky] Ice Queen.//</span>
<</if>>\
<</page>><<silently>>
<<set $temp.jadesBodyCount to random(6,24)>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "easy">>\
//What happens in Corfu stays in Corfu,// you and $temp.firstFriend solemnly promised each other before you left. You came out here for fun and experiences, not to worry about gossip or labels, or exactly the name of every single sexual partner you've ever had.
The other girls on your team will each roll three 4-sided dice (3D4) to see how many holidy flings they'll have. You and $temp.firstFriend will roll 6D4 instead, because you're both //Easy.//
<<elseif $temp.kateSays == "normal">>\
You keep an open mind about holiday romances – they're all part of the experience, and the boys shouldn't have all the fun.
$temp.firstFriend will roll six 4-sided dice (6D4) to see how many holiday flings she has. Like the other girls on the team, you'll roll 3D4 instead.
<<elseif $temp.kateSays == "picky">>\
While you're not averse to the idea of a holiday romance, you're also not the kind of girl who just jumps into bed with just anyone. Some of the others tease you about this: when you tell $temp.firstFriend you're off to visit the monastery at Myrtidiotissa, she laughs and tells you not to let them turn you into a nun.
$temp.firstFriend will roll six 4-sided dice (6D4) to see how many holiday flings she has. You'll roll just 1D4, because you're //Picky.//
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<div id="dice-rolled">
<<button "Roll Dice">>
<<if $temp.kateSays == "easy">>
<<set _d41 to random(1,4)>>
<<set _d42 to random(1,4)>>
<<set _d43 to random(1,4)>>
<<set _d44 to random(1,4)>>
<<set _d45 to random(1,4)>>
<<set _d46 to random(1,4)>>
<<set _dice to "1d4 + 1d4 + 1d4 + 1d4 + 1d4 + 1d4 @ "+_d41 +" "+_d42 +" "+_d43 +" "+_d44 +" "+_d45 +" "+_d46>>
<<set _result to _d41 + _d42 + _d43 + _d44 + _d45 + _d46>>
<<elseif $temp.kateSays == "normal">>
<<set _d41 to random(1,4)>>
<<set _d42 to random(1,4)>>
<<set _d43 to random(1,4)>>
<<set _dice to "1d4 + 1d4 + 1d4 @ "+_d41 +" "+_d42 +" "+_d43 >>
<<set _result to _d41 + _d42 + _d43>>
<<else>>
<<set _d41 to random(1,4)>>
<<set _dice to "1d4 @ "+_d41>>
<<set _result to _d41>>
<</if>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
[[Result.|CORFU-4400 Body count][$temp.corfuBodyCount to _result]]
<</replace>>
<</rollDice>>
<</button>>
</div>\
<</page>><<silently>>
<<set _sexpertXP to $temp.corfuBodyCount * 100>>
<<awardXP sexpert _sexpertXP>>
<</silently>>\
<<header>>\
<<page>>\
You have $temp.corfuBodyCount holiday flings during the season. You gained _sexpertXP experience points in the Sexpert skill.
In this version, that's just a number, but in future versions a short bio of each sexual encounter will be published on your Character Sheet. You'll also gain Experience Points from each one.
<<link "//Continue//" "CORFU-4500 Dead tired">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Repping's hard work! You have to project a happy, smiley attitude all the time – you're there to help the guests have the best 7 or 14 days of their lives – even when you don't feel like it.
As the season goes on, tiredness becomes chronic for all of you. The hours are long, and there's a drinking session every single night. Some reps quit and go home mid-season because they just can't hack the pace – which just increases the workload for everybody who's left.
<<link "//Continue//" "CORFU-4600 Dead sure">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One night you're leaving the hotel at around midnight, about to go home, when a chubby northern lad runs up to you. He's drunk and agitated, saying that he can't find his mate.
[[He's probably in the bar.|CORFU-4700 Dead in the water][$temp.kateSays to "checkTheBar"]]
<<link "//(Sigh)// I'll help you find him." "CORFU-4700 Dead in the water">><<set $temp.kateSays to "letsFindHim">><</link>>
<</page>><<silently>>
<<avatar-uncertain>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "checkTheBar">>\
"He's probably in the bar," you say dismissively.
"No," he slurs, "we were //in// the bar. He said he fancied a swim."
<<elseif $temp.kateSays == "letsFindHim">>\
"Okay." You sigh and rub your temples, tiredly. "Where did you see him last?"
"In the bar," he slurs. "He said he fancied a swim."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
That concerns you because part of the pool area's taped off for refurbishment, and isn't that well-lit. If this lad's mate is as drunk as he is...
You lead him out to the area. It's windy and some of the pot plants and pool furniture has blown over. There's nothing in the main pool, so you head over to the taped-off area.
"Stay back," you tell the northern lad, but he ignores you and bumbles out into the darkness alongside you.
"Is that something at the bottom of the pool?" he asks.
<<link "//Look closer//" "CORFU-4800 The body">><</link>>
<</page>><<silently>>
<<set _d10 to random(1,10)>>
<<set _daring to $kate.attributes.daring.level>>
<<if _d10 + _daring gte 6>>
<<set _daringCheckPassed to true>>
<</if>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
There //is// something big in there, but in the windy darkness it's impossible to see. It could be some trash bags that somebody has thrown in, or...you fumble in your handbag for your little flashlight, and shine it into the water.
And see //a hand.// There's a person down there!
//[[Scream for help!|CORFU-4900 Man down!][$temp.kateSays to "eek"]]//
<<if _daringCheckPassed>>\
//[Routine Daring check ''passed''] [[Jump in!|CORFU-4900 Man down!][$temp.kateSays to "helpMe"]]//
<<else>>\
<span class="greyedOut">//[Routine Daring check ''failed''] Jump in!//</span>
<</if>>\
<</page>><<silently>>
<<avatar-pain>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "helpMe">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-pain>>
<<set $avatar.background.pushUnique("/foreignAdventure/80_puddle")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_repUniformWet-" +$kate.braSize)>>
<</silently>>\
"Fuck!" Reacting immediately, you kick off your heels, then plunge into the cold pool.
Grabbing of a handful of his clothing, you try to drag him out, or at least get his head above the water.
It's only when you're struggling that you realise his friend isn't with you – you look back up to see him //just standing there// by the poolside, watching dumbly.
//"Help me!"// you shout, and he finally lurches into action, jumping into the pool with you to help drag his friend out of the water and up onto the poolside.
The body's still...and disturbingly cool. "Run inside and get help," you snap. Soon a group of people are gathered around the poolside, watching you perform CPR as you [[try to save his life|CORFU-5000 Aftermath]].
<<elseif $temp.kateSays == "eek">>\
You take a startled, involuntary step back. For a moment you can't do //anything...//then you turn back to the hotel and shout for help. (Witnesses will later describe hearing you //scream,// although that's not how you remember it.)
At first nothing happens...then a waiter comes out, then a barman and a couple of tourists. Once they realise what's happening, they drag the body out of the water, and up onto the poolside.
Nobody seems to know what to do. "I know CPR," you say, trying to remember what to do as you step forward. Soon a whole group of people are gathered around the poolside, watching you perform CPR as you [[try to save his life|CORFU-5000 Aftermath]].
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<avatar-sad>>
<</silently>>\
<<header>>\
<<page>>\
You try your hardest for what seems like forever, before an ambulance finally arrives to take over. In your heart you know it's too late, and it's no surprise when you're informed he was declared dead at the hospital.
The friends are devastated. You're too busy to be emotional – the police need to be called out, and Sun Tours need to be alerted so they can inform the family. As dawn comes up, you manage to grab a couple of hours' sleep in an unoccupied room.
<<link "//Continue//" "CORFU-5100 End of season">><</link>>
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformShoes-navyPatentHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformSkirt-navyOverTheKneePencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_sunToursUniformTop-skyBlueShirtWithRolledUpSleevesAndNavyNeckScarf-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/40_sunToursUniformBelt-navyAndSkyBlueStripedBelt")>>
<<avatar-sad>>
<</silently>>\
<<header>>\
<<page>>\
Your big boss, a gruff half-Greek half-South African named Nectarios, visits the resort the next day.
You're tired and in no mood to tiptoe around his temper, not after //this.// But he's full of praise for your handling of the situation. It's the first time you've ever heard him say anything positive about something that isn't himself, and it's a struggle not to cry right there in his office.
The other reps are the best support. You find it helpful just to drink and talk with them about it. They all offer to work extra shifts to free you up for some R&R time, but you tell them that you'd [[prefer to work|CORFU-5200 No more dramas]].
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Your busy work routine helps to keep your mind occupied. For the rest of the season, it's back to the normal dramas – excursion closures, delays, mix-ups, herding around droves of drunken Brits.
Six weeks pass. On the island, the air cools slightly after a scorching summer. You wave goodbye to one of your last groups at the airport, and get ready for a rep tradition: the [[end-of-season party|CORTUB-1000 End of season party]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformShoes-navyPatentHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformSkirt-navyOverTheKneePencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_sunToursUniformTop-skyBlueShirtWithRolledUpSleevesAndNavyNeckScarf-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/40_sunToursUniformBelt-navyAndSkyBlueStripedBelt")>>
<</silently>>\
<<header>>\
<<page>>\
Next morning you crawl out of bed, put on some makeup, and head to the airport to pick up the winter season reps.
You're shadowed for a few days by a nervy 18-year old, who reminds you of yourself when you arrived here. You do your best to prepare her as well as you can, introducing her to your contacts and teaching her some tricks of the trade.
Then, at the end of the week, you and $temp.firstFriend board an easyJet back to London. You both sleep soundly through the whole flight. Josh picks you up at Gatwick Airport. "D'you think you'll do another season?" he asks as he loads your luggage into his tiny car.
You tell him it was the experience of a lifetime...but one season was enough! You're not sure you could take another long hot summer like that, working your ass off to entertain a bunch of random tourists.
//[[Continue|UKUNI-1000 A brief return home]]//
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_skirt-pinkCrazingEffectFlippyMini")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_top-blackCroppedVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-hotPinkToeThongFlipFlops")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/corfu/sunsetAtLaGrottaVerde.jpg" 200 1000 550 0>>\
The end of season party is a tradition for reps – a last chance to drink together as a team before you leave the resort. Yours is being held at La Grotta Verde hotel, built into the lush green hills of Agios Gordos, a half-hour drive out from Corfu town.
Your whole team's there, and you meet up with some other Sun Tours teams from other resorts on the island, like Lefkimmi and Kavos.
You have a barbecue down on the golden sandy beach, where everybody from the other teams wants to hear your true account of finding the body in the pool. Two other teams had tourist deaths this season, but both by natural causes, and your colleagues want to know [[every detail|CORTUB-1100 Hot tub]] about your experience.
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/10_bikini-whiteBikiniBottoms")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/10_bikini-whiteBikiniTop-" +$kate.braSize)>>
<<addNotification "Arousal +1" "You're a little drunk! You feel flirty and playful.">>
<<kateAddArousal>>
<</silently>>\
<<header>>\
<<page>>\
Some time around midnight, you and $temp.firstFriend are relaxing in the jacuzzi with Jonny and Gaz. They're the two straight male reps in your team, and $temp.firstFriend has had a long-standing crush on ruggedly handsome Jonny, so there's something of a flirty vibe.
You keep expecting some of the other reps to show up, but for the moment it's just the four of you, in a jacuzzi under the epic starry sky.
The warm water jets and buzz from a drinking session that started much earlier than usual are a great antidote to the exhaustion your body feels at the end of a six-month repping season.
<<link "//Chat and relax.//" "CORTUB-1200 Truth or dare">><</link>>
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
The chat turns into a game of Truth or Dare. It starts innoucuously, then escalates – you learn that the guys have each had sex with more than 50 girls this season! That makes your's and $temp.firstFriend's body counts – $temp.kateBodyCount and $temp.jadesBodyCount, respectively – pale in comparison.
Comparing the numbers leads to an interesting talk about how society judges men and women differently for this, with both the boys agreeing that it's unfair. Then $temp.firstFriend breaks up the serious mood by daring Jonny to swim a length in the pool naked. He does so, to much hilarity, then puts his shorts back on and gets back into the jacuzzi.
A waiter brings out yet another tray of chilled bottles of Ionian Lager – it's been so long since you've had to pay for a drink that you don't even notice they're free, anymore – and then it's your turn.
"$kate.firstName. Truth or Dare?"
[[Truth.|CORTUB-1300 Truth]]
[[Dare.|CORTUB-1500 Dare]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
"Truth," you reply.
"Is it true," $temp.firstFriend asks, "that you once noshed off Mark Saunders //and// two of his mates?"
You nearly spit out your beer. "Who the hell told you that?"
"It's //true?"// Jade bursts out laughing. "I assumed it was bollocks!"
<<if $temp.friendsBlown == 0>>\
<<link "It //is// bollocks!" "CORTUB-1400 Kate answers the question">><</link>>
<<elseif $temp.friendsBlown == 1>>\
<<link "It's //mostly// bollocks." "CORTUB-1400 Kate answers the question">><</link>>
<<elseif $temp.friendsBlown == 2>>\
<<link "It's //partly// bollocks." "CORTUB-1400 Kate answers the question">><</link>>
<<elseif $temp.friendsBlown == 3>>\
[[He's got a big mouth.|CORTUB-1400 Kate answers the question]]
<<else>>\
(ERROR IN TEMP.FRIENDSBLOWN VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.friendsBlown == 0>>\
"It //is// bollocks!" you protest. "I know the night he's talking about. But I didn't touch him! That little shit. Did he tell you I did?"
"No, it was Tom," she says. "I knew it was bollocks."
"Hmm, I dunno," chimes in Jonny. "No smoke without fire."
"Yeah," says $temp.firstFriend thoughtfully. //"Something// must have happened. But you always said you was just friends?"
<<elseif $temp.friendsBlown == 1>>\
"Well...that's not what happened. I gave //Mark// a BJ, Tom and Josh were just...there."
"Wait, what? You always said you was just friends!"
<<elseif $temp.friendsBlown == 2>>\
"Well...him and //one// of his mates," you admit. "Tom. And Josh was there too, but I didn't touch him! Who told you?"
"Tom," she says. "You really did that? You always said you was just friends?"
<<elseif $temp.friendsBlown == 3>>\
"He's got a big mouth," you say.
"It wasn't actually him," she says, "it was Tom. But you always said you was just friends?"
<<else>>\
(ERROR IN TEMP.FRIENDSBLOWN VAR)
<</if>>\
"A toast," Gaz raises his beer in a salute. "To being friends. With $kate.firstName." $temp.firstFriend laughs so hard she snorts.
"Truth or Dare?" Jonny asks her.
"[[Dare|CORTUB-2000 Jade's dare]]," she replies immediately.
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Dare," you reply.
"Top off for the rest of the game," says Gaz immediately.
You kind of knew this was coming, honestly. You glance around, but the poolside's deserted right now.
<<link "//Take off your top.//" "CORTUB-1600 Kate gets topless">><</link>>
<</page>><<silently>>
<<set $avatar.underwear.delete("/foreignAdventure/10_bikini-whiteBikiniTop-" +$kate.braSize)>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<<addNotification "Arousal +2" "You're turned on. You wouldn't mind making out.">>
<<kateAddArousal>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
You untie your bikini top and slip it off, setting the sopping wet scrap of nylon down on the rim of the jacuzzi. "Ta da," you say, revealing your boobs.
"Nice<<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>> piercings<</if>>," says Jonny.
<<if $kate.braSize == "small">>\
<<set _jadesChest to "extra four cup sizes">>\
"Mmh," agrees Gaz. "There's something sexy about girls with small tits."
<<elseif $kate.braSize == "medium">>\
<<set _jadesChest to "extra two cup sizes">>\
"Mmh," agrees Gaz. "Nice size, too. A big handful."
<<elseif $kate.braSize == "large">>\
<<set _jadesChest to "similar">>\
"Mmh," agrees Gaz. "They're great, aren't they? She could do porn."
<</if>>\
"Absolutely," murmurs Jonny. Something about the way they're looking at you or talking about you is a turn-on, and you can feel your nipples harden right there. "Careful, mate," sniggers Jonny, "she'll have your eye out!"
"Oh, grow up," you protest, "it's just cold out of the water."
"Uh huh, sure," Gaz chuckles.
Beside you, $temp.firstFriend pretends to be casually sipping her beer and not paying much attention. But you notice her not-so-subtly arching her back, <<if $kate.braSize != "large">>presenting her extra <<if $kate.braSize == "medium">>two<<else>>five<</if>> cup sizes for comparison. //Bitch.//<<else>>accentuating her own smaller, perkier boobs as much as possible.<</if>>
"$temp.firstFriend, Truth or Dare?" asks Jonny.
"[[Dare|CORTUB-2000 Jade's dare]]," she replies instantly, eager to tear off her top and jump into your limelight.
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
"Snog $kate.firstName," says Jonny.
//"Yes!// Good one," affirms Gaz.
$temp.firstFriend looks to you, uncertainty written on her face. She shrugs slightly, wordlessly asking you the question.
//Do you wanna..?//
[[We're mates, guys, that'd be weird.|CORTUB-2100 Kate is reluctant]]
<<link "//Shrug back, uncertainly.//" "CORTUB-3000 BFF OMG">><</link>>
<</page>><<silently>>
<<avatar-uncertain>>
<</silently>>\
<<header>>\
<<page>>\
"We're best mates," you protest. "That'd be weird."
"C'mon," urges Jonny. "It's 2010, mates can snog mates."
"Yeah? How about you snog Gaz?" you retort, firing a warning shot about where this path could lead.
"Not my turn," says Jonny.
<<link "$temp.firstFriend...help me out here." "CORTUB-2200 Kate appeals to Jade">><</link>>
[[Meh, fine.|CORTUB-3000 BFF OMG]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Babe, help me out here," you appeal to $temp.firstFriend.
She glances at Jonny before she answers. "Well...it's just a game," she shrugs again, obviously wanting to impress him. "It doesn't //mean// anything."
<<link "//(Refuse to kiss)// Nope. Game's over." "CORTUB-5000 Game over">><</link>>
[[Meh, fine.|CORTUB-3000 BFF OMG]]
<</page>><<silently>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("CORTUB-2100 Kate is reluctant")>>\
"Fine," you shrug. "What the hell." $temp.firstFriend sets down her beer, and turns to face you.
<<else>>\
You shrug a little in reply. //I guess..?//
<</if>>\
You approach each other tentatively, pausing when you're very close. <<if hasVisited("CORTUB-2100 Kate is reluctant")>>She<<else>>$temp.firstFriend<</if>> reaches up and curls your hair back behind your ear.
Then...slowly...you tilt in for the kiss.
Your lips meet. It feels anti-climactic in that first moment, non-sexual, like kissing a sister.
Then, her tongue slips into your mouth, softly exploring. Your stomach flips like you just did a somersault. //Oh, fuck!// You close your eyes and [[instinctively respond|CORTUB-3100 Girl/girl]].
<</page>><<silently>>
<<set $avatar.body.delete("/teenRom/50_genericClosedEyes")>>
<<characterCreator-setEyeColour>>
<<characterCreator-setEyeShape>>
<<addNotification "Arousal +3" "Your nipples are hard, your pussy's wet, you want to fuck.">>
<<kateAddArousal>>
<</silently>>\
<<header>>\
<<page>>\
Pretty soon, it's not just a kiss – but a sloppy, hot, lip-biting, tongue-tussling makeout session with your best friend.
It goes on for a long time, but eventually comes to a natural close and you let each other go, and back away from each other. You feel a hot slick wetness between your legs, and you know it's //nothing// to do with the jacuzzi.
"Wow," you murmur.
"Phew," Jade mocks fanning her face. Her nipples strain inside her bikini like stiff little bullets.
Jonny and Gaz are just [[staring at you|CORTUB-3200 Jade makes her move]], slack-jawed.
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
"Blimey. Okay," says Jade, picking this moment to make her move on Jonny. "I need to check if I'm still straight."
She crosses towards him in the jacuzzi, untying her bikini top as she goes, tossing it aside before she pounces on him. They make out passionately, Jade swaying slightly as she grinds on his crotch under the hot bubbling water.
Gaz scoots over beside you. He clinks his beer to yours, and nods over to your friends getting it on. "You wanna, um..?"
[[I'm gonna leave you guys to it.|CORTUB-5200 Kate bails]]
<<link "Sure." "CORTUB-4000 Gaz makeout">><</link>>
<</page>><<silently>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," you shrug, and soon you're straddling Gaz in the jacuzzi, making out with him while behind your back $temp.firstFriend makes out with Jonny.
It feels so different from kissing her. His bushy beard is soft and tickly on your face. His kisses are clunkier, less sensual and emotional, more...functional.
But it still feels //good,// his stiff cock grinding into your bikini bottoms, his hands fondling your breasts non-stop. It feels good, just confusingly <<link "//different...//" "CORTUB-4100 Splat!">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("CORTUB-1600 Kate gets topless")>>\
<<set $avatar.underwear.delete("/foreignAdventure/10_bikini-whiteBikiniTop-" +$kate.braSize)>>\
Gaz slips your bikini top off, with the practised ease of a man who undresses a new girl once or twice a week. It's off almost before you know it.
<</if>>\
He's kissing you more deeply, his cock grinding against your crotch, his fingers squeezing your nipples with //just// the right pressure, when you're interrupted suddenly. Something brightly coloured hits him in the side of the head with a wet //splat.//
Jonny and $temp.firstFriend burst out laughing as he peels her bikini bottoms off his head and tosses them away. He immediately starts sliding yours down, so he can retaliate...
<<link "//Stop him!//" "CORTUB-4200 Bikini bottoms tug of war">><</link>>
<<link "//Let him.//" "CORTUB-4300 Gaz retaliates">><</link>>
<</page>><<silently>>
<<avatar-embarrassed1>>
<</silently>>\
<<header>>\
<<page>>\
You yelp and try to twist away! $temp.firstFriend and Jonny laugh and splash you, while you fight Gaz in a tug of war over your bikini bottoms.
LATER INSERT A CONTEST HERE, KATE COORD VS GAZ STRENGTH TO SEE IF SHE WINS. FOR NOW ASSUME SHE WINS.
You eventually manage to wriggle out of the jacuzzi, with a grin on your face and your modesty mostly intact. "I'm gonna go find the others," you say as you scoop up your top.
You wrap yourself in a big towel and head [[up to your room|CORTUB-5100 Hotel room]].
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/10_bikini-whiteBikiniBottoms")>>
<<avatar-sassy>>
<</silently>>\
<<header>>\
<<page>>\
You giggle and struggle – but not //too// much – as Gaz peels your bikini bottoms down your legs and off.
He flings them hard at Jonny's face, but his friend – forewarned – ducks aside. "Oh, great," you say as half your bikini flies out into the dark undergrowth. "Thanks Gaz."
The battle over due to lack of ammunition, you and $temp.firstFriend go back to your makeout sessions – naked this time. It's not long before Gaz's shorts are down and the tip of his dick is slipping <<if $kate.quirks.includes("strictCondomPolicy")>>[[between your lips|CORTUB-4350 Condom admin]].<<else>>[[into you|CORTUB-4400 Hot tub cowgirl]]<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Condom," you say, reaching down and pushing his erection aside.
"Oh, c'mon," he protests, but a moment later he's padding naked along the poolside to find his wallet.
Jonny's already inside Jade by the time Gaz slips back into the water, his dick encased in a yellow latex sheath. You straddle him again, and [[guide him into you|CORTUB-4400 Hot tub cowgirl]].
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
His cock slides up inside you, making you gasp.
Gaz isn't especially your type, but you were very turned on before he even touched you, and he fucks you with the skill and confidence of a man who's had sex with 53 different women in the past six months.
You squeeze your pussy on his cock, trying to give him something more than all those other girls. Behind you, $temp.firstFriend cries out noisily as she comes.
<<link "//Come quietly.//" "CORTUB-4500 Kate orgasm">><<set $temp.kateSays to "yeahBaby">><</link>>
<<link "//Come noisily.//" "CORTUB-4500 Kate orgasm">><<set $temp.kateSays to "YEAHBABY">><</link>>
<</page>><<silently>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>
<<page>>
<<if $temp.kateSays == "yeahBaby">>\
While $temp.firstFriend trills noisily behind you, you orgasm more quietly and intimately, your arms wrapped around Gaz as his thrusting cock makes you come.
<<elseif $temp.kateSays == "YEAHBABY">>\
Your cries harmonise with your best friend's as the boys make you both come at the same time.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
When your senses return, it feels like Gaz is really close. You redouble your efforts to make him come, bouncing on his stiff cock frantically.
Although you can't see her, you can tell from the noise in the water that $temp.firstFriend is doing the same, trying to get her man off now her orgasm's been achieved. It almost feels like you're competing.
//Make a contested Sexpert roll versus Jade; highest roller wins. (If you tie, the game will toss a coin to decide the winner.)
You'll add your <i>Beauty</i> (<<if $kate.attributes.beauty.level gte 0>>+<</if>>$kate.attributes.beauty.level) to the roll. $temp.firstFriend will add +1 to her roll.//
<div id="dice-rolled">
<<button "Roll Dice">>
<<set _randomKate to random(1,10)>>
<<set _randomRival to random(1,10)>>
<<set _dice to "1d10 @ "+_randomKate>>
<<set _bonusRival to 1>>
<<set _beauty to $kate.attributes.beauty.level>>
<<set _resultKate to _randomKate + _beauty>>
<<set _resultRival to _randomRival + _bonusRival>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
$temp.firstFriend rolled _randomRival (+ _bonusRival) = _resultRival
<<nobr>>You rolled
<div class="tooltip"> _randomKate
<span class="tooltiptext">Dice roll</span>
</div>
+
<div class="tooltip"> _beauty
<span class="tooltiptext">Beauty score</span>
</div>
+
= _resultKate<</nobr>>
<<if _resultKate gt _resultRival>>\
[[Contest won!|CORTUB-4600 Money shots][$temp.kateSays to "winner"]]\
<<elseif _resultKate lt _resultRival>>\
[[Contest lost.|CORTUB-4600 Money shots][$temp.kateSays to "loser"]]\
<<else>>\
<<set _coin to random(1,2)>>\
<<if _coin eq 2>>\
(Tied! Coin toss...won!) [[Contest won!|CORTUB-4600 Money shots][$temp.kateSays to "winner"]]\
<<else>>\
(Tied! Coin toss...lost.) [[Contest lost.|CORTUB-4600 Money shots][$temp.kateSays to "loser"]]\
<</if>>\
<</if>>\
<</replace>>
<</rollDice>>
<</button>>
</div>
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "winner">>\
Gaz's cock feels stiff and sensitive inside you. It doesn't take long, and soon it's all over. He grips your shoulders tight as he comes.
You slither off him, <<if hasVisited("CORTUB-4350 Condom admin")>>and he tosses the used condom away, out into the night. //Probably landed on my bikini,// you think.<<else>>a little concerned that you just had unprotected sex with such a player. //Oh well, too late to worry about it now.//<</if>>
You and Gaz hold hands and sip your beers, chilling out while $temp.firstFriend works to get Jonny off. After a few more moments, he manhandles her into a new position, bending her over the side of the jacuzzi and fucking her hard.
Soon his cum is trickling out of her pussy, and she giggles as she slides back into the water. "Yep, still straight," she says. "Thanks Jonny."
<<else>>\
Jade gets Jonny off first, ending things behind you in just a few thrusts. Behind your back she slithers off him, and the two of them hold hands and sip their beers while they watch you work to make Gaz come.
After a few moments he manhandles you into a new position, bending you over the side of the jacuzzi and fucking you hard.
<<if hasVisited("CORTUB-4350 Condom admin")>>Soon his fingers dig into your hips as he fills up the condom. He pulls out, and throws it away into the night. //Probably landed on my bikini,// you think as you slide back into the water.<<else>>Soon his cum is tricking out of your pussy, and you slide back into the water.<</if>>
"Well, yep, I'm still straight," giggles $temp.firstFriend. "How about you, babe?"
<</if>>\
<<link "//Chill out.//" "CORTUB-4700 Post orgasmic chill">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You drink and chat together for a while longer, enjoying the post-orgasmic chill. A while later, some of the other reps join you. It doesn't escape their notice that you and $temp.firstFriend are both naked, but nobody seems to care.
At about 3am, you and $temp.firstFriend wriggle back into your bikinis, and head up to your room to [[sleep off the party|CORFU-6000 Handover]].
<</page>><<silently>>
<<avatar-restingBitchFace>>
<</silently>>\
<<header>>\
<<page>>\
"Game's over, guys," you say flatly. "I'm gonna go find the others."
You hoist yourself up onto the side of the jacuzzi<<if hasVisited("CORTUB-1600 Kate gets topless")>>, giving the boys their last eyeful of your naked breasts as you sit there and put your top back on<</if>>. "Killjoy," Jonny boos.
"It's alright," says $temp.firstFriend, while you wrap yourself in a big towel. //"I'm// still playing. Gimme a different dare, anything you like..."
You head back up to [[your room|CORTUB-5100 Hotel room]].
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<characterCreator-unsetHair>>
<<set _path1 to "teenRom/">>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "lightbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique("/teenRom/10_longHair-longMessyWet-"+_hairColour+"-front"),
$avatar.background.pushUnique("/teenRom/90_longHair-longMessyWet-"+_hairColour+"-back")>>
<<set $avatar.background.pushUnique("/foreignAdventure/africa/20_wetTowel")>>
<<set $avatar.background.pushUnique("/foreignAdventure/africa/19_wetTowelShadow")>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<<set _katesFantasy to $kate.kinks.random()>>
<<if hasVisited("CORTUB-3000 BFF OMG")>>
<<if _katesFantasy == "exhibitionist">>
<<set _fantasise to "replay your kiss with your best friend. She's coming back to this room later; you fantasise about sleeping naked tonight, leaving the bedsheets off so she can find you like that...">>
<<elseif _katesFantasy == "submissive">>
<<set _fantasise to "replay your kiss with your best friend. You fantasise about what it would have been like if Jonny and Gaz kept daring you, making you go further and further with each other...">>
<<elseif _katesFantasy == "masochist">>
<<set _fantasise to "replay your kiss with your best friend. Jonny and Gaz were so turned on; you fantasise about the two men just ravishing you both, no conversation, just the two of you bent over the hot tub with your bikinis yanked down while the guys fuck you hard...">>
<</if>>
<<else>>
<<if _katesFantasy == "exhibitionist">>
<<set _fantasise to "fantasise about what it would have been like to kiss another girl in front of Gaz and Jonny. Not your best friend, someone safer, one of the other reps...maybe the tarty one from the Kavos team. You imagine getting to grips with her in the jacuzzi while Gaz and Jonny watch...">>
<<elseif _katesFantasy == "submissive">>
<<set _fantasise to "fantasise about what it would have been like if Gaz and Jonny //made// you make out with her. If you //had// to. You imagine having no choice but to make out with your best friend while Gaz and Jonny watched...">>
<<elseif _katesFantasy == "masochist">>
<<set _fantasise to "fantasise about what it would have been like if they hadn't //let// you leave. You imagine Gaz and Jonny pulling you back into the pool, ripping off your bikini, calling you a cocktease, your best friend just watching while they take turns on you...">>
<</if>>
<</if>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>\
<<page>>\
Back in your room, you peel off your sopping wet bikini and jump under the shower.
You pull the showerhead down from the wall, set it in pulse mode, and aim it between your thighs.
The sensation's amazing, and between pulses you _fantasise
It doesn't take long, and soon you feel the familiar sensation building up. Using your free hand you caress your clit, working the orgasm to the surface.
It hits you suddenly, a powerful pulsing orgasm that buckles your legs and makes you nearly slip onto the tiles. Immediately you feel all the tension [[slip away|CORTUB-5900 Jade returns]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I think I'm gonna leave you guys to it," you say.
You hoist yourself up onto the side of the jacuzzi<<if hasVisited("CORTUB-1600 Kate gets topless")>>, put your top back on<</if>> and head back [[into the hotel|CORTUB-5100 Hotel room]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("commando")>>
<<set $temp.kateIsWearing to["nightie"]>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<else>>
<<set $temp.kateIsWearing to["top", "knickers"]>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<</if>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
You're asleep when Jade slips into the room, //much// later, and crashes out.
Gossip reaches you in the next few days that Jonny and Gaz spitroasted her in the jacuzzi after you left.
<<link "//Continue//" "CORFU-6000 Handover">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-hotPinkToeThongFlipFlops")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/20_bikini-greenHalterTiePlungeBikiniTop-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shorts-midBlueDenimDaisyDukes")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_top-orangeCroppedExoticVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/10_beachBagStrap")>>
<<set $avatar.background.pushUnique("/foreignAdventure/80_beachBagSlung")>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
Tourists like renting mopeds, even though they fall off them a lot. It's customary for the reps to hold a secret sweepstake after a new transfer, betting on which guest will come off a hire bike first.
<<if hasVisited("UKYOUTH-11200 Pizza delivery job")>>\
As an ex-pizza delivery girl in London, though, you're an expert on a moped. You use them all the time to get around Corfu.
<<else>>\
You were a little nervous about them at first, but after trying one for the first time, you were hooked – buzzing about on a moped is the best way to get around Corfu.
<</if>>\
The hire shops just lend you a bike whenever you need one, no charge – in fact, later in the season, they'll often slip you some Euros in an envelope marked <<= $kate.firstName.toUpperCase()>>, commission for the tourists you send their way.
<<link "//Borrow a moped//" "CORTOP-1100 Borrow a moped">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's your day off. Jade's working, and you're a little hung over, so you've decided to spend today just chilling out on the beach.
You don't want to be bothered by guests, so you borrow a moped and [[ride out to Kontogialos Beach|CORTOP-1200 Moped ride]]. It's only about ten miles away from Corfu town, but it's in a secluded bay and it won't be overrun by tourists.
<</page>><<silently>>
<<set $header.line1 to "''KONTOGIALOS BAY,'' CORFU">>
<</silently>>\
<<header>>\
<<page>>\
You enjoy a half-hour ride over the hot rugged island, buzzing through dramatic landscapes and sleepy villages. The fresh air adrenaline buzz clears away your hangover in the first couple of miles.
<<image "/locationPhotos/corfu/viewOverBay.jpg" 200 1000 600 0>>\
You park up on a scratchy clifftop above the beach, and spend a moment just gazing out over the Ionian Sea, watching white wavetips crash in a crystal blue ocean. //This is the life,// you muse, not missing London one bit.
Then you carry your stuff down the steep rugged path [[to the beach|CORTOP-1300 Beach setup]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shorts-midBlueDenimDaisyDukesOpenGreenBikiniBottoms")>>
<<set $avatar.foreground.delete("/foreignAdventure/10_beachBagStrap")>>
<<set $avatar.background.delete("/foreignAdventure/80_beachBagSlung")>>
<<set $avatar.clothing.delete("/foreignAdventure/20_shorts-midBlueDenimDaisyDukes")>>
<<set $avatar.background.push("/foreignAdventure/20_beachStuffUnpacked")>>
<<set $avatar.background.push("/foreignAdventure/19_beachStuffUnpackedShadow")>>
<<set $header.line1 to "''KONTOGIALOS BEACH,'' CORFU">>
<<if $kate.quirks.includes("andyMcNabFan")>>
<<set _readingMaterial to "the latest McNab novel">>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set _readingMaterial to "Dame Kelly Holmes's autobiography, //Black & White//">>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set _readingMaterial to "//A Feast for Crows// by George R. R. Martin">>
<<elseif $kate.quirks.includes("alphaFemale")>>
<<set _readingMaterial to "a copy of //Cosmo//">>
<<elseif $kate.quirks.includes("rockChick")>>
<<set _readingMaterial to "a kiss-and-tell backstage biography by a roadie for Mötley Crüe in the 80s">>
<<else>>
<<set _readingMaterial to "(ERROR IN READINGMATERIAL TEMP VAR)">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Down on the beach it's pretty quiet – a few locals and tourists, nobody you recognise.
<<image "/locationPhotos/corfu/beach.jpg" 200 1000 550 0>>\
You find a quiet spot to lay out your beach towel, then unpack your gear: suntan lotion, water bottle, _readingMaterial.
<<link "//Strip down to your bikini//" "CORTOP-1400 Beach bikini strip">><</link>>
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_bikini-greenFrillSidedBikiniBottoms")>>
<<set $avatar.clothing.delete("/foreignAdventure/20_shorts-midBlueDenimDaisyDukesOpenGreenBikiniBottoms")>>
<<set $avatar.clothing.delete("/foreignAdventure/20_top-orangeCroppedExoticVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.clothing.delete("/foreignAdventure/20_shoes-hotPinkToeThongFlipFlops")>>
<</silently>>\
<<header>>\
<<page>>\
You strip down to your bikini, and languidly oil yourself up with suntan lotion. <<if $kate.hairColour == "Ginger">>As a natural redhead, you'd die without this stuff.<</if>>
It's a hot day, but there's a lovely cooling breeze coming in off the ocean. //Perfect.//
<<link "//Sunbathe.//" "CORTOP-1500 Sunbathe">><</link>>
<</page>><<silently>>
<<avatar-asleep>>
<</silently>>\
<<header>>\
<<page>>\
You luxuriate in the sun's rays for a half hour or so, sometimes reading your book, sometimes wading out into the sea to cool off.
You can feel the stress caused by six long days of running around after gaggles of guests ebbing out of you, like an almost physical sensation.
A few more tourists have arrived, but the little beach is still quiet. Now's a good time to even up your tan.
<<link "//Go topless.//" "CORTOP-1600 Going topless">><</link>>
<<link "//Keep your top on.//" "CORTOP-1700 Sunbathing">><</link>>
<</page>><<silently>>
<<set $avatar.underwear.delete("/foreignAdventure/20_bikini-greenHalterTiePlungeBikiniTop-" +$kate.braSize)>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<</silently>>\
<<header>>\
<<page>>\
You take a subtle glance around, then sit up and untie your bikini top.
$temp.firstFriend says going topless feels like taking off a plaster, and you know what she means; freeing your breasts from a wet bikini, and letting them feel the sun and the breeze, feels incredibly natural and liberating.
You tuck your top away in your bag, apply some lotion to your bare breasts, then lay back and [[relax in the sun|CORTOP-1700 Sunbathing]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You read, swim, and bask in the glorious sunshine. It's so nice to have a day totally to yourself, away from all the guests and the other reps.
More tourists arrive, including a couple of hunky surfers, who pretend not to check you out as they carry their boards past you.
You pretend not to notice, but suck in your stomach and arch out your boobs as they pass. //Eat your hearts out, boys.//
Soon they're out in the ocean, picking up waves, and you go back to [[your book.|CORTOP-1800 Title Card]]
<</page>><<page>>\
[[SOME TIME LATER...|CORTOP-2000 Recognised!]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-rogerMoore>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.firstName?" You glance up at the voice approaching – and see four vaguely familiar faces break out into friendly grins. "Ah, we //thought// it was you!"
Propping yourself up on your elbows, you recognise Gethin and three of his mates. They're part of a larger group of Welsh boys who arrived yesterday, here on a lads holiday, now carrying beach bags and rented surfboards.
You ran their welcome meeting at the hotel, and sold them a bar crawl excursion, some golf and a booze cruise. You were wearing quite a lot more when you did that, of course!
[[Um...hi!|CORTOP-2100 Hello boys!]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-big>>
<<avatar-expr-nose-scrunch>>
<<avatar-expr-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...hi!" you say, feeling a bit startled.
"Mind if we join you?" Gethin asks, in his sing-song Welsh accent.
[[Uh, sure...|CORTOP-2200 The Welshies join][$temp.kateSays to "sure"]]
[[Actually, it's my day off...|CORTOP-2200 The Welshies join][$temp.kateSays to "dayOff"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "sure">>\
"Er...sure!" you say.
<<elseif $temp.kateSays == "dayOff">>\
"Actually, it's my day off..." you explain.
"Ah, that's why you're out of uniform!" Gethin chuckles, not taking the hint.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
The Welshies set down their bags and boards around you and start unpacking. While doing so they ask you a bunch of questions...//is there a bar? Are there toilets? I saw an ice cream van, d'you want an ice cream?//
It looks like you're stuck with them.
<<if hasVisited("CORTOP-1600 Going topless")>>\
<<link "//Put your top back on.//" "CORTOP-2200 Kate covers up">><</link>>
<<link "//Stay topless.//" "CORTOP-2300 Kate stays topless">><</link>>
<<else>>\
<<link "//Help with their enquiries.//" "CORTOP-2300 Kate stays topless">><</link>>
<</if>>\
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/20_bikini-greenHalterTiePlungeBikiniTop-" +$kate.braSize)>>
<<characterCreator-setBreasts>>
<<update-avatar-tattoo-piercing>>
<<avatar-normal>>
<<avatar-expr-eyebrows-rogerMoore>>
<<avatar-expr-blush>>
<</silently>>\
<<header>>\
<<page>>\
As they unpack, you rummage around in your bag for your bikini top, and slip it back on as fast as you can.
"Ah, don't dress up on our account!" laughs Gethin. "We don't mind, do we boys?"
There's a chorus of //no, not at all//s, but you decide to stay covered up for the [[rest of the afternoon|CORTOP-3000 Drinks?]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You answer their questions as best you can, even though this part of the island is a little bit outside your normal patch.
Sitting around <<if hasVisited("CORTOP-1600 Going topless")>>half-naked<<else>>in just your bikini<</if>> with a bunch of boys you just met yesterday – and supposedly have some authority over – feels a little weird. But they don't make a big deal out of it, so you just play it cool.
<<if hasVisited("CORTOP-1600 Going topless")>>\
Rhodri brings you an ice cream, and you watch their bags while they paddle out into the sea and try to [[catch some waves|CORTOP-2400 Take some pictures?]].
<<else>>\
Rhodri brings you an ice cream, and you watch their bags while they paddle out into the sea and try to catch some waves. You end up hanging with them for the [[rest of the day|CORTOP-3000 Drinks?]].
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
During a break, Gethin asks if you can take some photos of them surfing and with their boards, for their friends back home.
He shows you how to take photos on his T-Mobile smartphone, and you wade out waist-deep into the water to catch a bunch of photos of the boys out on their boards on the low waves.
<<link "//Show Gethin the pictures.//" "CORTOP-2500 Kate shows the photos">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Back on the beach, Gethin stands beside you and watches while you click through the snaps you took. Some of them are pretty good!
"Nice," he says. He takes his phone back, then passes it immediately to Rhodri. "Rhod, get a picture of me with $kate.firstName."
[[You want a photo with me?|CORTOP-2600 You want a photo?]]
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Pose with Gethin.|CORTOP-2800 Kate poses with Gethin]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Pose with Gethin.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"You want a photo with me?" you ask.
"Yeah, yeah! Everybody back home will want to see our pretty holiday rep!"
//Yeah, topless!// you think cynically, but that part goes unspoken.
[[No photos.|CORTOP-2700 No photos]]
<<if $kate.kinks.includes("exhibitionist") or $kate.attributes.agreeableness.level gt 0>>\
//[Exhibitionist or Agreeable] [[Pose with Gethin.|CORTOP-2800 Kate poses with Gethin]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist or Agreeable] Pose with Gethin.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"No photos," you declare, not dumb enough to fall for that one.
"Damn. Lucky I've got a photographic memory," quips Gethin.
//"Byddwch yn ei ddefnyddio heno, Geth?"// asks Rhodri.
"I think we all will," Gethin laughs, then translates for you. "Sorry. He asked if I'd be using my 'photographic memory' tonight."
"Way to give the game away, Geth."
"She probably thought you said something //terrible,// Rhod, you tit. Speak English."
<<link "//Continue//" "CORTOP-3000 Drinks?">><</link>>
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
"Say cheese!" says Rhodri. You smile for the camera, an arm around Gethin's waist. //Click! Click! Click!//
Everybody wants one after that, of course. You spend the next five minutes smiling for various phone cameras, posing with various Welsh boys. //Click! Click! Click! Click! Click!// Everybody gets a turn.
You're pretty sure those photos will be doing the rounds among the rest of their group [[later|CORTOP-3000 Drinks?]].
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Despite coming here to get //away// from the guests, the Welsh boys are actually pleasant company. Watching them out catching waves is quite impressive, and Lewys teaches you how to pronounce the longest place name in Wales: Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch (which means //St. Mary's Church in the Hollow of the White Hazel near a Rapid Whirlpool and the Church of St Tysilio of the Red Cave).//
"We just call it Llanfair P.G., though," he admits.
As the sun starts to set and the air starts to cool, they start packing up their stuff. "We're going drinking," Gethin says, "wanna come?"
[[Sure!|CORTOP-3300 Drinking with the Welshies]]
[[Thanks but no.|CORTOP 3100 Kate bails]]
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-hotPinkToeThongFlipFlops")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/20_bikini-greenHalterTiePlungeBikiniTop-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shorts-midBlueDenimDaisyDukes")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/50_shirt-whiteVNeckThreeQuarterLengthSleevedBeachTop-" +$kate.braSize)>>
<<set $header.line1 to "''KONTOGIALOS BAY,'' CORFU">>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you say, "but I've gotta get my moped back."
They help you carry your bag back up the cliff, then shout cheery farewells as you buzz away into the warm evening. //Nice guys,// you think as you ride back across the island, but you're glad you're not on a pub crawl with them. You've got to [[work tomorrow|CORTOP-3200 Morning after]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformShoes-navyPatentHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformSkirt-navyOverTheKneePencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_sunToursUniformTop-skyBlueShirtWithRolledUpSleevesAndNavyNeckScarf-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/40_sunToursUniformBelt-navyAndSkyBlueStripedBelt")>>
<</silently>>\
<<header>>\
<<page>>\
Next morning, Gethin and his friends look like zombies at the breakfast buffet. But they perk up when they see you, a little Welsh chorus of "Hi <<= $kate.firstName>>s" ringing out as you pass. <<if hasVisited("CORTOP-2800 Kate poses with Gethin")>>
Some of the keenest greetings come from the boys who weren't on the beach yesterday //– yeah, those pics have done the rounds,// you think.<</if>>
[[Hi guys, enjoy the golf.|CORTOP-3250 Enjoy the golf]]
<</page>><<silently>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Morning boys," you beam as you walk past. "Enjoy the golf."
<<if hasVisited("CORTOP-3800 Morning after")>>\
There's a cheery round of //Bye <<= $kate.firstName>>s,// then one of them spoils it. "Bet you a tenner she took it up the arse," he sniggers when you're not //quite// out of earshot.
<<elseif hasVisited("CORTOP-3300 Drinking with the Welshies")>>\
There's a cheery round of //Bye <<= $kate.firstName>>s,// then one of them spoils it. "Can't believe none of you fucked that slag," he sniggers when you're not //quite// out of earshot.
<<else>>\
There's a cheery round of //Bye <<= $kate.firstName>>s,// then one of them spoils it. "Wouldn't mind sticking my wood in //that,"// he sniggers when you're not //quite// out of earshot.
<</if>>\
//Ugh, what a dickhead.// You keep walking, pretending you didn't hear.
<<link "//Continue//" "CORFU-4000 Getting the hang">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shoes-hotPinkToeThongFlipFlops")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/20_bikini-greenHalterTiePlungeBikiniTop-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shorts-midBlueDenimDaisyDukes")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/50_shirt-whiteVNeckThreeQuarterLengthSleevedBeachTop-" +$kate.braSize)>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/10_beachBagStrap")>>
<<set $avatar.background.pushUnique("/foreignAdventure/80_beachBagSlung")>>
<<set $header.line1 to "''ALEXANDROS TAVERNA,'' CORFU">>
<<set $temp.randomWelshie to either("Gethin", "Rhodri", "Lewys")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/corfu/gyros.jpg" 300 1000 600 0>>\
Up in the garden of a clifftop taverna, you and your new Welsh friends wolf down freshly-cooked gyros (which are like donor kebabs, but much more delicious: with healthier, tastier meat, wrapped in fluffier, fresher bread). You wash them down with ice-cold Corfu Lagers, chatting and watching a dazzling pink and purple ocean sunset.
Then the boys call a taxi, and you ride back with them into Corfu town for a night of drinking, karaoke, and dancing on tables! You wisely avoid joining in with their rounds of raki and ouzo shots – "I've gotta work in the morning," you explain over and over again – but by midnight you're drunk anyway and it's time to go home.
<<if $kate.quirks.includes("Easy")>>\
<span class="greyedOut">//[Not Easy]// Go home alone</span>
<<else>>\
<<link "//Go home alone.//" "CORTOP-3400 Home alone">><</link>>
<</if>>\
<<link "//Go home with $temp.randomWelshie.//" "CORTOP-3500 Bringing back company">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''YOUR APARTMENT,'' CORFU">>
<</silently>>\
<<header>>\
<<page>>\
You slip away from the Welshies and walk back to your apartment. Just like the last six days, you spent the day with guests and ended up drunk! So much for a restful day off!
You're looking forward to a cup of tea and a late-night chat with Jade about your day. But the sex noises emanating from her room tell you that your catchup will have to wait until breakfast. As you slip into bed, you wonder how many more hours the Welshies will be [[out drinking|CORTOP-3200 Morning after]] for.
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_shorts-midBlueDenimDaisyDukesOpenGreenBikiniBottoms")>>
<<set $avatar.clothing.delete("/foreignAdventure/20_shorts-midBlueDenimDaisyDukes")>>
<<avatar-horny>>
<<set $header.line1 to "''YOUR APARTMENT,'' CORFU">>
<</silently>>\
<<header>>\
<<page>>\
You and $temp.randomWelshie slip away from the others, and walk hand-in-hand back to your apartment, stopping only for the occasional drunken makeout session with his tongue in your mouth and his hand down the front of your daisy dukes.
You sneak inside, giggling and trying not to wake Jade – but the sex noises emanating from her room tell you that you don't need to bother.
[[My room's this way.|CORTOP-3600 Welshie hookup]]
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
In your room you and $temp.randomWelshie make out and peel off each other's clothes.
As you're giving him a drunken BJ he pulls out his phone, obviously intending to take pictures.
[[No photos!|CORTOP-3600 No photos!]]
<<link "//Be photographed.//" "CORTOP-3700 Be photographed">><</link>>
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
"Mmh!" you hold a hand up to block the camera. He snaps a couple shots of your outstretched palm anyway; you //ever so gently// apply some teeth to the cock in your mouth, and $temp.randomWelshie gets the message.
His phone goes away, then a few moments later you're having a drunken but very enjoyable fuck in the missionary position.
Later you fall soundly asleep in his arms...only to be woken, much too soon, by the harsh buzz of your [[alarm clock|CORTOP-3800 Morning after]].
<</page>><<silently>>
<<avatar-bjFace>>
<</silently>>\
<<header>>\
<<page>>\
$temp.randomWelshie's phone clicks and flashes every few seconds, bathing you in white light as he creates a permanent record of your blowjob technique.
Afterwards he fucks you in three positions – getting plenty of photos of that, too – culminating in a shot of you gazing up at the camera with his sperm blasted across your lips and cheek.
Later you fall soundly asleep in his arms...only to be woken, much too soon, by the harsh buzz of your [[alarm clock|CORTOP-3800 Morning after]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformShoes-navyPatentHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_sunToursUniformSkirt-navyOverTheKneePencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_sunToursUniformTop-skyBlueShirtWithRolledUpSleevesAndNavyNeckScarf-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/40_sunToursUniformBelt-navyAndSkyBlueStripedBelt")>>
<<set $header.line1 to "''YOUR APARTMENT,'' CORFU">>
<</silently>>\
<<header>>\
<<page>>\
$temp.randomWelshie watches groggily as you crawl out of bed, and put on some makeup and your uniform. You kiss him on the head and leave him there as you head out for a day's work.
His friends look like zombies at the breakfast buffet. But they perk up when they see you, a little Welsh chorus of "Hi <<= $kate.firstName>>s" ringing out as you pass. <<if hasVisited("CORTOP-2800 Kate poses with Gethin")>>
Some of the keenest greetings come from the boys who weren't on the beach yesterday <<if hasVisited("CORTOP-3700 Be photographed")>>//- well, the topless pics have done the rounds already,//<<else>>//– yeah, those pics have done the rounds,//<</if>> you think.<</if>>
[[Hi guys, enjoy the golf.|CORTOP-3250 Enjoy the golf]]
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-expr-eyebrows-worried>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalSocks-darkGreyToWhiteFadeCottonTrainerSocksWithWhiteCuffs")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalJeans-lightBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalTop-blackDGScriptFontSkinnyTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-pinkAndWhiteStripeAdidasTrainers")>>
<</silently>>\
<<header>>\
<<page>>\
You'll be away from home for nearly a year! And you're not the only one. $temp.firstFriend's going to a girls' finishing school in France, and Tom, Mark and Josh are heading for university. (Tom finds it //hilarious// that they're starting uni, and you and $temp.firstFriend are being packed off learn table manners instead.) Your hangout sessions take on a somewhat melancholy vibe: it feels like the end of an era for you all.
Your mum is uncharacteristically tearful for your last week in London, which you find weird considering she seemed to be the prime mover in this whole thing. You seem to spend most of your time reassuring her that it'll be okay, rather than the other way around.
She looks totally distraught as she waves you off at the airport, which fills you with trepidation as you walk, alone, [[through the departure gates|MONTREUX-1100 Arrival in Switzerland]].<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-normal>>
<<set $avatar.background.pushUnique("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.pushUnique("/foreignAdventure/30_airportLuggageElite")>>
<<set $avatar.background.pushUnique("/foreignAdventure/29_airportLuggageEliteShadow")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalJeans-lightBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalTop-brownFrillySpaghettiStrapVest-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-brownSuedeStilettoStrappySandals")>>
<<set $header.line1 to "''MONTREUX,'' SWITZERLAND">>
<</silently>>\
<<header>>\
<<page>>\
You fly British Airways alone to Geneva Airport, where you're met by a chauffeur holding up a sign reading <<= $kate.firstName.toUpperCase()>> <<= $kate.surname.toUpperCase()>>. He helps you load your luggage into a slate grey Mercedes, and you set off for Montreux.
<<image "/locationPhotos/montreux/lakeGenevaDrive.jpg" 75 1000 300 0>>\
He takes you via the scenic route, a long highway drive around the French shore of Lake Geneva. You've seen it on a map, of course, but up close you realise "lake" doesn't do it justice: it's more like a sea. You gaze out in wonder at hundreds of miles of deep crystal blue water.
After a 90-minute drive through rolling Alpine countryside, you arrive in the [[mountain resort|MONTREUX-1200 Arrival in Montreux]] that will be your home for the next year.
<</page>><<silently>>
<<set $avatar.background.delete("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.delete("/foreignAdventure/30_airportLuggageElite")>>
<<set $avatar.background.delete("/foreignAdventure/29_airportLuggageEliteShadow")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/montreux/montreuxPanorama.jpg" 50 1000 250 0>>\
Sat on the far eastern tip of Lake Geneva, nestled between two Swiss mountain ranges, is the pretty little resort town of Montreux.
Artists of all kinds have been drawn here for centuries: Byron, Shelley, Tolstoy, Hans Christian Andersen, Stravinsky and Nabokov have all lived here. More recently, so did David Bowie and Freddie Mercury. <<if $kate.quirks.includes("rockChick")>>And Deep Purple's //Smoke on the Water// was written here: //"Well we all went down to Montreux/On the Lake Geneva Shoreline..."//<</if>>
The picturesque winding streets, lined with cafés and shops and pastel-painted houses, cry out to be explored. You'll be staying on the Surval school campus itself, a [[grand converted hotel|MONTREUX-1300 Surval campus]] up on a steep hillside.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/montreux/survalCampusFull.jpg" 150 1000 600 0>>\
It's a beautiful setting, with stunning views of the lake and the mountains from wherever you stand. You meet the principal, who gives you a tour around the place, ending at your dorm room.
Your room has a balcony with a magnificent view out over Lake Geneva. There's something calming about being surrounded by such spectacular natural beauty; sipping a coffee on the balcony, watching the clouds gently drift over the mountain tops on the far shore of the lake, becomes your favourite way to start the day.
You'll be sharing this room with [[another girl|MONTREUX-1400 Meeting Roksana]], but you've arrived two days ahead of her. That gives you the chance to settle in and pick the bed you want before she gets here.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-niceToMeetYou>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalUniformSocks-whiteKneeHighCotton")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers")>>
<<if $kate.eyeColour == "blue">>
<<set _paleBlue to "baltic grey">>
<<else>>
<<set _paleBlue to "pale blue">>
<</if>>
<<if $kate.hairColour == "blonde">>
<<set _platinumBlonde to "jet black">>
<<else>>
<<set _platinumBlonde to "platinum blonde">>
<</if>>
<<if $kate.attributes.extraversion.level lt 0>>
<<set _several to "a few">>
<<elseif $kate.attributes.extraversion.level == 0>>
<<set _several to "several">>
<<else>>
<<set _several to "many">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Roksana Ilyina Fyodorova is a slavic beauty with _paleBlue eyes, _platinumBlonde hair, and cheekbones that could cut paper.
The eldest daughter of a Russian energy tycoon, she's so nervous when she meets you that her voice cracks when she introduces herself. You help her unpack, then show her around the grounds.
When the nerves subside and she comes out of her shell, you come to know her as bright and hilariously funny. She's one of _several new friends you'll make during your year here, [[living and studying|MONTREUX-1500 School]] with clever, pretty girls from all over the world.
<</page>><<silently>>
<<avatar-normal>>
<<awardXP charmer 500>>
<</silently>>\
<<header>>\
<<page>>\
You get to pick and choose your academic subjects, and chop and change them through the year as you like. It's surprising how much easier it is to learn when you're not competing with boys for the teacher's attention.
The topics you can't skip are the "finishing school" ones. Every Survalienne attends hours and hours of classes like //Etiquette & Savoir-vivre, Event Management// (how to throw parties), //International Relations// (about manners, not politics), //Fashion & Style Analysis// and //Makeup & Beauty.//
That said, these topics are taught from a modern, career-focused perspective. In Makeup & Beauty you learn first about the impact that wearing makeup to the office has on lifetime earnings, before you move on to experimenting with designer French lipsticks.
<<link "//Continue//" "MONTREUX-1510 Languages">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The school has a strong international outlook, and every Survalienne leaves speaking fluent English and French. Since you're a native English speaker and you have a GCSE in French, you're required to pick a third language.
Roksana convinces you to choose Arabic, so you can help each other learn it: she wants to work in her father's energy firm, and maybe even lead it one day, and she fancies that speaking Arabic will help her when it comes to negotiating with sheiks and emirs.
<<link "//Continue//" "MONTREUX-1600 Sport">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalSocks-darkToLightKhakiFadeCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/10_survalLeggings-blackAndYellowStripeCroppedLycraLeggings")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalTop-yellowAndBlackCottonFlaredVest-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-whiteAndBlackStripeAdidasTrainers")>>
<<first>>
<<addNotification "Green links" "Click them for a location photo!">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("sportsStar")>>Thankfully, there's<<else>>There's<</if>> plenty of sport available. On campus there are dance, tennis, yoga and gym sessions every day; and Survaliennes are often seen hiking, running and horse riding along the trails around it.
You take regular trips up the mountain for <span class="imageLink"><<link "ski and snowboard lessons">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/montreux/skiChick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and during the balmy summer season you can <span class="imageLink"><<link "boat and waterski">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/montreux/jetSkiChick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> out on the lake.
The school minibus regularly runs down to Montreux. You get to know the town well, enjoying strolls along the promenade, sipping hot chocolate in a street café, or shopping in the Riviera. In winter, the lakeside promenade becomes one of the <span class="imageLink"><<link "prettiest Christmas markets in Europe">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/montreux/christmasMarket.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. You load up on amazing gifts for everybody back home.
There's technically a curfew, but Montreux is just a 20-minute walk away, so it's easy for senior girls to [[slip out after dark|MONTREUX-1700 Nightlife]] for access to alcohol, music and hot European boys.
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-satisfied>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalDress-blackVelvetBodyconWIthSpaghettiStrapHalterneck-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-blackPatentHeels")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/montreux/montreuxNight.jpg" 150 1000 375 0>>\
Montreux's a peaceful town for most of the year, but it does have a few expensive bars and nightclubs – and a casino! – to entertain youngsters, tourists, and senior Survaliennes ignoring their curfew.
Most weekends, you, Roksana, and a few of the other seniors glam up and head down for cocktails at Funky Claude's or Vinoteca, going on to dance the night away at Black Pearl or Millesime.
For some girls, Surval's their first experience away from overbearing, protective families – those girls are the ones who party hardest, and are most often spotted doing the "walk of shame" back into the school grounds rocking last night's party dress and tousled, just-been-fucked hair.
But it's more normal to flirt and party in the town, having just the occasional fling or gap year romance.
When it comes to men, what's your reputation in your friendship group?
<<if $kate.quirks.includes("easy")>>\
//[Easy]// <<link "//The slut.//" "MONTREUX-1800 Boys, boys, boys">><<set $temp.kateSays to "easy">><</link>>
<<else>>\
<span class="greyedOut">//[Easy] The slut.//</span>
<</if>>\
<<link "//Just one of the girls.//" "MONTREUX-1800 Boys, boys, boys">><<set $temp.kateSays to "normal">><</link>>
<<if $kate.quirks.includes("picky")>>\
//[Picky]// <<link "//The ice queen.//" "MONTREUX-1800 Boys, boys, boys">><<set $temp.kateSays to "picky">><</link>>
<<else>>\
<span class="greyedOut">//[Picky] The ice queen.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "easy">>\
Most of your friends will roll one 6-sided die (1D6) to see how many sexual partners they have in Switzerland. You'll roll 2D8, because you're //easy.//
<<elseif $temp.kateSays == "normal">>\
Like most of your friends, you'll roll one 6-sided die (1D6) to see how many sexual partners you have in Switzerland.
<<elseif $temp.kateSays == "picky">>\
Most of your friends will roll one 6-sided die (1D6) to see how many sexual partners they have in Switzerland. You'll roll 1D4, because you're more //picky// than them.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<div id="dice-rolled">
<<button "Roll Dice">>
<<if $temp.kateSays == "easy">>
<<set _random1 to random(1,8)>>
<<set _random2 to random(1,8)>>
<<set _dice to "1d8 + 1d8 @ "+_random1 +" "+_random2>>
<<set $temp.montreuxBodyCount to _random1 + _random2>>
<<elseif $temp.kateSays == "normal">>
<<set _random to random(1,6)>>
<<set _dice to "1d6 @ "+_random>>
<<set $temp.montreuxBodyCount to _random>>
<<elseif $temp.kateSays == "picky">>
<<set _random to random(1,4)>>
<<set _dice to "1d4 @ "+_random>>
<<set $temp.montreuxBodyCount to _random>>
<<else>>
(ERROR IN TEMP.KATESAYS VAR)
<</if>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
<<link "Next." "MONTREUX-1900 Body count">>
<<set $temp.kateSucceeded to true>>
<</link>>
<</replace>>
<</rollDice>>
<</button>>
</div>\
<</page>><<silently>>
<<set _sexpertXP to $temp.montreuxBodyCount * 100>>
<<awardXP sexpert _sexpertXP>>
<</silently>>\
<<header>>\
<<page>>\
You have $temp.montreuxBodyCount new partner<<if $temp.montreuxBodyCount gt 1>>s<</if>> in Montreux. <<if $temp.montreuxBodyCount lte 4>>That's about the same as most of your friends.<<else>>Some of the other girls think you're a a bit of a slut, but Roksy says they're just jealous.<</if>> You gained _sexpertXP experience points in the Sexpert skill.
In this version, your "body count" is just a number, but in future versions a short bio of each sexual encounter will be published on your Character Sheet.
<<link "//Continue//" "PROVOC-1000 Knicker envy">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalUniformSocks-whiteKneeHighCotton")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers")>>
<<avatar-normal>>
<<if $kate.quirks.includes("single mum")>>
<<set _dad to "uncle">>
<<else>>
<<set _dad to "dad">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Months roll slowly past. Your lifestyle's nice here, but you still miss home – it's a treat when family members fly out to visit (although your _dad perving over Roksana through an entire seven-course dinner at La Bellevue was a display you could seriously have done without).
The other girls are mostly nice – with the occasional bitchy feud that you'd expect out of a group of strong-willed teen girls. You do find yourself missing the laid-back, masculine camaraderie you got from Tom, Mark and Josh; you enjoy catching up with them on Facetime when you can.
<<link "//Continue//" "MONTREUX-2400 Charity work">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
All Survaliennes are being prepared for higher education. In your academic subjects, your tutors are constantly encouraging you to study in a "university style", and each girl gets lots of help and advice on how to craft her application forms and personal statements.
Oxford and Cambridge ("Oxbridge") are the UK's two most prestigious universities – among the most respected educational institutions in the world. Entry is fiercely competitive, but the principal encourages you to [[go for it|MONTREUX-2200 Uni application]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You carefully craft your application and personal statements to Oxford and Cambridge (and also some others as a backup).
Selling yourself feels hard, but the Surval faculty help you get everything just right, including a personal letter of recommendation from the principal.
<<silently>>
<<set _diceModifier to 0>>
<<if $kate.quirks.includes("elite")>>
<<set _diceModifier += 2>>
<<elseif $kate.quirks.includes("workingClass")>>
<<set _diceModifier -= 2>>
<</if>>
<</silently>>\
//Roll a D10 to see which university you're accepted at. The higher your roll, the more prestigious the university!
DEVNOTE this dice roll needs mods to take into account social class, grades, attributes and personal accomplishments (e.g. winning battle of the bands) but for now it's a straight D10. 1-5 = Cardiff, 6-9 = Durham, 10+ Magdalen College Oxford//
<div id="dice-rolled">
<<button "Apply to university!">>
<<set _random to random(1,10)>>
<<set _dice to "1d10 @ "+_random>>
<<set _result to _random>>
<<rollDice _dice>>
<<replace '#dice-rolled'>><<nobr>>You rolled
<div class="tooltip">_random
<span class="tooltiptext">Dice roll</span>
</div>
<</nobr>>
<<if _result gte 6>>\
<<set $kate.uni to {},
$kate.uni.name to "Oxford University",
$kate.uni.shortName to "Oxford">>
<<else>>\
<<set $kate.uni to {},
$kate.uni.name to "Durham University",
$kate.uni.shortName to "Durham">>
<</if>>\
<<link "//Continue//" "MONTREUX-2300 Uni acceptance">><</link>>
<</replace>>
<</rollDice>>
<</button>>
</div>\
<</page>><<silently>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.shortName == "Oxford">>\
You're thrilled when an acceptance letter comes back from Magdalen College. You're going to Oxford!<</if>>
<<elseif $kate.uni.shortName == "Durham">>\
You get rejection letters from Oxford and Cambridge. But Durham offers you an unconditional place! It's not Oxbridge...but it's pretty damn close.
<</if>>\
<<link "//Continue//" "MONTREUX-2400 Charity work">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalSocks-blackCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalTrousers-khakiCapriCargoTrousers")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalTop-lightGreyFlaredTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-greenHikingShoes")>>
<</silently>>\
<<header>>\
<<page>>\
Charity projects are a regular part of the curriculum. You pack and deliver free cartons of food to the poor; raise money for disabled kids in a sponsored half-marathon; and spend three weeks in Uganda, building a schoolhouse for an impoverished village.
<<image "/locationPhotos/montreux/africanSchoolhouse.jpg" 200 1000 550 0>>\
The African kids are so inspiring. It's amazing to see how cheery and hopeful they are, even though they live in such poverty. It really makes you appreciate how much everyone has, [[back in Europe|GAYBAR-1000 The girls are back in town]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-expr-mouth-smile>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalTop-blackTopSectionVisibleUnderGraduationGown")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalGraduationGown-navyBluePleatedWithFlutedSleeves")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-blackPatentHeels")>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/surval/30_survalGraduationMortarboard-navyBlueWIthRedTassleOnRight")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/montreux/graduation.jpg" 150 1000 600 0>>\
On a hot sunny afternoon, you and the other seniors attend your graduation ceremony, held in the grounds of beautiful Chillon Castle. Each of you is named and applauded in turn by the families gathered to watch you collect your certificates.
"//Aseema// is a Sanskrit word, meaning 'limitless'," the principal says in her speech. "Today these bright young women graduate; tomorrow they take their next steps into a limitless future. Each will carve out her own powerful story, confident that she can travel anywhere in a global world, knowing how to conduct herself in any situation..."
It's an empowering message, and you can't help but wonder how it applies to you. You still don't know what career you want after university: what will //your// powerful story be? You imagine working internationally in some exotic role, pushed to your limits and beyond...it feels like anything's possible.
//[[Fly home.|UKUNI-1000 A brief return home]]//
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<avatar-normal>>
<<characterCreator-unsetHair>>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "ligtbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique("/teenRom/10_longHair-ponytail-"+_hairColour+"-front")>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/surval/20_towelhead-" +$kate.faceShape)>>
<<if $kate.quirks.includes("commando")>>
<<set $avatar.background.pushUnique("/foreignAdventure/surval/20_survalRoomMirrorCommando")>>
<<else>>
<<set $avatar.background.pushUnique("/foreignAdventure/surval/20_survalRoomMirror")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_knickers-blackTangaBriefsWithPinkPolkaDots")>>
<</if>>
<<set $avatar.background.pushUnique("/foreignAdventure/surval/19_survalRoomMirrorShadow")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
Something you've noticed from sharing a room with Roksana is how sexy her underwear always is.
It's kind of surprising, because she's not one of the man-eaters. But every Friday night, while you're picking out a pair of tights or a <<if $kate.braSize == "large">>bra supportive enough to dance in<<else>>push-up bra<</if>>, over in her half of the room Roksana is decorating her body with beautifully designed scraps of colourful lycra, lace and silk.
"You have such nice underwear," you muse one night while you're getting ready.
<<if $kate.quirks.includes("commando")>>\
"Ha," Roksana chuckles. "You don't even bother with it half the time."
<<else>>\
"Ha," Roksana chuckles. //"You// have underwear. //I// have lingerie."
<</if>>\
<<link "//Continue//" "PROVOC-1100 Agent Provocateur">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-"+$kate.braSize)>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalUniformSocks-whiteKneeHighCotton")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers")>>
<</silently>>\
<<header>>\
<<page>>\
Something about the way she said that kind of stung. So, a few days later, you slip away after class for a private fitting session at Agent Provocateur.
<<image "/locationPhotos/montreux/agentProvocateur.jpg" 40 1000 500 0>>\
The store's on the fourth floor of Forum, Montreux's busiest shopping mall. You glance around self-consciously before [[stepping inside|PROVOC-1200 Bonjour mademoiselle]].
<</page>><<silently>>
<<avatar-talking>>
<</silently>>\
<<header>>\
<<page>>\
A pretty Swiss blonde, wearing a pale pink uniform dress, smiles politely. <div class="tooltip">//"Bonjour, mademoiselle."//<span class="tooltiptext">Hello, miss.</span></div>
<div class="tooltip">//"Bonjour. J'ai un rendezvous de l'essayage?"//<span class="tooltiptext">Hello. I have an appointment for a fitting?</span></div> Your French has gotten much better now you're using it every day.
<div class="tooltip">//"Bien sur. Et le nom?"//<span class="tooltiptext">Of course. And the name?</span></div>
"$kate.firstName $kate.surname."
<div class="tooltip">//"Très bien. Suivez-moi s'il vous plaît."//<span class="tooltiptext">Very good. Follow me please.</span></div>
<<link "//Follow her.//" "PROVOC-1300 Meeting the stylist">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/montreux/apFittingRoom.jpg" 200 1000 550 0>>\
She leads you to a small but lavish private dressing room to meet your stylist.
Manette is a dark-eyed woman in her thirties, with a deep, husky voice and a thick, curly mane of mahogany brown hair. She wears a pink uniform dress, the lacy trim of a sheer, scarlet bra peeping frequently out from her cleavage when she moves.
<div class="tooltip">//"Et vous seriez Mademoiselle $kate.firstName? Enchantée, Manette."//<span class="tooltiptext">And you must be Miss $kate.firstName! I'm enchanted to meet you.</span></div> She greets you with a warm smile and //la bise...//the cheek-kiss greeting that's common on the continent.
When you first practised this in International Relations, you made the common British faux-pas of adding a "mwah" sound with your voice. Now, after daily practise on staff members and fellow Survaliennes, you do //la bise// [[like a Parisienne|PROVOC-1400 Consultation]].
<</page>><<silently>>
<<avatar-expr-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">//"Asseyez-vous, je vous en prie."//<span class="tooltiptext">Please, sit.</span></div> she says, patting the ornate chaise-longue. "Champagne?"
Manette has a long chat with you, asking lots of questions about where you're from, how you're enjoying Surval, and your reasons for buying lingerie today.
Some event planned, she asks as she tops up your champagne, or someone special you want to drive wild? Here, try a strawberry macaron. Or is it just time for a new look?
She's very engaging and disarming – like a very cool auntie, and you find yourself relaxing and opening up to her. After a while, she glances at her watch, and looks startled. <div class="tooltip">//"Oh mon dieu! Mais regardez l’heure, j’ai trop parlé, hahaha!"//<span class="tooltiptext">Oh god! Look at the time, I talk too much!</span></div> she exclaims. "Okay," she gestures for you to stand. <div class="tooltip">//"Déshabillez-vous, s'il vous plaît, voyons à quoi nous avons à faire."//<span class="tooltiptext">Undress, please, let's see what we've got here.</span></div>
[[You want me to undress?|PROVOC-1500 Time to undress]]
<</page>><<silently>>
<<set $kate.isWearing to ["poloShirt", "skirt", "socks", "bra", "knickers", "shoes"]>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">//"Déshabiller?"//<span class="tooltiptext">Undress?</span></div> you ask, rising to your feet.
<div class="tooltip">//"Oui, oui,"//<span class="tooltiptext">Yes, yes.</span></div> she nods. <div class="tooltip">//"Mettez-vous à nu."//<span class="tooltiptext">Get naked.</span></div>
<<link "//Kick off your shoes.//" "PROVOC-1600 Schoolgirl strip">><<set $avatar.clothing.delete("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers"), $kate.isWearing.delete("shoes"), $kate.action to "removeShoes">><</link>>
<<link "//Take off your top.//" "PROVOC-1600 Schoolgirl strip">><<set $avatar.clothing.delete("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize), $kate.isWearing.delete("poloShirt"), $kate.action to "removeTop">><</link>>
<<link "//Take off your skirt.//" "PROVOC-1600 Schoolgirl strip">><<set $avatar.clothing.delete("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini"), $kate.isWearing.delete("skirt"), $kate.action to "removeSkirt">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.action == "removeTop">>\
You pull your Surval shirt up and off over your head, casting it onto the chaise-longue.
<<elseif $kate.action == "removeBra">>\
You slip off your bra, baring your <<if $kate.braSize == "small">>perky little breasts<<elseif $kate.braSize == "medium">>boobs<<else>>hefty boobs<</if>> to Manette. She cocks her head to the side, regarding them judiciously.
<<elseif $kate.action == "removeSkirt">>\
You unzip your little school skirt and step out of it.
<<elseif $kate.action == "removeShoes">>\
You kick off your loafers. The carpet is soft and plush underfoot.
<<elseif $kate.action == "removeSocks">>\
You slide off your socks, and tuck them into your shoes.
<<elseif $kate.action == "removeKnickers">>\
You peel down your thong, <<if $kate.bikiniLine == "hollywood">>revealing your bare pussy<<else>>baring your <<if $kate.bikiniLine == "landingStrip" or $kate.bikiniLine == "brazilian">>skinny bikini line<<else>>neatly trimmed bikini line<</if>><</if>> for Manette's inspection.
<<else>>\
FATAL ERROR IN KATE.ACTION VAR
<</if>>
<<if $kate.isWearing.includes("shoes")>>\
<<link "//Kick off your shoes.//" `passage()`>><<set $avatar.clothing.delete("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers"), $kate.isWearing.delete("shoes"), $kate.action to "removeShoes">><</link>>
<</if>>\
<<if not $kate.isWearing.includes("shoes") and $kate.isWearing.includes("socks")>>\
<<link "//Take off your socks.//" `passage()`>><<set $avatar.underwear.delete("/foreignAdventure/surval/10_survalUniformSocks-whiteKneeHighCotton"), $kate.isWearing.delete("socks"), $kate.action to "removeSocks">><</link>>
<</if>>\
<<if $kate.isWearing.includes("poloShirt")>>\
<<link "//Take off your top.//" `passage()`>><<set $avatar.clothing.delete("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize), $kate.isWearing.delete("poloShirt"), $kate.action to "removeTop">><</link>>
<</if>>\
<<if not $kate.isWearing.includes("poloShirt") and $kate.isWearing.includes("bra")>>\
<<link "//Remove your bra.//" `passage()`>><<set $avatar.underwear.delete("30_bra-plain-nude-"+$kate.braSize), $kate.isWearing.delete("bra"), $kate.action to "removeBra">><<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">><</link>>
<</if>>\
<<if $kate.isWearing.includes("skirt")>>\
<<link "//Take off your skirt.//" `passage()`>><<set $avatar.clothing.delete("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini"), $kate.isWearing.delete("skirt"), $kate.action to "removeSkirt">><</link>>
<</if>>\
<<if not $kate.isWearing.includes("skirt") and $kate.isWearing.includes("knickers")>>\
<<link "//Lose the thong.//" `passage()`>><<set $avatar.underwear.delete("30_thong-plain-nude"), $kate.isWearing.delete("knickers"), $kate.action to "removeKnickers">><</link>>
<</if>>\
<<if not $kate.isWearing.includesAny("poloShirt", "skirt", "socks", "bra", "knickers", "shoes")>>\
<<link "//Continue.//" "PROVOC-1700 Appraisal">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairPonytail>>
<</silently>>\
<<header>>\
<<page>>\
She gazes up and down your naked body appraisingly, her expression inscrutable. <div class="tooltip">//"Tournez,"//<span class="tooltiptext">Turn.</span></div> she commands, making you strike a few different angles for her.
<div class="tooltip">//"Vous êtes si jeune et si belle,"//<span class="tooltiptext">You're so young and beautiful.</span></div> she finally pronounces, admiration in her husky voice. <div class="tooltip">//"Vous pourriez être mannequin, vous savez? Avec un tel corps, ça serait si facile, vous seriez splendide dans n'importe quel habillement!"//<span class="tooltiptext">You could be a model, you know this? This will be easy, you'll look great in everything!</span></div>
Manette stands, and scoops up a tape measure from a side table.
<<link "//Get measured up.//" "PROVOC-1800 Measurements">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<set $tempArrayOfBodyMods to []>>
<<if $avatar.bodyMods.includes("tattoos/10_tattoo-leftUpperArm-tribal")>>
<<set $tempArrayOfBodyMods.push("leftUpperArmTribal"),
$avatar.bodyMods.delete("tattoos/10_tattoo-leftUpperArm-tribal")>>
<</if>>
<<if $avatar.bodyMods.includes("tattoos/10_tattoo-leftForearm-elvish")>>
<<set $tempArrayOfBodyMods.push("leftForearm-elvish"),
$avatar.bodyMods.delete("tattoos/10_tattoo-leftForearm-elvish")>>
<</if>>
<<if $avatar.bodyMods.includes("tattoos/10_tattoo-leftForearm-aeroplane")>>
<<set $tempArrayOfBodyMods.push("leftForearm-aeroplane"),
$avatar.bodyMods.delete("tattoos/10_tattoo-leftForearm-aeroplane")>>
<</if>>
<<set $avatar.body.delete("25_arms-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.pushUnique("/foreignAdventure/surval/25_rightArm-"+$kate.complexion+"-relaxed")>>
<<if $tempArrayOfBodyMods.includes("leftUpperArmTribal")>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/surval/10_leftArm-"+$kate.complexion+"-holdingTapeMeasure-tribal-" +$kate.braSize)>>
<<else>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/surval/10_leftArm-"+$kate.complexion+"-holdingTapeMeasure-" +$kate.braSize)>>
<</if>>
<<set _turnedOnBy to $kate.kinks.random()>>
<<if _turnedOnBy == "exhibitionist">>
<<addNotification "Arousal +1" "There's something sexy about being totally naked in front of a fully-dressed older woman.">>
<<elseif _turnedOnBy == "submissive">>
<<addNotification "Arousal +1" "There's something sexy about being naked and bossed around by a fully-dressed older woman.">>
<<elseif _turnedOnBy == "masochist">>
<<addNotification "Arousal +1" "There's something sexy about being bossed around by a fully-dressed older woman.">>
<<else>>
<<addNotification "ERROR" "Error in turnedOnBy temp var.">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">//"Ne bougez pas."//<span class="tooltiptext">Hold still.</span></div> She measures your bust first, curling the tape measure around your <<if $kate.braSize == "large">>large, heavy<<elseif $kate.braSize == "medium">>bare<<elseif $kate.braSize == "small">>small<<else>>(ERROR IN KATE.BRASIZE VAR)<</if>> breasts in three places. Your nipples stiffen up while she's doing this. <div class="tooltip">//"Le ruban est peut-être un peu froid?"//<span class="tooltiptext">Is the tape cold?</span></div> she asks.
<div class="tooltip">//"Oui, un peu,"//<span class="tooltiptext">Yes, a little.</span></div> you lie.
<div class="tooltip">//"Bien sûr,"//<span class="tooltiptext">Of course.</span></div> The slightest smirk plays on her lips. <div class="tooltip">//"Et maintenant la taille..."//<span class="tooltiptext">And now the waist...</span></div>
Manette measures you thoroughly, then for the next hour or so you try on dozens of different pieces. She coos appreciatively as you parade for her and the mirror in an assortment of beautifully made <<link "bras, corsets, knickers and suspender belts" "PROVOC-1900 Lingerie show">>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBodysuit-purpleLaceBodysuit-" +$kate.braSize)>>
<</link>>.
<</page>><<silently>>
<<avatar-expr-eyebrows-rogerMoore>>
<<avatar-expr-mouth-sexy>>
<<unset $tempArrayOfBodyMods to []>>
<</silently>>\
<<header>>\
<<page>>\
As you model piece after piece, you completely understand why Roksana bothers with this stuff. It's not just the look – you //feel// amazing in it. Even the skimpiest, sheerest pieces are so beautifully designed and made that it feels empowering to slip them on.
Manette talks you through how different styles can let different aspects of your personality shine through. You can feel <<link "kinky in a raunchy set" "PROVOC-1900 Lingerie show">>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-burgundyStrappyApKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-burgundyStrappyApBra-" +$kate.braSize)>>
<</link>>, or ready to conquer the world with love in <<link "romantic pastel silks" "PROVOC-1900 Lingerie show">>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-babyBlueSilkApKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-babyBlueSilkApBra-" +$kate.braSize)>>
<</link>>. You can feel pretty and girly <<link "in pinks and flowers" "PROVOC-1900 Lingerie show">>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-pinkFlowersAPBra-" +$kate.braSize)>>
<</link>>, or dark and invincible <<link "in black lace" "PROVOC-1900 Lingerie show">>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-blackLaceAPKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-blackLaceAPBra-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("20_highHeels-patent-black")>>
<</link>>.
It's an eye-opening session, and you feel like Manette taught you a lot. You end up spending around 5,000 francs on a whole new range of lingerie, nightwear, accessories and shoes.
<<link "//Continue//" "PROVOC-2000 Back to school">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-expr-mouth-smile>>
<<set $avatar.body.delete("25_arms-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.pushUnique("/foreignAdventure/surval/25_rightArm-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.pushUnique("/foreignAdventure/surval/10_leftArm-"+$kate.complexion+"-holdingApBags")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalUniformSocks-whiteKneeHighCotton")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini-minusLeftHandMask")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers")>>
<<if $kate.quirks.includes("single mum")>>
<<set _dad to "mum",
_he to "she">>
<<else>>
<<set _dad to "dad",
_he to "he">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
As you leave the store, you feel a little pang of concern about what your _dad will say when _he sees <small>//£4000 AGENT PROVOCATEUR MONTREUX//</small> on your Amex statement. But no one ever mentions it, so it must be okay.
Roksana's thrilled at your new wardrobe! She gets you to model some of it when you get back to your room. From time to time, you shop at AP together, to pick up something beautiful to wear under your party dresses at the weekend.
<<link "//Continue//" "MONTREUX-2000 Homesick">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/10_survalUniformSocks-whiteKneeHighCotton")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformSkirt-navyTwoPleatMini")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/30_survalUniformTop-beigeLacostePoloTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalUniformShoes-brownSuedeSlipOnPennyLoafers")>>
<</silently>>\
<<header>>\
<<page>>\
Returning from Uganda, you settle back into your normal routine in Montreux. Lessons and sports in the day, and frequent visits to the town to shop, or just sit by the riviera with a hot chocolate and watch the world go by.
<<link "//Continue//" "GAYBAR-1100 Girls night out">><</link>>
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-pinkFlowersAPBra-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalDress-bluePartyDress-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-manoloBlahnikHeels")>>
<</silently>>\
<<header>>\
<<page>>\
Friday night rolls around, and you and Roksana get dressed up for some drinks in town.
You've got a school trip up the mountain tomorrow, so you can't hit it //too// hard...although you also know for a fact that skiing and the mountain air cure hangovers pretty fast, so you don't need to be //too// sensible.
You decide to start with cocktails at [[Harry's Bar|GAYBAR-1200 Harry's Bar]], and see where the night takes you.
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<</silently>>\
<<header>>\
<<page>>\
You walk down the hill into town, and head for Harry's Bar. It's up a cobbled side street, and you hold onto Roksana to steady each other on your heels.
<<image "/locationPhotos/montreux/harrysBar.jpg" 120 1000 500 0>>\
<div class="tooltip">//"Bonsoir mesdames!"//<span class="tooltiptext">Good evening, ladies!</span></div> Rolf, the owner greets you cheerily: you and Roksana are regulars here. <div class="tooltip">//"Comme d'hab?"//<span class="tooltiptext">The usual?</span></div>
[[Yes please!|GAYBAR-1300 Cocktails]]
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">//"Oui s'il vous plaît, Rolf!"//<span class="tooltiptext">Yes please, Rolf!</span></div> <<if $kate.attributes.extraversion.level lt 0>>Roksana calls as you hang<<else>>you call, hanging<</if>> your coats by the door. It's early and only a handful of people are here – all older than you, and all much less glamorous.
Rolf mixes a Negroni for Roksana, and a Bourbon and Blood for you, serving them at the bar with a little bowl of salty, crunchy pretzels. <div class="tooltip">//"Voilà, mes belles,"//<span class="tooltiptext">Here you go, my beauties.</span></div> he beams. <div class="tooltip">//"Vos apéritifs."//<span class="tooltiptext">Your apéritifs.</span></div>
<<link "//Enjoy your apéritif.//" "GAYBAR-1400 Apéritif">><</link>>
<</page>><<silently>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
Some people think an apéritif is a drink. As Survaliennes, you and Roksana know the word means both the drink itself, and the moment – that convivial first drink that marks the start of a meal, or a night out.
You've both been through hours of roleplays teaching you how to make people feel relaxed and welcome at this moment. They're not training you to be Stepford Wives, like you'd feared...but they most definitely //are// training you to be charming hostesses.
Roksana holds up her glass in a toast. "Cheers."
[[Cheers!|GAYBAR-1500 Cheers][$temp.kateSays to "cheers"]]
<<link "//(Toast her in Russian.)//" "GAYBAR-1500 Cheers">><<set $temp.kateSays to "tvajoZdarovje">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "cheers">>\
"Cheers!" you clink your glass to hers, and she smiles.
<<elseif $temp.kateSays == "tvajoZdarovje">>\
<div class="tooltip">//"Tvajo zdarovje!"//<span class="tooltiptext">Your health!</span></div> you clink your glass to hers, and she smiles.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
You take a long sip, savouring the cold, herby alcoholic kick. "So hey," you say, "you were going to tell me about that interning thing..."
<div class="tooltip">//"Da, konechno!"//<span class="tooltiptext">Yes, of course!</span></div> Her eyes light up as she tells you about an opportunity for her to intern at a family friend's new oil venture in Mexico, instead of going straight on to university after Surval. You sit and chat with her about it, enjoying the chance to unwind over a few drinks.
More people gradually flit into the bar: no hot guys, although a pair of older businessmen have been making eyes at you both since you arrived. From their accents, you guess they're American or Canadian.
Eventually, one of them makes his move, strategically taking a place at the bar next to <<if $kate.quirks.includes("easy")>>you<<else>>Roksana<</if>> so he can strike up a conversation.
<<link "//Have a drink with them.//" "GAYBAR-1600 Phillip and Chuck">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Phillip and Chuck are two big shots from a US industrial soap manufacturer, in town ahead of next week's 7th World Conference on Detergents, which is being held at the Convention Centre.
Both men are out-of-shape, self-absorbed, and old enough to be your dads. But watching Roksana use techniques from Etiquette & Savour-vivre class to maintain a long conversation about a soap manufacturers' convention is quite amusing.
You sit at their table for a while, and let them buy you a couple of cocktails – but only a couple. You're well aware these men are trying to get you drunk.
<<link "//Move on.//" "GAYBAR-1700 Ditching the guys">><</link>>
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<avatar-lol>>
<</silently>>\
<<header>>\
<<page>>\
"It was nice meeting you!" you coo as you ditch them. "Enjoy the conference!"
You and Roksana escape into the street, giggling as you steady each other along the cobbles down to the main road.
It's slow going in Manolos, and Phillip and Chuck leave soon after you – not quite soon enough to catch up with you at the taxi rank, though.
"Millésime, s'il vous plaît!" Roksana tells the driver, while you jump into the back. The engine purrs into life, and you cruise around the lakefront to one of Montreux's [[coolest nightspots|GAYBAR-1800 Millésime]].
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
Millésime's a slick club with a young crowd and a fun dance floor. <<if $kate.quirks.includes("rockChick")>>This is Roksana's favourite club – while you prefer The Rock Cave, you've had some pretty good nights here drinking cocktails and shaking your ass to EDM<<else>>You've had plenty of great Friday nights here, drinking cocktails and shaking your ass to EDM until the early hours<</if>>.
<<image "/locationPhotos/montreux/millesime.jpg" 120 1000 400 0>>\
But this time, you've arrived a little early. And while you're waiting for the floor to fill up, Phillip and Chuck arrive! They must have followed your taxi.
The last thing you want is to be stuck all night with the two oldest, fattest, most boringest guys in Millésime. You and Roksana ditch your drinks and try to [[slip away|GAYBAR-1900 Fleeing Millésime!]] before they spot you!
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<avatar-lol>>
<</silently>>\
<<header>>\
<<page>>\
"Hurry up! I think they saw us!" Giggling, you and Roksana bundle into another taxi...and head [[somewhere they'd never dare follow|GAYBAR-2000 Gay bar]].
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<avatar-normal>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/montreux/declic.jpg" 150 1000 500 0>>\
//La Déclic// is Montreux's gay bar. It's a kitschy, campy riot of roman columns, plastic palm trees, fairy lights and animal prints.
You and Roksana sometimes come here to enjoy the fun, laid-back vibe: it's nice to go somewhere where you can just drink and dance and not be hit on. It's also nice to gaze longingly at tall, muscular men with tight shirts and faces like Roman gods, dancing happily with each other.
You know a few people here, and Roksana's had a long-standing crush on one of the hunky topless barmen.
<<link "//Drink and dance!//" "GAYBAR-2100 Karaoke">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Tonight's karaoke night! Tomorrow morning's school trip feels like it's many hours away, as you drink and dance and have a great time.
<<if $kate.extraversion gt 0>>You talk Roksana<<else>>Roksana talks you<</if>> into a duet performance of Electric Six's //Gay Bar,// which goes down hilariously well. Midnight – the time you'd planned to head home – comes and goes and you both keep drinking and partying.
A while later, you realise that you've lost track of Roksy, who vanished off to the ladies room what feels like a //long// time ago. Also...you're kinda tipsy.
<<link "//Continue//" "GAYBAR-2200 In lesbians with you">><</link>>
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
That's when you notice a woman watching you through the crowd. Older than you – late twenties, maybe – she's like some perfect fusion of masculine and feminine. Her hair's cut short and she's decked out in a leather jacket.
But the way she stands shows off her long legs and short skirt, the shirt under her jacket rides up to reveal a perfectly toned midriff, and the way she flips her hair – even as short as it is – makes you picture a shampoo advert.
She glances away when you meet her eyes – then suddenly looks straight back at you, fixing you with a stare that's both sultry and probing.
<<link "//Look away and bite your lip.//" "GAYBAR-2300 Meeting Lena">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<<avatar-expr-blush>>
<</silently>>\
<<header>>\
<<page>>\
You break eye contact, biting your lip at the surprise of being //looked// at like that. //Does she think I'm a lesbian? She probably thinks I'm a lesbian.//
Then all of a sudden she's //right in front of you,// leaning in close to be heard over the music. "Hi there, cutie," she says, speaking English with a sing-song Swiss lilt. "What's your name?"
"Um..." your cheeks feel hot, really hot. "$kate.firstName," you manage.
"I'm Lena." She leans in closer, close enough to feel her breath in your ear. "Liked your song. Is she your girlfriend?"
[[Uh...just a friend.|GAYBAR-2400 Kate clarifies][$temp.kateSays to "justFriends"]]
[[Wait, I'm not gay!|GAYBAR-2400 Kate clarifies][$temp.kateSays to "imStraight"]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "justFriends">>\
"Uh...just a friend," you reply.
"That's good." She smiles, then leans back into your ear. "//Real// good. Well...how about a drink while we wait for her."
"I should really find her, actually–" you start. She looked pretty green when she went to the bathrooms, and what if she's passed out somewhere? Just then your phone pings loudly – a text from Roksy.
<small>ROKSANA 01.34AM
felt sick. im in a taxi. cu l8r x</small>
You glance up and see Lena reading it over your shoulder. "Shame. So, about that drink?"
<<link "//Oh, what the hell. One drink.//" "GAYBAR-2500 Just one drink">><</link>>
<<elseif $temp.kateSays == "imStraight">>\
"Oh, um...I'm not gay," you explain.
"Of course not, cutie," she laughs. "That's why you're in a gay bar."
"No really," you protest, embarrassed by her forwardness, or her sarcasm, or that subtly predatory smile of hers. "There were these guys, you see? And we wanted to avoid them so..."
You tell the story of Phillip and Chuck. She laughs again, louder this time, full-throated and humiliating, not at all the quiet seductive laugh she's been giving you so far. "And they were too fragile to approach the word 'gay'. Alright, I believe that."
"Yes! So you see. Not gay." You nod a little too vigourously to emphasise your point.
"Mmhmm. You know what they say about straight girls and spaghetti, right?"
[[Huh?|GAYBAR-2410 Straight until they're wet]]
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Huh?" //Spaghetti?// Just then your phone pings loudly, announcing a text from Roksy. That's a relief – she looked pretty green when she vanished off to the loos.
<small>ROKSANA 01.34AM
felt sick. im in a taxi. cu l8r x</small>
You glance up to see Lena reading it over your shoulder. "Aw, that's too bad. C'mon," she says, putting an arm around your shoulder, "I'm buying you a drink. Don't worry, it's completely platonic."
<<link "//Oh, what the hell. One drink.//" "GAYBAR-2500 Just one drink">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Well...fuck it, it's not like it actually means anything, right? You turn down guys who buy you drinks all the time.
"Okay," you shrug. "[[Just one drink|GAYBAR-2600 Title card]]. Then I've gotta go."
<</page>><<page>>\
[[TWO DRINKS LATER...|GAYBAR-2700 Lena makes her move]]
<</page>><<silently>>
<<addNotification "Arousal +1" "Maybe it's the booze.">>
<<set _random to random(1,10)>>
<<set _attributes to $kate.attributes.conscientiousness.level - $kate.attributes.agreeableness.level - $kate.attributes.openness.level>>
<<set _quirks to 0>>
<<set _kinks to 0>>
<<if $kate.kinks.includes("submissive")>>
<<set _kinks -= 1>>
<</if>>
<<if $kate.quirks.includes("easy")>>
<<set _quirks -= 1>>
<</if>>
<<if $kate.quirks.includes("picky")>>
<<set _quirks += 1>>
<</if>>
<<set _bonus to 0>>
<<set _result to _random + _attributes - $kate.arousal + _kinks + _quirks + _bonus>>
<<if _result gte 2>>\
<<set $temp.resisted to true>>
<<else>>
<<set $temp.resisted to false>>
<</if>>\
<<avatar-normal>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Over at the bar, you don't need to shout at each other to be heard, if you sit close enough.
If you weren't in a gay bar, this really would feel like platonic drinks with a pal. But the fleeting little touches – that'd be totally normal with Roksy – carry a seductive vibe when it's Lena.
You feel kinda bad about leading her on...but there's something weirdly affirming about being hit on by a lesbian. It's like discovering you have universal appeal.
One Jack & Coke turns into two, and a little later you're feeling drunk and maybe a little curious, and she's looking at you sultrily. She takes your hand, and runs a finger up your arm.
"C'mon," she says. "Let's get out of here." You know exactly what she wants.
<<if $temp.resisted>>\
//[''Resisted'' Seduction]// [[Goodnight, Lena.|GAYBAR-6000 Goodnight Lena]]
<<else>>\
<span class="greyedOut">//[''Failed'' a mild Resist Seduction check]// Goodnight, Lena.</span>
<</if>>\
[[Okay.|GAYBAR-3000 Taxi ride with Lena]]
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<addNotification "Arousal +1" "You kissed a girl/And you liked it">>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
It's not the first time you've kissed in the back of a taxi, but making out with a girl on the back seat feels wildly new. Your tongues tangle and her fingers stroke your thigh as you cruise slowly up the steep winding roads of Montreux's old town.
The lyrics of that Katy Perry song keep running through your head. You always thought they were kind of dumb, but now you're living them, feeling that exact tense mix of uncertainty and experimental desire. The only difference is that Lena tastes like whiskey, not cherry chapstick.
"Right here," she breaks off from kissing you to tell the driver that the show in his rear view mirror's over. She pays him, then leads you up two narrow flights of stairs to [[her tiny apartment|GAYBAR-3100 Lena's apartment]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-mouth-sexy>>
<<set $avatar.clothing.delete("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalDress-bluePartyDress-pulledDownToWaist")>>
<<set $avatar.clothing.delete("/foreignAdventure/surval/20_survalDress-bluePartyDress-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
She wants you so bad that you lose your dress almost as soon as you're over the threshold. She pushes you up against the inside of her front door and peels off your dress almost frantically.
Lena's so passionate there's just no opportunity for second thoughts. You kiss back instinctively, hands and mouths exploring each other's bodies, leaving a breadcrumb trail of discarded clothes from the front door [[to the bed|GAYBAR-3200 In bed with Lena]].
<</page>><<silently>>
<<avatar-stripNaked braless barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
You lose your bra somewhere near her bedroom door, then fall into her single bed, limbs entwined and your tongues exploring each other's mouths.
Eventually she rolls you onto your back and straddles your hips. She leans over you, her breasts – so much softer than the rest of her lean, tattooed body – squashing into your chest, rocking her upper body to drag her hard nipples over yours.
You pull her tight against you, kissing her deeply. You stay that way for a long time, just enjoying the feeling of your bodies touching, [[kissing and grinding|GAYBAR-3300 Some bondage?]] against each other.
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
She breaks off the kiss and lifts herself up, an impish smile on her face. You watch her flop onto her side and rummage through a drawer in her nightstand.
Then she sits up, still straddling you, her pussy feeling hot and wet through the thin lycra of her knickers. She holds up a pair of steel handcuffs and a blindfold, grinning like the Cheshire Cat.
You swallow nervously, not sure about letting someone you just met put you in cuffs.
Sensing your hesitation, she deflates a little, her big smile fading. "Oh. If it's too much..." she trails off with a slight shrug.
//[Daring check ''passed'']// <<link "//Let her cuff you.//" "GAYBAR-3400 Clicked in">><</link>>
//Dev note: When the non-bondage version of this scene is written, it'll be available here//
<</page>><<silently>>
/* delete arm tattoos */
<<if $kate.tattoos.includes("leftUpperArmTribal")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-leftUpperArm-tribal")>>
<</if>>
<<if $kate.tattoos.includes("leftUpperArmStayGoldSlogan")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-leftUpperArm-stayGoldSlogan")>>
<</if>>
<<if $kate.tattoos.includes("leftForearmAeroplane")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-leftForearm-aeroplane")>>
<</if>>
<<if $kate.tattoos.includes("leftForearmElvish")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-leftForearm-elvish")>>
<</if>>
<<if $kate.tattoos.includes("rightHandPaperPlane")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-rightHand-paperPlane")>>
<</if>>
<<if $kate.tattoos.includes("rightForearmD10Die")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-rightForearm-d10Die")>>
<</if>>
<<if $kate.tattoos.includes("rightForearmRosesSleeve")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-rightForearm-rosesSleeve")>>
<</if>>
/* move chest tattoo up */
<<if $kate.tattoos.includes("chestBohoMandela")>>
<<set $avatar.bodyMods.delete("tattoos/10_tattoo-chestAndSolarPlexus-bohoMandala"),
$avatar.bodyMods.pushUnique("/foreignAdventure/surval/10_tattoo-chestAndSolarPlexus-bohoMandala-movedUpForCuffs")>>
<</if>>
/* move piercings up */
<<if $kate.piercings.includes("chestSilverBarbell")>>
<<set $avatar.bodyMods.delete("piercings/20_piercing-chest-silverBarbells"),
$avatar.bodyMods.pushUnique("/foreignAdventure/surval/20_piercing-chest-silverBarbells-movedUpForCuffs")>>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.bodyMods.delete("piercings/20_piercing-rightNipple-silverBarbell-"+$kate.braSize+"-bare"),
$avatar.bodyMods.delete("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare"),
$avatar.bodyMods.pushUnique("/foreignAdventure/surval/20_piercing-nipples-silverBarbell-"+$kate.braSize+"-movedUpForCuffs")>>
<</if>>
<<set $avatar.body.delete("25_arms-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.pushUnique("/foreignAdventure/surval/25_arms-handsCuffedOverHead-"+$kate.complexion+"-"+$kate.braSize)>>
<<set $avatar.body.delete("30_breasts-"+$kate.braSize+"-"+$kate.complexion+"-bare")>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
Instead of answering, you reach up and slip your hands through the metal railings of her bedframe, shooting her your best smouldering glance. Lena's face positively lights up. "You're cool," she says. "I like that."
Leaning forward again, she kisses you...then reaches up and clicks a bracelet onto your wrist. //Click!// She threads the chain around the railing, then locks you into the other bracelet. //Click!//
She grins down at you, her pretty face marred by an unpleasantly triumphal leer. You feel a surge of adrenaline as you realise you're actually trapped now.
Then she's kissing you again and your fear mixes in with a rush of desire. You kiss back eagerly, instinctively wanting to be pleasing while you're [[so vulnerable|GAYBAR-3500 Lena teases]].
<</page>><<silently>>
<<set $avatar.foreground.pushUnique("/foreignAdventure/surval/9_blindfold-vinRougeBlindfold")>>
<</silently>>\
<<header>>\
<<page>>\
Lena teases you, pulling away until her lips are just out of your reach. Hovering over you, a half smile twisting her mouth, she stares into your eyes.
She leans in, but at the last second pulls away again, taunting you. Suddenly she darts back in and plants one quick kiss on your lips.
Sitting up, she picks up the blindfold from the bed. You share one last brief moment of eye contact, then she carefully secures it [[over your eyes|GAYBAR-3510 Kate loses her thong]].
<</page>><<silently>>
<<set $avatar.underwear.delete("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<</silently>>\
<<header>>\
<<page>>\
You feel her move around on the bed. Her fingers slip into the waistband of your thong.
Lena peels off your last scrap of protection, leaving you feeling naked and vulnerable. She climbs off the bed.
Cuffed to the bedframe, you can only [[wait tensely|GAYBAR-3600 Scent of a woman]] while she does...something.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Then she climbs back onto the bed, near your head. Her knees creak into the mattress next to your ears, one after the other, and you're hit with an unmistakable scent. It's foreign but familiar; warm, earthy, a little spicy, and very very aroused.
She gasps breathily. You can hear the wet sounds of fingers moving as she masturbates, inches from your face.
<<link "//Lean up and taste her.//" "GAYBAR-3700 Kate tastes pussy">><<set $temp.kateSays to "lick">><</link>>
<<link "//Just wait.//" "GAYBAR-3700 Kate tastes pussy">><<set $temp.kateSays to "wait">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "lick">>\
You lift your head, but you can't quite reach her. You imagine her lifting herself up to stay just out of reach.
Just as you're about to give up in frustration, she drops herself suddenly down onto your waiting face.
<<elseif $temp.kateSays == "wait">>\
You hear Lena breathing faster as her finger moves faster, playing with herself just above your face, just out of reach. Then – suddenly – she drops herself down onto your face.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
You make a muffled noise as her lips meet yours, her tangy taste trickling into your mouth.
<<link "//Lick her pussy.//" "GAYBAR-3800 Kate eats pussy">><</link>>
<</page>><<silently>>
<<avatar-goingDown>>
<</silently>>\
<<header>>\
<<page>>\
She grinds on your face, her hot slick pussy smothering your mouth and nose. You ravish her with your lips and tongue, instinctively knowing how to make this feel //good// for another woman.
Swirling your tongue on her stiff little clit, you can feel and hear her getting closer and closer to orgasm. Then you suck it into your mouth and lash it with your tongue until she screams loudly enough to wake the whole sleepy neighbourhood, her entire body shaking on top of you.
"Stop..." she pants as she lifts herself off you again, "stopstopstop."
After collecting herself, she slides down and leans over, giving you a kiss and licking some of the wetness from your chin. She slithers down in the bed, [[spreading your legs|GAYBAR-3900 Lena tantalises]] and sitting between them.
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
Lena traces her fingers over your entire body: your face, neck, arms, sides, over your breasts, spending some time tweaking and fondling your stiff nipples<<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>, toying with the piercings<</if>>.
Then her hands move down, stroking down your belly, over your hips and down your thighs. You feel like your entire body is on fire, one big white-hot bundle of lust, and you're so wet you're sure you're making a mess of her mattress.
She leans down and kisses your flat tummy<<if $avatar.bodyMods.includes("piercings/20_piercing-bellybutton-diamondBarbell")>>, nipping at your piercing, tugging it gently with her teeth<</if>>. She kisses her way down, kissing //around// your wet pussy and [[down your leg|GAYBAR-4000 Lena licks Kate]].
<</page>><<silently>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>\
<<page>>\
She kisses down your leg, all the way down to your foot – which she picks up, and suddenly licks from heel to toe. You gasp, just barely managing not to jerk your leg away at the sudden sensation.
Lena moves back up in the bed, firmly grasping your knees and lifting them up and apart. She presses them up towards your body then down again, spreading them apart as far as they'll go. You feel her hot breath against you, knowing that her lips are almost on yours. Your heart races as she pauses, then suddenly she sucks your clit into her mouth and flicks it against her teeth with her tongue.
It's totally overwhelming, an orgasm exploding inside you immediately. Flashes of light, like lightning bolts, blast your eyelids as you convulse on the bed. A girl screams and realise it's you.
All the while Lena keeps her lips and tongue pressed against you, not moving, just pushing down as she rides your bucking hips up and down until your body comes back under your control.
She softly, gently moves her tongue then, sending aftershocks [[quivering through you|GAYBAR-4100 Sleeping together]].
<</page>><<silently>>
<<avatar-stripNaked braless barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
After one last kiss, she works her way back up your body and removes the blindfold and cuffs.
There's no need to speak, there's nothing to say. You gaze into each other's eyes as you kiss some more, before eventually [[drifting off to sleep|GAYBAR-5000 Morning after]] in each other's arms.
<</page>><<page>>\
[[NEXT MORNING...|GAYBAR-5100 Late for school!]]
<</page>><<silently>>
<<avatar-stripNaked braless barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-overShoulder")>>
<</silently>>\
<<header>>\
<<page>>\
You wake with a start and slip out of bed. Lena looks up groggily as you race around, looking for your clothes. <div class="tooltip">//"Qu'est-ce qui se passe?"//<span class="tooltiptext">What's happening?</span></div>
"I've got a school trip! I'm late!"
"A schoo–?" That wakes her up. Her eyes widen in alarm. //"Quel age a–//How old are you?"
[[Nineteen, don't worry.|GAYBAR-5200 Kate is legal]]
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-pinkFlowersAPBra-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalDress-bluePartyDress-pulledDownToWaist")>>
<</silently>>\
<<header>>\
<<page>>\
"Nineteen, don't worry," you say as you slip back into your bra. "It's a finishing school."
"You're at Surval? With the little uniforms?" She chuckles throatily and sparks up a cigarette. <div class="tooltip">//"Seigneur! Elle est trop sexy, celle-ci."//<span class="tooltiptext">Lord! This one is too sexy.</span></div>
As you're zipping yourself back into your dress, she scrawls something on a scrap of paper and hands it to you.
"What's this?" you ask.
"My number. We should do this again sometime, //Survalienne."//
[[I'd like that.|GAYBAR-5300 Kate takes the number]]
[[This was a one-time thing.|GAYBAR-5400 One time thing]]
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<avatar-niceToMeetYou>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-pinkFlowersAPBra-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalDress-bluePartyDress-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-manoloBlahnikHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<</silently>>\
<<header>>\
<<page>>\
You take her number, reminding yourself to add Lena as a contact later. She kisses you goodbye in the hallway, standing naked in her doorway.
That night turns out to be one of many wild but extremely enjoyable hookups. You keep seeing her on and off until you [[graduate|MONTREUX-3000 Graduation]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalKnickers-pinkFlowersAPKnickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-pinkFlowersAPBra-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalDress-bluePartyDress-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/20_survalShoes-manoloBlahnikHeels")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<</silently>>\
<<header>>\
<<page>>\
"This was, uh, just a one-time thing," you tell her.
"That's cool." She takes her number back. "See you around, //Survalienne."//
//What a wild night,// you think as you slide into the back of the taxi. You're not sure how much of this you want to share with Roksy when you [[get back|MONTREUX-3000 Graduation]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/surval/50_survalJacket-yellowLeatherJacket")>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"I gotta go," you tell the disappointed older woman. "It was nice meeting you."
Stepping out into the cold night air, you [[call a taxi|GAYBAR-6100 Kate's room]] to take you back to Surval.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-horny>>
<<if $kate.quirks.includes("commando")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<else>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You sneak back into your room, quietly getting ready for bed so you don't wake Roksy.
Slipping under your covers, you know you should get as much sleep as you can. But you still feel wired from the night out, and more than a little turned on from the unexpectedly flirty last few drinks with Lena.
<<link "//Jill off, very discreetly.//" "GAYBAR-6200 Kate masturbates">><</link>>
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
Roksy's sound asleep over in her half of the room, so it feels safe to get yourself off in your bed rather than going back into the bathroom. Quietly, with ever so small movements, you caress your body in the darkness.
Tonight, your normal go-to fantasies feel rote and uninspiring; it's only when you allow yourself to [[conjure Lena in your mind|GAYBAR-6300 Lena fantasy]] that your body responds.
<</page>><<silently>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.clothing.pushUnique("/teenRom/50_katesBedsheets")>>
<<avatar-orgasmFace>>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
//Let's get out of here,// she'd said, her eyes looking deep inside you.
<<if _katesFantasy == "exhibitionist">>\
Your fantasy Lena doesn't take "no" for an answer. You imagine how it'd be if you didn't have a choice about becoming her girlfriend: how scandalised everyone would be when she showed you off, making you sloppily kiss her in front of your friends and your family...
<<elseif _katesFantasy == "masochist">>\
Your fantasy Lena doesn't take "no" for an answer. You imagine her dragging you to the toilets at //La Déclic// by your hair, none of the other patrons giving a fuck because they believe her when she tells them you're her girlfriend...
<<elseif _katesFantasy == "submissive">>\
Your fantasy Lena doesn't take "no" for an answer. You imagine how it'd be if you didn't have a choice about becoming her girlfriend: picturing her getting off on making a straight girl eat her pussy, night after night...
<<else>>\
(ERROR IN KATESFANTASY TEMPVAR)
<</if>>\
You come fast, the mental image vivid in your mind. Afterwards, [[sleep comes quickly|GAYBAR-6400 Morning after]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("commando")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<else>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<</if>>
<<if $kate.firstName == "Tasneem" or $kate.firstName == "Tamsin">>
<<set _classmate to "Amina">>
<<else>>
<<set _classmate to "Tasneem">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You and Roksy shuffle around like zombies when you're getting ready the next morning, and the minibus sets off late because they have to wait for you.
"You two look good," laughs _classmate as you clamber aboard, munching on some toast.
"Heavy night," admits Roksy...although she doesn't know the half of it. You steer clear of //La Déclic// for the [[remainder of your time|MONTREUX-3000 Graduation]] at Surval.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaShorts-tanLycraCyclingShorts")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-whiteAnkleSocksWithGreyHeel")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-GreenAndGreyFlaredLittlePrinceVest-" +$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
You have to rush through the application process – registering online as part of the "UN Volunteer Talent Pool", then registering your interest to join the same project as Josh.
Josh makes some calls, explaining to a lady in HR that you're friends, and you want to work on the project together. She authorises you for "accelerated deployment", and just 22 days later you're an [[official UN volunteer|NAMIB-1100 Project overview]]!
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You and Josh will be part of a six-month project working amongst the Himba people, a group of semi-nomadic tribes who live in the barren northlands of Namibia.
They lack reliable access to water, and a large number of borehole wells that have been built for them appear to have failed shortly after they were dug. The Namibian government is funding a UN project to investigate the reason.
Your project training will take place in Namibia. In the weeks before you leave, you read up as much as you can about Namibia, the Himba people, and try to pick up a basic understanding of how borehole wells work. You also need to rush around organising travel documents, vaccinations, a Namibian bank account, and travelling clothes and gear. You'll be living mostly out of a tent for six months!
<<link "//Continue//" "NAMIB-1200 Departing London">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.background.pushUnique("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.pushUnique("/foreignAdventure/30_airportLuggageMiddleClass")>>
<<set $avatar.background.pushUnique("/foreignAdventure/29_airportLuggageMiddleClassShadow")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-darkToLightGreyFadeCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-pinkAndBlackPolkaDotShortSleevedBlouse-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-whiteAndBlackStripeAdidasTrainers")>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''LONDON GATWICK AIRPORT (LGW),'' LONDON",
$header.line2 to "2011 / AGE 19">>
<</silently>>\
<<header>>\
<<page>>\
"Take //care// of her," your <<if $kate.quirks.includes("single mum")>><<if $kate.quirks.includes("big brother")>>big brother<<else>>mum<</if>><<else>>dad<</if>> firmly commands Josh before you walk through the departure gates.
"I will," he promises. "Don't worry." Josh isn't exactly an alpha male, and his reply doesn't seem to instil much confidence in your <<if $kate.quirks.includes("single mum")>><<if $kate.quirks.includes("big brother")>>bro<<else>>mother<</if>><<else>>father<</if>>. But it's too late to back out now!
You board a Lufthansa A350, and start your long journey. There's a quick flight to Frankfurt, then you change over to catch a [[seven-hour flight to Namibia|NAMIB-1300 Arriving Windhoek]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTrousers-khakiCapriCargoTrousers")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteEmpireFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-tanLowHeeledStrappyEspadrilles")>>
<<characterCreator-setHipsterGlasses>>
<<avatar-niceToMeetYou>>
<<set $header.line1 to "''WINDHOEK,'' NAMIBIA">>
<</silently>>\
<<header>>\
<<page>>\
Your African adventure starts in Windhoek, Namibia's capital city! Your UN training starts next week, but you and Josh have a few days to explore and acclimatise first.
<<image "/locationPhotos/namibia/windhoek.jpg" 125 1000 450 0>>\
Windhoek itself is strikingly exotic, a strange mix of German colonial architecture and modern skyscrapers. The sunny, clean, well-organised streets aren't the horn-honking, shanty town mayhem you were expecting from Africa – it feels like a safe, peaceful city to explore and wander in.
You're staying together in a cute little chalet. It's self-catering, and you enjoy the independence of buying and preparing food from town. You both fall in love with the chunky, spicy //boerewors// spiral sausages they sell in the deli across the street.
<<link "//Explore Windhoek.//" "NAMIB-1400 Exploring Windhoek">><</link>>
<</page>><<silently>>
<<first>>
<<addNotification "Green links" "Click them for a location photo!">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Windhoek's short on actual attractions, beyond a few museums (and, weirdly, roads named for dictators – Josh takes some photos of you posing by the street signs on Robert Mugabe Avenue and Fidel Castro Street).
There's also the <span class="imageLink"><<link "Gibeon Meteorite Fountain">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/namibia/gibeonMeteoriteFountain.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, made from lumps of space rock that fell here during the largest meteor shower in Earth's history, some 600 million years ago. The locals prized these stones long before a British chemist discerned their origin; it's amazing to think of Namibians making tools and weapons out of alien rocks for millennia.
On the first night, Josh takes you for dinner at a buzzing open-air restaurant called <span class="imageLink"><<link "Joe's Beerhouse">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/namibia/joesBeerHouse.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and insists on paying. You're starving and you wash down a flame-grilled springbok burger with a few cold German beers. It's the perfect end to your first day in Namibia.
Next morning, when you wake up and open your window, you're greeted by the most beautiful bird you've ever seen in your life! Some research on your phone reveals it to be a <span class="imageLink"><<link "lilac-breasted roller">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/namibia/lilacBreastedRoller.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<link "//Report for UN training.//" "NAMIB-1500 Pre-service training">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-darkToLightGreyFadeCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteSkinnyFitFollowYourHeartTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-whiteAndBlackStripeAdidasTrainers")>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''UN TRAINING CENTRE,'' OKAHANDJA">>
<<if $kate.firstName[0] == "J">>
<<set _katesMispronouncedName to $kate.firstName,
_katesMispronouncedName to "Y" + _katesMispronouncedName.substring(1)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
On Monday, you and Josh check out of the chalet. You're driven out to the UN Volunteer Training Centre in Okahandja, a small town outside Windhoek.
<<image "/locationPhotos/namibia/unCompound.jpg" 250 1000 550 0>>\
There you live and stay for a four-week training programme covering a broad range of topics: from general HR-style classes on UN policies on diversity and sexual harassment, to specific lessons on Namibian culture (like how to use public transport, what Namibians eat and wear, and how to be polite and respectful to the locals).
You meet the others in your team – a mild-mannered American boy from Utah called Mccoy, and an auburn-haired French-Canadian girl named Fleur. Your team leader, Pablo, is a handsome Spaniard in his thirties, tall and stern, with dark brooding eyes and a thick mop of curly, crow-black hair.
He speaks English with a thick accent – Josh is //Yosh//, <<if def _katesMispronouncedName>>you're //_katesMispronouncedName,// <</if>>and the UN project is the //Dew En pro-yeck// – and it takes a few days of very careful listening before you're sure you understand [[most|NAMIB-1600 Project briefing]] of what he says to you.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTrousers-darkGreyZipOffCargoTrousers")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaTop-darkGreyVest-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/40_africaTop-whiteShirtOpenWithSleevesRolledUp")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
Pablo's a trained hydrologic engineer, and he explains his plan. You'll set up a base camp in the tribal regions, then roam out to inspect the borehole wells in the region, to check which are working and which have failed.
If the cause of failure isn't obvious from the inspections, the team will cross reference the failed sites with the records you have on their construction and maintenance, looking for details the failed wells have in common.
You'll inspect as many wells as you can during the project's funding window. The team will live alongside the Himba during this time, with occasional drives back into civilisation for rest and resupply.
<<link "//Prep for the journey.//" "NAMIB-1700 Odd man out">><</link>>
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/40_africaTop-whiteShirtOpenWithSleevesRolledUp")>>
<</silently>>\
<<header>>\
<<page>>\
A family emergency causes Fleur – the other female on the team – to drop out at the last moment, and there's no time to organise a replacement.
Pablo double checks that you're okay being the only female on his "pro-yeck" team. You've trained for this project, and having Josh along makes you feel safe, so you tell him not to worry about it.
The upside is you'll now have the tent you were going to share with Fleur all to yourself, so you'll get a bit more privacy in your downtime.
<<link "//Travel to the northern tribal regions.//" "NAMIB-2000 C41 Highway">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-darkGreyBoxerShortsWithTwoButtons")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteFlaredVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/40_africaTop-whiteShirtOpenWithSleevesRolledUp")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/60_africaArmband-unArmbandForShirt")>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''C43 HIGHWAY,'' NAMIBIA">>
<</silently>>\
<<header>>\
<<page>>\
Early the next morning, the team leaves Okahandja in two white UN Land Rovers, starting the long drive north into Namibia's tribal regions.
Six hours and 400 miles of dry desert shrubland roll by, punctuated occasionally by a Namibian town, each one smaller and more ramshackle than the last.
<<image "/locationPhotos/namibia/opuwo.jpg" 100 1000 250 0>>\
Around noon you ride into the one-street town of Opuwo, a dusty, remote outpost whose name translates to "the end," like it's the last inhabited spot on Earth. Looking out around the vast, rugged landscape that surrounds the tiny town, you could well believe it.
You refuel the Land Rovers, and meet your UN-contracted guide/translator, a cheery local named Donald.
<<link "//Head north.//" "NAMIB-2050 Desert roads">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''KAOKOLAND,'' NORTH NAMIBIA">>
<<avatar-expr-eyebrows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You roll north out of Opuwo. The tarmac road turns into a desert track, and soon there's nothing to see in any direction except barren, desolate hills.
<<image "/locationPhotos/namibia/namibiaOffRoad.jpg" 335 1000 460 0>>\
You're now deep in Kaokoland – "faraway land", and you feel <<if $kate.attributes.neuroticism.level lt 0>>an uncharacteristic twinge of fear<<else>>a looming sense of dread<</if>> as you drive further into the hills.
<span class="greyedOut">//[Too late] Fake a family emergency to get out of this.//</span>
<<link "//Travel into a desolate tribal wilderness with three men you barely know, and only Josh for protection.//" "NAMIB-2100 Tribal regions">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''DESERTED HIMBA VILLAGE,'' KAOKOLAND">>
<</silently>>\
<<header>>\
<<page>>\
Soon you've left the track entirely, a pair of Land Rovers winding slowly along bumpy trails. The Himba live in a dry, barren landscape of rugged rocky hills, dotted with occasional trees and shrubs.
They're a semi-nomadic people, and the first Himba village you arrive at is eerily deserted. You get out to stretch your legs and look around the small, mud-roofed huts.
<<image "/locationPhotos/namibia/abandonedHimbaVillage.jpg" 150 1000 450 0>>\
Donald cautions you not to touch anything, as the Himba will return here in the future. They move between village sites throughout the year, leaving whenever the water dries up or they run out of grazing vegetation for their cows and goats.
<<link "//Get back in the Land Rover.//" "NAMIB-2200 Meeting the Himba">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''HIMBA VILLAGE,'' KAOKOLAND">>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
The second village you find is occupied. You arrive late in the afternoon, and get your first face-to-face look at the Himba.
<<image "/locationPhotos/namibia/himbaWomanAndFamily.jpg" 85 1000 400 0>>\
In the flesh, the women are just as striking as you'd imagined. They're topless and barefoot, their skin and dreadlocks painted with a vivid red dye. They wear skirts made of animal leather and all kinds of ceremonial jewellery.
"Wait here," says Donald. He gets out and vanishes into the village for a while. From behind the waist-high fence, children peer curiously into your vehicles...but you don't see any men around.
<<link "//Wait for Donald.//" "NAMIB-2300 Village welcome">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"The men are away," Donald announces when he returns, "but we are allowed to stay."
<<image "/locationPhotos/namibia/africaSunset.jpg" 50 1000 280 0>>\
You set up your tents up outside the village, against the backdrop of a stunning African sunset. The sky cools from orange to violet, then fades away to reveal an epic sea of stars.
That night, the kids from the village come out to your campfire to sing and dance to you, a magical ritual of welcome. It's the most natural and amazing thing you've ever seen, and you [[go to sleep in your tent|NAMIB-2310 Hyena visit]] feeling happy and peaceful, like things are going to work out.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("commando")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<else>>\
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<</if>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
The realisation that there's just a thin sheet of nylon between you and the wildness hits you when you're jolted awake by a cackle of whooping hyenas, brushing past your little camp like drunken students crawling home from a nightclub.
They're so close you can smell their musty fur and hear their soft paws crunching in the sand as they pass. Almost as soon as they come, they've gone, wandering off into the night. Everybody in the team talks about it excitedly the [[next day|NAMIB-2400 Next day]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-khakiHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteUNVolunteerTee-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
You'll stay at this site for the next four weeks, getting used to the merciless sun and the dry rasp of the sand whipping your calves.
You quickly befriend the women and kids in the village. The normal Himba word for village is "Onganda", but while the men are away with the herds, it's called an "Ozundjuwo" – a village that is not complete.
From this base camp, the team travels out to inspect the borehole sites. You go on a few of these inspections, but digging for ground samples and moving around the testing equipment is heavy work – Pablo, Mccoy and Josh are better suited to the field work.
You gravitate towards managing and organising the base camp, and doing the heavy lifting on the data analysis. The reason for the wells failing isn't clear from the inspections, so a detailed analysis of the construction and maintenance records is crucial.
<<link "//Try to figure it out.//" "NAMIB-2500 Living with the Himba">><</link>>
<</page>><<silently>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
That means you spend a lot of time with the Himba! Of the UN team, they seem to find you especially fascinating. On the first day the women of the tribe all marvelled at how soft your hands are, uncalloused by manual labour or burns from cooking pots. The strutting, happy children in the camp adore you, never seeming to tire of hanging around you and touching your hair and pale skin.
Donald helps you communicate with the women, and you answer lots of questions about your life back home. They giggle when they find out you're 19 and have no husband or kids. You explain that in England, women marry and have children at all different ages, and some never do – and they find this very strange.
The women are funny and bold, and you can't help but like them. Their challenges are so different from yours: one night Miina asks you if you know how to keep animals alive in a drought, and not being able to give her an answer makes you want to cry.
<<link "//Continue your work.//" "NAMIB-2600 The men return">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-duksyPinkVestWithSpaghettiStraps-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/9_unArmband")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
After a few weeks, some of the men return to the village, causing excitement and celebration as families reunite.
Unlike the women, they wear western clothes. They're able to tell Pablo a little more about the borehole wells than the women can, and they also bring important news for the village – they've found new grazing land for the cattle herds, so the women and children are to relocate to a new village [[soon|NATIVE-1000 Nomads]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-darkGreyBoxerShortsWithTwoButtons")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteSkinnyFitTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
For five more months you live and work in this wilderness, your once-soft lips gradually cracking in the dry, pizza oven heat. Most weekends, you drive down into Opuwo for some R&R.
There you get to recuperate from the hardships of the field, sleeping in a hotel with real beds, taking showers instead of bucket baths. There's even a small swimming pool in the grounds of the Opuwo Lodge, but you're warned not to use it after sundown (apparently a local leopard likes to visit it most nights).
Opuwo's a tiny town, but your weekends here feel like an incredible reward, and not just because you get to phone home. After a week in the [[searing desert|NAMIB-3100 Project outcome]], kudu steaks taste even softer, and cold beers seem to cascade through your body like they're washing your parched organs.
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteUNVolunteerTee-" +$kate.braSize)>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/30_africaTop-whiteSkinnyFitTshirt-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
Out in Kaokoland, your team inspects a large number of borehole wells, establishing up-to-date records on which are working and which are broken. In addition, your data analysis picks out some interesting patterns:
<ul>
<li>Wells dug in the wet season are six times more likely to fail</li>
<li>Wells that produce an initial yield lower than 10 l/min are also more likely to fail</li>
<li>Sites chosen via hydrogeological survey don't seem to perform better than sites picked by local contractors</li>
</ul>\
Your reports will now go back to the UN for more detailed analysis, and presentation to the Namibian government. It's hard to tell, but hopefully your work here will help people build better wells for the Himba in the future.
<<link "//Say goodbye to the tribe.//" "NAMROOM-1000 Leaving the Himba">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaShorts-lightGreyLycraCyclingShorts")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-orangeBoxerShortsWithTwoButtons")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-blackGiraffeDreamTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''ON TOUR,'' NAMIBIA">>
<</silently>>\
<<header>>\
<<page>>\
With your volunteer work completed, you and Josh have some time to explore Namibia before you come home. You tour around the country, staying in various guest houses and hotels<<if hasVisited("NAMROOM-4200 Goodnight guys")>>.<<else>> – but you don't share a bed again.<</if>>
You were paid for your work with the UN, so you've got enough money saved to get around and see the sights. You explore <span class="imageLink"><<link "spooky shipwrecks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/namibia/skeletonCoastShipwreck.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the Skeleton Coast, photograph <span class="imageLink"><<link "amazing animals">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/namibia/elephants.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in Etosha National Park, and ride a quad bike through the endless sand dunes and millennia-old petrified trees of the <span class="imageLink"><<link "deadvleis">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/namibia/deadvleis.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
You meet other tourists, who always seem impressed when they learn that you're UN volunteers who just came off a six-month assignment. It makes you both feel a little more cool and elite than the others.
Eventually, it's time to [[say goodbye to Namibia|NAMIB-4100 Departing Namibia]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.background.pushUnique("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.pushUnique("/foreignAdventure/30_airportLuggageMiddleClass")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaDress-greyPuffballHemWithPinkFlowers-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greyStrappyWedgeSandals")>>
<<characterCreator-setHipsterGlasses>>
<<set $header.line1 to "''HOSEA KUTAKO INT'L AIRPORT,'' WINDHOEK">>
<</silently>>\
<<header>>\
<<page>>\
"This has been amazing," says Josh as you sit in the airport, and he's right: it's been an incredible adventure. He's changed – become a little more confident, a little more mature – and you feel like you have, too.
After nearly nine months in Africa, you're ready to come [[home|UKUNI-1000 A brief return home]], and you're ready to tackle university. You don't know what career you want, but this experience has made you think about joining the UN, or maybe a charity or an NGO: something that will let you see the world and make a difference.
You don't know where your destiny will take you, but something inside tells you that you'll work somewhere hot and exotic, serving people less fortunate than you. //Somehow.//
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaShorts-lightGreyLycraCyclingShorts")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaBra-greyHikingBra-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVest-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/40_africaTop-greenHikingShirtOpenWithSleevesRolledUp")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/60_africaArmband-unArmbandForGreenShirt")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
When the tribe's ready to move, you go with them; partly for access to new borehole sites, and partly because your vehicles are useful to the Himba. You're able to carry things for them that would otherwise slow them down, or be left behind.
You move to the new site, a long way deeper into Kaokoland, and get busy setting up your tents. Like before, you set up your base camp just outside the stick fence perimeter.
While you work, a party mood has taken hold of the village. You hear it while you're struggling with your tent frame: women and children breaking out into clapping, laughter and song. [['"Hayy-oh! Hayyyy-oh!"'|NATIVE-1100 Ondjongo dance]]
<</page>><<silently>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
You know what this is: the Ondjongo dance of happiness! The Himba bust it out at formal celebrations like weddings – but also sometimes when they've been drinking, as well as just whenever.
It's so cheery and infectious you'd need a heart of stone to ignore it. Leaving the tents half-built, you and the others drift into the village to [[watch the dance|NATIVE-1200 No party like a Himba party]].
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/40_africaTop-greenHikingShirtOpenWithSleevesRolledUp")>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/60_africaArmband-unArmbandForGreenShirt")>>
<</silently>>\
<<header>>\
<<page>>\
The women and kids are standing around in a big crescent, full of energy, eyes twinkling, feet stomping in time with their clapping hands.
The men sit and watch, clapping along as, one by one, a Himba woman or child dances out into the centre of the crescent. There are no rules – the kids normally bounce around energetically, or make silly dances like a chicken or a springbok.
The adolescent girls are more trepidatious, getting their turns over with quickly, more self-conscious of their bodies and their movements. But the married women follow this with great leaps and uninhibited dance moves, encouraging the younger girls to [[express themselves|NATIVE-1300 Miina spots Kate]] freely.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's giggling and creativity and great fun, but the thing that touches you most about the Ondjongo dance is the unconditional acceptance. //Dance how you like, look how you like,// the ritual seems to tell the dancers. //We'll all still love you.//
You and the rest of the UN team always sit with the men to watch the Ondjongo, clapping along, but today is different. One of the girls you've befriended, Miina, notices you sat with the men, and her eyes light up. "$kate.firstName!" she cries, darting out from the crescent, her hand outstretched.
[[Uh...what's happening?|NATIVE-1400 Kate's invited to dance]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
She pulls you to your feet, and tugs you towards the crescent. She wants you to dance with them!
"Me? //Amni?"// You look around, surprised and suddenly self-conscious. But the other tribespeople seem to think Miina's idea is a good one...
<<if $kate.attributes.openness.level gt 0>>\
//[Open to Experience]// <<link "//Wow...this is amazing!//" "NATIVE-2000 Kate joins the dance">><</link>>
<<else>>\
<span class="greyedOut">//[Open to Experience]// Wow...this is amazing!</span>
<</if>>\
<<link "//Oh god...this is embarrassing!//" "NATIVE-1500 Kate's reluctant">><</link>>
<</page>><<silently>>
<<avatar-embarrassed1>>
<<avatar-expr-blush>>
<</silently>>\
<<header>>\
<<page>>\
"Oh no. //Kako,"// you shake your head, trying to pull away. //"Kako amni!"//
//"Ah, ah, othe!"// Miina insists, laughing at your modesty. //"Mo i pi? Peri nawa!"//
She tugs your hand insistently. From the crescent, other Himba women beckon you in, big smiles on their faces.
<<link "//Let Miina drag you in.//" "NATIVE-2000 Kate joins the dance">><</link>>
//[Refuse to dance]// <<link "//Too shy!//" "NATIVE-1600 Kate opts out">><</link>>
<</page>><<silently>>
<<avatar-embarrassed2>>
<</silently>>\
<<header>>\
<<page>>\
"I can't!" you shake your head. //"Kako, kako!"// Miina tries to encourage you, but you dig in your heels, too embarrassed to join the Himba women in their display.
She reluctantly lets you go, and dances back into the crescent, disappointed. You scurry back to your place amongst the men, your cheeks blazing red.
That was weird. You'll always remember this as the day you //nearly// danced with the Himba.
<<link "//Continue//" "NAMIB-3000 The project">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The tribespeople whoop and laugh as you join the other women in the crescent. You clap, and shimmy, and stomp your boots as the others take turns to dance.
There's no structured order of who dances when, it's spontaneous. But everyone has to take a turn! You can sense that yours is [[coming up|NATIVE-2100 Dress like us]].
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVest-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUp-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
Hands pluck at your t-shirt while you get ready to dance out. At first you don't really pay attention – you're used to the Himba touching your hair and your hands, and for a moment you assume they're doing something like that.
Then you feel the cotton being pulled up over your waist. Surprised, you glance around. The tribeswoman beside you mimes for you to take off your t-shirt.
They're all bare-breasted; you realise suddenly they want you to dress like them for the ritual.
While you're absorbing this, someone behind you just pulls up your shirt, trying to get it off over your head.
<<link "//Try to keep it on!//" "NATIVE-2200 T-shirt tug of war">><</link>>
<<link "//Let her take it off.//" "NATIVE-2400 Kate loses her top">><<set $avatar.clothing.delete("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUp-" +$kate.braSize)>><</link>>
<</page>><<silently>>
<<avatar-embarrassed1>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUp-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUpBra-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
//"Kako, kako,"// you protest, tugging your shirt back down.
The tribeswomen find this funny. Now three of them are playfully but insistently pulling at your t-shirt, wanting you to take it off.
Miina shouts something encouraging in your ear, something about "us", but your Himba's not sharp enough to pick up exactly what she means.
<<link "//Let them win.//" "NATIVE-2400 Kate loses her top">><<set $avatar.clothing.delete("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUpBra-" +$kate.braSize)>><</link>>
//[Keep your t-shirt]// <<link "//Resist!//" "NATIVE-2300 Kate keeps her top">><</link>>
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUpBra-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUp-" +$kate.braSize)>>
<<avatar-embarrassed2>>
<</silently>>\
<<header>>\
<<page>>\
Your t-shirt's staying on! You twist and swat away hands until the giggling girls get the message.
<<link "//Take your turn to dance!//" "NATIVE-3000 Kate dances the Ondjongo">>
<<set $avatar.clothing.delete("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVestPulledUp-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaTop-whiteVNeckHikingVest-" +$kate.braSize)>>
<</link>>
<</page>><<silently>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaBra-greyHikingBra-" + $kate.braSize)>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaBra-greyHikingBraStrapsDown-" + $kate.braSize)>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You <<if hasVisited("NATIVE-2200 T-shirt tug of war")>>finally give in, and<<else>>instinctively<</if>> lift up your arms. There's laughter and applause as your t-shirt's lifted up over your head, and off.
Miina hands it to one of the kids, who scurries out to the audience, and gives it to Mccoy to look after.
Meanwhile, several tribeswomen are tugging at your bra. They manage to slip the straps down off your shoulders, but the clasp at the back baffles them. Someone behind you yanks on the band, enthusiastically but without effect.
<<link "//Undo it for them.//" "NATIVE-2600 Kate goes native">><</link>>
//[Keep your bra]// [[That's staying on!|NATIVE-2500 Kate keeps her bra]]
<</page>><<silently>>
<<avatar-embarrassed2>>
<</silently>>\
<<header>>\
<<page>>\
That's staying on! You twist and swat away hands until the giggling girls get the message.
<<link "//Take your turn to dance!//" "NATIVE-3000 Kate dances the Ondjongo">>
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaBra-greyHikingBraStrapsDown-" + $kate.braSize)>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaBra-greyHikingBra-" + $kate.braSize)>>
<</link>>
<</page>><<silently>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaBra-greyHikingBraStrapsDown-" + $kate.braSize)>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<</silently>>\
<<header>>\
<<page>>\
You reach back and pop open the clasp. Your bra's immediately slipped off you and whisked away, like your t-shirt...and now you're as topless as every other girl in the village.
<<if $kate.braSize == "large">>\
Miina and another girl jabber about your bared breasts excitedly, miming their size and roundness. You pick out the word //khomo// – which makes you think you're being compared to a //cow// – but given the high esteem the Himba have for their cattle, you're pretty sure that's actually a big compliment.
<<elseif $kate.braSize == "medium">>\
Miina and another girl jabber about your bared breasts excitedly, <<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>apparently impressed by your nipple bars<<else>>apparently approving of their size and shape. They seem to be agreeing about something, but you're not sure what<</if>>.
<<elseif $kate.braSize == "small">>\
Miina and another girl jabber about your bared breasts excitedly, <<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>apparently impressed by your nipple bars<<else>>miming how high and perky they are<</if>>.
<<else>>\
(ERROR IN KATE.BRASIZE VAR)
<</if>>\
You can't think about it for long. Everybody's ready for you to do your part in the Ondjongo!
<<link "//Take your turn to dance!//" "NATIVE-3000 Kate dances the Ondjongo">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyes-big>>
<<avatar-expr-mouth-beam>>
<<for _i to 0; _i lt $temp.sixForm.length; _i++>>
<<if $temp.sixForm[_i].name == "Dance">>
<<set _kateStudiedDance to true>>
<</if>>
<</for>>
<</silently>>\
<<header>>\
<<page>>\
You dance out into the open space, the tribespeople clapping and singing all around you.
<<if $kate.quirks.includes("rockChick")>>\
It's like no dance you've ever done before. Conceptually it's kind of like a happy, uplifting version of a mosh pit – but bouncing around the Camden Underworld was nothing compared to dancing <<if hasVisited("NATIVE-2600 Kate goes native")>>topless as a Himba<<elseif hasVisited("NATIVE-2500 Kate keeps her bra")>>in your bra<<else>>for a tribe<</if>>, out on the savannah.
<<else>>\
It's unlike any dance you've ever done before. <<if _kateStudiedDance>>Although you studied some African dances for your Dance A Level, sitting in a classroom with a bunch of other white girls, dancing to a MiniDisc recording of some stock tribal drums, <<else>>Shaking your ass at Po Na Na on a Friday night<</if>> was nothing compared to dancing <<if hasVisited("NATIVE-2600 Kate goes native")>>topless as a Himba<<elseif hasVisited("NATIVE-2500 Kate keeps her bra")>>in your bra<<else>>for a tribe<</if>>, out on the savannah.
<</if>>\
Out in front of the tribesmen and your UN colleagues, you swing your hips and move your body in time with the cheery hand-claps and harmonies pouring out from the Himba women.
In just a few moments, your turn's over, and you dance back into the crescent with the others, a huge happy smile on your face. One of the kids follows you out, doing a dance like a crocodile. You clap and stomp your boots in encouragement.
<<link "//Enjoy the Ondjongo!//" "NATIVE-3100 Winding down">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The dance goes on for long enough for you to take a couple more turns. You show the tribe some western dances, and some of the Himba girls try to copy your moves on their turns.
Soon the sun's starting to set, and everyone's tired, so the Ondjongo dance winds down and everybody can get back to their normal duties.
<<if hasVisited("NATIVE-2600 Kate goes native")>>\
Afterwards Miina and some of the other women pull you aside, curious about your breasts. Just like with your hands and your hair, they want to touch them.
<<link "//They can touch.//" "NATIVE-3200 Breast exam">><<set $temp.kateSays to "goAhead">><</link>>
<<link "//Look, but don't touch.//" "NATIVE-3200 Breast exam">><<set $temp.kateSays to "noTouching">><</link>>
<<else>>\
<<link "//Continue//" "NATIVE-4000 Reflection">><</link>>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "goAhead">>\
The tribesmen keep a respectful distance while the women – and some of the braver kids – experimentally touch your breasts.
<<if $kate.braSize == "large">>\
The women honestly seem //very// impressed with them, giggling to each other as they take turns feeling their weight and how they move. Dozens and dozens of hands take turns lifting and squeezing them, with something approaching awe. You've picked up enough Himba to understand when Miina asks you if //all// English girls are made like this.
//"Kako,"// you reply with a straight face, //"ona amni."// No; only me. Miina and the others fall about laughing.
<<else>>\
Dozens of hands take turns gently lifting and squeezing them. <<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>They like your nipple bars, and from<<else>>From<</if>> their gestures and the words you understand, the women think <<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>your boobs are<<else>>they're<</if>> impressively perky. You've picked up enough Himba to understand when Miina asks you if it's because you wear a bra?
//"Mohlomong,"// you shrug. //"Kako ojutkiwa."// Maybe; I don't know.
<</if>>\
<<elseif $temp.kateSays == "noTouching">>\
Through words and gestures you let them know they can look, but not paw you.
<<if $kate.braSize == "large">>\
The women honestly seem //very// impressed with your boobs, murmuring approvingly at their size and shape. You've picked up enough Himba to understand when Miina asks you if //all// English girls are made like this.
//"Kako,"// you reply with a straight face, //"ona amni."// No; only me. Miina and the others fall about laughing.
<<else>>\
<<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>They like your nipple bars, but once they understand they're not allowed to touch, <<else>>They look but, once they understand they're not allowed to touch, <</if>>they quickly lose interest and let you go get dressed.
<</if>>\
<</if>>\
<<link "//Continue//" "NATIVE-4000 Reflection">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("NATIVE-2600 Kate goes native")>>\
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaBra-greyHikingBra-" + $kate.braSize)>>\
<<characterCreator-setBreasts>>\
<<update-avatar-tattoo-piercing>>\
You rejoin the others, collecting your bra and t-shirt from Mccoy.
The whole team congratulates you while you get dressed. "That was so cool," enthuses Josh. "Too bad we can't put the photos on Facebook!"
"They belong in Nacional Yographic," says Pablo seriously, showing you his camera screen while you're doing up your bra. "Look." You have to admit, there's something pretty special about the photos: especially the ones of you teaching Miina and a giggling Himba boy how to dance the Macarena.
"It was amazing. Like you were part of the tribe," says Mccoy.
<<elseif hasVisited("NATIVE-2500 Kate keeps her bra")>>\
You rejoin the others, collecting your t-shirt from Mccoy.
"That was so cool," enthuses Josh. "It was like you were part of the tribe."
<<else>>\
You head back to the others. "That was pretty cool," says Mccoy. "Almost like they wanted you to be part of the tribe."
<</if>>\
"Yeah," you muse, "it kind of felt like that." It was a truly magical experience, you think dreamily, feeling closer to the Himba than ever before. You've never known anything like it.
<<link "//Continue//" "NAMIB-3000 The project">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-blackCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-darkGreyFlaredTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
The time's come to leave the Himba. They bid you a cheery farewell, and a list of things for you to bring next time you visit. You're ready to leave...but you still feel a big sense of loss when you hug the women and children goodbye.
Mccoy and Donald left yesterday with the heavy equipment; you, Pablo and Josh stayed an extra day to polish the final report. By the time you've packed all your gear into the remaining Land Rover, and said all your //epi nava//s, you hit the road much later than planned.
You refuel in Opuwo, then begin the long drive south, cruising on the C35 Highway through [[hundreds of miles of empty desert|NAMROOM-1100 Motel]].
<</page>><<silently>>
<<set $header.line1 to "''C35 HIGHWAY,'' NAMIBIA">>
<</silently>>\
<<header>>\
<<page>>\
Night falls, you're hungry, and Pablo makes a last-minute decision to stop at a little motel instead of trucking it all the way down to Okahandja.
There are only two rooms available – you take one, and the guys will share the one next door.
When you unload the gear from the Land Rover into the rooms, Josh complains that he and Pablo are going to have to share a double bed. Pablo tells him he can sleep on the rug if he likes.
<<link "//Grab dinner.//" "NAMROOM-1200 Dinner">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''FLAMINGO MOTEL,'' NAMIBIA">>
<</silently>>\
<<header>>\
<<page>>\
You eat dinner with the guys in the motel's tiny restaurant, your stomach growling at the prospect of some food cooked in a kitchen, not a pot over a campfire. You chat with the guys, and carefully ignore a pair of local truckers making eyes at you all through the meal.
You order kapana and fat cakes – chunks of chargrilled meat and vegetables, served with fried dough cakes that are like plain donuts (but greasier and tastier).
It's //delicious,// and after washing down your meal with a few bottles of ice cold Windhoek Lager, you feel warm, tired and grateful to be back in civilisation.
[[I'm gonna turn in. Goodnight, guys.|NAMROOM-1300 Shower scene]]
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<characterCreator-unsetHair>>
<<set _path1 to "teenRom/">>
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "lightBrown" "Light brown" "Light Brown" "light brown" "lightbrown">>
<<set _hairColour to "lightBrown">>
<</switch>>
<<set $avatar.foreground.pushUnique("/teenRom/10_longHair-longMessyWet-"+_hairColour+"-front"),
$avatar.background.pushUnique("/teenRom/90_longHair-longMessyWet-"+_hairColour+"-back")>>
<<set $avatar.background.pushUnique("/foreignAdventure/africa/20_wetTowel")>>
<<set $avatar.background.pushUnique("/foreignAdventure/africa/19_wetTowelShadow")>>
<<set $header.line1 to "''ROOM SIX,'' FLAMINGO MOTEL">>
<<if $kate.bikiniLine == "bikini">>
<<set _shavingYourPussy to "tidying up your bikini line">>
<<elseif $kate.bikiniLine == "brazilian">>
<<set _shavingYourPussy to "trimming your bush back to a long neat stripe">>
<<elseif $kate.bikiniLine == "georgeW">>
<<set _shavingYourPussy to "tidying up your bikini line">>
<<elseif $kate.bikiniLine == "landingStrip">>
<<set _shavingYourPussy to "trimming your bush back to a neat little stripe">>
<<elseif $kate.bikiniLine == "martiniGlass">>
<<set _shavingYourPussy to "trimming your bush back to a neat little triangle">>
<<elseif $kate.bikiniLine == "postageStamp">>
<<set _shavingYourPussy to "trimming your bush back to a neat little tuft">>
<<elseif $kate.bikiniLine == "hollywood">>
<<set _shavingYourPussy to "your pussy">>
<<else>>
<<set _shavingYourPussy to "(ERROR IN SHAVINGYOURPUSSY TEMP VAR)">>
<</if>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
Your shower's feeble and runs tepid after the first minute, but you soak for a long time in it anyway, washing the desert off your body, and fishing it out from deep inside your ears and nose.
Shaving your legs and _shavingYourPussy makes you feel like a civilised human again. Washing your hair feels truly sumptuous, and all the while you're dreaming about how it'll feel when you slip under the clean fresh sheets of a real bed.
Six months ago, staying overnight in some random African motel room would have been daunting. Now it feels luxurious, especially when you consider the Himba out there right now on the savannah.
You can't imagine taking [[a bed|NAMROOM-1400 Bedtime]] or a roof or a toilet for granted ever again.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("commando")>>
<<set $temp.kateIsWearing to["nightie"]>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<else>>
<<set $temp.kateIsWearing to["top", "knickers"]>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<</if>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
You dry and brush your hair, then slip eagerly under the cool sheets of your motel bed.
The motel only has one storey, and through the french window you can hear the soft whoosh of occasional traffic passing along on the highway outside.
It doesn't matter. You're exhausted and [[sleep comes quickly|NAMROOM-1500 Title card]].
<</page>><<page>>\
[[SOME TIME LATER...|NAMROOM-2000 Intruder!]]
<</page>><<silently>>
<<set $avatar.body.delete("/teenRom/50_genericClosedEyes")>>
<<characterCreator-setEyeColour>>
<<characterCreator-setEyeShape>>
<<set _d10 to random(1,10)>>
<<set _daring to $kate.attributes.daring.level>>
<<if _d10 + _daring gte 6>>
<<set _daringCheckPassed to true>>
<</if>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
You wake suddenly in the dark, highly alert, ears straining.
For a moment, silence...then //scratching at the french window.// Metal on metal – something scraping in the lock.
Your body freezes rigid, your heart leaping into your throat. Somebody's trying to get in!
<<link "//Lay very still.//" "NAMROOM-2100 Paralysed by fear">><</link>>
<<if _daringCheckPassed>>\
//[Routine Daring check ''passed''] [[Slip out of the bed.|NAMROOM-2400 Action Kate][$temp.kateSays to "helpMe"]]//
<<else>>\
<span class="greyedOut">//[Routine Daring check ''failed''] Slip out of the bed.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You feel paralysed, not daring to move, not daring to //breathe.//
Your ears strain, but the dark room is quiet again. All can hear is the sound of your heartbeat thrashing in your ears. A terrible, physical dread washes through your stomach, leaving your whole body feeling weak and somehow distant.
Then, talking outside, quiet male murmurs in Oshiwambo. Two men...locals. More scraping...then a soft //creak// as they try the handle...
<<link "//Scream!//" "NAMROOM-2200 Kate screams">><</link>>
<</page>><<silently>>
<<if $kate.firstName[0] == "J">>
<<set _katesMispronouncedName to $kate.firstName,
_katesMispronouncedName to "Y" + _katesMispronouncedName.substring(1)>>
<</if>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-mouth-openWide>>
<</silently>>\
<<header>>\
<<page>>\
You cry out. At first the noise you make is more like a whimper that dies in your throat. But the power to act floods back into your body, and you draw in a breath and //scream!//
The noise outside stops. You think you hear movement outside, then some moving about in the room next door, then footsteps in the corridor.
There's a //thump-thump-thump// at your door. "<<if def _katesMispronouncedName>>_katesMispronouncedName<<else>>$kate.firstName<</if>>?" Pablo's voice.
<<link "//Run to the door.//" "NAMROOM-2300 The cavalry are here">><</link>>
<</page>><<silently>>
<<avatar-expr-mouth-snarl>>
<</silently>>\
<<header>>\
<<page>>\
You spring out of the bed, rush over to the door, and hurriedly unchain and open it.
Pablo and Josh are outside, wearing t-shirts and boxer shorts, and alarmed expressions. Pablo looks past you into the dark room. "What's wrong?"
You shakily report the sounds that awoke you. Pablo pushes past you into the room. "Yosh," he snaps, and your friend follows him over to the french window.
Pablo yanks aside the curtain, glaring out into the night. "Nothing," he says. He and Josh peer out, checking all the angles.
"Nobody now," Pablo reports. "You sure it was no dream?"
"I'm sure," you reply firmly. "Two men, locals. I heard them talking, and I think they tried to [[pick the lock|NAMROOM-3000 Pablo investigates]]."
<</page>><<silently>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//Oh fuck!// This can't be happening...//except it is!//
You slip out of the bed and stand up, ears straining in the darkness.
You hear muttering outside, quiet male murmurs in Oshiwambo. Two men...locals. Then the scratching starts again! They're definitely doing something to the lock.
<<link "//Move quickly and quietly to your door.//" "NAMROOM-2500 Kate escapes">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''CORRIDOR,'' FLAMINGO MOTEL">>
<<avatar-expr-eyebrows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You pad swiftly through your dark room and across to the door, your heart beating so hard that it hurts.
The scratching in the french window sounds hyper-loud now, and it's just a few feet away. The realisation it could open without warning sends a weird morbid thrill through your stomach, a strange rush of something more like excitement than fear.
Your arms feel light and floaty as you reach up and slip the door chain. You open the door quickly and quietly, and step out into the dimly lit corridor beyond.
A soft gasp of relief escapes your lips as you click the door shut. The feeling passes when your quick mind immediately pictures how easily the door will open from the //inside.// You're not safe yet.
<<link "//Wake Josh and Pablo.//" "NAMROOM-2600 Kate gets reinforcements">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''ROOM FIVE,'' FLAMINGO MOTEL">>
<<avatar-expr-mouth-snarl>>
<</silently>>\
<<header>>\
<<page>>\
Josh opens their door, bleary-eyed, wearing a t-shirt and boxers. He's startled when you push right past him, and immediately shut and chain the door.
"Pablo, wake up!" you snap. "Someone's breaking into my room!"
Suddenly alert, the boys snap into action. Pablo helps you drag the bed in front of their french window, blocking it off, while Josh grabs the room phone and [[calls the manager|NAMROOM-2700 Josh calls the cavalry]].
<</page>><<silently>>
<<set $header.line1 to "''CORRIDOR,'' FLAMINGO MOTEL">>
<<avatar-normal>>
<<avatar-expr-eyebrows-rogerMoore>>
<</silently>>\
<<header>>\
<<page>>\
After a short but tense wait, the manager and his son tap at the door.
You accompany them into the corridor where the manager [[unlocks your door with his keycard|NAMROOM-2800 Counter attack]], his son standing ready beside him with a cricket bat.
<</page>><<silently>>
<<set $header.line1 to "''ROOM SIX,'' FLAMINGO MOTEL">>
<<avatar-anger>>
<</silently>>\
<<header>>\
<<page>>\
The four men push inside, someone clicking on the lights.
You follow them in, and see...nothing. The room's undisturbed, your <<if $kate.quirks.includes("batarian")>>glasses and phone<<else>>phone and glass of water<</if>> still set by your bedside.
The manager crosses over to the french window and yanks the curtain aside, but when he tries the handle he finds it still closed and locked.
Everybody takes turns peering out into the night, but the car park looks deserted. "Maybe we scared them off," says Josh.
The manager's son mutters something disparaging in Portuguese. "He says you dreamt it," reports Pablo.
"It was real," you reply firmly. "Two men, locals. I heard them talking, and I think they tried to [[pick the lock|NAMROOM-3000 Pablo investigates]]."
<</page>><<silently>>
<<if $kate.firstName[0] == "J">>
<<set _katesMispronouncedName to $kate.firstName,
_katesMispronouncedName to "Y" + _katesMispronouncedName.substring(1)>>
<</if>>
<<avatar-normal>>
<<avatar-expr-eyebrows-worried>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<</silently>>\
<<header>>\
<<page>>\
"I don't like this," Pablo mutters. "Yosh, wait with <<if def _katesMispronouncedName>>_katesMispronouncedName<<else>>$kate.firstName<</if>>. <<if hasVisited("NAMROOM-2800 Counter attack")>>We'll check the outside<<else>>I'll find the mana-yuh<</if>>."
"Jeez," Josh paces while you wait, trying to be as physically reassuring a presence as possible, even though he stands nearly a foot shorter and carries at least a stone less muscle mass than Pablo.
Unsure about what's going to happen next, you wriggle back into your shorts. Then you sit on your bed and wait, shaken up by what nearly happened. Was it just two guys going back to the wrong room? Or were they planning to slip in and rob you? Or worse? The only thing you're sure about is that it definitely happened.
After a few minutes you see Pablo outside your window, roaming around the car park with the manager<<if hasVisited("NAMROOM-2800 Counter attack")>> and his son<</if>>, faces serious as they search for evidence.
Now the lights are on and everybody's rallying around you, you feel a sudden powerful rush of emotion: a sudden release of bodily tension, coupled with an almost overwhelming feeling of positivity and gratitude. Tears well up behind your eyelids.
Josh pats your shoulder awkwardly. "Hey, hey, it's okay now!" he says. "Don't cry."
<<link "I'm fine, don't worry." "NAMROOM-3100 Pablo returns">><<set $temp.kateSays to "imFine">><</link>>
<<link "I'm crying //because// it's okay, Josh." "NAMROOM-3100 Pablo returns">><<set $temp.kateSays to "thatsWhy">><</link>>
<</page>><<silently>>
<<avatar-expr-eyelid-tearful>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "imFine">>\
"I'm fine," you say, dabbing your eyes. "Don't worry." His puppy dog eyes are filled with deep concern.
<<elseif $temp.kateSays == "thatsWhy">>\
<<silently>>
<<avatar-expr-mouth-smile>>
<</silently>>\
"I'm crying //because// it's okay, you dummy." He smiles back weakly, obviously not following, and you realise that he's nowhere near in touch enough with his emotions to understand what you mean.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
A little later, Pablo returns, alone. They couldn't find anything, and the manager insists it was probably nothing, certainly nothing worth trying to call out the police over.
"I don't like it," Pablo says. He thinks it was a room invasion, and he's concerned they might come back later. "We'll move all the stuff into our room," he says. "You're staying with us the rest of the night."
[[Okay.|NAMROOM-4000 Moving next door]]
<</page>><<silently>>
<<set $header.line1 to "''ROOM FIVE,'' FLAMINGO MOTEL">>
<<if $kate.attributes.extraversion.level gt 0>>
<<set _full to "full">>
<<else>>
<<set _full to "empty">>
<</if>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
You help them lug your bags and the survey kit through from your room into theirs. Pablo disappears again, and returns with a half-_full bottle of brandy. "From the mana-yuh," he explains.
Last time you went near brandy, just the smell made you recoil. But tonight you knock back a swig from the bottle and enjoy its strong, sweet kick, and the gentle burn it leaves behind.
The immediate danger's passed, and you feel awake and exhilarated. You sit up with the boys for an hour or so, slugging brandy out of the bottle and laughing loudly as you each [[recount your perspective|NAMROOM-4100 Feeling sleepy]] of the night's events.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You do feel safer in here, and as the adrenaline fades, tiredness sets back in. You yawn and stretch, and that makes everyone get ready for sleep.
There's only one bed in here, of course. "We could unpack the camp beds," Pablo tiredly suggests to Josh, whose eyelids are drooping. That sounds exhausting to you; you've barely got enough energy to brush your teeth.
[[Don't be silly, guys, share the bed.|NAMROOM-4300 What could go wrong]]
//[End the scene]// [[Thanks, guys, you do that and I'll take the bed.|NAMROOM-4200 Goodnight guys]]
<</page>><<silently>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<</silently>>\
<<header>>\
<<page>>\
You brush your teeth tiredly, while the guys unzip bags and start assembling their camp beds. After all the drama, you fall asleep before they've stopped making a noise.
You sleep soundly for the rest of the night. Over breakfast the next day, you all laugh about the events; in the light of day it feels like there was no danger at all. "So much for a good night's sleep," says Pablo as you load back in to the Land Rover.
You arrive in Okahandja before lunchtime. After a few short meetings and some paperwork, your project for the UN is complete. You and Josh say goodbye to Pablo, then head to a cafe to plan the rest of [[your itinerary|NAMIB-4000 On safari]].
<</page>><<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
They let you use the bathroom first in gratitude. You brush your teeth while they chat tiredly, then head back into the room and slip under the covers.
A few minutes later, as you're drifting off, Pablo joins you in the bed, his broad strong back facing you. You rest your palm on his shoulder, your leg touching his, sinking back into a doze.
Then Josh slips into bed behind you, so close you can feel his body heat.
<<link "//Drift off...//" "NAMROOM-4400 Title card">><</link>>
<</page>><<page>>\
[[SOME TIME LATER...|NAMROOM-5000 Sexy dream]]
<</page>><<silently>>
<<if $avatar.bodyMods.includes("piercings/20_piercing-leftNipple-silverBarbell-"+$kate.braSize+"-bare")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/11_africa-whiteTopPiercedBarbellPokies-" +$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/11_africa-whiteTopPokies-" +$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You drift into a vague, sexy dream of being held by a strong, masculine man with many arms. You realise you're in love with him, not the sailor. The Himba women are watching, but you're not attracted to them. Are they dreaming about you, too?
Wait...[[dreaming?|NAMROOM-5100 Kate wakes up]]
<</page>><<silently>>
<<set $avatar.body.delete("/teenRom/50_genericClosedEyes")>>
<<characterCreator-setEyeColour>>
<<characterCreator-setEyeShape>>
<<avatar-normal>>
<<avatar-expr-eyes-big>>
<<addNotification "Arousal +3" "You wake up wet, turned on and *very* ready for sex.">>
<</silently>>\
<<header>>\
<<page>>\
You wake up, suddenly realising a few things. You're in Namibia. It's dark and //swelteringly hot.// And you're in a bed, squeezed tightly between two sleeping men.
You're squashed up against Pablo's strong back, your arms around him, a leg curled sweatily over his. Josh is spooned in tight behind you. His palm's on your breast, squashed in against Pablo's back, and his erection's pressing into your butt.
Your body feels turned on – so turned on it's like you woke up during masturbation or something. But mentally you just feel disorientated. <<link "//What's happening?//" "NAMROOM-5200 Kate gets her bearings">><</link>>
<</page>><<silently>>
<<set $pablo to {
isAwake : false,
isErect : false
}>>
<<set $josh to {
isAwake : false,
isErect : true
}>>
<</silently>>\
<<header>>\
<<page>>\
You lay very still for a moment, trying to get your bearings.
Beside you, both men breathe softly and deeply. Pablo is still, except for the slow working of his lungs; Josh is making tiny, almost imperceptible twitches, like he's dreaming. His hard-on is pressing firmly against your butt.
You //think// they're both asleep.
<<link "//Try to create some space.//" "NAMROOM-5300 Kate makes some room">><</link>>
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
This is no good. You're too hot, and your head's fallen between the gap in the pillows, and Josh is practically humping you in his sleep.
Assuming he //is// actually asleep?
You shift a little to create some space, gently squirming and pushing both boys away from you.
Gratifyingly, they both shuffle away without seeming to wake up – still both close, but now they're just beside you, not squashing you like before.
That makes you relax – Josh wasn't doing anything bad, just dreaming. Judging by the state of his body, the dream was pretty steamy!
<<link "//Yeah...mine too...//" "NAMROOM-5400 Hot and bothered">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're also //very// turned on. Your stiff nipples and wet pussy feel like they're //tingling,// sensitive and ready to be touched.
You lay there for a while, waiting for the sensation to subside...but it doesn't.
Gently, experimentally, you try squeezing your thighs together...and the sensation makes you squeak. //Jesus Christ,// you think, startled, //that nearly made me come.//
You lay dead still, listening hard in case you just woke Pablo or Josh...but they slumber on beside you, oblivious.
<<link "//Try to go to sleep.//" "NAMROOM-5500 Try to sleep">><</link>>
<<link "//Try the thigh-squeezing thing again.//" "NAMROOM-5600 Thigh squeeze">><</link>>
<</page>><<silently>>
<<set _katesFantasy to $kate.kinks.random()>>
<<if _katesFantasy == "exhibitionist">>
<<if $kate.quirks.includes("commando")>>
<<set _aSexyFantasyDominates to "A strong impulse to take off your t-shirt dominates">>
<<else>>
<<set _aSexyFantasyDominates to "A strong impulse to peel off your underwear dominates">>
<</if>>
<<elseif _katesFantasy == "masochist">>
<<set _aSexyFantasyDominates to "A vivid fantasy of being woken up being fucked, simultaneously, by Pablo and Josh dominates">>
<<elseif _katesFantasy == "submissive">>
<<set _aSexyFantasyDominates to "A vivid fantasy of being made to fuck Pablo and Josh, one after the other, dominates">>
<<else>>
<<set _aSexyFantasyDominates to "(ERROR IN TEMP ASEXYFANTASYDOMINATES VAR)">>
<</if>>
<</silently>>\
<<header>>
<<page>>\
You lay still, trying to calm yourself down. _aSexyFantasyDominates your thoughts instead.
//This is ridiculous. I can't possibly sleep like this.//
<<if not hasVisited("NAMROOM-5600 Thigh squeeze")>>\
<<link "//Try the thigh-squeezing thing again.//" "NAMROOM-5600 Thigh squeeze">><</link>>
<</if>>\
<<link "//Go to the bathroom and jill off.//" "NAMROOM-5700 Kate jills off in the bathroom">><</link>>
<<link "//Jill off, very discreetly, in the bed.//" "NAMROOM-6200 Kate jills off in bed">><</link>>
//[Attracted to Pablo]// <<link "//Snuggle up against Pablo again.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "snugglePablo">><</link>>
<span class="greyedOut">//[Not attracted to Josh] Spoon on Josh.//</span>
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
Squeezing your thighs and tensing and your pelvic muscles sends little waves of pleasure radiating through your groin.
It feels good, //real// good...but your Kegel muscles tire fast, and stimulating yourself enough to reach orgasm would be hard work.
It'd be much easier with your hand. //Or someone else's. Or their tongues, maybe...//
Jesus. You try to collect yourself.
<<if not hasVisited("NAMROOM-5500 Try to sleep")>>\
<<link "//Try to go to sleep.//" "NAMROOM-5500 Try to sleep">><</link>>
<</if>>\
<<link "//Go to the bathroom and jill off.//" "NAMROOM-5700 Kate jills off in the bathroom">><</link>>
<<link "//Jill off, very discreetly, in the bed.//" "NAMROOM-6200 Kate jills off in bed">><</link>>
//[Attracted to Pablo]// <<link "//Snuggle up against Pablo again.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "snugglePablo">><</link>>
<span class="greyedOut">//[Not attracted to Josh] Spoon on Josh.//</span>
<</page>><<silently>>
<<if $kate.eyeShape == "Cat">>
<<if $kate.eyeColour == "Blue">>
<<set _herFace to "big blue eyes">>
<<elseif $kate.eyeColour == "Chestnut">>
<<set _herFace to "big dark eyes">>
<<elseif $kate.eyeColour == "Emerald">>
<<set _herFace to "big green eyes">>
<<elseif $kate.eyeColour == "Grey">>
<<set _herFace to "big grey eyes">>
<<elseif $kate.eyeColour == "Hazelnut">>
<<set _herFace to "big, honey brown eyes">>
<<elseif $kate.eyeColour == "Sapphire">>
<<set _herFace to "big pale eyes">>
<<else>>
<<set _herFace to "(ERROR IN HERFACE TEMP VAR)">>
<</if>>
<<elseif $kate.eyeColour == "Sapphire">>
<<set _herFace to "pale blue eyes">>
<<elseif $kate.eyeColour == "Blue">>
<<set _herFace to "blue eyes">>
<<elseif $kate.eyeColour == "Emerald">>
<<set _herFace to "green eyes">>
<<elseif $kate.eyeColour == "Chestnut">>
<<set _herFace to "doe eyes">>
<<elseif $kate.eyeColour == "Hazelnut">>
<<set _herFace to "honey brown eyes">>
<<elseif $kate.faceShape == "square">>
<<set _herFace to "high cheekbones">>
<<else>>
<<set _herFace to "face">>
<</if>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
<<if not $pablo.isAwake and not $josh.isAwake>>\
As the piggy in the middle, it's hard to get up without waking the others. But //fuck it,// it can't be helped. Pablo and Josh stir groggily as you slip out of bed and pad into the bathroom.
You click on the light, then close and lock the door behind you. The girl in the bathroom mirror looks tousled and sensual, _herFace framed by messy bed hair, stiff nipples tenting her thin cotton <<if $kate.quirks.includes("commando")>>sleep shirt<<else>>top<</if>>.
<<else>>\
(ERROR IN PABLO AND/OR JOSH OBJECT)
<</if>>\
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist]// <<link "//Do it in the mirror.//" "NAMROOM-5800 I see you kissin' yourself in the mirror now">><</link>>
<<else>>\
<span class="greyedOut">//[Exhibitionist] Do it in the mirror.//</span>
<</if>>\
<<link "//Do it on the toilet.//" "NAMROOM-6000 Kate jills off on the lav">><</link>>
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
You have to admit that, for a chick who lived out of a tent in the desert for half a year...you look pretty good. Definitely hot enough for Pablo and Josh to feel good about sharing a bed with.
You turn and show your back to the mirror, looking over your shoulder at the glimpse they'd have gotten when you clicked on the light. <<if $kate.quirks.includes("commando")>>Your t-shirt barely covers your butt; you could've even given them a little flash of your ass if you'd wanted to. You swing your hips experimentally, flashing a naked curve at the mirror, imagining what it would have looked like to the boys.<<else>>These low-slung knickers don't really cover your butt; they must have got an eyeful when you came in here.<</if>>
Its too bad you locked the door. Josh would never have the balls, but you can imagine a more assertive guy, like Pablo – hmm, maybe a boss just a //little// less nice than Pablo – watching <<if $kate.quirks.includes("commando")>>you sashay around in a butt-skimming t-shirt<<else>>your butt in these skimpy knickers<</if>>, and deciding that he'd had [[enough|NAMROOM-5900 Kate gets bent over, in her mind]] of your cockteasing...
<</page>><<silently>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>\
<<page>>\
Your hand <<if $kate.quirks.includes("commando")>>drifts between your legs<<else>>slides into your knickers<</if>> as you imagine Pablo just walking into the bathroom behind you, and bending you right over the sink. No talking, no foreplay, just your <<if $kate.quirks.includes("commando")>>t-shirt pulled up<<else>>knickers tugged down<</if>> and his //big// cock filling you.
You bend over the sink so you can see what you'd look like, steadying yourself with your free hand. Your body feels wet and responsive as you fondle it, imagining being fucked hard by a slightly more toxic version of one of the boys on just the other side of the door.
It doesn't take long. You imagine him squeezing your <<if $kate.braSize == "small">>perky little boobs<<elseif $kate.braSize == "medium">>boobs<<elseif $kate.braSize == "large">>big tits<</if>> through your <<if $kate.quirks.includes("commando")>>t-shirt<<else>>top<</if>> – not to turn you on, just to enjoy your body more – and your real-life orgasm hits long before your fantasy man is satisfied.
You grip the sink hard, your middle finger moving rapidly as you frig yourself to a powerful climax. You feel like moaning out loud, but you manage to keep the noise down to a couple of discreet, deniable gasps.
<<link "//Whew. That's better.//" "NAMROOM-6100 Kate returns to bed">><</link>>
<</page>><<silently>>
<<set _katesFantasy to $kate.kinks.random()>>
<<if $kate.firstName[0] == "J">>
<<set _katesMispronouncedName to $kate.firstName,
_katesMispronouncedName to "Y" + _katesMispronouncedName.substring(1)>>
<</if>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("commando")>>You lift up your t-shirt<<else>>You slide down your knickers<</if>> and sit on the toilet as if you're going to pee – although you have a different bodily need in mind.
<<if $kate.quirks.includes("commando")>>Spreading your knees wide apart, you<<else>>You kick your knickers off, spread your knees wide apart, and<</if>> slip a hand down between your legs. Your body's wet and responsive, ready for your touch.
It feels starker and less comfortable doing it in here, but there's no way you could have masturbated in the bed...//right?// You imagine what it might have felt like if you'd had the daring to just go for it.
How would the boys have reacted? \
<<if _katesFantasy == "exhibitionist">>\
You imagine them pretending to be asleep, getting more and more turned on while they listen to your little gasps and movements in the bed between them. In your mind you bring yourself to a loud, satisfying orgasm...then roll over and drift into a peaceful sleep, leaving them both wide awake and yearning to touch you...
<<elseif _katesFantasy == "submissive">>\
They'd be turned on too, right? You imagine Pablo – your boss – telling you that you need to make sure they both come, too, after you're done. In your fantasy that's now part of your job, you do the data analysis, and also you suck their cocks when they're horny. You have to do it for all of them: Pablo, Josh, Mccoy...even //Donald//...
<<elseif _katesFantasy == "masochist">>\
You imagine them just grabbing you and fucking you – no talk, just two men in the dark, using your body to get themselves off. You imagine lying on your side between them, Pablo's cock in your pussy, Josh thrusting in your ass...
<<else>>
(ERROR IN KATESFANTASY TEMP VAR)
<</if>>\
You bite your lip, your middle finger moving rapidly as you frig yourself to a powerful climax. You feel like moaning out loud, but you manage to keep the noise down to a couple of discreet, deniable gasps.
<<link "//Whew. That's better.//" "NAMROOM-6100 Kate returns to bed">><</link>>
<</page>><<silently>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Your orgasm washes the tension out of your mind, leaving it feeling fulfilled and clear. //Okay, now I can sleep.//
You flush the toilet, head back into the room, and slip back into bed with Pablo and Josh.
You can sense they're both awake, now, but you're feeling relaxed and sleep – for you – [[comes quickly|NAMROOM-6800 Breakfast]]...
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
This is going to be a little risky, because the boys are lying close on either side of you. But you think they're both asleep. You can probably get away with this.
You reach up to your chest, and stroke your nipples gently through your thin cotton <<if $temp.kateIsWearing.includes("nightie")>>t-shirt<<else>>top<</if>>. They're stiff and sensitive and teasing them through the fabric feels nice, //really// nice.
Beside you the boys are oblivious, breathing softly and slowly in their sleep.
<<link "//Touch your pussy.//" "NAMROOM-6300 Stage two">><</link>>
<</page>><<silently>>
<<if $kate.bikiniLine == "hollywood">>
<<set _shaved to "freshly shaved">>
<<else>>
<<set _shaved to "freshly trimmed">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You reach down between your legs, parting them slightly so your hand <<if $temp.kateIsWearing.includes("nightie")>>has access to your bare, _shaved pussy<<else>>can slip inside your low-slung knickers and onto your _shaved pussy<</if>>. Your ankle bumps Pablo's foot, but he doesn't stir.
Gently, very slowly, you slip a fingertip between your wet lips and onto the stiff little bump, waiting for your touch. The contact feels //incredible// and you have to stifle a trembly little gasp.
<<link "//Masturbate.//" "NAMROOM-6400 Stage three">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With soft, subtle movements you caress your wet pussy, savouring the rising waves of pleasure your touch can create. Your other hand teases your nipples, <<if $temp.kateIsWearing.includes("nightie")>>fondling them through your t-shirt<<else>>slipping up inside your top to fondle them<</if>>.
Doing this in the dark, laying between two oblivious men, feels incredibly erotic. You have to restrain your movements, restrain your noises so you don't wake them.
<<link "//Keep going...//" "NAMROOM-6500 Stage four">><</link>>
<</page>><<silently>>
<<set _katesFantasy to $kate.kinks.random()>>
<<avatar-orgasmFace>>
<<if _katesFantasy == "exhibitionist">>
<<set _katesFantasy to "Maybe they're enjoying the show right now?">>
<<elseif _katesFantasy == "submissive">>
<<set _katesFantasy to "Maybe so sexy Pablo would swat my hand away and take over?">>
<<elseif _katesFantasy == "masochist">>
<<set _katesFantasy to "Maybe so sexy they'd both just fuck me...">>
<<else>>
(ERROR IN KATESFANTASY TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Your movements get a bit bolder, your breathing a little less controlled as you feel your climax starting to build. Suddenly it doesn't seem as important that you don't wake the guys.
Would it //really// be so bad if they caught you doing this? They'd find it sexy, right? //_katesFantasy//
This vivid idea blasts you past the point of no return, suddenly and irresistably. Pleasure washes through your whole body as you frig yourself to a climax, your middle finger moving rapidly.
You bite your lip instead of crying out. Then, gradually, reality returns.
<<link "//Whew. I needed that.//" "NAMROOM-6600 Post-orgasmic silence">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
You feel //so// much better for that. And you were pretty discreet...right? The darkness is still and quiet.
In fact...it's //very// quiet. You suddenly realise that you can't hear Pablo and Josh breathing any more.
//Did they wake up?// It's hard to tell. But even if they did, they can't have been sure what you were doing. Right?
<<link "//Listen closely.//" "NAMROOM-6700 Listening out">><</link>>
<</page>><<silently>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
You lay still in the darkness, trying to work out if the boys are awake or asleep. They're so quiet that you //think// they're awake. Or maybe they're quiet because they're asleep?
At some point you [[drift off|NAMROOM-6800 Breakfast]] yourself...
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("commando")>>
<<set $temp.kateIsWearing to["nightie"]>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<else>>
<<set $temp.kateIsWearing to["top", "knickers"]>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
When you wake up, sunlight's streaming in through a gap in the curtain, and Josh is heading for the bathroom. You catch a glimpse of a tentpole in his boxer shorts as he closes the door behind him.
He's in there a good ten minutes. Laying in the bed, you and Pablo chat while you wait for the bathroom. Then Pablo takes a turn in there, locking himself away for a similar period of time.
You grab breakfast, hitting the road at around 10.30, and pulling into [[the UN compound at Okahandja|NAMROOM-10000 Okahandja]] just before 1PM.
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateAction == "snugglePablo">>\
<<set $pablo.isSpooning to true>>\
<<if not $josh.isSpooning>>\
Holding Pablo felt nice. You snuggle up to him again, pressing your <<if not $temp.kateIsWearing.includesAny("nightie", "top")>><<if $kate.isWearing.includes("knickers")>>half-<</if>>naked<</if>> body against his strong back. He's wearing boxers and a t-shirt, and his lean muscular body feels good to touch.
<<else>>\
You shuffle up in the bed, tugging Josh gently so he stays close behind you. He stirs and murmurs as you move, then settles back down in the new position.
You snuggle up to Pablo again, pressing your <<if not $temp.kateIsWearing.includesAny("nightie", "top")>><<if $kate.isWearing.includes("knickers")>>half-<</if>>naked<</if>> body against his strong back. Like Josh, he's wearing boxers and a t-shirt. Unlike Josh, his body feels pleasingly muscular and substantial.
<</if>>\
He mutters something in his sleep, low and masculine. You drape a hand loosely around his waist, enjoying the intimacy, wondering what it would feel like to have sex with him. Could you get away with it, with Josh so close?
<<elseif $temp.kateAction == "snuggleJosh">>\
<<set $josh.isSpooning to true>>\
<<if not $pablo.isSpooning>>\
Being held by Josh felt nice. You wriggle back a little so your bum's touching him again. He's rolled onto his back, so your butt's on his hip this time, resting on his cotton boxers.
You lay like that for a while, then reach over his body, and pull him back into a spooning position. He grunts and rolls in behind you, his erection pressing into your <<if not $temp.kateIsWearing.includesAny("knickers", "nightie")>>now-naked<</if>> butt cheek.
<<else>>\
You lean back and reach for Josh. You give his wrist a gentle tug; he stirs and murmurs something, then shuffles back into a spooning position, seemingly in his sleep. His hand rests on your bare shoulder, and his erection presses into your <<if not $temp.kateIsWearing.includesAny("knickers", "nightie")>>now-naked<</if>> butt.
<</if>>\
<<if hasVisited("BJ Josh BJ")>>That erection's been in your mouth before...//for about a minute, ha!// You wonder if he'd last any longer during actual sex.<<else>>It's hard not to imagine what that erection would feel like, slipping into your pussy...<</if>>
<<elseif $temp.kateAction == "removeTopOrNightie">>\
You lay still for a while, <<if $pablo.isSpooning and $josh.isSpooning>>sandwiched between the boys<<elseif $pablo.isSpooning>>draped over Pablo<<else>>spooning with Josh<</if>>, imagining what it'd feel like to peel off your <<if $temp.kateIsWearing.includes("nightie")>>t-shirt and get naked<<else>>little top<</if>>. Would <<if $pablo.isSpooning and $josh.isSpooning>>they wake up? And what if they did<<else>>he wake up? And what about <<if $pablo.isSpooning>>Josh<<else>>Pablo<</if>><</if>>?
//Well...there's only one way to find out...//
<<if $temp.kateIsWearing.includes("nightie")>>
You wriggle your t-shirt up around your waist, then, sitting up in the bed, lift it <<link "up off over your body..." "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "removeTopOrNightiePart2">><</link>>
<<else>>\
You sit up in the bed, reach down to the hem of your top, then lift it <<link "up and off..." "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "removeTopOrNightiePart2">><</link>>
<</if>>\
<<elseif $temp.kateAction == "removeTopOrNightiePart2">>\
<<silently>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/11_africa-whiteTopPiercedBarbellPokies-" +$kate.braSize)>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/11_africa-whiteTopPokies-" +$kate.braSize)>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<</silently>>\
<<if $pablo.isSpooning and $josh.isSpooning>>The boys stir<<elseif $pablo.isSpooning>>Pablo stirs<<else>>Josh stirs<</if>> as you peel your <<if $temp.kateIsWearing == "nightie">>t-shirt up and<<else>>top<</if>> off. And just like that, <<if $temp.kateIsWearing == "nightie">>you're totally naked!<<else>>your breasts are bare.<</if>> Making yourself so vulnerable sends a little tingle down your spine.
You hold your <<if $temp.kateIsWearing == "nightie">>t-shirt<<else>>top<</if>> in your hand for a second...then toss it away into the room, far away, so you can't easily get it back.
<<if $pablo.isSpooning>>Pablo<<else>>Josh<</if>> mutters something in the dark. "It's hot," you murmur, acting like you're not fully awake.
<<if $temp.kateIsWearing == "nightie">>\
<<set $temp.kateIsWearing.delete("nightie")>>\
<<if $pablo.isSpooning and $josh.isSpooning>>\
<<link "//Settle back in between them.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<<elseif $pablo.isSpooning>>\
<<link "//Snuggle against Pablo.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<<else>>\
<<link "//Settle back into spooning with Josh.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<</if>>\
<<else>>\
<<set $temp.kateIsWearing.delete("top")>>\
<<link "//Take off your knickers, too.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "knickersToo">><</link>>
<<if $pablo.isSpooning and $josh.isSpooning>>\
<<link "//Settle back in between them.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<<elseif $pablo.isSpooning>>\
<<link "//Snuggle against Pablo.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<<else>>\
<<link "//Settle back into spooning with Josh.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<</if>>\
<</if>>\
<<elseif $temp.kateAction == "knickersToo">>\
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>\
<<set $temp.kateIsWearing.delete("knickers")>>\
//In for a penny...// You slip your knickers off, too, and toss them out into the darkness. Now you're naked!
<<if $pablo.isSpooning and $josh.isSpooning>>\
<<link "//Settle back in between them.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<<elseif $pablo.isSpooning>>\
<<link "//Snuggle against Pablo.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<<else>>\
<<link "//Settle back into spooning with Josh.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "settleDown">><</link>>
<</if>>\
<<elseif $temp.kateAction == "settleDown">>\
<<if $pablo.isSpooning and $josh.isSpooning>>\
You settle back into position between the boys, <<if $temp.kateIsWearing == "">>naked<<elseif $temp.kateIsWearing == "knickers">>topless<<else>>(ERROR IN TEMP.KATEISWEARING VAR)<</if>> this time.
Lying in the darkness, pretending to be asleep, you try to work out if they're awake now. Or are they pretending, like you?
<<elseif $pablo.isSpooning>>\
You snuggle up against Pablo again, your <<if $temp.kateIsWearing == "">>naked<<elseif $temp.kateIsWearing == "knickers">>half-naked<<else>>(ERROR IN TEMP.KATEISWEARING VAR)<</if>> body pressing against his back.
Lying in the darkness, pretending to be asleep, you try to work out if he's awake now. Or is he pretending, like you? And what about Josh?
<<else>>\
You wriggle back into a spooning position with Josh, your <<if $temp.kateIsWearing = "">>naked<<elseif $temp.kateIsWearing == "knickers">>half-naked<<else>>(ERROR IN TEMP.KATEISWEARING VAR)<</if>> body pressing against him. He flinches when you make contact with his erection...then gradually relaxes when you don't react. Is he awake now?
Lying in the darkness, pretending to be asleep, you try to work out if he's doing the same thing. And what about Pablo?
<</if>>\
<<elseif $temp.kateAction == "legLockPablo">>\
<<set $pablo.isLegLocked to true>>\
You murmur and shift, acting like you're getting into a more comfortable sleeping position...one that involves sliding your bare leg up over Pablo's.
It's hot, but the acres of skin-to-skin contact feels intimate and sexy.
He doesn't react at all. Is he even awake?
<<elseif $temp.kateAction == "fondlePablo">>\
<<set $pablo.wasFondled to true>>\
You "sleepily" fondle Pablo's still body, lightly caressing his strong arms, and his waist, and his hip through his boxer shorts.
Even at rest his body feels so firm and strong. It's satisfying to touch.
You curve a hand languidly onto his butt, stroking a firm buttock through thin cotton. If he's awake – like you think he is – he could move, or do something to discourage you. But he doesn't.
<<elseif $temp.kateAction == "gropePablo">>\
<<set $pablo.wasGroped to true>>\
You rest your hand around Pablo's waist again, and lay still, wondering if he'll do anything.
//Nope.// He's asleep, or pretending to be. //Like me.//
You shift a little "in your sleep." Your hand only has to move a little to end up resting naturally on his crotch.
//Oh my.// Through the clingy soft cotton of his boxers, you feel a big, firm bulge – Pablo's dick is very awake, even if the man himself is laying very still.
<<elseif $temp.kateAction == "frottagePablo">>\
<<set $pablo.wasFrottaged to true>>\
Gently, ever so gently, you trace your fingertips over Pablo's cock. He doesn't react at all, laying there quiet and totally still – except in his shorts, where his dick swells and grows under your gentle touch.
Soon it's fully hard, straining against the soft cotton material. Pablo doesn't move.
<<link "//Jerk him off.//" "NAMROOM-7100 Kate wanks Pablo">><</link>>
<<else>>\
(ERROR IN TEMP.KATEACTION VAR) no Variable set
<</if>>\
<<if $temp.kateAction != "removeTopOrNightie" and $temp.kateAction != "removeTopOrNightiePart2" and $temp.kateAction != "knickersToo" and $temp.kateAction != "frottagePablo">> /* disables the following menu in certain cases */ \
<<if not $pablo.isSpooning>>\
<<link "//Also shuffle up against Pablo.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "snugglePablo">><</link>>
<</if>>\
<<if $pablo.isSpooning and not $pablo.isLegLocked>>\
<<link "//\"Sleepily\" drape your leg over Pablo.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "legLockPablo">><</link>>
<</if>>\
<<if $pablo.isSpooning and $pablo.isLegLocked and not $pablo.wasFondled>>\
<<link "//\"Sleepily\" fondle Pablo's arms and butt.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "fondlePablo">><</link>>
<</if>>\
<<if $pablo.isSpooning and $pablo.wasFondled and not $pablo.wasGroped>>\
<<link "//Rest your hand on Pablo's crotch, \"in your sleep\".//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "gropePablo">><</link>>
<</if>>\
<<if $pablo.isSpooning and $pablo.wasGroped and not $pablo.wasFrottaged>>\
<<link "//Stroke his cock through his boxers.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "frottagePablo">><</link>>
<</if>>\
<<if $temp.kateIsWearing.includes("nightie")>>\
<<link "//Take off your t-shirt \"because it's hot.\"//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "removeTopOrNightie">><</link>>
<<elseif $temp.kateIsWearing.includes("top")>>\
<<link "//Take off your top \"because it's hot.\"//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "removeTopOrNightie">><</link>>
<<elseif $temp.kateIsWearing.includes("knickers")>>\
<<link "//Take off your knickers.//" "NAMROOM-7000 Kate teases the boys">><<set $temp.kateAction to "knickersToo">><</link>>
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You curl your fingers over the tentpole in his boxers, and squeeze and tug him through the clingy material – gently at first, then firmly and rhythmically.
It's so big and hard now, straining with desire. The movement makes soft rustling noises under the bedsheets, that sound loud in the dark, quiet room. You can't hear Josh's breathing any more – he's probably awake, although he's being very quiet about it.
You're so turned on you don't care.
Pablo just lays still, not reacting at all. But he's //got// to be awake now...right?
//(Whisper)// <<link "Are you awake?" "NAMROOM-7200 U awake hun?">><</link>>
<<link "//Wake him up with a blowjob.//" "NAMROOM-7400 Kate blows Pablo">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You lean up, your mouth to Pablo's ear. "Are you awake?" you whisper, your voice husky with desire.
"Yeah," he whispers back. "What about Yosh?"
"He's asleep," you whisper, still tugging on Pablo's hard-on. And that's enough encouragement for the Spaniard, who rolls onto his back, giving you access to his body.
//(Whisper)// <<link "Have you got a condom?" "NAMROOM-7300 Condom request">><</link>>
<<if $kate.quirks.includes("onThePill")>>\
//[On the pill]// <<link "//Straddle on top of him.//" "NAMROOM-8000 Kate fucks Pablo">><</link>>
<<else>>\
<span class="greyedOut">//[On the pill] Straddle on top of him.//</span>
<</if>>\
<</page>><<silently>>
<<set $pablo.isUsingProtection to true>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("NAMROOM-7700 Foreplay's over")>>\
You drape yourself over Pablo's body, your mouth finding his ear in the darkness. "Have you got a condom?"
"Yeah," he whispers back. "What about Yosh?"
"He's asleep." And that's enough encouragement for the Spaniard, who squirms out from under you, groping for something on the bedside cabinet.
You hear the soft //rip// of a wrapper being opened...then feel him moving beneath you, slipping on the condom.
<<else>>\
"Have you got a condom?" you whisper. Pablo grunts affirmatively. In the darkness he gropes for something on the bedside cabinet.
You hear the soft //rip// of a wrapper being opened...then you feel him wriggling out of his boxers, and into a condom.
<</if>>\
<<link "//Straddle on top of him.//" "NAMROOM-8000 Kate fucks Pablo">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shift in the bed, climbing over Pablo's body and sliding down under the hot, stuffy covers.
As you move he rolls onto his back, giving you a better angle. He's definitely awake, and he knows what's coming.
<<link "//Tug down his boxers.//" "NAMROOM-7500 Tug down his boxers">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tug down his boxers, curl a hand around his freed erection, and guide it into your mouth.
It's already big and hard, so you're not doing this to turn him on – just to make him feel good, and show him what you can do.
<<link "//Suck Pablo's cock.//" "NAMROOM-7600 Pablo BJ">><</link>>
<</page>><<silently>>
<<avatar-bjFace>>
<</silently>>\
<<header>>\
<<page>>\
You channel all your pent-up sexual tension into the moment, your lips and tongue sliding sensually up and down on his hard cock.
Squatting under the hot covers, using your mouth to get him off in the darkness, feels so overwhelmingly erotic you almost can't stand it. In your mouth his cock feels as stiff and as sensitive as your pussy feels wet and receptive.
Pablo curls his fingers through your hair, stroking your ears while you [[suck his dick|NAMROOM-7700 Foreplay's over]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The BJ feels so right that part of you wants it to go on and on. But it's //so// hot under the covers, and it also feels //so// good that making him come is a very real concern.
Reluctantly, you slide up and off his dick, grasping the stiff wet shaft in your fingers, and giving it a few last little tongue lashes, and a kiss – your mouth saying goodbye.
You shuffle up in the bed, gasping with relief as your head escapes from under the stifling covers.
//(Whisper)// <<link "Have you got a condom?" "NAMROOM-7300 Condom request">><</link>>
<<if $kate.quirks.includes("onThePill")>>\
//[On the pill]// <<link "//Straddle on top of him.//" "NAMROOM-8000 Kate fucks Pablo">><</link>>
<<else>>\
<span class="greyedOut">//[On the pill] Straddle on top of him.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateIsWearing.includes("nightie") or $temp.kateIsWearing.includes("top")>>\
<<silently>>
<<set $temp.kateIsWearing.delete("nightie", "top")>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/11_africa-whiteTopPiercedBarbellPokies-" +$kate.braSize)>>
<<set $avatar.clothing.delete("/foreignAdventure/africa/11_africa-whiteTopPokies-" +$kate.braSize)>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/40_africaTop-whiteFlaredLongSleepingTShirtFoxHug-" +$kate.braSize)>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaVest-whiteRacerbackVestRipley-" +$kate.braSize)>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<</silently>>\
In the dark, Pablo gropes your body. He tugs at your <<if $temp.kateIsWearing.includes("nightie")>>t-shirt<<else>>top<</if>>, pulling it up, wanting it off; you lift it off over your head, and toss it onto the floor behind you.
<<else>>\
In the dark, Pablo gropes your bare breasts, lightly pinching your stiff nipples.
<</if>>\
Throwing off the bedsheets, you straddle yourself over his hips, <<if $temp.kateIsWearing.includes("knickers")>>\
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>\
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley-lowered")>>\
slipping your knickers down and \
<</if>>reaching down for his hard, <<if $pablo.isUsingProtection>>latex-covered<<else>>bare<</if>> cock.
You guide it between your wet lips, brushing your clit and sending a thrill up through your groin. You're amazed at how close you are to orgasm. Easing yourself onto his cock, you feel the tip slip inside you.
<<link "//Slide all the way down on Pablo's cock.//" "NAMROOM-8100 Penetration">><</link>>
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
You gently lower your weight onto Pablo, sliding down on him until he's completely inside you. It feels //amazing// and you just sit there for a moment, stuffed fully with his rock hard cock, the slightest movement sending waves of sensation through your whole body.
He starts thrusting, gently tilting his hips underneath you, and a guttural murmur escapes your mouth even though you're supposed to be quiet. He reaches up to your bare breasts, <<if $kate.braSize == "large">>cupping them to feel their substantial weight<<else>>calloused fingertips gently pinching your hard nipples<</if>>.
<<link "//Make out with him while he fucks you.//" "NAMROOM-8200 Makeout fuck">><</link>>
<<link "//Ride him like a cowgirl.//" "NAMROOM-8300 Cowgirl fuck">><</link>>
<</page>><<silently>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
You lean forward, shifting your weight onto your palms, making Pablo lift his butt to stay in you. His hands curl onto your firm butt, squeezing it while his cock slides rhythmically back and forth inside you.
Your noses brush in the dark, then your lips meet, and your tongues tangle passionately. You make out with Pablo, the soft strokes of his tongue contrasting with the increasingly frantic thrusting of his cock [[inside your pussy|NAMROOM-8400 Creaky bed]].
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
You gently rock your body, moving in time with his little pushes, gradually speeding up as Pablo does.
In the darkness he fondles your bare tits while you ride him, <<if $kate.braSize == "large" or $kate.braSize == "medium">>squeezing them, cupping them, tweaking your stiff nipples<<elseif $kate.braSize == "small">>tweaking and tugging your stiff nipples<<else>>(ERROR IN KATE.BRASIZE VAR!)<</if>> while he [[fucks you|NAMROOM-8400 Creaky bed]].
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
The bed creaks and you both freeze; but Josh stays quiet, so <<if hasVisited("NAMROOM-8200 Makeout fuck")>>Pablo starts thrusting in you again<<else>>you start riding Pablo again<</if>>, more gently this time.
Being forced to go slowly and quietly is tantalising for you both. For the next few minutes, your sex has a pattern: <<if hasVisited("NAMROOM-8200 Makeout fuck")>>he fucks you slowly<<else>>you ride him slowly<</if>>, gradually speeding up as you both get more excited – then freezing when you push it too far, and [[make the bed creak|NAMROOM-8500 Kate orgasms]] in the darkness.
<</page>><<silently>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>\
<<page>>\
The bed creaks for the third or fourth time, and you freeze cautiously.
This time, Pablo just keeps going, <<if hasVisited("NAMROOM-8300 Cowgirl fuck")>>bucking his hips insistently underneath<<else>>thrusting his cock insistently into<</if>> your still body, his cock bumping deep inside you. You gasp and start moving again, instinctively following his lead as he throws caution to the wind.
//Creak-creak-creak// goes the bed, noisily keeping time with your movements. You try to stay quiet yourself, but it's //so// sexy just to fuck at a normal speed at last, and you can't help but murmur and gasp softly while Pablo's big, hard cock fucks you relentlessly [[past the point of no return|NAMROOM-8600 Money shot]].
<</page>><<silently>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
You orgasm at last...then, as your senses return, you realise exactly how much noise you two are making.
If Josh is sleeping through this, you're a Himba – but Pablo must be close to orgasm, and you can't stop now. <<if hasVisited("NAMROOM-8300 Cowgirl fuck")>>You ride him harder, urgently trying to get him off<<else>>He thrusts inside you frantically, urgently trying to get himself off<</if>>.
//Creak-creak-creak// for another minute or so, then you feel him tense up underneath you. <<if hasVisited("NAMROOM-8300 Cowgirl fuck")>>You bounce on his cock for a few more strokes<<else>>He gives you a few final, hard thrusts<</if>>, then it's [[all over|NAMROOM-8700 Post fuck admin]].
<</page>><<silently>>
<<if $temp.kateIsWearing.includes("knickers")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley")>>
<<set $avatar.underwear.delete("/foreignAdventure/africa/10_africaPants-whiteBikiniPantsRipley-lowered")>>
<</if>>
<<avatar-normal>>
<<characterCreator-unsetShadow>>
<<characterCreator-unsetEyes>>
<<set $avatar.body.pushUnique("/teenRom/50_genericClosedEyes")>>
<</silently>>\
<<header>>\
<<page>>\
You stay on top of him for a little while, letting silence return and just enjoying the closeness of having him still inside you. Then you gently slip off him and roll onto your side, between him and Josh once again.
<<if $pablo.isUsingProtection>>\
Pablo moves in bed beside you, and you guess he's doing something with the condom. Even those small movements sound loud in the dark, still room. Having sex must have been cacophonous.\
<<else>>\
You lay still in the darkness, Pablo's sperm trickling gently out of your pussy. The room is so quiet now; having sex must have been cacophonous.\
<</if>> But Josh is still and quiet beside you, politely pretending he slept through it, and you guess that's the easiest thing for everybody to pretend at breakfast tomorrow.
Pablo curls his hand into yours. You both [[drift asleep|NAMROOM-9000 Walk of shame]], fingers intertwined, connected in a new way <<if hasVisited("NAMROOM-7600 Pablo BJ") and not hasVisited("NAMROOM-7300 Condom request")>>without saying a single word to each other<<else>>on your last night together<</if>>.
<</page>><<silently>>
<<set $avatar.body.delete("/teenRom/50_genericClosedEyes")>>
<<characterCreator-setEyeColour>>
<<characterCreator-setEyeShape>>
<</silently>>\
<<header>>\
<<page>>\
When you wake up, sunlight's streaming in through a gap in the curtain, and Josh is heading for the bathroom. You catch a glimpse of a tentpole in his boxer shorts as he closes the door behind him.
He's in there a good ten minutes. That gives you and Pablo time to dress and have a muttered, slightly awkward conversation about last night. "I'm supposed to be your boss," he says, looking abashed.
[[I won't tell anyone.|NAMROOM-9100 Kate's verdict][$temp.kateSays to "imDiscreet"]]
[[Pablo, I'm in love with you.|NAMROOM-9100 Kate's verdict][$temp.kateSays to "imInLove"]]
<<if $kate.quirks.includes("easy")>>\
//[Easy]// [[Relax, I like one-night stands.|NAMROOM-9100 Kate's verdict][$temp.kateSays to "imASideChick"]]
<<else>>\
<span class="greyedOut">//[Easy] Relax, I like one-night stands.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-darkToLightGreyFadeCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteSkinnyFitTshirt-" +$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "imDiscreet">>\
"Don't worry," you reply, "I won't tell anyone."
"Me either," he says. "You think Yosh..."
"No." You shake your head. "He's not a gossip." Pablo seems to find that reassuring.
<<elseif $temp.kateSays == "imInLove">>\
<<silently>>
<<avatar-lol>>
<</silently>>
"Pablo," you reply, your expression serious. "I think I'm in love with you."
He's quiet for a long moment. "Really?" he croaks.
You can't keep a straight face any longer. "Ohmygod," you say once you've stopped laughing, "your face!"
He grins back weakly, freaked out by your sense of humour.
<<elseif $temp.kateSays == "imASideChick">>\
"Hey, don't worry," you smile reassuringly. "That, uh, wasn't my first one-night stand."
He grins, relieved. "It's yust I could get in trouble..."
"Seriously, don't worry." You mime zipping up your lips. "I'm very discreet."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<link "//Continue//" "NAMROOM-9200 Breakfast">><</link>>
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Breakfast is a little stilted at first, but Josh maintains the pretense that he slept through the whole thing, and that helps things get back to normal faster.
You hit the road at around 10.30, and pull into [[the UN compound at Okahandja|NAMROOM-10000 Okahandja]] just before 1PM.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/africa/10_africaSocks-darkToLightGreyFadeCottonTrainerSocks")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaShorts-blackHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/30_africaTop-whiteSkinnyFitTshirt-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/africa/20_africaShoes-greenHikingShoes")>>
<<characterCreator-setHipsterGlasses>>
<</silently>>\
<<header>>\
<<page>>\
In the afternoon you have to go through some admin formalities and a short exit interview. By about 4 o'clock everything's finished – your time as a UN Volunteer has officially ended. You and Josh say goodbye to Pablo, and head to a cafe to [[plan the rest of your itinerary|NAMIB-4000 On safari]].
<</page>><<silently>>
<<set $temp.friendsBlown to 0,
$temp.loadsSwallowed to 0,
$temp.faceFuckedBy to []>>
<<lifepath-BJFORTB-setup-clothes>>
<<>>
<</silently>>\
<<header>>\
<<page>>\
After the breakup with Jacob, you go back to spending lots of time with Tom, Mark and Josh.
Your friendship's in a weird place. Sometimes it's just like old times, but sometimes you feel like you're invisible or annoying to them.
And sometimes when you hang out there's definite sexual tension, even though you're all [[just friends|BJ Just friends]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're (easily) the most mature in the group, so you normally make sure nothing crazy happens.
But one or two times you've let things go a little futher than maybe they should, like that time in your room you let them take turns undoing and refastening your bra "for practice".
You all played it cool, just $kate.firstName helping out her bros with something that young men famously find arcane, but your nipples were bullets and your thong was soaking wet during the whole thing.
[[Continue|BJFORTB-2000 Mark's room]]
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MARK'S ROOM,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''MARK'S ROOM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''MARK'S ROOM,'' WIMBLEDON">>
<</if>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Hanging out in Mark's grungy bedroom a few weeks later, your mind goes back to that moment, because it feels like the last time any of them paid any attention to you at all.
They're <<if $kate.quirks.includes("elite")>>bathed in the pale glow of his new plasma screen TV<<else>>huddled around the little TV in his room<</if>>, playing GTA while you watch from Mark's bed.
It's raining, and your phone never gets a signal at Mark's, so you've got nothing to do except watch them take turns doing the same thing over and over: kill a bunch of people; get killed by the cops or the army; pass the controller. <i>And they never get bored.</i>
<<if $kate.quirks.includes("geekGirl")>>\
[[Guys, let's play D&D!|BJFORTB-2200 Kate's suggestion][$temp.kateSays to "d&d"]]
<</if>>\
<<if $kate.quirks.includes("rockChick")>>\
[[We should get the band back together.|BJFORTB-2200 Kate's suggestion][$temp.kateSays to "nakedTuna"]]
<</if>>\
<<if $temp.drugUse != "virgin">>\
[[Let's score some weed.|BJFORTB-2200 Kate's suggestion][$temp.kateSays to "weed"]]
<</if>>\
<<if not $kate.quirks.includesAny("geekGirl", "rockChick") and $temp.drugUse == "virgin">>\
[[Can I play?|BJFORTB-2100 Can I play?]]
<</if>>\
<</page>><<silently>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Can I play?" you ask after Tom dies for the thousandth time.
"Hm?" They all look round, surprised; it's like they forgot you were here. "Sure." Tom swaps places with you so you can see the screen.
You settle into the warm chair, and take control of <<if $kate.quirks.includes("geekGirl")>>Niko Bellic, who's respawned in a hospital<<else>>the little Russian gangster who's the hero of this game. After dying in an explosion, he's woken up in a hospital<</if>>.
<<link "<i>Play GTA IV.</i>" "BJ GTA IV">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "d&d">>\
<<set $temp.kateWantedToPlayDnd to true>>\
"Hey, we should play D&D!" you suggest.
"Nah," replies Mark, without looking away from the screen.
<<elseif $temp.kateSays == "nakedTuna">>\
"We should get the band back together," you suggest. "We've all got more time now."
"Mm, maybe," replies Mark, barely paying attention.
<<elseif $temp.kateSays == "weed">>\
"You guys wanna score some weed?" you ask.
"Can't," grunts Mark, not looking away from the screen. "Working tomorrow."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
The others murmur <<if $temp.kateSays == "nakedTuna">>noncommittally<<else>>in agreement<</if>>, more interested in watching him try to blow up a train with a missile launcher than exploring your idea.
<<link "//Watch them play.//" "BJ Watch GTA">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Kill, die, pass the controller. Kill, die, pass the controller.
There's probably some philosophical way to interpret what they're doing, but you can't quite grasp it.
[[Can I play?|BJFORTB-2100 Can I play?]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyelid-squint>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("geekGirl")>>\
They've spent all Niko's money, so you can't buy weapons. You steal an ambulance and ride it up to a bridge where you know an AK-47 is stashed, and use it to gun down random passersby until the cops arrive in force.
A brutal urban shootout leaves Niko wounded and low on ammo, so you escape by stealing a shot-up patrol car and driving it off a pier. You try to swim to another island, but get shot dead in the water by a police helicopter.
<<else>>\
It's impossible to be friends with these guys and not know how to use an Xbox controller. You steal a cop car and zip around the city streets for a couple of minutes, eventually getting shot to death by cops after crashing into their roadblock.
<</if>>\
"Women drivers," tuts Josh as you hand him the controller. You swap out of the chair with Tom, and the small-screen carnage [[continues|BJFORTB-3000 Mark picks up a hooker]].
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Murder spree follows murder spree, the boys laughing heartily at particularly grand or callous acts. Maybe it's just because you're on the bed and out of sight, but if you stay quiet they leave you totally out of the conversation; you feel like an outsider.
"Hello, hello," says Mark, screeching to a halt on a seedy intersection. A <<if $kate.hairColour == "blonde">>blonde<<elseif $kate.hairColour == "lightBrown">>brunette<<elseif $kate.hairColour == "black">>dark-haired<<elseif $kate.hairColour == "ginger">>red-haired<<else>>(ERROR IN KATE.HAIRCOLOUR VAR)<</if>> hooker, wearing skimpy leopard print and thigh high boots, trots up to his car window. After a brief on-screen negotiation, she climbs in.
[[Wow, Mark's finally found a girlfriend!|BJFORTB-3100 GTA cruising][$temp.kateSays to "girlfriend"]]
[[If I dressed like that, would you stop ignoring me?|BJFORTB-3100 GTA cruising][$temp.kateSays to "attention"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "girlfriend">>\
<<silently>>
<<avatar-expr-mouth-beam>>
<</silently>>\
"Wow," you chuckle, "Mark finally found a girlfriend!"
"Ha ha." Without looking round, he lifts a hand off the controller and shows you his middle finger.
<<elseif $temp.kateSays == "attention">>\
<<silently>>\
<<avatar-expr-eyebrows-raised>>
<</silently>>\
"If I dressed like that, would you three stop ignoring me?" you ask.
"Maybe if you got her body as well?" The boys laugh; you give them the finger in reply, but none of them look round.
<<else>>\
(ERROR IN TEMP.kateSays VARIABLE)
<</if>>\
Mark drives the hooker into an alleyway, and once he pulls to a stop she gives <<if $kate.quirks.includes("geekGirl")>>Niko<<else>>the little Russian guy<</if>> a BJ. Mark rotates the camera to the best view of the action. "Whore," he mutters darkly.
"You know you can kill her afterwards and get your money back, right?" says Tom.
"What a slut," muses Josh.
[[I've done that in a car.|BJFORTB-3200 Kate commands attention]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"I've done that in a car," you say.
"Huhhh?" Surprisingly, Mark pauses the game. All three of them turn around to face you.
"Who with?" asks Josh, looking like he doesn't believe it.
[[Jacob, duh.|BJFORTB-3500 My boyfriend]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Duh, who do you think?" you ask rhetorically. "Jacob."
"I hated that guy," says Tom.
"I hate him more now," grumbles Mark.
"When, uh, when was this?" asks Josh, leaning forward, head tilted.
[[Guys...I'm not describing a blowjob to you.|BJ Kate clams up]]
<<link "//Tell the story.//" "BJ Kate's storytime">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Wellll..." you begin.
<<link '"It was the day he passed his test..."' "BJ Kate's car story">>
<<set $temp.kateSays to "drivingTest">>
<</link>>
<<link '"This one time we were stuck in traffic..."' "BJ Kate's car story">>
<<set $temp.kateSays to "northCirc">>
<</link>>
<<link '"We were driving up to meet his dad..."' "BJ Kate's car story">>
<<set $temp.kateSays to "visitingHisDad">>
<</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Guys, I'm not gonna sit here and describe a blowjob to you."
"Wait, that could be helpful," says Tom. "You know...female perspective."
"I've never actually had one," admits Mark.
"See? You can help us. What's it like for a girl?"
[[It's...hard to describe.|BJ hard to describe]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know," you shrug. "It's...hard to describe."
"You should tell us about the car thing," says Josh.
"Well...
<<link '...it was the day he passed his test..."' "BJ Kate's car story">>
<<set $temp.kateSays to "drivingTest">>
<</link>>
<<link '...this one time we were stuck in traffic..."' "BJ Kate's car story">>
<<set $temp.kateSays to "northCirc">>
<</link>>
<<link '...we were driving up to meet his dad..."' "BJ Kate's car story">>
<<set $temp.kateSays to "visitingHisDad">>
<</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "drivingTest">>\
"It was the day he passed his driving test," you say. "We drove around for hours..."
You recount how you ended up in a McDonalds car park somewhere in Essex, where a steamy front seat makeout turned into you christening the car his dad bought him for his 18th.
<<elseif $temp.kateSays == "northCirc">>\
"We were stuck in a really bad traffic jam," you say. "The north circular was like a car park..."
You recount how a combination of friskiness and boredom led to you giving Jacob road head, right there in the traffic jam.
<<elseif $temp.kateSays == "visitingHisDad">>\
"We were driving up to Oxford," you say. "We were late to meet his dad for dinner..."
You recount a fast night drive up the M40, Jacob in a suit and gunning his car, masculine and sexy. About halfway there you just impulsively clicked off your seatbelt, and went down on your boyfriend as he drove.
<<else>>\
ERROR IN TEMP.KATESAYS VAR
<</if>>\
You gloss over the details, but the boys are rapt, the Xbox forgotten. They ask lots of questions – <<if $temp.kateSays == "northCirc">>if anyone else saw, <</if>>if girls like giving BJs, if <i>you</i> like giving BJs, how you decide if you're going to give a guy a BJ or not...
It's not the topic you'd have chosen, but switching from being ignored to having the boys hanging on your every word fills you with a little rush of social excitement.
<<link "//Keep talking.//" "BJ Keep talking">><</link>>
<</page>><<silently>>
<<addNotification "Arousal +1" "You're getting turned on. You think the boys are, too.">>
<<kateAddArousal>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
The boys listen carefully while you hold court. Tom keeps licking his lips lightly, like he does when he's nervous, and Josh absently strokes his arm when he watches you talk.
"Do you spit or swallow?" asks Mark.
<span class="greyedOut">[Arousal 0] That's inappropriate.</span>
[[What do you think?|BJ What kind of girl do you think I am?]]
[[Spit.|BJ Kate reveals her policy][$kate.quirks.pushUnique("spits")]]
[[Swallow.|BJ Kate reveals her policy][$kate.quirks.pushUnique("swallows")]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("spits")>>\
<<silently>>
<</silently>>
"Have <i>you</i> ever had a guy's cum in your mouth?" you ask, wrinkling your nose.
They chuckle. "Then why do you do it?" asks Mark.
You shrug. "Because I like making guys come?"
The room falls quiet. All of them are looking at you expectantly.
"Show us," Tom says suddenly.
[[Um...what do you mean?|BJ Simulation request][$temp.kateSays to "umWhat"]]
[[Ha! In your dreams maybe.|BJ Simulation request][$temp.kateSays to "hahaFuckOff"]]
<<elseif $kate.quirks.includes("swallows")>>\
<<silently>>
<</silently>>
"Swallow," you admit. "Spitting is quitting."
They chuckle, then the room falls quiet. All of them are looking at you expectantly.
"It's hard to picture," Tom says suddenly. "Help us out with the visual."
"Yeah," agrees Mark immediately.
[[Um...what do you mean?|BJ Simulation request][$temp.kateSays to "umWhat"]]
[[Ha! In your dreams maybe.|BJ Simulation request][$temp.kateSays to "hahaFuckOff"]]
<<else>>\
(ERROR! KATE SPIT/SWALLOW POLICY NOT FOUND IN KATE.QUIRKS)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"What do you think?" you ask. <i>This should be interesting.</i>
<<if $kate.quirks.includes("easy")>>\
"Swallow," Tom replies.
"Swallow," agrees Mark.
"Um...swallow," says Josh. That's unanimous.
[[Right.|BJ What kind of girl do you think I am? 2][$kate.quirks.pushUnique("swallows")]]
[[Wrong.|BJ What kind of girl do you think I am? 2][$kate.quirks.pushUnique("spits")]]
<<elseif $kate.quirks.includes("picky")>>\
"Spit," Josh replies.
"Spit," agrees Mark.
"Um...spit," says Tom. That's unanimous.
[[Right.|BJ What kind of girl do you think I am? 2][$kate.quirks.pushUnique("spits")]]
[[Wrong.|BJ What kind of girl do you think I am? 2][$kate.quirks.pushUnique("swallows")]]
<<else>>\
"Spit," says Josh.
"Spit," agrees Mark.
"Um...swallow," says Tom.
[[You two are right.|BJ What kind of girl do you think I am? 2][$kate.quirks.pushUnique("spits")]]
[[Tom's right.|BJ What kind of girl do you think I am? 2][$kate.quirks.pushUnique("swallows")]]
<</if>>\
<</page>><<silently>>
<<silently>>
<</silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("spits")>>\
<<if $kate.quirks.includes("easy")>>\
"Hah, wrong!" you laugh. "I spit."
<<elseif $kate.quirks.includes("picky")>>\
"Yeah," you nod, and wrinkle your nose. "I'm a spitter."
<<else>>\
"You two are right," you say, and wrinkle your nose. "Swallowing is gross."
<</if>>\
<<elseif $kate.quirks.includes("swallows")>>\
<<if $kate.quirks.includes("easy")>>\
"Well...yeah," you laugh. "Spitting is quitting, right?"
<<elseif $kate.quirks.includes("picky")>>\
"Hah, wrong!" you laugh. "Spitting is quitting."
<<else>>\
"Hah, Tom's right!" you laugh. "Spitting is quitting."
<</if>>\
<</if>>\
They chuckle, then the room falls quiet. All of them are looking at you expectantly.
"You should show us your technique," Tom says suddenly.
"Yeah," agrees Mark immediately.
[[Um...what do you mean?|BJ Simulation request][$temp.kateSays to "umWhat"]]
[[Ha! In your dreams maybe.|BJ Simulation request][$temp.kateSays to "hahaFuckOff"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "umWhat">>\
<<set _replies to "replies">>\
<<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>
"Um...what do you mean?" you ask uncertainly.
<<elseif $temp.kateSays == "hahaFuckOff">>\
<<set _replies to "persists">>\
You laugh. "In your dreams, maybe!"
<<silently>>
<<avatar-sassy>>
<</silently>>\
<</if>>\
"Not <i>actually,"</i> he _replies, "obviously not <i>that.</i> Just...on your fingers. So Mark knows what to expect."
You arch your eyebrows incredulously. "Excuse me?"
"From other girls," he adds quickly. "Not you. Obviously."
You look to Josh for some support...but he's just watching you hopefully.
As is Mark. "Mm, yeah, that'd really help," he assures you.
<<link "You idiots seriously want to watch me <i>suck my fingers?</i>" "BJ Simulation request 2">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Wait. You three idiots seriously want to watch me <i>suck my fingers?"</i>
A pause, then all three heads bob nervously.
<span class="greyedOut">[Arousal 0] This has gone far enough.</span>
[[This is ridiculous, but okay.|BJ Mock demonstration]]
<</page>><<silently>>
<<avatar-expr-eyebrows-rogerMoore>>
<</silently>>\
<<header>>\
<<page>>\
"This is so ridiculous." You laugh to yourself and shake your head. "Okay, how do you want me to do this?"
<<if $kate.quirks.includes("geekGirl")>>\
"Roleplay it," says Tom. <<if $temp.kateWantedToPlayDnd>>//Oh, now they wanna roleplay,// you think.<</if>>
<<else>>\
"Just act it out," says Tom. "Like in drama class."
<</if>> \
You hold two fingers up in a phallic shape, then look at the boys doubtfully.
They're watching you like three hungry cats. <i>Wow. They're really up for this.</i>
[[Here goes, I hope you're not disappointed.|BJ Mock demonstration 2]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-mouth-openWide>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know what you're expecting, but, here goes..."
You tuck your hair behind your ear, lick your lips, and take the tips of your fingers into your mouth.
They taste a bit dirty, probably from sharing the Xbox controller. But it's not like you can take a break to go wash your hands, so you slip them deeper into your mouth.
Sitting cross-legged on the bed, you start rocking your upper body in a gentle rhythm. Your lips slide softly on your fingers as you show Tom, Mark and Josh what you look like with [[a dick in your mouth|BJ Mock demonstration 3]].
<</page>><<silently>>
<<addNotification "Arousal +2" "Your nipples are hard, your pussy is wet.">>
<<kateAddArousal>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
You thought this might feel silly, but the boys are utterly entranced by your demonstration. Mark moves around for a better view; Josh just murmurs "fuck" in a strangled, quiet voice.
After a while you slide your fingers out of your mouth with a little wet <i>pop</i>. They're slick with your spit and you instinctively wipe them on your jeans. "And you do that until he comes," you shrug.
For a long moment nobody says anything.
"That was hot," manages Josh.
"<<if $kate.quirks.includes("elite")>>Bloody<<else>>Fucking<</if>> hot," agrees Tom.
"I've never had a BJ," blurts out Mark, the implication obvious. Tom and Josh glance to each other, then back at you.
You didn't immediately say no, and you know what they're both thinking: <<link "<i>wait, is she gonna</i> do <i>it?</i>" "BJ Resist seduction check">><</link>>
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 2>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _consMod to $kate.attributes.conscientiousness.level>>
<<set _agreeable to 0>>
<<set _agreeable to _agreeable - $kate.attributes.agreeableness.level>>
<<set _openness to 0>>
<<set _openness to _openness - $kate.attributes.openness.level>>
<<set _exhibitionist to 0>>
<<set _submissive to 0>>
<<if $kate.kinks.includes("exhibitionist")>>
<<set _exhibitionist to -1>>
<</if>>
<<if $kate.kinks.includes("submissive")>>
<<set _submissive to -1>>
<</if>>
<<set _easy to 0>>
<<set _picky to 0>>
<<if $kate.quirks.includes("easy")>>
<<set _easy to -1>>
<</if>>
<<if $kate.quirks.includes("picky")>>
<<set _picky to 1>>
<</if>>
<<set _arousal to -$kate.arousal>>
<<set _bonus to +4>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_consMod , "Conscientiousness"])>>
<<set _diceRollModifiers.pushUnique([ _agreeable , "Agreeableness"])>>
<<set _diceRollModifiers.pushUnique([ _openness , "Openness"])>>
<<if _exhibitionist neq 0>>
<<set _diceRollModifiers.pushUnique([ _exhibitionist , "Exhibitionist"])>>
<</if>>
<<if _submissive neq 0>>
<<set _diceRollModifiers.pushUnique([ _submissive , "Submissive"])>>
<</if>>
<<if _easy neq 0>>
<<set _diceRollModifiers.pushUnique([ _easy , "Easy"])>>
<</if>>
<<if _picky neq 0>>
<<set _diceRollModifiers.pushUnique([ _picky , "Picky"])>>
<</if>>
<<set _diceRollModifiers.pushUnique([ _arousal , "Turned on"])>>
<<set _diceRollModifiers.pushUnique([ _bonus , "Not attracted to them"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _consMod + _agreeable + _openness + _exhibitionist + _submissive + _easy + _picky + _bonus>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<b>New rule: <i>Resistance Checks.</i></b> Like anyone, $kate.firstName won't always make perfectly rational decisions when she's drunk, hurt, emotional, etc. The game simulates that by sometimes requiring you to make dice rolls to unlock the sensible choice.
In this case, $kate.firstName is a turned-on teenaged girl in a bedroom with three turned-on teenaged boys. You'll make a <i>Resist Seduction</i> check to see if she can keep a cool head.
This task is of <b>mild</b> difficulty, so you need to roll <b>2 or more</b> with a ten-sided dice (a "D10") for her to succeed.
You'll add your Conscientiousness (<<if $kate.attributes.conscientiousness.level gte 0>>+<</if>>$kate.attributes.conscientiousness.level) to the roll, and subtract your Agreeableness (<<if $kate.attributes.agreeableness.level gte 0>>+<</if>>$kate.attributes.agreeableness.level) and Arousal (+2).
You get a +4 bonus to this roll, because you're not especially attracted to any of them.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>RESIST SEDUCTION CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll resist seduction. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>RESIST</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>RESIST SEDUCTION CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>RESIST SEDUCTION CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
[[Continue|BJ Resist seduction result]] <<set $temp.resisted to true>>
<<else>>
[[Continue|BJ Resist seduction result]] <<set $temp.resisted to false>>
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The boys wait tensely for your reaction.
<<if $temp.resisted>>\
[Resisted Seduction] [[In your dreams, guys, be serious.|BJ Dream on]]
<<else>>\
<span class="greyedOut">[Resisted Seduction] In your dreams, guys, be serious.</span>
<</if>>\
[[What if someone comes in?|BJ Objection handling]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Guys," you say, a little shocked that this escalated so fast, "Are you <i>serious?</i> No way."
"Right," says Mark, suddenly abashed for having propositioned you like that. "Sorry."
"I'm not a hooker in some stupid video game," you add for good measure. "Remember that."
"Yeah, I will," he promises. "Sorry again."
"You dickhead, Mark," sniggers Josh, and then he and Tom fall about laughing. His plaintive cry of <i>'I've never had a BJ!'</i> will go down as one of the greatest Mark-isms of all time.
[[Continue|BJ Dream on 2]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, it's getting late," you say, once the hilarity dies down. You ask Josh to [[drive you home|BJ Kate goes home]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You glance at the bedroom door. "Isn't Martin back from uni? What if he comes in?"
"He won't," Mark assures you.
"I'll block it," offers Josh, wheeling his chair against the door.
[[This is weird.|BJ Objection this is weird]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"This is weird," you say to no-one in particular, but catching Tom's eye.
He just grins and shrugs in a way you find casual and encouraging. <i>What the hell, let's try it,</i> he seems to be saying with his body language. But he's not the one who's gonna–
"Well?" asks Mark.
[[I guess.|BJ Kate blows Mark][$temp.kateSays to "iGuess"]]
[[Get over here before I change my mind.|BJ Kate blows Mark][$temp.kateSays to "getOverHere"]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "iGuess">>\
"I guess," you shrug.
Mark rises from his chair. He looks to the others for support, then nervously gets onto the bed with you.
<<elseif $temp.kateSays == "getOverHere">>\
"Get over here fast before I change my mind." He doesn't need to be told twice.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
You've never felt an attraction to Mark, so tugging down his jeans and his boxers definitely feels weird. His short, stubby cocks juts up, half-erect, from a tangly bush of pubic hair.
You curl your fingers around it experimentally. <i>Oh my god...I'm touching Mark's dick!</i> It feels squidgy and warm in your hand.
[[Can't believe I'm doing this.|BJ Kate BJ check (Mark)]]
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributes to $kate.attributes.beauty.level>>
<<set _skill to -4>>
<<set _bonus to 2>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributes , "Beauty"])>>
<<set _diceRollModifiers.pushUnique([ _skill , "Sexpertise"])>>
<<set _diceRollModifiers.pushUnique([ _bonus , "Mark's Virility"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributes + _skill + _bonus>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Can't <i>believe</i> I'm doing this," you tell the room. Nobody bothers to reply; they're all too busy staring at you with Mark's dick in your hand.
<i>Well...here goes.</i> You take one last glance around, then slowly lower your face towards his body.
<i>Make a Routine <b>BJ check.</b> You need to roll 6 or more with your </i> Beauty <i> attribute (<<if $kate.attributes.beauty.level gte 0>>+<</if>>$kate.attributes.beauty.level) plus your </i> Sexpertise <i>skill (-4) to make Mark come. You'll also add Mark's</i> Virility <i>(+2) to the roll.</i>
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BJ CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to perform blowjob. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>BJ Check!</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>BJ CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BJ CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<link "//Routine BJ check ''passed.''//" "BJ Mark BJ">>
<<set $temp.kateSucceeded to true>>
<</link>>
<<else>>
<<link "//Routine BJ check ''failed.''//" "BJ Mark BJ">>
<<set $temp.kateSucceeded to false>>
<</link>>
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<set $temp.friendsBlown += 1>>
<<rTables-addStoryPartner 2>>
<<if $kate.eyeColour == "blue">>
<<set _eyeColour to "blue">>
<<elseif $kate.eyeColour == "chestnut">>
<<set _eyeColour to "doe">>
<<elseif $kate.eyeColour == "emerald">>
<<set _eyeColour to "green">>
<<elseif $kate.eyeColour == "grey">>
<<set _eyeColour to "grey">>
<<elseif $kate.eyeColour == "hazelnut">>
<<set _eyeColour to "honey brown">>
<<elseif $kate.eyeColour == "sapphire">>
<<set _eyeColour to "blue">>
<<else>>
<<set _eyeColour to "(ERROR IN EYECOLOUR TEMP VAR)">>
<</if>>
<<avatar-bjFace>>
<</silently>>\
<<header>>\
<<page>>\
Mark lays nervously still and passive on the bed. He sucks in sharply as your mouth slips onto the tip of his dick.
He's doing //nothing,// so you have to completely take the lead. Aware that Tom and Josh are watching, you go slowly and steadily, not wanting to look too eager.
His cock quickly gets stiff in your mouth as you gently suck and slurp on it, breathing through your nose.
<<if $kate.kinks.includes("exhibitionist")>>\
Your hair falls in front of you and you instinctively sweep it away, holding it up out of your face so the boys can see. From time to time you flash a _eyeColour-eyed gaze up at Mark, or over to Josh or Tom, but mostly you just concentrate on [[Mark's first blowjob|BJ Mark BJ 2]].
<<else>>\
You let your hair fall in front of your face, grateful for the flimsy scrap of privacy. In the room nobody's saying anything, everything quiet except for the soft slurping sounds of [[Mark's first blowjob|BJ Mark BJ 2]] and the eerie synths of GTA 4 on pause.
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSucceeded>>\
<<set $temp.markCame to true>>\
It takes what feels like a couple of minutes, then you sense a change, a new kind of tension in his body. You keep doing exactly what you're doing, knowing what's coming next.
"Mmh...fuck..." Mark lets out a surprisingly girlish noise and suddenly his cock twitches in your mouth, pulsing out the contents of his balls.
<<if $kate.quirks.includes("spits")>>\
When he's finished. you straighten up, a load of Mark's slimy cum in your mouth. Josh grabs a wastepaper bin and holds it up for you; you gratefully [[spit out|BJ Tom's next]] the gooey mess.
<<else>>\
<<set $temp.loadsSwallowed += 1>>\
When he's finished, you straighten up, a load of Mark's slimy cum in your mouth. The boys watch you expectantly.
<<link "//Swallow it.//" "BJ Tom's next">><<set $temp.kateSays to "gulp">><</link>>.
<</if>>\
<<else>>\
You suck his cock until your jaw aches. You're not sure how long his dick's in your mouth, but it's several minutes longer than it would have taken Jacob to come.
You try a few different things with your hand and your tongue...but you can't get him off. <i>Maybe it's just the weirdness of doing this in front of Tom and Josh,</i> you think. You <i>know</i> you're good at this, Jacob told you that all the time...it must be Mark.
After a while, by mutual unspoken consent, his first BJ fizzles out anticlimactically. You wipe your lips as you [[come up for air|BJ Tom's next]].
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<<set _random to random(1,10)>>
<<set _attributes to $kate.attributes.conscientiousness.level - $kate.attributes.agreeableness.level - $kate.attributes.openness.level>>
<<set _quirks to 0>>
<<set _kinks to 0>>
<<if $kate.kinks.includes("exhibitionist")>>
<<set _kinks -= 1>>
<</if>>
<<if $kate.kinks.includes("submissive")>>
<<set _kinks -= 1>>
<</if>>
<<if $kate.quirks.includes("easy")>>
<<set _quirks -= 1>>
<</if>>
<<if $kate.quirks.includes("picky")>>
<<set _quirks += 1>>
<</if>>
<<set _bonus to +4>>
<<set _result to _random + _attributes - $kate.arousal + _kinks + _quirks + _bonus>>
<<if _result gte 2>>\
<<set $temp.resisted to true>>
<<else>>
<<set $temp.resisted to false>>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "gulp">>\
They watch your face intently while you swallow down the gooey mess. //"Hot,"// murmurs Josh.
<</if>>\
Mark tucks away his cock and sits up. "Okay, my turn," says Tom, rolling back on his chair and parting his legs.
<i>To keep scenes moving, the game will sometimes make dice rolls for you in the background. This time, the game rolled <<if _random == 8>>an<<else>>a<</if>> _random, so you <<if $temp.resisted>>''passed''<<else>>''failed''<</if>> the check.</i>
<<if $temp.resisted>>\
[Resisted Seduction] [[No way.|BJ One is enough]]
<<else>>\
<span class="greyedOut">[Resist Seduction check failed] In your dreams.</span>
<</if>>\
[[OK...but strictly just this once.|BJ Tom BJ check]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
You wipe your lips and shake your head. "Nuh uh. No way."
"Huh? You just gave <i>him</i> a BJ."
"Well <i>he</i> wasn't a dick about it."
"C'mon, $kate.firstName," he wheedles. "Be fair."
[[(End it here) Not doing it.|BJ Kate rebuffs Tom]]
[[Fine, but just this once, got it?|BJ Tom BJ check]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"Nope." You rub your sore jaw muscles. "Not doing it."
<i>"Fine,"</i> he sulks.
It's getting late anyway. After a short while, Josh [[drives you home|BJ Kate goes home]].
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributes to $kate.attributes.beauty.level>>
<<set _skill to -4>>
<<set _bonus to 2>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributes , "Beauty"])>>
<<set _diceRollModifiers.pushUnique([ _skill , "Sexpertise"])>>
<<set _diceRollModifiers.pushUnique([ _bonus , "Tom's Virility"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributes + _skill + _bonus>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<avatar-horny>>
<<set $temp.friendsBlown += 1>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("BJ One is enough")>>\
"Ugh." You affect an exasperated sigh. "Fine, but this is just a one-time thing, got it?"
"Mm-hm."
"I'm serious."
He nods back in solemn agreement. Satisfied, you slide off Mark's bed, and move over to Tom's chair.
<<else>>\
You hadn't agreed to do anything with the others, but something about the presumptive way he asked makes it feel okay in the heat of the moment.
On one condition: "This is just a one-time thing," you specify in advance.
"Mm-hm."
"I'm serious."
He nods in solemn agreement. Satisfied, you slide off Mark's bed, and move over to Tom's chair.
<</if>>\
You kneel down between his legs as he unfastens his jeans and tugs out his cock. It's bigger than Mark's, and already hard.
<i>Make a Routine <b>BJ check.</b> You need to roll 6 or more with your </i> Beauty <i> attribute (<<if $kate.attributes.beauty.level gte 0>>+<</if>>$kate.attributes.beauty.level) plus your </i> Sexpertise <i>skill (-4) to make Tom come. You'll also add Tom's</i> Virility <i>(+2) to the roll.</i>
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BJ CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to perform blowjob. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>BJ Check!</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>BJ CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BJ CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<link "//Routine BJ check ''passed.''//" "BJ Tom BJ">>
<<set $temp.kateSucceeded to true>>
<</link>>
<<else>>
<<link "//Routine BJ check ''failed.''//" "BJ Tom BJ">>
<<set $temp.kateSucceeded to false>>
<</link>>
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-bjFace>>
<<if $kate.quirks.includes("elite")>>
<<set _veryGoodSays to 'bloody great," says'>>
<<else>>
<<set _veryGoodSays to 'fucking brilliant, mate," grunts'>>
<</if>>
<<rTables-addStoryPartner 4>>
<</silently>>\
<<header>>\
<<page>>\
He tastes different from Mark, not better or worse just...more Tom.
In this position, kneeling over his lap with your hands on his thighs and his hard dick in your mouth, you feel very submissive. Your nipples are stiff in your bra and your <<if $kate.quirks.includes("commando")>>pussy feels hot and wet under your jeans<<else>>thong is hot and wet<</if>>.
Tom sprawls back in the chair, luxuriating in the sensation of a BJ from $kate.firstName $kate.surname. You suck and slurp on his cock like you did with Mark, slow and rhythmic.
Off to your side, the others are talking. "That was _veryGoodSays Mark. Josh just <i>mm-hmms</i> distractedly, watching [[the action|BJ Tom BJ 2]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your head bobs softly up and down in Tom's lap, mouth working gently on his hard cock. After a while, he starts thrusting his hips a little, encouraging you to a faster pace.
<<if $temp.kateSucceeded>>\
Getting the message, you speed up, syncing your slippery mouth in time with his thrusting penis. He rests his hand on top of your head.
You suck and lick at this new pace for a few minutes. His cock's <i>so</i> hard and your pussy's <i>so</i> wet. <i>Slurp, slurp, gulp, slurp.</i>
Suddenly, he grabs a handful of your hair, <i>tight.</i>
<<else>>\
<<set $temp.faceFuckedBy.push("tom")>>\
You keep sucking and licking. Soon his hand curls into your hair, pushing you down a little further – not super aggressive, but definitely taking control. You go along with it, letting him do what he wants.
He speeds up, using your hair like a handle, until it feels less like you're giving him a a BJ, and more like you're just holding your mouth open while he fucks it. His dick keeps touching the back of your throat, making you gag. "Oh yeah," he murmurs breathily. "That's it..."
<</if>>\
"<<if $kate.quirks.includes("elite")>>Bloody hell<<else>>Fuck<</if>>, I'm gonna come," he [[warns|BJ Tom BJ money shot]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Holding a tight fistful of your hair, Tom lets out a groan...and the salty contents of his balls, right into your mouth.
When he's done, he lifts you up off his cock, pulling you up by the hair. He holds you there for a moment of intense, probing eye contact, his cum in your mouth, a smirk playing on his.
<<if $kate.quirks.includes("swallows")>>\
"Go on," he says expectantly.
<<link "//Swallow it.//" "BJ Tom BJ Kate swallows">><</link>>
<<else>>\
"Let her go, man," says Josh, and he does, with a dismissive little shove.
<<if $temp.markCame>>\
Mark passes you the wastepaper bin. You spit Tom's cum into it, to mingle with Mark's.
<<else>>\
Mark grabs a wastepaper bin and passes it to you; you gratefully spit out Tom's slimy load.
<</if>>\
You climb unsteadily back to your feet. Wiping your lips, you turn and look at Josh.
He holds up his hands nervously. "You don't have to," he says.
[[(End things here) Thanks, this is already too weird.|BJ Josh waves off Kate][$temp.kateSays to "thanks"]]
[[(End things here) Fine, I won't twist your arm.|BJ Josh waves off Kate][$temp.kateSays to "fine"]]
[[I want to.|BJ Josh's turn][$temp.kateSays to "iWantTo"]]
[[Relax, you'll enjoy it.|BJ Josh's turn][$temp.kateSays to "relax"]]
<</if>>\
<</page>><<silently>>
<<set $temp.loadsSwallowed += 1>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Gripping your hair, Tom stares intensely into your eyes as you <<if $temp.markCame>>swallow down your second load of the night<<else>>swallow down his slimy load<</if>>. There's an expression on his face you've never seen before – it's like you're looking up at a total stranger.
"Let her go, man," says Josh, and he does, with a dismissive little shove.
You climb unsteadily back to your feet. Wiping your lips, you turn and look at Josh.
He holds up his hands nervously. "You don't have to," he says.
[[(End things here) Thanks, this is already too weird.|BJ Josh waves off Kate][$temp.kateSays to "thanks"]]
[[(End things here) Fine, I won't twist your arm.|BJ Josh waves off Kate][$temp.kateSays to "fine"]]
[[I want to.|BJ Josh's turn][$temp.kateSays to "iWantTo"]]
[[Relax, you'll enjoy it.|BJ Josh's turn][$temp.kateSays to "relax"]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "thanks">>\
"Yeah," you say. "Tonight's been weird enough, right?"
"Right," he smiles weakly, then looks down at his feet.
<<elseif $temp.kateSays == "fine">>\
"Well...okay," you shrug. "No problem."
"Cool." He shrugs weakly, then looks down at his feet.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<if $temp.markCame>>\
[[Continue|BJ wrapping up]]
<<else>>\
"Can I have another go?" asks Mark.
<<if $kate.attributes.agreeableness.level lt 0>>\
[Disagreeable] [[I'm not a fucking fairground ride.|BJ Kate refuses round 2][$temp.kateSays to "imNotARide"]]
<<else>>\
<span class="greyedOut">[Disagreeable] I'm not a fucking fairground ride.</span>
<</if>>\
[[No, I'm BJ'd out.|BJ Kate refuses round 2][$temp.kateSays to "imBjdOut"]]
[[Will you actually come this time?|BJ Kate agrees to round 2]]
<</if>>\
<</page>><<silently>>
<<avatar-horny>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "iWantTo">>\
"I want to," you reply.
<<elseif $temp.kateSays == "relax">>\
"Relax, you'll enjoy it."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
You cross the room to his chair, backed up against the door. Josh doesn't move so you push his knees apart with your fingertips, and kneel down between them.
You unfasten his belt and jeans, and tug them down to reveal his boxers.
You can sense he's nervous as you reach in through the slit of his underwear, and pull his dick out into the room. It's small and soft.
<i>Josh has the Hair Trigger quirk, so you won't need to pass a BJ check to make him come.</i>
<<link "<i>Complete the set.</i>" "BJ Josh BJ">><</link>>
<</page>><<silently>>
<<avatar-bjFace>>
<<set $temp.friendsBlown += 1>>
<<rTables-addStoryPartner 3>>
<</silently>>\
<<header>>\
<<page>>\
Holding his soft dick in your fingers, you guide it into your mouth, gently licking and sucking your third cock in the last few minutes.
It stirs and gets hard in your mouth fast, almost suddenly. His cock's surprisingly long when it's hard, as long as Tom's, and bringing it to life so fast makes you feel sexy and competent<<if not $temp.markCame>>, especially after not being able to make Mark come<</if>>.
It's also hot how fast Josh goes from nervous reluctance to pleasure. Once his dick is hard, the rest of his body relaxes, and he starts making sexy little murmurs as you suck.
He touches your hair, not pulling on it like Tom did, but stroking it affectionately.
<<link "//Suck Josh's cock.//" "BJ Josh BJ 2">><</link>>
<</page>><<silently>>
<<set $temp.loadsSwallowed += 1>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
After the rough treatment from Tom, Josh's gentle affection feels very sensual. You speed up without realising, your wet mouth bobbing up and down on his long, stiff cock, fast and eager. Your knees are starting to ache anyway, and you hope you can...
"Bloody hell," chuckles Mark, reminding you that you have an audience, "she loves that!"
Suddenly – and you can't have made him hard more than a minute ago – Josh comes in your mouth. You weren't expecting it <i>at all,</i> and you nearly choke it out all over him!
You fall back onto your butt, a hand over your mouth, trying not to spit it out on the carpet. <<if $kate.quirks.includes("spits")>>There's no time for the wastepaper bin, this time, you just gulp it down before it goes everywhere.<<else>>After a moment you get yourself under enough control to force it down your throat.<</if>>
Tom and Mark both titter at him. "Sorry," he says to you, his cheeks turning a deep red. From your place on the floor you wave away his apology, <i>no problem, Josh.</i>
<<if $temp.markCame>>\
[[Continue|BJ wrapping up]]
<<else>>\
"Can I have another go?" asks Mark.
<<if $kate.attributes.agreeableness.level lt 10>>\
[Low Agreeableness] [[I'm not a fucking fairground ride.|BJ Kate refuses round 2][$temp.kateSays to "imNotARide"]]
<<else>>\
<span class="greyedOut">[Low Agreeableness] I'm not a fucking fairground ride.</span>
<</if>>\
[[No, I'm BJ'd out.|BJ Kate refuses round 2][$temp.kateSays to "imBjdOut"]]
[[Will you actually come this time?|BJ Kate agrees to round 2]]
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "imNotARide">>\
<<silently>>
<<avatar-expr-eyebrows-frown>>
<</silently>>\
"I'm not a fucking fairground ride," you say sharply.
"Sorry, sorry," Mark says hurriedly. "No offence."
<<elseif $temp.kateSays == "imBjdOut">>\
<<silently>>
<<avatar-expr-eyebrows-rogerMoore>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
"Sorry," you shake your head. "I'm BJ'd out."
"Please?" he asks. "I didn't come, it's not fair."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
[[Will you actually come this time?|BJ Kate agrees to round 2]]
[[(End things here) Not doing it.|BJ Kate refuses round 2 2]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not doing it," you tell him. Mark nods, disappointed.
[[Continue|BJ wrapping up]]
<</page>><<silently>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Will you actually come this time?" you ask.
"Yeah," he says eagerly, making for his bed again. "Can you take your top off?"
[[Don't push your luck.|BJ Kate keeps her top]]
[[If it'll help.|BJ Kate goes topless]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"Don't push your luck."
"Okay," he grins. Mark climbs onto his bed, wriggling his jeans and boxers down again, baring his stubby cock to you for the second time.
<<link "//Join him on the bed.//" "BJ Mark round 2">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"If it'll help," you say as you follow him to the bed. "Josh, don't let <i>anyone</i> through that door."
<<link "//Take off your top.//" "BJ Kate goes topless 2">><</link>>
<</page>><<silently>>
<<set _path to "teenRom/">>
<<set $avatar.clothing.delete((_path+"30_rockerTop-blackAndRedSkinnyfitSlipknotTshirt-"+$kate.braSize),(_path+"30_geekTop-PinkFlaredVestNatural20-"+$kate.braSize),(_path+"30_sportyTop-hotPinkLooseCroppedVestNoGames-"+$kate.braSize),(_path+"30_alphaTop-whiteCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize))>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
You lift your top off over your head, and toss it onto the bed. The boys eye your body appraisingly.
"This feels so fucked up," you say. Nobody answers.
<<link "//Take off your bra.//" "BJ Kate goes topless 3">><</link>>
<</page>><<silently>>
<<characterCreator-setBreasts "bare">>
<<update-avatar-tattoo-piercing "bare">>
<<set _path to "teenRom/">>
<<set $avatar.clothing.delete((_path+"30_rockerTop-blackAndRedSkinnyfitSlipknotTshirt-"+$kate.braSize),(_path+"30_geekTop-PinkFlaredVestNatural20-"+$kate.braSize),(_path+"30_sportyTop-hotPinkLooseCroppedVestNoGames-"+$kate.braSize),(_path+"30_alphaTop-whiteCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize))>>
<<set $avatar.underwear.delete((_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize),(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize),(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize),(_path+"30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize))>>
<<if $kate.braSize == "large">>
<<set _perky to "big">>
<<elseif $kate.braSize == "medium">>
<<set _perky to "perky">>
<<elseif $kate.braSize == "small">>
<<set _perky to "perky">>
<<else>>
<<set _perky to "(ERROR IN PERKY TEMP VAR)">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You undo your bra and slip it off, baring your _perky<<if $kate.piercings.includes("nipplesSilverBarbells")>>, pierced <</if>> boobs. Your nipples are rock hard.
"Wow," murmurs Josh.
<<if $kate.braSize == "large">>\
<<silently>>
<<avatar-expr-mouth-smirk>>
<</silently>>\
"<<if $kate.quirks.includes("elite")>>Bloody hell<<else>>Fuck me<</if>>," exclaims Tom. "They're massive!"
<<elseif $kate.braSize == "small">>\
<<silently>>
<<avatar-expr-eyebrows-frown>>
<</silently>>\
"Yeah, $kate.firstName," sniggers Tom. "Get the bee stings out." //Ugh.// You give him the finger.
<<else>>\
"Yeah, not bad" agrees Tom.
<</if>>\
On his bed, Mark has already wriggled his jeans and boxers down around his knees, baring his stubby cock once more.
<<link "//Join him on the bed.//" "BJ Mark round 2">><</link>>
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributes to $kate.attributes.beauty.level>>
<<set _skill to -4>>
<<set _bonusV to 2>>
<<set _iveBeenHereBefore to 1>>
<<if hasVisited("BJ Kate goes topless 2")>>
<<if $kate.braSize == "large">>
<<set _toplessBonus to 2>>
<<else>>
<<set _toplessBonus to 1>>
<</if>>
<<else>>
<<set _toplessBonus to 0>>
<</if>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributes , "Beauty"])>>
<<set _diceRollModifiers.pushUnique([ _skill , "Sexpertise"])>>
<<set _diceRollModifiers.pushUnique([ _bonusV , "Mark's Virility"])>>
<<set _diceRollModifiers.pushUnique([ _iveBeenHereBefore , "You already sucked Mark's cock once before"])>>
<<if _toplessBonus gt 0>>
<<set _diceRollModifiers.pushUnique([ _toplessBonus , "Topless bonus"])>>
<</if>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributes + _skill + _bonusV + _iveBeenHereBefore + _toplessBonus>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
Mark strokes his dick as you climb onto the bed. In a few moments you're going down on him again, <<if $kate.kinks.includes("exhibitionist")>>holding your hair out of your face with one hand<<else>>your hair falling over your face<</if>>.
"<<if $kate.quirks.includes("elite")>>Bloody odd<<else>>Fucking weird<</if>> evening," you hear Tom saying to Josh.
<i>Make another Routine <b>BJ check.</b> You need to roll 6 or more with your </i> Beauty <i> attribute (<<if $kate.attributes.beauty.level gte 0>>+<</if>>$kate.attributes.beauty.level) plus your </i> Sexpertise <i>skill (-4) to make Mark come. You'll also add Mark's</i> Virility <i>(+2) to the roll, and you get +1 for having sucked Mark's cock before. <<if hasVisited("BJ Kate goes topless 2")>><<if $kate.braSize == "large">>You get +2 for doing this topless.<<else>>You get +1 for doing this topless.<</if>><</if>></i>
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BJ CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to perform blowjob. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>BJ Check!</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>BJ CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BJ CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<link "//Routine BJ check ''passed.''//" "BJ Mark round 2 BJ">>
<<set $temp.kateSucceeded to true>>
<</link>>
<<else>>
<<link "//Routine BJ check ''failed.''//" "BJ Mark round 2 BJ">>
<<set $temp.kateSucceeded to false>>
<</link>>
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-bjFace>>
<<set $temp.markCame to true>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSucceeded>>\
Mark strokes your hair like he thinks you're a cat or something. At first you have no idea what he's doing: then you realise he's trying to copy what Josh did.
The realisation almost makes you burst out laughing. But in a way it's also kind of touching; he's doing what he thinks you like. //I can work with this.//
Acting like your hair's an erogenous zone and he's turning you on, you pick up the pace, mouthing up and down on his stiff, stubby cock quicker and more urgently.
"Ah yeah," he murmurs, totally buying your performance. "That's it." He strokes your head more enthusiastically, convinced he's figured out how you work. It'd be hilarious, if you weren't focused on your play-acting.
Soon you feel a new tension enter his body, his cock feeling stiff and sensitive between your lips. You throw in a new element – some subtly orgasmic little murmurs – and that pushes him over the edge.
"Mmh...fuck..." He lets out a surprisingly girlish noise and suddenly his cock twitches in your mouth, pulsing out the contents of his balls.
<<else>>\
<<set $temp.faceFuckedBy.push("mark")>>\
Following Tom's example, Mark takes a firm grip on your hair, clumsily enough to make you wince. At first you think he wants you to hold still; you look up at him quizzically, his dick on your tongue.
With little pushes and sharp tugs, he encourages you to bob up and down, just a little, just on the tip. "Ah, yeah," he murmurs, "like that."
With his other hand he starts tugging rhythmically on the shaft of his cock...masturbating into your mouth. It feels a little bit objectifying, but you can sense it's doing the trick, so you play along.
Soon you feel the tip of his cock becoming stiffer and more sensitive between your lips. You slip your mouth deeper onto his shaft, getting ready for what's going to happen next.
"Mmh...fuck..." He lets out a surprisingly girlish noise and suddenly his cock twitches in your mouth, pulsing out the contents of his balls.
<</if>>\
<<if $kate.quirks.includes("spits")>>\
When he's finished you straighten up, holding a gooey mess in your mouth. Josh holds up the wastepaper bin for you.
<<link "//Spit it out.//" "BJ Mark round 2 cumshot admin">><</link>>
<<else>>\
When he's finished you straighten up, holding a third load of slimy cum in your mouth. The boys watch you expectantly.
<<link "//Swallow it.//" "BJ Mark round 2 cumshot admin">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("spits")>>\
Mark's cum joins Tom's in the wastepaper bin. "Thanks," you say to Josh.
<<link "//Continue.//" "BJ wrapping up">><</link>>
<<else>>\
<<set $temp.loadsSwallowed += 1>>\
With a gulp, you chug down your third slimy cum shot of the night.
<<link "//Continue.//" "BJ wrapping up">><</link>>
<</if>>\
<</page>><<silently>>
<<lifepath-BJFORTB-setup-clothes>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
"Well that beats GTA," quips Tom.
"Don't get used to it," you warn them. "That was a one-time thing."
The boys all solemnly swear that you're still an Honorary Bro to them. After a short while, Josh [[drives you home|BJ Kate goes home]].
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Back at home you go straight to your room, peel off your clothes, and slip under the covers for some steamy <<link "$kate.firstName time" "BJ Menage a moi">><</link>>.
<</page>><<silently>>
<<lifepath-BJ-MenageAMoi-clothes>>
<<avatar-sexFace>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.friendsBlown == 0>>\
You'd never admit it, but putting on that show for Mark, Tom and Josh was a serious turn-on, even hotter than that time you let them mess around with your bra strap.
Honestly, if the circumstances were different...you wouldn't mind giving Mark his first BJ.
<<else>>\
You can't believe what you just did. You can still taste <<if $temp.friendsBlown == 1>>Mark's dick<<else>>their dicks<</if>> in your mouth!
You should probably feel mortified...but right now, all you feel is turned on.
<</if>>\
You reach between your legs. Your body feels wet and responsive, and in //serious// need of [[some TLC|BJ Kate's fantasy]].
<</page>><<silently>>
<<set _katesFantasy to $kate.kinks.random()>>
<<avatar-orgasmFace>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.friendsBlown == 0>>\
You replay the evening in your head, caressing your body as you remember what prick-teasing the boys felt like. You imagine how things might have gone if you'd decided to put on a more thorough demonstration...
<<set _mentalImage to "fantasy of being fucked by all three of them at once">>\
<<elseif $temp.friendsBlown == 1>>\
<<if _katesFantasy == "exhibitionist">>\
You replay the evening in your head, caressing your body as you remember how it felt when you slipped Mark's cock into your mouth, while the other two watched...
<<set _mentalImage to "fantasy about letting Tom and Josh taking pictures with their phones">>\
<<elseif _katesFantasy == "submissive">>\
You replay the evening in your head, caressing your body as you remember the moment you <<if $temp.markCame>><<if $kate.quirks.includes("spits")>>made Mark come<<else>>gulped down Mark's cum<</if>><<else>>came up for air off Mark's cock<</if>>. "My turn," Tom had said, and you imagine how things might have gone if you'd obeyed...
<<set _mentalImage to "fantasy of your friends passing you around for blowjobs">>\
<<elseif _katesFantasy == "masochist">>\
You replay the evening in your head, caressing your body as you remember the moment you <<if $temp.markCame>><<if $kate.quirks.includes("spits")>>made Mark come<<else>>gulped down Mark's cum<</if>><<else>>came up for air off Mark's cock<</if>>. "My turn," Tom had said, and you imagine how things might have gone if he hadn't taken no for an answer...
<<set _mentalImage to "fantasy of being held down on the bed for Tom to fuck">>\
<</if>>\
<<elseif $temp.friendsBlown == 2>>\
<<if _katesFantasy == "exhibitionist">>\
You replay the evening in your head, caressing your body as you remember how it felt to suck Mark's cock, then Tom's, while the other two watched...
<<set _mentalImage to "fantasy about letting them take pictures with their phones next time">>\
<<elseif _katesFantasy == "submissive">>\
You replay the evening in your head, caressing your body as you remember the moment Tom lifted you up off his cock, holding you in place with a fistful of your hair. <i>The way he looked at me...</i>
<<set _mentalImage to "mental image of Tom's smug, scornful expression">>\
<<elseif _katesFantasy == "masochist">>\
You replay the evening in your head, caressing your body as you remember how it felt when Tom <<if $temp.faceFuckedBy.includes("tom")>>started using<<else>>grabbed<</if>> your hair like a handle...
<<set _mentalImage to "fantasy of Tom just //shoving// his cock into your throat">>\
<</if>>\
<<else>>\
<<if _katesFantasy == "exhibitionist">>\
You replay the evening in your head, caressing your body as you remember how it felt to slip each cock into your mouth, while the other two watched...
<<set _mentalImage to "fantasy about letting them take pictures with their phones next time">>\
<<elseif _katesFantasy == "submissive">>\
You replay the evening in your head, caressing your body as you remember how it felt just being passed around casually like that...
<<set _mentalImage to "fantasy about them making you do this //every time you hang out//">>\
<<elseif _katesFantasy == "masochist">>\
You replay the evening in your head, caressing your body as you remember how it felt when Tom <<if $temp.faceFuckedBy.includes("tom")>>started using<<else>>grabbed<</if>> your hair like a handle...
<<set _mentalImage to "fantasy of Tom just //shoving// his cock into your throat">>\
<</if>>\
<</if>>\
You come very fast, a _mentalImage bringing you to a sudden, powerful orgasm. You have to roll over and bite your pillow to keep from screaming.
[[Continue|BJ The aftermath]]
<</page>><<silently>>
<<if $kate.quirks.includes("rockChick")>>
<<set _skypeGroup to "naked tuna">>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set _skypeGroup to "d&d">>
<<else>>
<<set _skypeGroup to "business studies">>
<</if>>
<<avatar-stripNaked>>
<<lifepath-bj-aftermath>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.friendsBlown gt 0>>\
Things are a little weird with the boys over the next few weeks. You guys have maintained a Skype group chat called <i>_skypeGroup</i> since you were all 14, and at first all the messages in it are about last night.
<<if $temp.friendsBlown == 1>>\
In the chat, Tom and Josh make lots of jokes about it being unfair that you left them out. Privately, they both message you and ask for BJs; Tom openly, Josh just kind of hinting. Mark also lets you know that he wants to try that again sometime, without the audience.
<<elseif $temp.friendsBlown == 2>>\
In the chat, Tom and Mark tease Josh about what he missed out on. Privately, he sends you some weird messages; you get the sense that he feels like he deserves a BJ, (for having not asked you for a BJ). Tom also starts hassling you for nudes.
<<else>>\
In the chat, you have to put up with a lot of what would feel like slut-shaming if you hadn't grown up with them, and learned that taunts are just how they bond.
While they roast you in the main chat, all three of them send you private messages admitting how sexy they found it, and hinting that they want to do it again but without the other two. Tom starts messaging you at weird hours and asking for nudes, and that goes on for months.
<</if>>\
Eventually, things mostly go back to normal. But they never, ever let you <i>completely</i> forget that night.
<<else>>\
Once you cool down, you're glad that you didn't let thing go further than some flirting about BJs. They're your friends, and you'd hate to do anything to jeopardise that.
All three of them are great guys, even though they're lazy toads. Who are kind of selfish. And really messy.
Also, they could shower more often, and be nicer to girls. And be more reliable when you need their help with things. And want to do more with their lives than just sit around smoking weed, and playing GTA and Call of Duty.
Okay, "great guys" is overselling them a little. But they'll grow up <i>someday,</i> right?
<</if>>\
[[Continue|UKTEENROM-5000 Other partners]]
<</page>>/*Remove "-12" to go back to other version. */
<<nobr>>
<div class="five-eyes">
Formed in 1956 – but so secret its existence was denied until 2010 - FIVE EYES is an intelligence alliance between the US, the UK, Australia, Canada and New Zealand.
</div>
<h2>
You’ll control an intelligence officer from a FIVE EYES member state:
</h2>
/* Move this to a more global initialization routine */
<div id="agency-list">
<<agency-list>>
</div>
<<if $kate.agency == "mi6">>
<footer id="page-footer" class="buttons">
<<button "Next" character-creator>> <<characterCreator-updateAvatar>><</button>>
</footer>
<<else>>
<footer id="page-footer" class="buttons">
<<button "(Available soon)">><</button>>
</footer>
<</if>>
<</nobr>><<silently>>
<<first>>
<<addNotification "Supersize me!" "Change avatar size in the Settings top menu.">>
<</first>>
<</silently>>\
<div id="characterCreatorBraSize">
<<character-creator>>
</div><<nobr>>
<<silently>>
<<set _selectedAttribute to 'openness' >>
<</silently>>
<<attributes-select>>
<</nobr>><<nobr>>
<<silently>>
<<set _selectedKink to 'exhibitionist' >>
<</silently>>
<<kinks-select>>
<</nobr>><<nobr>>
<<silently>>
<<set _selectedQuirk to 'batarian' >>
<</silently>>
<<quirks-select>>
<</nobr>><<silently>>
/* sell tickets to the band's parents */
<<set _ticketsSold to 8>>
<<avatar-age16-normal>>
<<if $kate.quirks.includes("single mum")>>
<<set _ticketsSold -= 1>>
<</if>>
<<countKatesSiblings>>
<<if $kate.quirks.includesAll("big brother", "big sister")>>
<<set _ticketsSold += 2,
_ticketsSold += random(2,8),
_yourSiblingsHelp to "Your big brother and sister both agree to come, and to bring some friends">>
<<elseif $kate.quirks.includes("big brother")>>
<<set _ticketsSold += 1,
_ticketsSold += random(1,3),
_yourSiblingsHelp to "Your big brother agrees to come, and bring some of his friends">>
<<elseif $kate.quirks.includes("big sister")>>
<<set _ticketsSold += 1,
_ticketsSold += random(1,3),
_yourSiblingsHelp to "Your big sister agrees to come, and bring some of her friends">>
<</if>>
/* bandmates each sell 3D4 tickets */
<<set _ticketsSold += random(9,36)>>
/* kate sells 1D4 tickets per point of Extraversion */
<<set _min to ($kate.attributes.extraversion.level + 3),
_max to ($kate.attributes.extraversion.level * 4),
_ticketsSold += random(_min, _max)>>
<<if _ticketsSold gte 75>>
<<set _ticketsSold to 74>>
<<elseif _ticketsSold gte 30>>>>
<<set _youSell to "It's really tough selling gig tickets in the middle of revision season. But you work hard, and the band manages to sell">>
<<else>>
<<set _youSell to "It's really tough selling gig tickets in the middle of revision season. In the end, the band only manages to sell">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You mail in your demo, and wait with bated breath.
A few weeks later, the news comes back...you're in! It's hard to get gigs when you're just starting out, so this could be a game changer.
The promoter sends you a wedge of 100 pre-sale tickets, and encourages you to work your asses off selling them to your fans. \
<<if $kate.attributes.extraversion.level gte 1>>\
But you don't <i>have</i> any fans yet, so even with your myriad of friends and acquaintances, this will be a challenge.
<<elseif $kate.attributes.extraversion.level lt 0>>\
But you don't <i>have</i> any fans yet, so you're going to have to beg friends and family members for support. It sounds exhausting, and you're tempted to beg one of your bandmates to do your share as well.
<<elseif $kate.attributes.neuroticism.level gt 0>>\
But you don't <i>have</i> any fans yet, so you're going to have to beg friends and family members for support. The thought of them saying no makes you feel queasy.
<<else>>\
The problem is that you don't <i>have</i> any fans yet, so you all have to resort to begging friends and family members for support.
<</if>>\
The next few weeks see a flurry of hustling from the four of you. <<if def _yourSiblingsHelp>>_yourSiblingsHelp.<</if>> It seems like the lamest thing in the world for a band to invite all their parents to a rock show, but you need the numbers.
_youSell _ticketsSold tickets to the show.
[[Continue|CC-BOTB-2000 Rehearsal schedule]]
<</page>><<silently>>
<<set $header.line1 to "''BIG SOUND REHEARSAL ROOMS'', LONDON">>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
The preparation's hectic – rehearsing, songwriting and selling tickets, all against the backdrop of your GCSE revision.
You're all feeling the pressure, but Tom and Josh are taking it out on each other, clashing over every single decision. Last week it was the setlist, this week it's the band's onstage look.
Josh says the music should speak for itself, which you agree with, but Tom argues that bands always look cooler than the audience, which you <i>also</i> agree with.
"We need every edge we can get," he says. "What about if we all wear just black? And $kate.firstName wears something, y'know, sexy?"
Josh rolls his eyes.
[[Josh's right, we're not a glam band.|CC-BOTB-2100 Not changing our look]]
[[Tom's got a point.|CC-BOTB-2200 Metal makeover]]
<</page>><<silently>>
<<avatar-age16-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Josh's right," you weigh in, "we're not a glam band. Let's worry about the songs, not our clothes?"
Tom grumbles about missing opportunities, but his idea of giving <i>Naked Tuna</i> a heavy metal makeover is soon just history.
Thinking about it later, you're sure you made the right decision. If you're going to be up on stage in front of a hundred people you want to be judged for [[your art|CC-BOTB-3000 Title Card]], not your appearance.
<</page>><<silently>>
<<set $temp.metalMakeover to true>>
<<avatar-age16-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"I think Tom's got a point," you weigh in. "There'll be industry people there, we should try to look the part."
Josh grumbles about selling out, but this could be <i>Naked Tuna's</i> big chance, and he agrees to work on his look.
As for you, you're willing to do what it takes to put your band on the map. At home you flip through your stack of Metal Hammer and Kerrang! magazines, seeking inspiration from the one or two [[rock chicks|CC-BOTB-3000 Title Card]] they feature in each issue.
<</page>><<page>>\
[[THREE WEEKS LATER...|CC-BOTB-4000 Showtime]]
<</page>><<silently>>
<<set $header.line1 to "''THE BUFFALO BAR,'' N LONDON">>
<<lifepath-16yrAvatarRockChickBOTB>>
<<getKatesHighSchool>>
<<if $kate.quirks.includes("big brother")>>
<<set _sheSmilesReassuringly to "You pick out your brother's face just behind them">>
<<elseif $kate.quirks.includes("big sister")>>
<<set _sheSmilesReassuringly to "You pick out your sister's face just behind them">>
<<else>>
<<set _sheSmilesReassuringly to "They look up expectantly">>
<</if>>
<<avatar-age16-expr-eyebrows-worried>>
<</silently>>\
<<header>>\
<<page>>\
It's the night of the show, and you're the opening act! After struggling through a sound check that none of you really understood, followed by an agonising too-long wait in a dingy dressing room, it's showtime. You follow Tom out onto the massive stage, a sick feeling of dread churning in your stomach.
You've been told there are more than 100 people here, but it's a big dark venue and nobody's on the floor. For a second it feels like you'll be playing to an empty room.
Then $temp.firstFriend appears, leading a little trickle of friends from _highSchoolShortName right up to the stage. _sheSmilesReassuringly. "We are <i>Naked Tuna,"</i> Tom snarls into the mic. "Hit it!"
Mark smashes his hi-hat cymbal four times, hard and fast, and it's too late to back out now. You launch into the opening bassline of [["Because My Life"|CC-BOTB-5000 Intro to dice rolling]]...
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _consMod to $kate.attributes.conscientiousness.level>>
<<set _bass to 0>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_consMod , "Conscientiousness"])>>
<<set _diceRollModifiers.pushUnique([_bass , "Musician (Bass Guitar)"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _consMod + _bass>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
<i>Female Agent</i> uses dice rolls to simulate life's uncertainty. If you like, you can save your game before a dice roll just in case you get a bad result – but $kate.firstName's story will be more nuanced if she fails sometimes, so most players prefer to let the dice fall where they may.
In this case, you'll roll to see how well $kate.firstName plays at her first big gig. This task is of <b>moderate</b> difficulty, so you need to roll <b>6 or more</b> with a ten-sided dice (a "D10") for her to succeed.
You'll add her <i>Musician (Bass Guitar)</i> skill (+0) to the roll. A lot depends on how hard she's been practicing, so you'll add her <i>Conscientiousness</i> attribute (<<if $kate.attributes.conscientiousness.level gte 0>>+<</if>>$kate.attributes.conscientiousness.level) to the roll, too.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BASS CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to nail your part. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PLAY GIG</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>BASS CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BASS CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
[[Musician (Bass Guitar) check passed!|CC-BOTB-5100 Bass check passed]]
<<else>>
[[Musician (Bass Guitar) check failed.|CC-BOTB-5200 Bass check failed]]
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-age16-smile>>
<</silently>>\
<<header>>\
<<page>>\
Your bass rolls menacingly out of the club's PA, perfectly locked in to Mark's pounding tom-tom beat. Josh's guitar kicks in over the top, raw and distorted.
You've been staring at your fretboard, but now you dare to look up. The first thing you see is Tom, holding his mic stand like a rock star, looking back at you.
When he catches your eye he grins encouragingly, and you feel a surge of confidence. You guys are fucking [[nailing it|CC-BOTB-6000 Nailed the set]]!
<</page>><<silently>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-eyes-big>>
<<avatar-age16-expr-mouth-snarl>>
<</silently>>\
<<header>>\
<<page>>\
Mark's counting you in way too fast. You blast out the bassline to <i>Because My Life</i> in what feels like double time, but something's <i>horribly wrong</i> – it takes you a few seconds to realise Mark and Josh are playing a totally different song.
<i>Fuck fuck fuck!</i> They changed the set around, but with all the pressure, you just <i>forgot!</i> Now you're playing two different songs onstage and it sounds <i>awful.</i>
Everyone shares looks of alarm, then Josh takes the initiative. He plays some weird, horrible-sounding chords on his guitar, making a big sonic mess, then Mark counts in the song <i>again</i> and you guys start over, playing together this time.
The whole thing lasted less than five seconds, but it's a hell of a way to start off the [[biggest show of your life|CC-BOTB-6100 Survived the set]] so far.
<</page>><<silently>>
<<avatar-age16-lol>>
<</silently>>\
<<header>>\
<<page>>\
Thirty minutes later, you climb down off the stage, a huge grin on your face. You did it! Everything went right, including Josh even nailing his guitar solo for once. You can't <i>wait</i> to watch the video.
In years to come, you'll look back on this show and realise that none of you could play very well, the songs were unoriginal, you didn't have your own sound, and nobody really liked your band – but tonight, you feel like a [[rock star|CC-BOTB-6200 After the gig]].
<</page>><<silently>>
<<if hasVisited("CC-BOTB-5100 Bass check passed")>>
<<avatar-age16-thrilled>>
<<else>>
<<avatar-age16-normal>>
<<avatar-age16-expr-eyebrows-worried>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Thirty minutes later, you climb down off the stage, feeling an incredible sense of relief. That was tough, and your songs fell apart in a few more places – especially Josh's guitar solo. But you make it through the whole set, and a part of you feels stronger for having survived this.
In years to come, you'll look back and realise that the problems were way deeper than bumming a few notes. None of you could play very well, the songs were unoriginal, you didn't have your own sound, and nobody really liked your band.
Tonight, though, you feel like you're a step closer to becoming a [[rock star|CC-BOTB-6200 After the gig]].
<</page>><<silently>>
<<avatar-age16-smile>>
<<set $statistics.set("BoB",true)>>
<</silently>>\
<<header>>\
<<page>>\
The rest of the night's a blur – selling merch; hanging with friends and family, and random metalheads; waiting anxiously for the judges to deliver their verdict.
<<if hasVisited("CC-BOTB-6000 Nailed the set")>>\
In the end <i>Naked Tuna</i> wins second place, coming in behind a slicker rock band in their 20s called <i>The Pepes</i>. \
<<else>>\
In the end <i>Naked Tuna</i> places third out of four bands – not what you'd hoped for, but not dead last. \
<</if>> That means you won't go through to the next round, and you won't win the studio time or the record contract, but everybody encourages you to keep trying.
One guy from the audience tells you that he LOVES your band, and the music industry guy from the judging panel gives you his business card!
[[Continue|CC-BOTB-7000 Wrapping up]]
<</page>><<silently>>
<<lifepath-16yrAvatarStudyBuddyClothes>>
<<lifepath-16yrAvatarClearBuns>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
After the excitement of the contest, it's a bit of a drag to come back to the normal reality of revising for your [[GCSE exams|UKYOUTH-10000 GCSE exams]].
<</page>><<silently>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
Planning for Comic Con becomes a regular part of D&D night. \
<<if $kate.attributes.extraversion.level gt 0>>\
You can't wait; being surrounded by a crowd of like-minded people who all share in the same nerdy interests is a dream come true.
<<elseif $kate.attributes.extraversion.level == 0>>\
You're somewhat dreading the experience. If the boys weren't going, you'd chicken out.
<<else>>\
It's going to be a massive event; you're looking forward to having a blast with the guys.
<</if>>\
Entering the Champions of Cosplay contest will make your first time all the more memorable. <<if $kate.quirks.includes("working class")>>First, second and third prizes all award hundreds of pounds, more money than you've personally ever had.<<else>>A trophy would look lovely sitting on your bookcase!<</if>>
"We should go as Star Wars characters," suggests Tom. The boys briefly argue over who'd get to be Boba Fett. "$kate.firstName can be Slave Leia."
[[In your dreams, Tom.|CC-COSPLAY-1100 Costume choice]]
<</page>><<silently>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"In your dreams, Tom," you reply breezily. He actually blushes – did you strike a nerve? Before you can think about it, the talk moves on to other options.
Mark thinks there's nothing wrong with a classic choice, and recommends you go as a Star Trek away team (as long as he can be Captain Kirk). Josh wants to go for something more contemporary, and suggests video game characters (as long as he can be Commander Shepard).
[[Let's do video game characters. I wanna be Princess Peach!|CC-COSPLAY-1200 Princess Peach]]
[[Let's do Star Trek. Set phasers to fun!|CC-COSPLAY-1400 Star Trek]]
[[Star Wars could work! But I'm not wearing a bikini.|CC-COSPLAY-1500 Star Wars]]
<</page>><<silently>>
<<avatar-age16-expr-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"I like the video game idea," you say. "I could be Princess Peach!"
"Hmm," demurs Tom.
"Bit boring," agrees Mark.
While the boys are vague about their own costumes, it seems like they've got ideas about what <i>you</i> should wear. "You should go for something more, um, <i>badass,"</i> Tom suggests. "What about Vanille from Final Fantasy?"
"Or Lightning?" chimes in Josh.
"Or Lara Croft?" says Mark.
"Wow, yeah, Tomb Raider" agrees Tom. "I could definitely see that."
[[Guys, I'd rather be Princess Peach...|CC-COSPLAY-1210 Rather be a Princess]]
[[I guess Tomb Raider could be fun.|CC-COSPLAY-1300 Lara Croft]]
[[Let's just do Star Trek.|CC-COSPLAY-1400 Star Trek]]
<</page>><<silently>>
<<avatar-age16-expr-mouth-normal>>
<</silently>>\
<<header>>\
<<page>>\
"I think I'd rather be Princess Peach," you say doubtfully.
"Mmm. It's just a bit boring," says Tom.
"She can wear what she wants, guys," interjects Josh.
"Yeah, obviously. Just, Lara Croft would be much more...badass."
[[Well...I guess Tomb Raider could be fun.|CC-COSPLAY-1300 Lara Croft]]
[[Let's just do Star Trek.|CC-COSPLAY-1400 Star Trek]]
<</page>><<silently>>
<<set $temp.cosplayChoice to "laraCroft">>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
"Well..." you shrug. "I guess Tomb Raider could be fun, too."
"Yeah!" agrees Tom. "Okay, I wanna be Solid Snake, the old man version..."
[[Continue|CC-COSPLAY-2000 Making the costumes]]
<</page>><<silently>>
<<set $temp.cosplayChoice to "starTrek">>
<<avatar-age16-lol>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("CC-COSPLAY-1210 Rather be a Princess")>>\
"Yeah, Star Trek!" you enthuse. "Set phasers for <i>fun,</i> hahaha, right guys?"
They gaze back blankly. "Oh, screw you guys," you say. "That was hilarious."
"Uh huh. <i>Aaanyway,"</i> Josh moves on, "who's gonna be Spock?"
<<else>>\
"Lara Croft's lame," you say, shaking your head. <i>Not to mention that I don't want to get up on a stage in a tight top and short shorts.</i> "Let's do Star Trek instead."
Josh is disappointed about not getting to be Commander Shepard, but he agrees that Starfleet uniforms should be much easier to make well than N7 armour. "Alright," he agrees. "Who's gonna be Spock?"
<</if>>\
[[Continue|CC-COSPLAY-2000 Making the costumes]]
<</page>><<silently>>
<<set $temp.cosplayChoice to "starWars">>
<<avatar-age16-lol>>
<</silently>>\
<<header>>\
<<page>>\
"Star Wars could work!" you say. "But I'm not wearing a bikini. And you two aren't tall enough to be stormtroopers." Mark laughs; Tom and Josh scowl.
"So who are you gonna go as?" asks Mark.
"Leia," you say, "just not the version that gets abused by a giant slug."
<<if $kate.hairColour == "ginger" or $kate.hairColour == "blonde">>\
"Think the world's ready for a $kate.hairColour Leia?" Tom asks Josh.
[[I'll wear a wig.|CC-COSPLAY-1510 Leia's hair][$temp.leiaWig to true]]
[[Think it's ready for a pint-sized Boba Fett?|CC-COSPLAY-1510 Leia's hair]]
<<else>>\
[[Continue|CC-COSPLAY-2000 Making the costumes]]
<</if>>\
<</page>><<silently>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.leiaWig>>\
"I'll wear a wig, doofus," you reply. "Okay, you can't <i>all</i> be Boba Fett..."
<<else>>\
<<silently>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-mouth-smirk>>
<</silently>>\
"Mark, think the world's ready for a Mandalorian the size of an Ewok?" Mark bursts out laughing, the others flick you the V sign.
<</if>>\
[[Continue|CC-COSPLAY-2000 Making the costumes]]
<</page>><<silently>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
Now you've chosen your characters, it's time to make your costumes! You start by searching online for all the reference images you can find.
Next week's D&D session is taken up entirely with costume planning. Even a simple costume has lots of pieces, and there are four of you – you work with the boys to decide which parts to make, which parts to buy, and which parts to modify.
[[Continue|CC-COSPLAY-2100 Kate the seamstress]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
All through the spring you work hard on building up your costumes for the event. None of the boys can sew, so you take charge of <<if $temp.cosplayChoice == "starTrek">>sewing on their Starfleet patches and stitching their trouser cuffs way above the ankle.<<elseif $temp.cosplayChoice == "laraCroft">>attaching Commander Shepard's foam armour pieces to a black boiler suit, and adding thick medieval stitching to Mark of Rivia's trousers.<<elseif $temp.cosplayChoice == "starWars">>attaching foam armour pieces to boiler suits, and stitching fur onto Mark's hilarious Chewie suit.<</if>>
Visiting your male friends to measure up their waists and legs feels awkwardly intimate, but you get over it – especially when the costumes come together, and you pose for a group photo for the first time. You guys look pretty awesome!
<<if $kate.quirks.includes("andyMcNabFan")>>\
You coach the boys on how to hold their <<if $temp.cosplayChoice == "starTrek">>phasers<<elseif $temp.cosplayChoice == "laraCroft">>guns<<elseif $temp.cosplayChoice == "starWars">>blasters<</if>> with correct trigger discipline, a trick you learned from <i>Crossfire</i> by Andy McNab.
<</if>>\
[[Continue|CC-COSPLAY-3000 Title card]]
<</page>><<page>>\
[[THAT SUMMER...|CC-COSPLAY-4000 Comic Con]]
<</page>><<silently>>
<<if $temp.cosplayChoice == "starTrek">>
<<set $temp.teamName to "The Rakish Redshirts">>
<<lifepath-16yrAvatarGeekCosplayStarTrek>>
<<elseif $temp.cosplayChoice == "laraCroft">>
<<set $temp.teamName to "The Virtual Heroes">>
<<lifepath-16yrAvatarGeekCosplayLara>>
<<elseif $temp.cosplayChoice == "starWars">>
<<set $temp.teamName to "The Millennial Falcons">>
<<lifepath-16yrAvatarGeekCosplaySomeStarWarsCharacterIDontKnow>>
<</if>>
<<avatar-age16-smile>>
<</silently>>\
<<header>>\
<<page>>\
On a hot and sunny Saturday morning, you and the guys head to Earls Court 2 for the London Film & Comic Con. Your costumes draw a lot of bemused looks when you first get on the Tube, but by the time you get to Earls Court Station you're in deep conversation with some fellow D&D fans who came all the way from Wales to be here.
The convention hall is bustling, with too many displays, stands, and guest talks for you to get around even over both days. You chat with some famous comic artists and writers, and even get a selfie with Patrick Stewart!
After years of being made to feel like a weirdo for preferring Middle Earth to Celebrity Big Brother, just being here with thousands of other intelligent nerds feels incredibly liberating. And as a cosplayer, you feel like a minor celebrity within the tribe – dozens and dozens of people ask you to pose with them for selfies, and they seem just as thrilled with them as you were to be photographed with Sir Patrick.
[[Day 2|CC-COSPLAY-4100 Cosplay contest]]
<</page>><<silently>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
The next day is the most nerve-wracking. In the afternoon you find yourself backstage with dozens of other nervous cosplayers, waiting to be called out and judged in the Champions of Cosplay competition!
Your stomach churns with dread while you wait. Whose stupid idea was this? All too soon, the announcer tells the audience to "give it up for...<i>$temp.teamName!"</i> You follow Tom out onto the stage, your [[heart pounding|CC-COSPLAY-5000 Intro to dice rolling]].
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _beauty to $kate.attributes.beauty.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_beauty , "Beauty"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _beauty>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<i>Female Agent</i> uses dice rolls to simulate life's uncertainty. If you like, you can save your game before a dice roll just in case you get a bad result – but $kate.firstName's story will be more nuanced if she fails sometimes, so most players prefer to let the dice fall where they may.
In this case, you'll roll to see how well $kate.firstName and her friends do in the cosplay competition. This task is of <b>moderate</b> difficulty, so you need to roll <b>6 or more</b> with a ten-sided dice (a "D10") for them to succeed.
You'll add your <i>Creativity</i> attribute (+0) to the roll. Being a pretty girl in a room full of nerds goes a long way, so you'll add your <i>Beauty</i> attribute (<<if $kate.attributes.beauty.level gte 0>>+<</if>>$kate.attributes.beauty.level) to the roll, too.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>COSPLAY CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll win the contest. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>ROLL DICE</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>COSPLAY CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>COSPLAY CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
//[[Cosplay check passed!|CC-COSPLAY-6000 Kate's first stage show][$temp.cosplayWinners to true]]//
<<else>>
//[[Cosplay check failed.|CC-COSPLAY-6000 Kate's first stage show]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-age16-normal>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-eyes-big>>
<<avatar-age16-expr-mouth-smile>>
<<if $kate.quirks.includes("elite")>>
<<set _surnames to [
'Anson',
'Byron',
'Craven',
'Denman',
'Eliot',
'Fiennes',
'Guinness',
'Hely-Hutchinson',
'Jermyn',
'Lowther',
'McLaren',
'Osborne',
'Peel',
'Runciman',
'Sherard'
]>>
<<else>>
<<set _surnames to [
'Adams',
'Barnes',
'Fletcher',
'Harvey',
'Lloyd',
'Mitchell',
'Perry',
'Saunders',
'Turner',
'Webb'
]>>
<</if>>
<<set _surnames.delete($kate.surname)>>
<</silently>>\
<<header>>\
<<page>>\
The audience – a big room full of geeky men, sitting politely in chairs – whoop and applaud as you and your friends walk out onto the stage. "$temp.teamName is \
<<if $temp.cosplayChoice == "starTrek">>\
Mark <<= _surnames.pluck()>> as Kirk, Josh <<= _surnames.pluck()>> as Spock, Tom <<= _surnames.pluck()>> as Bones McCoy, and $kate.firstName $kate.surname as Expendable Redshirt #13,\
<<elseif $temp.cosplayChoice == "laraCroft">>\
Tom <<= _surnames.pluck()>> as Solid Snake, $kate.firstName $kate.surname as Lara Croft, Josh <<= _surnames.pluck()>> as Commander Shepard, and Mark <<= _surnames.pluck()>> as Geralt of Rivia,\
<<elseif $temp.cosplayChoice == "starWars">>\
Tom <<= _surnames.pluck()>> as Boba Fett, $kate.firstName $kate.surname as Princess Leia Organa, Josh <<= _surnames.pluck()>> as Anakin Skywalker, and Mark <<= _surnames.pluck()>> as Chewbacca,\
<</if>>" says the announcer. "Come on, everybody, let's hear it for $temp.teamName!"
You walk across the stage, smiling and waving to the audience, as the announcer reads out the bio from your entry form. In just a few seconds it's all over, and you exit the stage through another door. "That was a fucking <i>rush,"</i> exclaims Josh.
[[Continue|CC-COSPLAY-6000 Results]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.cosplayWinners>>\
<<silently>>
<<avatar-age16-thrilled>>
<</silently>>\
Afterwards, you wait for the results. You didn't win one of the top prizes, but $temp.teamName wins Best Newcomer! You each collect a cheque for £125 and a cool trophy. This weekend has been <i>amazing!</i>
<<else>>\
<<silently>>
<<avatar-age16-smile>>
<</silently>>\
After the thrill of walking across the stage, you wait for the results. $temp.teamName doesn't win one of the top prizes, but you all agree you had an amazing weekend anyway. All the effort was so worth it.
<</if>>\
[[Continue|CC-COSPLAY-7000 Wrapping up]]
<</page>><<silently>>
<<lifepath-16yrAvatarStudyBuddyClothes>>
<<lifepath-16yrAvatarClearBuns>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
After the excitement of the convention, it's a bit of a drag to come back to the normal reality of revising for your remaining [[GCSE exams|UKYOUTH-10000 GCSE exams]].
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _nearYourHome to "at Regent's Park",
_yourClub to "the Belgrave Harriers">>
<<elseif $kate.quirks.includes("working class")>>
<<set _nearYourHome to "at Finsbury Park",
_yourClub to "Enfield & Haringey AC">>
<<else>> /* Kate is middle class */
<<set _nearYourHome to "at Wimbledon Park",
_yourClub to "Hercules Wimbledon AC">>
<</if>>
<<lifepath-16yrAvatarSportStarWorkOutGear>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
Your school netball career's over now, but you get plenty of exercise in the Girl's U17 Squad at _yourClub, your local running club.
You run at the club <<if $kate.attributes.conscientiousness.level lt 0>>most Tuesdays and Thursdays<<else>>every Tuesday and Thursday<</if>>, 7PM-9PM. On Sunday mornings you do a technical session, racing off starting blocks around the 400 metre track _nearYourHome.
You're one of the top girls in the squad and your coach, Rod – who represented the country at the 1990 Commonwealth Games – has given you a gym and nutrition programme to stick to. Twice a week you sweat in the gym, doing strength, core and "prehab" exercises. Your food is mostly smoothies and power salads, with as little alcohol as possible.
With all this training – plus revising for your GCSEs, and attempting to have a social life – you'll always remember spring 2008 as a packed, stressful time.
[[Continue|CC-DISCHAMP-1100 Going for gold]]
<</page>><<silently>>
/* if Kate is middle class, randomly pick her rival from another social class */
<<if not $kate.quirks.includesAny("elite", "working class")>>
<<set _rival to either("princess", "pauper")>>
<</if>>
<<if $kate.quirks.includes("elite") or _rival == "princess">>
<<set $temp.rival to "Jade",
_aBitch to "a chavvy girl",
_rivalClub to "Enfield & Haringey AC in north London">>
<<elseif $kate.quirks.includes("working class") or _rival == "pauper">>
<<set $temp.rival to "Jocasta",
_aBitch to "an upper class trophy-wife-to-be",
_rivalClub to "the Belgrave Harriers ">>
<</if>>
<<if $kate.attributes.conscientiousness.level lte 0>>
<<set _toWorkHarder to "to work harder">>
<<elseif $kate.attributes.agreeableness.level gte 0>>
<<set _toWorkHarder to "to work on your killer instinct">>
<<else>>
<<set _toWorkHarder to "to sharpen your starts">>
<</if>>
<<avatar-age16-expr-eyebrows-frown>>
<</silently>>\
<<header>>\
<<page>>\
Your best event is the 400 metres. Lately your times are so good that you're a candidate for a district medal – if you could shave off two seconds, you'd win gold.
Your main rival is a girl named $temp.rival, _aBitch from _rivalClub. You've trained with her a couple of times, and you know two things about her: first, she's very strong in the last 100 metres. Second: she's a <i>complete bitch,</i> who can't stand you for some reason.
You hardly know her, but she spread a rumour that the other girls in your club avoid you because you're a lesbian. One of the girls from <i>her</i> club told you that she calls you "Fat $kate.firstName" behind your back.
You'd love to beat her. Rod recommends some extra one-on-one training on [[Saturday mornings|CC-DISCHAMP-1200 Resisting temptation]] – he says you need _toWorkHarder.
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _yourLocalPub to "The Leinster Arms",
_drinking to "Grabbing a few cocktails">>
<<elseif $kate.quirks.includes("working class")>>
<<set _yourLocalPub to "The Bricklayers pub",
_drinking to "Grabbing a few pints of Fosters">>
<<else>> /* Kate is middle class */
<<set _yourLocalPub to "The Alexandra pub",
_drinking to "Grabbing a few Kronenbourgs">>
<</if>>
<<avatar-age16-normal>>
<<avatar-age16-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
The problem is that you and $temp.firstFriend recently learned that wearing lipstick and eyeshadow will get you served at _yourLocalPub, despite the fact that you're both slightly underage.
_drinking there on a Friday night has become your new favourite way to blow off steam. You're not sure you can do that and face a training session with Rod the morning after.
<<if $kate.attributes.conscientiousness.level gte 0>>\
[Conscientiousness +0] [[Give up the pub until after the big race.|CC-DISCHAMP-1500 Extra training]]
<<else>>\
<span class="greyedOut">[Conscientiousness +0] Give up the pub until after the big race.</span>
<</if>>\
[[Make an excuse about why you can't do the extra training.|CC-DISCHAMP-1300 Extra fuel]]
<</page>><<silently>>
<<if $kate.quirks.includes("single mum")>>
<<set _parentalUnits to "mum">>
<<else>>
<<set _parentalUnits to "parents">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
Three club sessions and two gym workouts a week are more than enough – any more and you'll go crazy.
You tell Rod that your _parentalUnits won't let you train any more, because you've got to focus on your [[GCSE revision|CC-DISCHAMP-1400 The pub]].
<</page>><<silently>>
<<lifepath-16yrAvatarSportStarPubGear>>
<<if $kate.quirks.includes("elite")>>
<<set _yourLocalPub to "the Leinster">>
<<elseif $kate.quirks.includes("working class")>>
<<set _yourLocalPub to "the Bricklayers">>
<<else>> /* Kate is middle class */
<<set _yourLocalPub to "The Alex">>
<</if>>
<<avatar-age16-lol>>
<</silently>>\
<<header>>\
<<page>>\
Every Friday, you and $temp.firstFriend meet up at _yourLocalPub for beers. You guys will eventually become regular barflies here, but for now it's exciting just to be allowed in!
Tom, Mark and Josh are pretty envious: they always get ID'd whenever they try to get into a pub. Tom claims to sometimes get served in a pub in Soho, but you think he's full of shit.
[$kate.firstName gets extra Party Girl XP here]
[[Continue|CC-DISCHAMP-2000 Title Card]]
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _yourLocalPub to "the Leinster">>
<<elseif $kate.quirks.includes("working class")>>
<<set _yourLocalPub to "the Bricklayers">>
<<else>> /* Kate is middle class */
<<set _yourLocalPub to "The Alex">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
Reluctantly, you tell $temp.firstFriend that you're going to have to cancel your Friday night booze sessions. She's disappointed, but she knows how much your training means to you.
At 7AM every Saturday morning, you rock up to an empty club for an hour's one-on-one training with Rod. Without the distraction of the other girls, you get sixty minutes per week of intense personal coaching – focused not just on your technique but on your psychology.
Rod coaches you not to think about any other girl on the track except yourself. It literally doesn't matter what they're doing; you're either giving it 100% in every single second or you're not, and that's all you need to think about on race day.
[$kate.firstName gets strength XP and abs]
[[Continue|CC-DISCHAMP-2000 Title Card]]
<</page>><<page>>\
[[EIGHT WEEKS LATER...|CC-DISCHAMP-2100 Race day]]
<</page>><<silently>>
<<set $header.line1 to "''CRYSTAL PALACE NATIONAL SPORTS CENTRE,'' LONDON">>
<<lifepath-16yrAvatarSportStarTrackGear>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
It's the morning of the District Championships! Hundreds of locals have gathered to watch a day of amateur sport.
The Women's U17 400M starts at 10.15AM. You stretch and limber up, trying to ignore $temp.rival ignoring you, feeling like a gladiator getting ready to go into the arena.
Eventually, you take your place on the blocks, waiting for the [[starter's orders|CC-DISCHAMP-3000 The race]]...
<</page>><<silently>>
/*Set the roll target*/
<<set _randomRival to random(1,10)>>
<<set _bonusRival to 3>>
<<set _resultRival to _randomRival + _bonusRival>>
<<set _diceRollTarget to _resultRival>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<if hasVisited("CC-DISCHAMP-1500 Extra training")>><<set _bonus to 1>><<else>><<set _bonus to 0>><</if>>
<<set _sports to 1>>/*Set the skills when they are here.*/
<<set _average to (1 +$kate.attributes.conscientiousness.level)/2>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<if _bonus gt 0>>
<<set _diceRollModifiers.pushUnique([_bonus , "Extra training"])>>
<</if>>
<<set _diceRollModifiers.pushUnique([ _sports , "Sports"])>>
<<set _diceRollModifiers.pushUnique([ _average , "Average of Conscientiousness and Fitness"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _bonus + _sports + _average>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gt _diceRollTarget>>
<<set _success to true>>
<<elseif _result eq _diceRollTarget>>
/*TIE*/
<<set _tie to true>>
<<set _coin to random(0,1)>>
<<if _coin eq 1>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<else>>
<<set _success to false>>
<</if>>
<<avatar-age16-expr-mouth-snarl>>
<</silently>>\
<<header>>\
<<page>>\
<i>Female Agent</i> uses dice rolls to simulate life's uncertainty. If you like, you can save your game before a dice roll just in case you get a bad result – but $kate.firstName's story will be more nuanced if she fails sometimes, so most players prefer to let the dice fall where they may.
In this case, you'll roll to see who wins first place. This is a <b>contested</b> roll, so you and $temp.rival will both roll a ten-sided dice (a "D10") and compare results: the highest roller wins. (If you tie, the game will toss a coin to decide the winner.)
You'll add your <i>Sports</i> skill (+1) to the roll. You'll also add the average of your <i>Fitness</i> and <i>Conscientiousness</i> to the roll (+1). <<if hasVisited("CC-DISCHAMP-1500 Extra training")>>Rod's extra coaching gives you a +1 bonus.<</if>>
$temp.rival will add +3 to her roll.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>ATHLETE CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to win first place in the race. $temp.rival rolled _diceRollTarget, so you need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>RUN RACE</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _tie>>
<<if _success>>
<h3>ATHLETE CHECK...<i> TIED AND PASSED!</i></h3>
<hr>
<<else>>
<h3>ATHLETE CHECK...<i>TIED AND FAILED!</i></h3>
<hr>
<</if>>
<<else>>
<<if _success>>
<h3>ATHLETE CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>ATHLETE CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>.<<if _tie >> Tied, coin toss:<</if>> <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.medal to "gold">>
//[[Contest won!|CC-DISCHAMP-4000 Results]]//
<<else>>
//[[Contest lost.|CC-DISCHAMP-4000 Results]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-age16-expr-eyebrows-frown>>
<</silently>>\
<<header>>\
<<page>>\
"On your marks..." the crowd hubbub falls away, and for a moment the stadium is silent except for a chirruping birdsong.
"Set..." you lift your butt into the air, your weight shifting onto your fingers.
<i>Pop!</i> The pistol shot rings out in the crisp morning air, and you launch into a sprint.
Your strengths are acceleration and a pretty good kick in the last 75 metres, so you come out of the blocks as hard and fast as you can, trying to break out ahead of the six foot tall leggy girls.
You're first out of the turn, but now everybody's cruising at top speed, and their longer strides are making a difference. You run onto the back stretch, lungs and legs burning as you try to [[stay on the pace|CC-DISCHAMP-3100 Back stretch]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The middle 200 metres are the grind, where all the pain is. Every runner's trying to stay with the pack, but also hold back enough energy for the home straight. Your pace slows a little, but so does everybody else's.
$temp.rival kicks it at 300 metres, like she always does, breaking out as soon as she rounds onto the home straight. \
<<if hasVisited("CC-DISCHAMP-1500 Extra training")>>\
But it's not important what she's doing. Your personal bests are when you kick at 75, so you let her get ahead.
Then you fucking <i>kick,</i> accelerating out of the pain and exhaustion of the last 325 metres, gaining ground on $temp.rival but only focused on [[the finish line|CC-DISCHAMP-2200 Intro to dice rolling]]...
<<else>>\
You surge out along with her, desperately trying [[to keep up|CC-DISCHAMP-2200 Intro to dice rolling]]...
<</if>>\
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _drinks to "porn star martinis at the Leinster",
_yourClub to "Belgrave Harriers">>
<<elseif $kate.quirks.includes("working class")>>
<<set _drinks to "beers at the Bricklayers",
_yourClub to "Enfield & Haringey AC">>
<<else>> /* Kate is middle class */
<<set _drinks to "beers at the Alex",
_yourClub to "Hercules Wimbledon AC">>
<</if>>
/* set the rival's surname and club */
<<if $temp.rival == "Jade">>
<<if $kate.surname == "Jones">>
<<set _rivalSurname to "Smith">>
<<else>>
<<set _rivalSurname to "Jones">>
<</if>>
<<set _rivalClub to "Enfield & Haringey AC">>
<<elseif $temp.rival == "Jocasta">>
<<if $kate.surname == "Delingpole">>
<<set _rivalSurname to "Buxton">>
<<else>>
<<set _rivalSurname to "Delingpole">>
<</if>>
<<set _rivalClub to "Belgrave Harriers">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You hurtle over the finish line at what feels like the exact same moment. You stumble coltishly to a stop, lungs heaving, feeling sick as you wait to hear the result.
<<if $temp.medal == "gold">>\
<<silently>>
<<avatar-age16-thrilled>>
<</silently>>\
"First place...$kate.firstName $kate.surname, _yourClub..."
You did it, you won! You run up to Rod and practically leap into his arms, a massive grin on your face. You did it!
That night, you celebrate with $temp.firstFriend over _drinks.
<<else>>\
<<silently>>
<<avatar-age16-expr-eyebrows-worried>>
<</silently>>\
"First place...$temp.rival _rivalSurname, _rivalClub..."
$temp.rival won by a fraction of a second. "Too bad, kid," says Rod.
That night, you commiserate with $temp.firstFriend over _drinks. She says that silver is classier than gold anyway.
<</if>>\
[[Continue|CC-DISCHAMP-5000 Wrapping up]]
<</page>><<silently>>
<<lifepath-16yrAvatarStudyBuddyClothes>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
After the excitement of the race, it's a bit of a drag to come back to the normal reality of revising for your [[GCSE exams|UKYOUTH-10000 GCSE exams]].
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _nearYourHome to "at Regent's Park",
_yourClub to "the Belgrave Harriers">>
<<elseif $kate.quirks.includes("working class")>>
<<set _nearYourHome to "at Finsbury Park",
_yourClub to "Enfield & Haringey AC">>
<<else>> /* Kate is middle class */
<<set _nearYourHome to "at Wimbledon Park",
_yourClub to "Hercules Wimbledon AC">>
<</if>>
<<if $kate.firstName == "Stacey" or $kate.firstName == "Stacy" or $kate.firstName == "Stacie">>
<<set $temp.rival to "Lucy">>
<<else>>
<<set $temp.rival to "Stacey">>
<</if>>
<<if $kate.surname == "Scott">>
<<set _surname to "Hill">>
<<else>>
<<set _surname to "Scott">>
<</if>>
<<if $kate.braSize == "large">>
<<set _hot to "willowy">>
<<else>>
<<set _hot to "busty">>
<</if>>
<<if $kate.hairColour == "blonde">>
<<set _rival to "ravishing brunette">>
<<else>>
<<set _rival to "blue-eyed blonde">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Everybody gets caught up in the buzz of prom season! You and your friends spend hours looking at glamorous dresses, planning your hairstyles and makeup, and imagining which boy in school will look hottest in a tuxedo.
<<if $kate.attributes.beauty.level gte 2>>\
The droves of eager boys vying to be your prom date have given you a sense of confidence. $temp.firstFriend tells you that winning the crown should be a cinch. The only competition to speak of is $temp.rival _surname, a _hot, _rival.
<<else>>\
You're a popular, pretty girl. You're in with a shot at wearing that crown, even if you're not the favourite (that would probably be $temp.rival _surname, a _hot, _rival).
<</if>>\
But first, in order to be crowned as Prom Queen, you need to qualify for Prom Court.
[[Get your friends to campaign for you.|CC-PROM-2000 The campaign]]
<<if $kate.attributes.agreeableness.level lt 0>>\
[Agreeableness -1] [[Sabotage the competition.|CC-PROM-2000 The campaign][$temp.sabotage to true]]
<<else>>\
<span class="greyedOut">[Agreeableness -1] Sabotage the competition.</span>
<</if>>\
<</page>><<silently>>
<<avatar-age16-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.sabotage>>\
First you read up on all the rules and regulations required to be selected for the Prom Court. Noting the clause about good behaviour, you begin to formulate a plan.
Determining that $temp.rival is your greatest competition, you set up a sting. An anonymous phone call to the school's hotline about $temp.rival playing hooky is enough to sink her nomination and her Prom Queen dreams.
<<else>>\
All your friends rally around you. $temp.firstFriend designs an amazing poster showing off your very best side, and Mark convinces his dad to run off a few hundred copies from his printing company.
They flyer the school hallways with your picture then, for an entire month, they recruit others to fill out a ballot to select you for Prom Court. Tom in particular goes above and beyond, campaigning for you before and after school!
<</if>>\
[[Continue|CC-PROM-3000 Title card]]
<</page>><<page>>\
[[LATER THAT SUMMER...|CC-PROM-4000 Prom night]]
<</page>><<silently>>
<<getKatesHighSchool>>
<<lifepath-16yrAvatarAlphaProm>>
<</silently>>\
<<header>>\
<<page>>\
It's the big night! You spend hours fussing with your dress and makeup to get your look just right.
<<if $kate.quirks.includes("elite")>>\
_highSchoolShortName has laid on a red carpet, complete with hired paparazzi, and you're blasted with flashbulbs as you emerge from $temp.firstFriend's dad's Bentley. The photos are only destined for the school yearbook, but it feels like being a movie star!
<<elseif $kate.quirks.includes("working class")>>\
$temp.firstFriend's dad drops you off at _highSchoolShortName in his black taxi, polished and waxed for the big occasion.
<<else>> /* Kate is middle class */ \
You and your friends saved up and clubbed together, and you make a grand entrance at _highSchoolShortName in a rented limo.
<</if>>\
<<if $kate.attributes.neuroticism.level gt 0>>\
Inside you're a nervous wreck, butterflies dancing in the pit of your stomach, <<if $kate.attributes.agreeableness.level lt 0>>and you spend the night snapping at your date, Harry<<else>>though you try your best to hide it<</if>>. <<if $kate.quirks.includes("resting bitch face")>><<if $kate.attributes.agreeableness.level lt 0>>He<<else>>Your date, Harry,<</if>> has to keep reminding you to smile every thirty seconds.<</if>>
<<else>>\
You're living your best life; you quickly spot your friends and go over to them. Mark looks surprisingly good in a tux and you let him know it. His smile makes your night.
<</if>>\
Soon enough, it's time for the big reveal. This year's Prom Queen [[is|CC-PROM-4000 Intro to dice rolling]]...
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
<<avatar-age16-normal>>
<<if $temp.sabotage>>
<<if $kate.firstName == "Bethan" or $kate.firstName == "Beth" or $kate.firstName == "Bethany">>
<<set _rival to "Gemma">>
<<else>>
<<set _rival to "Bethan">>
<</if>>
<<set $temp.promRival to _rival>>
<<if $kate.surname == "Lewis">>
<<set _surname to "Collins">>
<<else>>
<<set _surname to "Lewis">>
<</if>>
<</if>>
<</silently>>\
<<silently>>
/*Set the roll target*/
<<set _randomRival to random(1,10)>>
<<if $temp.sabotage>><<set _bonusRival to 3>><<else>><<set _bonusRival to 4>> <</if>>
<<set _resultRival to _randomRival + _bonusRival>>
<<set _diceRollTarget to _resultRival>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _clothesAndMakeUp to 2>>
<<set _beauty to $kate.attributes.beauty.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_clothesAndMakeUp , "Clothes and Makeup"])>>
<<set _diceRollModifiers.pushUnique([ _beauty , "Beauty"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _clothesAndMakeUp + _beauty>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gt _diceRollTarget>>
<<set _success to true>>
<<elseif _result eq _diceRollTarget>>
/*TIE*/
<<set _tie to true>>
<<set _coin to random(0,1)>>
<<if _coin eq 1>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<else>>
<<set _success to false>>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
<i>Female Agent</i> uses dice rolls to simulate life's uncertainty. If you like, you can save your game before a dice roll just in case you get a bad result – but $kate.firstName's story will be more nuanced if she fails sometimes, so most players prefer to let the dice fall where they may.
In this case, you'll roll to see if $kate.firstName is crowned as the Prom Queen. This is a <b>contested</b> roll between you and <<if $temp.sabotage>>$temp.promRival _surname, another hot girl in your year<<else>>$temp.rival<</if>>, so you'll both roll a ten-sided dice (a "D10") and compare results: the highest roller wins. (If you tie, the game will toss a coin to decide the winner.)
You'll add your <i>Beauty</i> (<<if $kate.attributes.beauty.level gte 0>>+<</if>>$kate.attributes.beauty.level) to the roll. You'll also add +2 for your clothes and makeup, for a total of +<<= ($kate.attributes.beauty.level + 2)>>.
<<if $temp.sabotage>>\
$temp.promRival will add +3 to her roll.
<<else>>\
$temp.promRival will add +4 to her roll.
<</if>>\
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BEAUTY CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to win the prom. $temp.promRival rolled _diceRollTarget, so you need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PROM QUEEN</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _tie>>
<<if _success>>
<h3>BEAUTY CHECK...<i> TIED AND PASSED!</i></h3>
<hr>
<<else>>
<h3>BEAUTY CHECK...<i>TIED AND FAILED!</i></h3>
<hr>
<</if>>
<<else>>
<<if _success>>
<h3>BEAUTY CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BEAUTY CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>.<<if _tie >> Tied, coin toss:<</if>> <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
//[[Contest won!|CC-PROM-5000 Prom Queen]]//
<<silently>>
<<avatar-age16-thrilled>>
<<replace "#avatar-container">><<avatar>><</replace>>\
<</silently>>
<<else>>
//[[Contest lost.|CC-PROM-5100 Runner up]]//
<<silently>>
<<avatar-age16-sad>>
<<replace "#avatar-container">><<avatar>><</replace>>\
<</silently>>
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<lifepath-16yrAvatarAlphaPromQueen>>
<</silently>>\
<<header>>\
<<page>>\
You've done it! You've won! \
<<if $kate.attributes.neuroticism.level gt 0>>\
You put your hands to your face in disbelief, blinking back the tears. Unnoticed by you, a tiara is placed on your head.
<<else>>\
You wave to the adoring masses as the tiara is placed on your head.
<</if>>\
Coming to the microphone, you give a speech about the unshakeable bonds of friendship. <<if $temp.sabotage>>In the background, you see $temp.rival icily standing in the distance, her arms crossed across her chest, glaring with pure hatred. She storms out of the room after a moment, her date trailing behind.
<<else>>\
You see all the smiling faces of your friends and you take a moment to thank them for all their hard work on your behalf, and ask for a round of applause.
<</if>>\
[[Continue|CC-PROM-6000 Wrapping up]]
<</page>><<silently>>
<<if $temp.sabotage>>
<<if $kate.firstName == "Bethan" or $kate.firstName == "Beth" or $kate.firstName == "Bethany">>
<<set _promQueen to "Gemma">>
<<else>>
<<set _promQueen to "Bethan">>
<</if>>
<<else>>
<<set _promQueen to $temp.rival>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It's all over. _promQueen is the Prom Queen. <<if $temp.sabotage and $kate.attributes.beauty.level gt 1>>Honestly, you can't believe it. You're way hotter than her – are the masses blind?<</if>>
<<if $kate.attributes.neuroticism.level gt 0>>\
The moment is too much. You feel the waterworks coming on as you try to blink them back, but fail. Putting your hands to your face, you flee the room, your date trailing ineffectually behind you.
<<else>>\
You stoically watch as the tiara's placed on _promQueen's head. <<if $kate.quirks.includes("resting bitch face")>>It's lucky that you have a reputation for not smiling much.<</if>>
As _promQueen gives her speech on the "unshakeable bonds of friendship", you can't help but roll your eyes. Honestly, who eats up that kind of stupid bullshit?
<</if>>\
[[Continue|CC-PROM-6000 Wrapping up]]
<</page>><<silently>>
<<lifepath-16yrAvatarClearHair>>
<<lifepath-16yrAvatarStudyBuddyClothes>>
<<set _path to "age16/">>
<<set $avatar.foreground.delete(_path+"20_promQueenSashAndTiara")>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
After the glamour and drama of Prom Night, it's a bit of a drag to come back to the normal reality of revising for your [[GCSE exams|UKYOUTH-10000 GCSE exams]].
<</page>><<silently>>
<<if $kate.quirks.includes("sportsStar")>>
<<set _toTakeTheChallenge to "to train for a gold medal">>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set _toTakeTheChallenge to "to try out cosplay">>
<<elseif $kate.quirks.includes("alphaFemale")>>
<<set _toTakeTheChallenge to "to wear the crown">>
<<elseif $kate.quirks.includes("rockChick")>>
<<set _toTakeTheChallenge to "to develop your band">>
<</if>>\
<<avatar-age16-normal>>
<<avatar-age16-expr-eyebrows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Tempted as you are _toTakeTheChallenge, you decide your revision timetable is too important to disrupt.
You spend most of Spring 2008 in your bedroom, filling your brain with facts ranging from <i>the difference between adverbs and modal verbs</i> to <i>the molecular properties of graphite.</i>
Your dreams are filled with mind-maps and flashcards, and occasional nightmares about turning up to the exam hall naked.
<<link "//Continue.//" "CC-SBUD-1100 Study buddies">><</link>>
<</page>><<silently>>
<<if $kate.attributes.extraversion.level lt 0>>
<<set _girlfriends to "$temp.firstFriend, of course">>
<<else>>
<<set _girlfriends to "$temp.firstFriend and some girlfriends, of course">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
At least you're not the only one going through all this stress and pressure. You have some study buddies – _girlfriends, and also your guy friends, Tom, Mark and Josh.
In many ways the boys are more helpful. Because they're not interested in gossip and they want to get back to video gaming, your sessions with them tend to be more focused.
The downsides include the fact that their bedrooms are all <i>gross,</i> so you prefer to have them over to [[your place|CC-SBUD-1200 Embarrassment for supper]].
<</page>><<silently>>
<<lifepath-16yrAvatarStudyBuddyClothes>>
<<avatar-age16-expr-eyebrows-frown>>
<<if $kate.quirks.includes("elite")>>
<<set _food to "quinoa">>
<<elseif $kate.quirks.includes("working class")>>
<<set _food to "Turkey Twizzler">>
<<else>> /* Kate is middle class */
<<set _food to "pizza">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Don't wolf your food, $kate.firstName."
A teenage flash of anger jets up from the pit of your stomach, crossing paths with a big mouthful of _food as you swallow it down. "I <i>told</i> you I've got revision tonight," you remind your <<if $kate.quirks.includes("elite")>>mother<<else>>mum<</if>>, your tone icily controlled.
<<if $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>\
<<if $kate.quirks.includesAny("big brother", "big sister")>>\
"$kate.firstName wants to look nice for her boyfriends," teases your big <<if $kate.quirks.includes("big brother")>>brother<<else>>sister<</if>>.
<<elseif $kate.quirks.includesAny("kid brother", "kid sister")>>\
"$kate.firstName and her boyfriends, up a tree-ee," sings your little <<if $kate.quirks.includes("big brother")>>brother<<else>>sister<</if>>. "K-I-S-S-I–"
<</if>>\
"Shut up!" you snap. "They're not my boyfriends!"
"You do see a lot of those boys," your <<if $kate.quirks.includes("elite")>>mother<<else>>mum<</if>> says. "Are they really all just friends?"
<<else>>\
"Mmmm, about that," she muses. "You, um, do spend a lot of time with those boys. Do we need to talk about, you know – protection?"
<</if>>\
<<link "<i>MUM!</i>" "CC-SBUD-1300 They're just friends!">>
<</link>>
<</page>><<silently>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
<i>"MUM!"</i> you cry, appalled. What does she think the four of you are <i>doing</i> up there? "They're just friends!"
"Alright, alright," she says. "Just...don't bolt your food. <<if $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>And you, stop teasing your sister<<else>>We'll talk about the other thing later<</if>>."
<<if $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>><i>About time,</i> you think.<<else>><i>Can't wait,</i> you think.<</if>> Like you haven't got [[enough|CC-SBUD-2000 Intro to dice rolling]] to worry about right now!
<</page>><<silently>>
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _consMod to $kate.attributes.conscientiousness.level>>
<<set _intMod to $kate.attributes.intellect.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_consMod , "Conscientiousness"])>>
<<set _diceRollModifiers.pushUnique([ _intMod , "Intellect"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _consMod + _intMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
<i>Female Agent</i> uses dice rolls to simulate life's uncertainty. If you like, you can save your game before a dice roll just in case you get a bad result – but $kate.firstName's story will be more nuanced if she fails sometimes, so most players prefer to let the dice fall where they may.
In this case, you'll roll to see how much of an impact $kate.firstName's extra revision will have on her exam results. This task is of <b>moderate</b> difficulty, so you need to roll <b>6 or more</b> with a ten-sided dice (a "D10") to have the most academic success.
You'll add your <i>Conscientiousness</i> (<<if $kate.attributes.conscientiousness.level gte 0>>+<</if>>$kate.attributes.conscientiousness.level) and <i>Intellect</i> (<<if $kate.attributes.intellect.level gte 0>>+<</if>>$kate.attributes.intellect.level) attributes to the roll.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>REVISION CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to revise effectively. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>REVISE</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>REVISION CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>REVISION CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
//[[Continue|CC-SBUD-3000 Nailing it]]//
<<else>>
//[[Continue|CC-SBUD-3100 It never ends]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<set $temp.revisionBonus to 2>>
<<awardXP academic 500>>
<</silently>>\
<<header>>\
<<page>>\
Week in, week out, you and your friends test each other with flashcards and past papers. It's hard work, but the more you study the more you can feel your mastery of the subjects improving.
[+2 to all GCSE exam results]
[$kate.firstName gets 500 XP in General Knowledge]
When your [[GCSE exams|UKYOUTH-10000 GCSE exams]] finally roll around, you feel as ready as you'll ever be.
<</page>><<silently>>
<<set $temp.revisionBonus to 1>>
<</silently>>\
<<header>>\
<<page>>\
Week in, week out, you and your friends test each other with flashcards and past papers. The pressure feels overwhelming; when May rolls around <<if $kate.attributes.neuroticism.level gte 0>>you and $temp.firstFriend are frequently in tears<<else>>$temp.firstFriend is frequently in tears<</if>>, and the boys are sullen and snappy. If you can get through this and stay friends, it'll be a miracle.
[+1 to all GCSE exam results]
[$kate.firstName gets 250 XP in General Knowledge, 250 XP in Charisma]
May fades into June, and your revision window closes: your [[GCSE exams|UKYOUTH-10000 GCSE exams]] are about to start.
<</page>><<silently>>
<<set $kate.bikiniLine to "brazilian">>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("homeHol/20_cosyOutfit")>>
<<if $kate.age lte 24>>
<<set _five to "FOUR">>
<<set $header.line2 to "DECEMBER 2014">>
<<elseif $kate.age == 25>>
<<set _five to "FIVE">>
<<set $header.line2 to "DECEMBER 2013">>
<<else>>
<<set _five to "SIX">>
<<set $header.line2 to "DECEMBER 2012">>
<</if>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $header.line1 to "''COLLEGE''">>
<<else>>
<<set $header.line1 to "''UNIVERSITY''">>
<</if>>
<</silently>>\
<a data-passage="HOMEHOL-200 Dorm room">
<<= '<img src='+ $imagePath.base + "locationPhotos/homeForTheHolidays/4yrsAgoChristmas.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Aren't you going home for the holidays?"
You almost don't hear Sadie's question as she crashes around the <<if $kate.agency == "mi6">>student house<<else>>dorm<</if>>, packing for her Christmas trip back home.
[[I am.|HOMEHOL-300 I am]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _mom to "mom">>
<<else>>
<<set _mom to "mum">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I am."
"Then why aren't you packing?"
[[Because I'm not as disorganised as you?|HOMEHOL-310 Sadie is a cluster]]
<<link "My _mom's having a stupid party, I want to arrive late." "HOMEHOL-320 Mum's stupid party">><</link>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Because I'm not as disorganised as you?"
"Shut //up!// And have you seen my charger anywhere?"
<<include "HOMEHOL-330 Sadie says goodbye">>
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"My <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>> loves putting me to work whenever she throws one of her stupid parties," you complain. "The later I show up, the less I have to do." Sadie shoots you a knowing smile as she races around to collect her things.
<<include "HOMEHOL-330 Sadie says goodbye">>
<</page>>An hour later, she's finally ready to leave. You share a long hug goodbye; after months of living with her, it's going to be weird not seeing her for a few weeks. "I'm gonna miss you."
"You too, babe. [[Merry Christmas|HOMEHOL-340 Place to myself]]."<<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
With the place to yourself, it's quiet and relaxing. But you can't enjoy having your own space for too long; you have to start getting ready for the trip home, and your <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>>'s lame dinner party.
It's always the same, hours and hours of middle-aged small talk with grown-ups you barely know. You're planning to arrive [[fashionably late|HOMEHOL-350 Title card]]...
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<wear-bra-nudeStrapless>>
<<set $avatar.barefoot to false>>
<<set $avatar.underwear.pushUnique("homeHol/10_stockings-heels")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("homeHol/20_duaLipaDress-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/50_rockerJacket-blackLeatherBikerJacket")>>
<<set $avatar.underwear.pushUnique("homeHol/55_scarf")>>
<<apply-makeup-eyeliner-jessica>>
<<apply-makeup-eyeshadow-lust>>
<<apply-makeup-lipstick-rubyWoo>>
<</silently>>\
<<page>>\
<<if $kate.agency == "cia">>\
//<<link "SEVERAL HOURS LATER..." "HOMEHOL-400 Airport delay">><</link>>//
<<else>>\
//<<link "SEVERAL HOURS LATER..." "HOMEHOL-500 Breakdown">><</link>>//
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-redCowlHalterNeckMini-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/50_rockerJacket-blackLeatherBikerJacket")>>
<<set $avatar.background.pushUnique("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.pushUnique("/foreignAdventure/30_airportLuggageMiddleClass")>>
<<set $avatar.background.pushUnique("/foreignAdventure/29_airportLuggageMiddleClassShadow")>>
<<set $header.line1 to "''AIRPORT DEPARTURE LOUNGE''">>
<</silently>>\
<<header>>\
<<page>>\
//"Cancelled?"// You stare at the desk attendant in total disbelief. "How can it be //cancelled?// I've gotta get home for Christmas!"
The baggy-eyed airline worker gives you the most apologetic look she can muster. "I'm sorry, ma'am. We've gotten you a seat on the next plane out. It is a red-eye flight, though. If you'd like to cancel altogether, I understand."
//<span class="greyedOut">//[Sigh]//</span>// [[Fine, I'll take it.|HOMEHOL-410 Fine I'll take it]]
//[TK give Kate the option to be bitchy]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Realising this tired woman can't do anything about it, you just sigh in frustration. "If it's all there is, I'll take it. I can't not go home for Christmas."
She gives you a small smile, as if to thank you for not tearing into her, as she hands over your new boarding papers. "I'm really sorry. Your new flight boards at 10 <small>P.M.</small>"
You take the papers and head back to your seat in the waiting area, planning what you're going to [[tell your mom|HOMEHOL-700 Title card]] in order to avoid the //This is why you should've gotten an earlier flight// lecture...
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<<set $header.line1 to "''ON THE ROAD''">>
<</silently>>\
<<header>>\
<<page>>\
This close to Christmas, the roads are quiet. You're doing ninety on a dark <<if $kate.agency == "mi6" or $kate.agency == "nzsis">>motorway<<else>>highway<</if>>...when a fucking <<if $kate.agency == "mi6">>//deer//<<elseif $kate.agency == "asis">>//kangaroo//<<elseif $kate.agency == "csis">>//moose//<<elseif $kate.agency == "nzsis">>//wild pig//<<else>>ERROR IN KATE.AGENCY VAR<</if>> <<if $kate.agency == "asis">>springs<<else>>runs<</if>> out into the road!
Your headlights bathe its fur and eyes in dazzling bright light.
//[[Brake and swerve!|HOMEHOL-510 Swerve]]//
//[[Too late!|HOMEHOL-525 Roadkill]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your quick reactions save the <<if $kate.agency == "mi6">>deer<<elseif $kate.agency == "asis">>roo<<elseif $kate.agency == "csis">>moose<<elseif $kate.agency == "nzsis">>pig<<else>>ERROR IN KATE.AGENCY VAR<</if>>'s life. You swerve behind it, missing its rump by just //inches.//
Then the weight at the back of the car //shifts,// and the steering wheel stops working, and you're [[in a spin|HOMEHOL-520 Crash!]] and...
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//''CRAAASH!''// You slam into your seatbelt as the car smashes into something solid. Glass shatters and metal crunches and the <<if $kate.agency == "cia" or $kate.agency == "csis">>hood<<else>>bonnet<</if>> flies open...then silence and stillness as the engine cuts out.
[[OMG!|HOMEHOL-530 OMG]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//''CRAAASH!''// The <<if $kate.agency == "mi6">>deer<<elseif $kate.agency == "asis">>roo<<elseif $kate.agency == "csis">>moose<<elseif $kate.agency == "nzsis">>pig<<else>>ERROR IN KATE.AGENCY VAR<</if>> bounces over your <<if $kate.agency == "cia" or $kate.agency == "csis">>hood<<else>>bonnet<</if>>, hitting the windshield so fast and hard it buckles and shatters.
It bounces hard over the roof as your car skids to a stop.
[[OMG!|HOMEHOL-530 OMG]]
<</page>><<silently>>
<<emote-mouth-upset>>
<</silently>>\
<<header>>\
<<page>>\
//Oh my God!//
That all happened so fast you didn't even have time to get scared.
You just sit there for a second, tense and hyper-alert. //What the hell do I do now?//
//[[Check the damage.|HOMEHOL-540 Check damage]]
[[Call your parents.|]]//
<</page>><<silently>>
<<set $header.line1 to "''CRASH SITE''">>
<<emote-mouth-calm>>
<<if $kate.agency == "mi6">>
<<set _emergencyNo to "999">>
<<elseif $kate.agency == "asis">>
<<set _emergencyNo to "112">>
<<elseif $kate.agency == "csis">>
<<set _emergencyNo to "911">>
<<elseif $kate.agency == "nzsis">>
<<set _emergencyNo to "111">>
<<else>>
<<set _emergencyNo to "ERROR IN TEMPVAR TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You click on the hazard lights, and step out to survey the damage.
Oh god. <<if hasVisited("HOMEHOL-510 Swerve")>>You saved the <<if $kate.agency == "mi6">>deer<<elseif $kate.agency == "asis">>kangaroo<<elseif $kate.agency == "csis">>moose<<elseif $kate.agency == "nzsis">>boar<<else>>ERROR IN KATE.AGENCY VAR<</if>> but<<else>>The <<if $kate.agency == "mi6">>deer<<elseif $kate.agency == "asis">>kangaroo<<elseif $kate.agency == "csis">>moose<<elseif $kate.agency == "nzsis">>boar<<else>>ERROR IN KATE.AGENCY VAR<</if>> is dead and<</if>> your car's //fucked.// <<if hasVisited("HOMEHOL-525 Roadkill")>>The windshield's shattered and the<<else>>The<</if>> front is smashed in, steam spewing out through the crumpled grille.
//[[Call your parents.|]]
<<link "Call _emergencyNo." "HOMEHOL-550 999">><</link>>//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
//TK Kate calls the emergency services. They tell her to [[wait with her car|HOMEHOL-600 Roadside rescue]].//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
Cars drive past as you wait. Most of them ignore you; a few drivers who are either Good Samaritans or predators stop to offer help, but drive on when you tell them the police are on the way.
A police car arrives; once your breathalyser test comes up green, the officers are friendly and let you sit in the back of their car while you wait for the recovery truck.
It eventually arrives. Your car's winched onto the back, then you ride in the front of the truck with the driver, who has a bushy beard and a big, festive belly.
Your parents are greatly relieved when you call again to tell them you're [[on your way|HOMEHOL-700 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''HOME''">>
<</silently>>\
<<page>>\
//<<link "SEVERAL HOURS LATER..." "HOMEHOL-710 Sneaking in">><</link>>//
<</page>><<silently>>
<<set $avatar.background.delete("/foreignAdventure/20_airportLoungeWindow")>>
<<set $avatar.background.delete("/foreignAdventure/30_airportLuggageMiddleClass")>>
<<set $avatar.background.delete("/foreignAdventure/29_airportLuggageMiddleClassShadow")>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You finally get home around 3.30 <small>A.M.</small> The porch light is on, but the dark windows tell you that your parents chose not to stay up.
A pretty wreath with frosted pine cones hangs on the front door. You turn your key quietly in the lock and let yourself in.
Inside your family home, all is dark and peaceful.
//[[Take off your jacket and boots.|HOMEHOL-720 Barefoot]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("teenRom/50_rockerJacket-blackLeatherBikerJacket")>>
<<set $avatar.underwear.delete("homeHol/55_scarf")>>
<<set $avatar.barefoot to true>>
<<set $avatar.underwear.pushUnique("homeHol/10_stockings-barefoot")>>
<<set $avatar.underwear.delete("homeHol/10_stockings-heels")>>
<<set $avatar.clothing.delete("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<if $kate.age lte 24>>
<<set $header.line2 to "HOME / DECEMBER 2014">>
<<elseif $kate.age == 25>>
<<set $header.line2 to "HOME / DECEMBER 2013">>
<<else>>
<<set $header.line2 to "HOME / DECEMBER 2012">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You hang up your jacket, and quietly unzip and peel off your boots in the hallway.
It's not quite yet the night before Christmas, but not a creature is stirring, all through the house.
//[[Go through to the kitchen.|HOMEHOL-730 Kitchen]]//
<</page>><<silently>>
<<set $header.line1 to "''KITCHEN''">>
<</silently>>\
<<header>>\
<<page>>\
In your stockinged feet, you pad silently through to the kitchen. You don't need the lights on to stride confidently around the house you grew up in.
After months of student living, the fridge seems packed with infinite ingredients. You pour a fishbowl-sized glass of your <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>>'s favourite white wine, and load up a plate with leftover party snacks.
//[[Take it through to the living room.|HOMEHOL-740 Living room]]//
<</page>><<silently>>
<<set $header.line1 to "''LIVING ROOM''">>
<</silently>>\
<<header>>\
<<page>>\
Padding through to the living room, you set your wine and plate down on the coffee table.
A Christmas tree stands in a corner, big and dark and still. The TV remote is right where it always is. You pick it up and switch on the screen to give you some light, dialling down the volume as it comes on.
//[[Sit on the couch.|HOMEHOL-750 Sitting on John]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Instead of the cushions you're expecting to sink into – //startlingly,// your ass lands on some big, solid object instead.
//[[Jump up!|HOMEHOL-760 Oops]]//
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//Oh my god!// You jump up with a gasp as you feel the object shift underneath you. //I just sat on somebody!//
"Uhhh..." a deep masculine voice groans awake. By the pale glow of the TV screen, you make out a face you recognise – John <<Talisker>>, your dad's work friend.
//Ohmygod I just sat on John <<Talisker>>.// THE John <<Talisker>>. As in, your first crush. Still looking ruggedly handsome, and not at all his advanced age.
"$kate.firstName?" he croaks.
[[I'm so sorry!|HOMEHOL-770 I'm so sorry]]
[[What are you doing here?|HOMEHOL-780 What are you doing here?]]
<<link "Mr <<Talisker>>?!" "HOMEHOL-790 Mr Templar?">><</link>>
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm sorry!" you exclaim. "I didn't see you!"
He groans and stretches. "What time is it?"
[[3:30.|HOMEHOL-800 It's 3.30][$kateSays to "330"]]
[[Late, go back to sleep.|HOMEHOL-800 It's 3.30][$kateSays to "late"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"What are you doing here?"
"Well, I, ah...sleeping."
[[I'm so sorry!|HOMEHOL-770 I'm so sorry]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Mr <<Talisker>>?!"
"Mmm," he murmurs.
[[I'm so sorry!|HOMEHOL-770 I'm so sorry]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<emote-nose-scrunch>>
<<if $kate.agency == "mi6">>
<<set _deer to "deer">>
<<elseif $kate.agency == "asis">>
<<set _deer to "kangaroo">>
<<elseif $kate.agency == "csis">>
<<set _deer to "moose">>
<<elseif $kate.agency == "nzsis">>
<<set _deer to "boar">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "330">>\
"Three thirty," you tell him. Your cheeks feel hot. "Ohmygod. I didn't mean to wake you."
<<elseif $kateSays == "late">>\
"It's really late," you tell him. Your cheeks feel hot. "Go back to sleep."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
With a groan, he waves away your protestations, and sits up on the couch. Under the spare duvet he's wearing a plain white t-shirt.
"Sit, sit," he says, patting the couch beside him. "Drink your wine. Your dad said <<if $kate.agency == "cia">>your flight got cancelled<<elseif hasVisited("HOMEHOL-510 Swerve")>>you had a crash<<else>>you hit a <<if $kate.agency == "mi6">>deer<<elseif $kate.agency == "asis">>kangaroo<<elseif $kate.agency == "csis">>moose<<elseif $kate.agency == "nzsis">>boar<<else>>ERROR IN KATE.AGENCY VAR<</if>><</if>>?<<if $kate.agency != "cia">> Are you okay?<</if>>"
<<if $kate.agency == "cia">>\
[[My first red-eye flight...|HOMEHOL-900 Sit beside me child]]
<<elseif hasVisited("HOMEHOL-510 Swerve")>>\
<<link "This _deer just ran out in front of me..." "HOMEHOL-900 Sit beside me child">><</link>>
<<else>>\
[[It just ran into the road...|HOMEHOL-900 Sit beside me child]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You hesitate for a moment, then sit down beside him. The couch is warm where he's been sleeping. You catch a glimpse of boxer shorts as he adjusts the blanket.
<<if $kate.agency == "cia">>\
<<emote-mouth-beam>>\
"My first red-eye," you tell him. "Everyone was asleep. Which was okay because the flight attendant could keep my drinks coming, haha!" You [[laugh nervously|HOMEHOL-910 Bonding]].
<<elseif hasVisited("HOMEHOL-510 Swerve")>>\
"I'm fine. This <<if $kate.agency == "mi6">>deer<<elseif $kate.agency == "asis">>roo<<elseif $kate.agency == "csis">>moose<<elseif $kate.agency == "nzsis">>boar<<else>>ERROR IN KATE.AGENCY VAR<</if>> just...ran out in the road," you [[begin|HOMEHOL-910 Bonding]]...
<<else>>\
"It just...ran into the road," you [[begin|HOMEHOL-910 Bonding]]...
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
//Great work, $kate.firstName, now he thinks you're a lush!// But he nods in agreement.
"Yeah, that's the only thing red-eyes have going for them. I can't sleep on planes either, every little bump wakes me up. Drink takes the edge off, but I still can't fall asleep..."
<<elseif hasVisited("HOMEHOL-510 Swerve")>>\
John nods sympathetically as you tell your story. "I wrote off a car once," he tells you. "That moment when you know it's happening, and there's nothing you can do..."
<<else>>\
John nods sympathetically as you tell your story. "I crashed a car once," he tells you. "Afterwards you play it in your mind over and over, but in the moment it happens so quick..."
<</if>>\
"I know! Right?" You finally relax and the two of you fall into [[natural conversation|HOMEHOL-920 Talk]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The talk turns to <<university>>, Before you know it, an hour has passed and you need to open a second bottle of wine.
He smiles up at you as you bring it through from the kitchen, and pats the couch again for you to sit. You lean back and watch him refill your glasses.
[[next|HOMEHOL-1000 I always thought you were hot]]
<</page>><<silently>>
<</silently>>\
<<page>>\
//<<link "AN HOUR LATER..." "HOMEHOL-1000 I always thought you were hot">><</link>>//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Well...I //always// thought you were hot."
Your mind goes blank as the wine makes you blurt out the confession. You can't even remember what you two were just talking about, but you find yourself holding your breath as you wait for his response.
He shoots you a smile. "You turned out pretty hot yourself." He leans in closer, places his hand on your thigh.
//Oh my god, John Fucking <<Talisker>> has his hand on my leg.// You suck in a breath as a dozen butterflies in your stomach all take off at once.
[[I'm sorry. We can't do this.|HOMEHOL-1100 Blue balled]]
//[[Make out on the couch.|HOMEHOL-2000 Couch makeout]]//
[[Let's go to my room.|HOMEHOL-4000 Take me to bed]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
A moment of clarity hits you as you suddenly remember your age difference, and the fact that your dad works day-in day-out with this man.
"I'm sorry," you say, <<if hasVisited("HOMEHOL-2100 Shhh")>>disentangling yourself from his embrace<<else>>standing up<</if>>. His hand follows your leg, gliding softly down the back of your nylon-clad thigh as you rise. "I think I need to go to bed."
"But..." disappointment is etched all over his handsome face, then he nods in agreement. "Yeah. Yeah, it's...really late."
[[Goodnight.|HOMEHOL-1110 Goodnight]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Goodnight."
"Goodnight," he replies.
For a moment you just look at each other. The hot wetness in your groin and your attraction to him almost make it impossible to actually leave...but then the spell passes.
You smile awkwardly at him one last time, then slip away to [[your bedroom|HOMEHOL-1120 Kate's room]].
<</page>><<silently>>
<<set $header.line1 to "''YOUR ROOM''">>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Everything's the same as you left it months ago, from the posters on the wall to Cuddles the Teddy Bear, propped up in his little chair in the corner.
//[[Take off your dress.|HOMEHOL-1130 Un-dress]]//
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.underwear.delete("homeHol/10_stockings-barefoot")>>
<<set $avatar.clothing.delete("homeHol/20_duaLipaDress-" + $kate.braSize)>>
<<remove-bra-nudeStrapless>>
<</silently>>\
<<header>>\
<<page>>\
Cuddles watches you unzip your party dress and hang it over a chair.
//[[Go to bed.|HOMEHOL-1140 Bedtime]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<remove-makeup-lipstick>>
<<set $avatar.foreground.pushUnique("/homeHol/95_fuzzyOnesie-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You peel off the rest of your clothes – almost literally, as far as your <<knickers>> are concerned – click off the light, and climb into bed.
You stare up at the ceiling as you try to make sense of what just happened. Luckily, [[sleep interrupts your thoughts|HOMEHOL-1150 Merry Christmas]] before you can spiral too far.
<</page>><<silently>>
<<set $header.line1 to "''HOME''",
$header.line2 to "DECEMBER 2012">>
<<set $avatar.foreground.delete("/homeHol/95_fuzzyOnesie-" + $kate.braSize)>>
<<apply-makeup-lipstick-rubyWoo>>
<<set $avatar.clothing.pushUnique("homeHol/20_santaDress3-" + $kate.braSize)>>
<<set $avatar.barefoot to false>>
<<set $avatar.clothing.pushUnique("homeHol/20_redSandals")>>
<<set $avatar.foreground.pushUnique("/homeHol/95_xmasRibbon")>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<page>>\
<<image "/ui/merryChristmas.jpg" 0 1000 300 0>>\
You completed the Christmas mini-adventure! Your ending was: //''On the Good Girl List.''// $kate.firstName came home for the holidays, and resisted an impulsive fling with a family friend.
Thank you for playing //Female Agent.// On behalf of the whole team, I'd like to wish you a Merry Christmas and a Happy New Year!
I love you and I hope 2022 is your best year yet.
– 🦀 <i>Crushstation, December 2021</i>
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You decide to take your shot and just kiss him. What starts as an impulsive peck quickly turns into a full-on makeout session.
Your tongues dance as his hands explore your body – one cupping and fondling your breast while the other slowly slips under your dress and up your thigh.
He breaks off and kisses your neck, his 5 <small>A.M.</small> stubble scraping gently like sandpaper on your soft, smooth skin. It feels so good it makes you [[gasp|HOMEHOL-2100 Shhh]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//[Dress pulled up exposing tights & underwear]//
"Shhhhh," he urges, reminding you that your parents are right upstairs, before kissing you fiercely again.
With experienced ease he lays you back against the couch, tugging your dress up round your hips while you kiss. His hand curls around the inside of your knee, slides up your inner thigh...
//[[Break it off.|HOMEHOL-1100 Blue balled]]
[[Open your legs.|HOMEHOL-2200 Spread em]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Instinctively you spread your legs apart. His big, masculine paw slides confidently up the slippery nylon and onto your crotch.
While his tongue explores your mouth, the tip of his finger slides skilfully, rhythmically down and up over your pussy, fondling your growing wetness [[through the layers|HOMEHOL-2300 Fingered]] of lycra and nylon...
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("homeHol/10_tights-pulledDown")>>
<<set $avatar.underwear.delete("homeHol/10_stockings-barefoot")>>
<</silently>>\
<<header>>\
<<page>>\
You struggle to keep quiet as you squirm against his fingers, your body demanding more. John obliges, his fingers slipping down the front of your <<knickers>> and finding their way to your now soaking wet pussy.
His finger slides up inside you, two knuckles deep, deftly moving up and down as he kisses your neck and teases your nipple through your dress.
You suddenly realise there are [[footsteps in the hall|HOMEHOL-2400 Footsteps]]...
<</page>><<silently>>
<<set $avatar.underwear.delete("homeHol/10_tights-pulledDown")>>
<<set $avatar.underwear.pushUnique("homeHol/10_stockings-barefoot")>>
<<emote-calm>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
John rolls off you and you yank down your dress as your dad appears in the doorway. "$kate.firstName?"
[[Hi, Dad!|HOMEHOL-2500 Hi Dad][$dad to "Dad"]]
[[Hi, Daddy!|HOMEHOL-2500 Hi Dad][$dad to "Daddy"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, hi $dad!"
He's wearing his bathrobe and PJs, staring at you and John <<Talisker>> from the doorway. There's no way he didn't just put two and two together.
"Sweetie. When did you get in?"
[[About an hour ago.|HOMEHOL-2600 Sent to her room][$kateSays to "hourAgo"]]
<span class="greyedOut">//[Lie]//</span> [[Just now.|HOMEHOL-2600 Sent to her room][$kateSays to "justNow"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hourAgo">>\
"Um, an hour ago? I woke up John by accident."
"Yeah, um, we were just talking," John stutters out. "Sorry if we woke you."
"Right." Your father gives the pair of you a long, disapproving look. "I think $kate.firstName had better get to bed."
<<elseif $kateSays == "justNow">>\
"Oh, just now. I nearly sat on John! I didn't know he'd be here."
"Yeah, uh, it was, uh, quite a surprise," John stutters out. "Sorry if we woke you."
"Right." Your father looks between the two of you and for a brief moment at the empty wine bottle and the glasses on the table. "I think $kate.firstName had better get to bed."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<link "Absolutely." "HOMEHOL-2700 Kate flees">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shoot to your feet. "Absolutely. Nice seeing you again, John. Goodnight, $dad."
You give them both a nod, then hastily [[escape to your room|HOMEHOL-2800 Kate's room]].
<</page>><<silently>>
<<set $header.line1 to "''YOUR ROOM''">>
<<emote-mouth-calm>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//Ohmygod how embarrassing.//
Everything in your room is as you left it months ago, from the posters on the wall to Cuddles the Teddy Bear, propped up in his little chair in the corner.
//[[Take off your dress.|HOMEHOL-2900 Un-dress]]//
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.underwear.delete("homeHol/10_stockings-barefoot")>>
<<set $avatar.clothing.delete("homeHol/20_duaLipaDress-" + $kate.braSize)>>
<<remove-bra-nudeStrapless>>
<</silently>>\
<<header>>\
<<page>>\
Cuddles watches you unzip your party dress and hang it over a chair.
//[[Go to bed.|HOMEHOL-3000 Bedtime]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<remove-makeup-lipstick>>
<<set $avatar.foreground.pushUnique("/homeHol/95_fuzzyOnesie-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You peel off the rest of your clothes – almost literally, as far as your <<knickers>> are concerned – click off the light, and climb into bed.
You stare up at the ceiling as you try to make sense of what just happened. Luckily, [[sleep interrupts your thoughts|HOMEHOL-3100 Merry Christmas]] before you can spiral too far.
<</page>><<silently>>
<<set $header.line1 to "''HOME''",
$header.line2 to "DECEMBER 2012">>
<<set $avatar.foreground.delete("/homeHol/95_fuzzyOnesie-" + $kate.braSize)>>
<<apply-makeup-lipstick-rubyWoo>>
<<set $avatar.clothing.pushUnique("homeHol/20_santaDress3-" + $kate.braSize)>>
<<set $avatar.barefoot to false>>
<<set $avatar.clothing.pushUnique("homeHol/20_redSandals")>>
<<set $avatar.foreground.pushUnique("/homeHol/95_xmasRibbon")>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/ui/merryChristmas.jpg" 0 1000 300 0>>\
You completed the Christmas mini-adventure! Your ending was: //''On the Bad Girl List.''// $kate.firstName came home for the holidays, and got caught on the couch in a steamy makeout with a family friend.
Thank you for playing //Female Agent.// On behalf of the whole team, I'd like to wish you a Merry Christmas and a Happy New Year!
I love you and I hope 2022 is your best year yet.
– 🦀 <i>Crushstation, December 2021</i>
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You lean in and give him a long, sultry kiss.
"Let's go to my room," you whisper when you break apart. Curling your fingers around his, you lead him hand-in-hand through the dark peaceful corridors of your family home into [[your bedroom|HOMEHOL-4100 Kate's room]].
<</page>><<silently>>
<<set $header.line1 to "''YOUR ROOM''">>
<<emote-calm>>
<<emote-eyes-squint>>
<<emote-mouth-sexy>>
<<set $avatar.underwear.delete("homeHol/10_stockings-barefoot")>>
<<set $avatar.clothing.delete("homeHol/20_duaLipaDress-" + $kate.braSize)>>
<<remove-bra-nudeStrapless>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your dress as soon as John closes the door behind you.
Falling back on the bed, you give him the best "[[come fuck me|HOMEHOL-4200 Come fuck me]]" look you can muster – partly to tempt him, partly to distract him from Cuddles the Teddy Bear, propped up in his little chair in the corner.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
John gives you a playful grin as he takes off his t-shirt, revealing a toned upper body that's seriously impressive for a guy nearly two decades your senior.
[[Still as hot as ever.|HOMEHOL-4300 Hot as ever][$kateSays to "hotAsEver"]]
[[Can't believe we're finally doing this.|HOMEHOL-4300 Hot as ever][$kateSays to "cantBelieveIt"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<emote-brows-naughty>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hotAsEver">>\
"Still as hot as ever," \
<<elseif $kateSays == "cantBelieveIt">>\
"Can't believe we're finally doing this," \
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>> you mutter as he joins you on the bed for a [[kiss|HOMEHOL-4400 Kiss on bed]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
He's a very good kisser and he's very good with his hands.
He's confident yet gentle with your body, and by the time he [[takes off your bra|HOMEHOL-4500 Feminism]] he finds hardened nipples and your arousal finds you more sensitive than you ever remember being.
<</page>><<silently>>
<<set $avatar.underwear.delete("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
He kisses down your body, from your neck down your chest to your nipples.
When he flicks them both with his finger and his tongue it feels like heaven. You arch your back and murmur, softly and approvingly, not wanting your voice to carry outside the room.
Still suckling on a nipple, he shifts on the bed and curls his fingers into the waistband of your <<knickers>> and <<if $kate.agency == "cia" or $kate.agency == "csis">>pantyhose<<else>>tights<</if>>.
//[[Lift your butt.|HOMEHOL-4600 Naked]]//
<</page>><<silently>>
<<set $avatar.underwear.delete("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<remove-hosiery-plainBlackHoldUpStockings>>
<</silently>>\
<<header>>\
<<page>>\
You subconsciously lift your hips to help him finish undressing you.
He tosses the last of your underwear aside, and goes back to your breasts, licking and sucking on your nipples while his fingers find your clit.
He plays with you like this for a long time, his mouth on your breasts and his finger alternating between fondling your clit and slipping up inside your [[drenched pussy|HOMEHOL-4700 Going down]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
John slowly pumps two fingers into you as he kisses his way down your stomach.
You look down and meet his eyes as his lips brush down your little bikini line. Then his tongue is lashing your clit as his fingers [[sink deeper inside you|HOMEHOL-4800 Missionary fuck]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Soon he climbs up the bed, face-to-face with you, and his thick, hard cock replaces his fingers in your pussy.
It feels so good you want to scream. He clamps his hand over your mouth and you moan noisily into it instead while he fucks you, as passionately as the bedsprings of your childhood bed will allow.
It's so sensual and erotic and he makes you orgasm, but you sense that to come himself he needs to go faster and harder than he can on your bed. So the two of you move it to the floor where, finally, John <<Talisker>> [[comes inside|HOMEHOL-4900 Money shot]] his old friend's daughter.
<</page>><<silently>>
<<set $avatar.clothing.delete("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<remove-makeup-lipstick>>
<<emote-calm>>
<<emote-mouth-smile>>
<<set $avatar.foreground.pushUnique("/homeHol/95_fuzzyOnesie-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
Afterwards you climb back into the bed, and lie there entwined for a while. "You're so beautiful," he tells you, and the way he looks at you makes you believe it.
You ask him to stay with you, but he makes the wise decision to sneak back to the couch so he's not caught by your parents.
You gaze up at the ceiling of your room as you try to make sense of what just happened. But sleep soon interrupts your thoughts and you slip gently into a [[long, pleasant dream|HOMEHOL-5000 Merry Christmas]].
<</page>><<silently>>
<<set $header.line1 to "''HOME''",
$header.line2 to "DECEMBER 2012">>
<<set $avatar.foreground.delete("/homeHol/95_fuzzyOnesie-" + $kate.braSize)>>
<<apply-makeup-lipstick-rubyWoo>>
<<set $avatar.clothing.pushUnique("homeHol/20_santaDress3-" + $kate.braSize)>>
<<set $avatar.barefoot to false>>
<<set $avatar.clothing.pushUnique("homeHol/20_redSandals")>>
<<set $avatar.foreground.pushUnique("/homeHol/95_xmasRibbon")>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/ui/merryChristmas.jpg" 0 1000 300 0>>\
You completed the Christmas mini-adventure! Your ending was: //''Festive Fling.''// $kate.firstName came home for the holidays, where she had a sneaky fling with a family friend.
Thank you for playing //Female Agent.// On behalf of the whole team, I'd like to wish you a Merry Christmas and a Happy New Year!
I love you and I hope 2022 is your best year yet.
– 🦀 <i>Crushstation, December 2021</i>
<</page>><<widget "rTables-addStoryPartner">><<nobr>>
/*This widget will set the story partner and include it*/
/*If ypu want to add Jacob for example: <<rTables-addStoryPartner 1>>*/
/*Add jacob and change the name givven: <<rTables-addStoryPartner 1 "Barry">>*/
<<set _number to $args[0]>>
<<if def $args[1]>>
<<set _name to $args[1]>>
<<else>>
<<set _name to "">>
<</if>>
<<set $kate.relationshipHistory.push([_number, _name])>>
<</nobr>><</widget>>
<<widget "rTables-findPassage">><<nobr>>
<<set _passageSuffix to "-"+$args[0]>> /*Get 1 and make "-1"*/
<<set _rTablesArray to Story.lookup("tags", "rTable-partners")>> /*Search for all passage tagged rTable-partners*/
<<set _checkExists to false>>
<<for _j to 0; _j lt _rTablesArray.length; _j++>>
<<set _passageTitle to _rTablesArray[_j].title>>
<<if _passageTitle.endsWith(_passageSuffix)>>
<<set _checkExists to true>>
<<break>>
<</if>>
<</for>>
<<if _checkExists>>
<<include _passageTitle>> /*For finding the header */
<<else>>
<<consoleLog "Error in Passage title name for rTables!!!">>
<</if>>
<</nobr>><</widget>>
<<widget "rTables-showPartners">><<nobr>>
/*This widget will display all the partners in reverse chronological order*/
/*[{header : "HEADER", relationships : [{name : "NAME", text : "TEXT"},{name : "NAME", text: "TEXT"}]}]*/
<<set _displayArray to []>> /*The display array, used to display the correct info later*/
/*<<set $kate.relationshipHistory to [[1,""],[2,""],[3,""],[4,""],[25,""],[26,""]]>> TEST ARRAY*/
<<set _interArray to []>>
<<silently>>
<<for _i to 0; _i lt $kate.relationshipHistory.length; _i++>>
<<set _name to $kate.relationshipHistory[_i][1]>>
<<rTables-findPassage $kate.relationshipHistory[_i][0]>> /*Finding the actual passage based on the code give, so 1, 2, 3, so on*/
<<set _obj to {}>>
<<set _obj.header to _tableHeader>>
<<set _relationShip to []>>
<<set _relationShip to {name : _name, text : _text}>>
<<set _obj.relationships to _relationShip>>
<<set _interArray.push(_obj)>>
<</for>>
<<if _interArray.length gt 0>>
<<set _oldHeader to _interArray[0].header>> For changing the time header in the table
<<set _displayArray.push({header : _interArray[0].header, relationships : [_interArray[0].relationships]})>>
<<set _position to 0>>
<<for _i to 1; _i lt _interArray.length; _i++>>
<<set _header to _interArray[_i].header>>
<<set _relationShip to _interArray[_i].relationships>>
<<if _header eq _oldHeader>>
<<set _displayArray[_position].relationships.push(_relationShip)>>
<<else>>
<<set _displayArray[_position].relationships.reverse()>>
<<set _position +=1>>
<<set _displayArray.push({header : _header, relationships : [_relationShip]})>>
<<set _oldHeader to _header>>
<</if>>
<</for>>
<<set _displayArray[_position].relationships.reverse()>>
<<set _displayArray.reverse()>>
<</if>>
<</silently>>
/*<<consoleLog _displayArray>>*/
<<for _i to 0; _i lt _displayArray.length; _i++>>
<div class="character-stat">
<header><i>_displayArray[_i].header</i></header>
<<for _k to 0; _k lt _displayArray[_i].relationships.length; _k++>>
<div class="character-stat">
<header>_displayArray[_i].relationships[_k].name</header>
<div class="stat-description">
_displayArray[_i].relationships[_k].text
</div>
</div>
<</for>>
</div>
<</for>>
<</nobr>><</widget>><<silently>>
<<set _jacob = $statistics.get("Jacob")>>
/*This is a place to store info that will be lost in the deletion of $temp*/
/*This should be set in the story at the right time : for example: <<set $statistics.set("Jacob",{story: $temp.jacobsStory, end: "Cheat"})>>*/
<<set _tableHeader to "Youth">>
<<set _firstname to "Jacob">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<if _jacob.story eq "pizzaPup">>
<<set _story to "at Pizza Pup " >>
<<elseif _jacob.story eq "6thForm">>
<<set _story to "in 6th Form " >>
<<else>>
<<set _story to "at Reading Festival ">>
<</if>>
<<if _jacob.end eq "Normal">>
<<set _end to "we drifted appart; I think we were both too young to settle down. " >>
<<else>>
<<set _end to "broke up when I caught him cheating on me. " >>
<</if>>
<<set _text to "My first serious boyfriend. We met " + _story + "and fell in love. We where together for two years but "+ _end+ "I still think of him from time to time.">>
<</silently>><<silently>>
/*Mark 1 */
<<set _tableHeader to "Youth">>
<<set _firstname to "Mark">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<if $kate.quirks.includes("rockChick")>>
<<set _text to "The drummer in Naked Tuna and one of my best friends growing up. I gave him his first BJ, in front of Tom and Josh.">>
<<else>>
<<set _text to "One of my best friends growing up. I gave him his first BJ, in front of Tom and Josh.">>
<</if>>
<</silently>><<silently>>
/*Josh 2 Namibia */
/*This one should replace 12 if namibia +Pablo sleep sex thing */
<<set _tableHeader to "Youth">>
<<set _firstname to "Josh">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<if $kate.quirks.includes("rockChick")>>
<<set _text to "Another of my best friends – the sweetest one in the group. He played guitar in the band. I gave him a BJ after he watched me do it with Mark. ">>
<<else>>
<<set _text to "Another of my best friends – the sweetest one in the group. I gave him a BJ after he watched me do it with Mark. ">>
<</if>>
<</silently>><<silently>>
/*Tom 1*/
<<set _tableHeader to "Youth">>
<<set _firstname to "Tom">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<set _text to "My other guy friend growing up. We bickered a lot but were close. I gave him a BJ right after Mark, and he never lets me forget it. ">>
<</silently>><<silently>>
/*Tom 1*/
<<set _tableHeader to "Namibia">>
<<set _firstname to "Namibia name some">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<set _text to "Text snippet NAMIBIA low partner ROLL ">>
<</silently>><<silently>>
/*Tom 1*/
<<set _tableHeader to "Namibia">>
<<set _firstname to "Namibia name some">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<set _text to "Text snippet NAMIBIA Medium partner ROLL ">>
<</silently>><<silently>>
/*Tom 1*/
<<set _tableHeader to "Namibia">>
<<set _firstname to "Namibia name some">>
<<set _surname to "">>
<<if _name eq "">>
<<set _name to _firstname +" " +_surname>>
<</if>>
<<set _text to "Text snippet NAMIBIA high partner ROLL ">>
<</silently>><<silently>>
<<set $header.line2 to "2010 / AGE 18">>
<<lifepath-18yrAvatarBirthday>>
<<avatar-normal>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
It's your 18th birthday!
''From this point on, $kate.firstName – and any character who has sex or is naked – is over 18.''
We really can't stress that enough.
<<link "//I understand.//" "UKTEENROM-1100 Birth control">><</link>>
<</page>><<silently>>
<<set $avatar.background.delete("teenRom/20_18TodayBalloons")>>
<<avatar-normal>>
<<awardXP driver 500>>
<<awardXP sexpert 100>>
<</silently>>\
<<header>>\
<<page>>\
In your late teens, you go through an English girl's normal rites of passage: you sit your A level exams, pass your driving test, and lose your virginity.
As a young woman, you have to make some decisions about your body. Now you're sexually active, an important one is birth control.
Jacob wants you to go on the pill, so you can have sex without condoms.
<<link "//Go on the pill.//" "UKTEENROM-1101 Bikini line salon">><<set $kate.quirks.push("onThePill")>><</link>>
<<if $kate.attributes.agreeableness.level lt 1>>\
<<link "//Too bad, Jacob can stick with condoms.//" "UKTEENROM-1101 Bikini line salon">><</link>>
<<else>>\
<span class="greyedOut">[Too Agreeable] Too bad, Jacob can stick with condoms.</span>
<</if>>\
<</page>><<silently>>
<<lifepath-ukTeenRom-bikiniLines>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("onThePill")>>\
You go on the pill, so you and Jacob can enjoy unprotected sex.
<<else>>\
You and Jacob stick to using condoms when you have sex.
<</if>>\
<<if $kate.quirks.includes("elite")>>\
Your family always takes at least two holidays a year; a winter break in Europe, and a summer holiday somewhere more exotic.
2010's the first time you go on holiday with Jacob instead; you go to Fiji, because he's never been, and enjoy showing him around the picture-perfect islands.
<<elseif $kate.quirks.includes("working class")>>\
Your <<if $kate.quirks.includes("single mum")>>mum<<else>>parents<</if>> can't afford foreign holidays, but you always spend a week on a UK beach (normally Margate) every summer. Jacob's never been, so you enjoy showing him the sights.
<<else>> /* Kate is middle class */ \
<<silently>>
<<if $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>
<<set _family to "family">>
<<elseif $kate.quirks.includes("single mum")>>
<<set _family to "mum">>
<<else>>
<<set _family to "mum and dad">>
<</if>>
<</silently>>\
You've been on a few European holidays with your _family, but in 2010 you and Jacob spend two weeks in a villa in Orlando with his dad (who's kind of rich).
You have an amazing time in America; Disney World is magical, and the beaches are gorgeous, but even just walking around the streets and buying groceries at the store makes you feel like you're living in a movie.
<</if>>\
<div id="bikiniLines">\
<<ukTeenRomance-bikiniLines>>
</div>\
<</page>><<silently>>
{name: "Silver Barbell (Chest)", id: "chestSilverBarbell", path: $imagePath.ui + "piercingsMenu/chestSilverBarbell", variable:"kate.piercings", push: "true", exceptions:"£"},
{name: "Silver Barbell (Navel)", id: "navelSilverBarbell", path: $imagePath.ui + "piercingsMenu/navelSilverBarbell", variable:"kate.piercings", push: "true", exceptions:"£"},
{name: "Silver Barbells (Nipples)", id: "nipplesSilverBarbells", path: $imagePath.ui + "piercingsMenu/nipplesSilverBarbells", variable:"kate.piercings", push: "true", exceptions:"£"}]>>
<</silently>>\
<<header>>\
<<page>>\
You got your ears pierced a few years ago. Do you get any body piercings?
<div id="wardrobeStore">
<<ukTeenRomance-piercingParlour>>
</div>
[[Continue|UKTEENROM-1290 Tattoo parlour]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're also old enough to get inked, if you want. You're 18, now, there's nothing your <<if $kate.quirks.includes("single mum")>>mum<<else>>dad<</if>> can do about it.
<div id="wardrobeStore">
<<ukTeenRomance-tattooParlour>>
</div>
[[Continue|UKTEENROM-1300 Drug dealer]]
<</page>><<silently>>
<<script>>
//cleanup $temp.easyAlert
delete State.variables.temp.easyAlert;
<</script>>
<<lifepath-ukTeenRom-drugdealer>>
<<if $kate.quirks.includes("elite")>>
<<set _yourLocalPubs to "a couple of trendy West End wine bars">>
<<if $kate.quirks.includes("rockChick")>>
<<set _goClubbing to "go drinking in Camden, London's heavy metal enclave, ">>
<<else>>
<<set _goClubbing to "go clubbing at the decadent Cirque le Soir">>
<</if>>
<<elseif $kate.quirks.includes("working class")>>
<<set _yourLocalPubs to "The Bricklayers">>
<<if $kate.quirks.includes("rockChick")>>
<<set _goClubbing to "go drinking in Camden, London's heavy metal enclave, ">>
<<else>>
<<set _goClubbing to "go clubbing at Dance Tunnel or Ministry">>
<</if>>
<<else>> /* Kate is middle class */
<<set _yourLocalPubs to "The Alex">>
<<if $kate.quirks.includes("rockChick")>>
<<set _goClubbing to "go drinking in Camden, London's heavy metal enclave, ">>
<<else>>
<<set _goClubbing to "go clubbing at Po Na Na">>
<</if>>
<</if>>
<<avatar-niceToMeetYou>>
<</silently>>\
<<header>>\
<<page>>\
Britain has a strong teen drinking culture. You become a regular at _yourLocalPubs, and _goClubbing on big nights out. <<if $kate.quirks.includes("elite") and not $kate.quirks.includes("rockChick")>>(Thrillingly, you and $temp.firstFriend get paparazzi'd there a few times.)<</if>>
As a young adult, you also have access to drugs.
[[Just Say No to drugs.|UKTEENROM-1400 Teen drug use][$temp.drugUse to "virgin"]]
[[Try weed.|UKTEENROM-1400 Teen drug use][$temp.drugUse to "stoner"]]
<<if $kate.attributes.openness.level gte 1>>\
[Open to Experience] [[Try weed, coke and pills.|UKTEENROM-1400 Teen drug use][$temp.drugUse to "partyGirl"]]
<<else>>\
<span class="greyedOut">[Open to Experience] Try weed, coke and pills.</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.drugUse == "virgin">>\
Booze is enough for you. Steering clear of other drugs improved your performance at [[sixth form|UKTEENROM-2000 University application]].
<<elseif $temp.drugUse == "stoner">>\
<<silently>>
<</silently>>\
You're not a stoner, but you smoke weed with Tom, Mark and Josh, and occasionally score some for yourself from their dealer.
In a few years, you'll have to confess to your marijuana use in an MI6 vetting interview, but for now you can just enjoy feeling blissed out and relaxed while you listen to Sublime on repeat.
[[Continue|UKTEENROM-2000 University application]]
<<elseif $temp.drugUse == "partyGirl">>\
<<silently>>
<<avatar-thrilled>>
<</silently>>\
After being warned for years that drugs will ruin your life if you try them just once, it's something of a revelation to discover that you can use party drugs and still function just fine.
Weed makes you feel blissed out and relaxed, pills make you love everyone and want to dance, and coke makes you feel confident, talkative and excited. You learn how to manage the comedowns, score from dealers, and sneakily snort lines in toilet cubicles.
In a few years, you'll have to answer lots of tough questions about your drug use in an MI6 vetting interview, but for now you can enjoy feeling like a sexy, invincible rock star when you let your hair down.
[[Continue|UKTEENROM-2000 University application]]
<<else>>\
(ERROR IN TEMP.DRUGUSE VARIABLE)
<</if>>\
<</page>><<silently>>
<<lifepath-ukTeenRom-AlevelResults>>
<<avatar-normal>>
<<set $kate.uni to {}>>
<<for _i to 0; _i lt $temp.sixForm.length ; _i++>>
<<if $temp.sixForm[_i].name == "Business">>
<<set _kateStudiedALevelBusiness to true>>
<<elseif $temp.sixForm[_i].name == "English">>
<<set _kateStudiedALevelEnglish to true>>
<<elseif $temp.sixForm[_i].name == "Law">>
<<set _kateStudiedALevelLaw to true>>
<<elseif $temp.sixForm[_i].name == "Psychology">>
<<set _kateStudiedALevelPsychology to true>>
<</if>>
<</for>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includesAny("elite", "middle class")>>\
Applying to university is stressful and complex. Some days it feels like uni is all anybody wants to talk about!
But at least most of your friends are in the same boat. You coach each other through UCAS applications and, especially, your personal statements: it's //so hard// selling yourself, but $temp.firstFriend and Tom and the others help make sure you don't forget any of your good points.
<<elseif $kate.quirks.includes("working class")>>\
$temp.firstFriend is amazed at the amount of paperwork that a university application produces.
"Like War and bloody Peace," she says, carefully moving a printed out application pack apart from a stack of draft personal statements, so she can sit on your bed. "I dunno how you put up with all this bollocks."
"Me either," you shrug. The personal statements are the toughest thing; it's so //hard// to sell yourself. But you know it'll be worth it, in the end.
<<else>>\
ERROR IN KATE.QUIRKS (SOCIAL CLASS) ARRAY
<</if>>\
<<if _kateStudiedALevelBusiness>>\
//[[Apply to study Business|UKTEENROM-2100 Degree application][$kate.uni.degreeSubject to "business"]]//
<</if>>\
<<if _kateStudiedALevelLaw>>\
//[[Apply to study Law|UKTEENROM-2100 Degree application][$kate.uni.degreeSubject to "law"]]//
<</if>>\
<<if _kateStudiedALevelEnglish>>\
//[[Apply to study English|UKTEENROM-2100 Degree application][$kate.uni.degreeSubject to "english"]]//
<</if>>\
<<if _kateStudiedALevelPsychology>>\
//[[Apply to study Psychology|UKTEENROM-2100 Degree application][$kate.uni.degreeSubject to "psychology"]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After months of working on your UCAS application, it's a big relief when placement offers start coming through. Some are unconditional, which means you're guaranteed a place on their <<if $kate.uni.degreeSubject == "psychology">>BSc<<else>>BA<</if>> <<= $kate.uni.degreeSubject.toUpperFirst()>> course, whatever your final A Level results.
The best unconditional comes from Cardiff University, a uni with a "work hard, play hard" reputation. You have to be bright to get a place – but you also have to party hard all Friday and Saturday night (and have completed all your assignments by Monday morning).
You also get a conditional offer from Durham, the third-oldest uni in the country, and a very prestigious institution! If your A Level results are AAB or better, they'll take you.
You also get a conditional //interview// at Oxford. If your A Level results are AAA or better, they'll meet you and assess your suitability for a place at the most famous university in the world.
It all depends on your [[A Levels|UKTEENROM-2300 A Level results]].
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _sixthFormShortName to "Collingham">>
<<elseif $kate.quirks.includes("working class")>>
<<set _sixthFormShortName to "H6">>
<<else>> /* Kate is middle class */
<<set _sixthFormShortName to "Esher Sixth">>
<</if>>
<<if $temp.drugUse eq "virgin">>
/*Lower requirements == higher grades*/
<<for _i to 0; _i lt $temp.sixForm.length; _i++>>
<<if $temp.sixForm[_i].score gte 10>>
<<set $temp.sixForm[_i].grade to "A*">>
<<elseif $temp.sixForm[_i].score gt 6 and $temp.sixForm[_i].score lt 10>>
<<set $temp.sixForm[_i].grade to "A">>
<<elseif $temp.sixForm[_i].score gt 4 and $temp.sixForm[_i].score lte 6>>
<<set $temp.sixForm[_i].grade to "B">>
<<elseif $temp.sixForm[_i].score gte 3 and $temp.sixForm[_i].score lte 4>>
<<set $temp.sixForm[_i].grade to "C">>
<<elseif $temp.sixForm[_i].score lt 3>>
<<set $temp.sixForm[_i].grade to "D">>
<<else>>
<<set $temp.sixForm[_i].grade to "Invalid Grade">>
<</if>>
<</for>>
<<else>>
<<for _i to 0; _i lt $temp.sixForm.length; _i++>>
<<if $temp.sixForm[_i].score gte 10>>
<<set $temp.sixForm[_i].grade to "A*">>
<<elseif $temp.sixForm[_i].score gt 5 and $temp.sixForm[_i].score lt 10>>
<<set $temp.sixForm[_i].grade to "A">>
<<elseif $temp.sixForm[_i].score gt 3 and $temp.sixForm[_i].score lte 5>>
<<set $temp.sixForm[_i].grade to "B">>
<<elseif $temp.sixForm[_i].score gte 2 and $temp.sixForm[_i].score lte 3>>
<<set $temp.sixForm[_i].grade to "C">>
<<elseif $temp.sixForm[_i].score lt 2>>
<<set $temp.sixForm[_i].grade to "D">>
<<else>>
<<set $temp.sixForm[_i].grade to "Invalid Grade">>
<</if>>
<</for>>
<</if>>
<<set _gradeCount to []>>
<<for _i to 0; _i lt $temp.sixForm.length; _i ++>>
<<set _gradeCount.push($temp.sixForm[_i].grade)>>
<</for>>
<<set _aStarCount to _gradeCount.count("A*")>>
<<set _aCount to _gradeCount.count("A")>>
<<set _bCount to _gradeCount.count("B")>>
<<set _cCount to _gradeCount.count("C")>>
<<set _dCount to _gradeCount.count("D")>>
<<awardXP academic 500>>
<</silently>>\
<<header>>\
<<page>>\
In August you go into _sixthFormShortName one last time, to collect your A Level results.
<b><<= $kate.firstName.toUpperCase()>> <<= $kate.surname.toUpperCase()>></b>
$temp.sixForm[0].name $temp.sixForm[0].grade
$temp.sixForm[1].name $temp.sixForm[1].grade
$temp.sixForm[2].name $temp.sixForm[2].grade
<<if _bCount + _cCount + _dCount == 0>>\
<<silently>>
<<avatar-thrilled>>
<</silently>>\
You did it! These results are good enough to get you into Durham. And you've got an interview at Oxford!
<<elseif _bCount == 1 and _cCount + _dCount == 0>>\
<<silently>>
<<avatar-niceToMeetYou>>
<</silently>>\
These are solid results. You've earned a place at Durham.
<<else>>\
<<silently>>
<<avatar-expr-eyebrows-rogerMoore>>
<</silently>>\
These aren't what you needed to be accepted at Durham, but you've already secured a place at Cardiff.
<</if>>\
<<if _bCount + _cCount + _dCount == 0>>\
//[[Interview at Oxford.|UKTEENROM-2500 Oxford interview]]//
<</if>>\
<<if _bCount + _cCount + _dCount == 0 or _bCount == 1 and _cCount + _dCount == 0>>\
//[[Accept a place at Durham.|UKTEENROM-2400 Uni acceptance][$kate.uni.shortName to "Durham"]]//
<</if>>\
//[[Accept a place at Cardiff.|UKTEENROM-2400 Uni acceptance][$kate.uni.shortName to "Cardiff"]]//
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
You accept your place at $kate.uni.shortName on their <<if $kate.uni.degreeSubject == "psychology">>BSc<<else>>BA<</if>> <<= $kate.uni.degreeSubject.toUpperFirst()>> degree.
//[[Continue|UKTEENROM-3000 Jacob breakup]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_thong-plain-nude")>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.underwear.pushUnique("10_holdUps-40denier-black")>>
<<set $avatar.clothing.pushUnique("20_highHeels-patent-black")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/20_skirt-blackMiniPencil")>>
<<set $avatar.clothing.pushUnique("/foreignAdventure/30_top-pinkAndBlackPolkaDotShortSleevedBlouse-" +$kate.braSize)>>
<<characterCreator-setHipsterGlasses>>
<<if $kate.uni.degreeSubject == "business">>
<<set _aTestPaper to "a research paper on opportunities for industrial development in Karakalpakstan">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _aTestPaper to "a legal brief on a corporate manslaughter case from 2004">>
<<elseif $kate.uni.degreeSubject == "english">>
<<set _aTestPaper to "an 18th century poem about a landscape">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _aTestPaper to "a study of occupational stress amongst offshore workers in Nigeria">>
<<else>>
<<set _aTestPaper to "ERROR IN ATESTPAPER TEMP VAR">>
<</if>>
/* INTERVIEW CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 10>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to Math.round(( $kate.attributes.beauty.level + $kate.attributes.intellect.level + $kate.attributes.confidence.level ) / 3) >>
<<set _diceRollModifiers.pushUnique([_attributeMod , "Average of //Beauty, Intellect// and //Confidence//"])>>
<<set _skillMod to Math.round(($kate.skills.academic.level + $kate.skills.charmer.level) /2)>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Average of //Academic// and //Charmer// skills"])>>
<<set _girlMod to +1>>
<<set _diceRollModifiers.pushUnique([_girlMod , "Female candidate"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod + _girlMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END INTERVIEW CHECK */
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("elite")>>\
Jacob's dad lives in Oxford. He'd put you up, but you don't want to be distracted the night before your admissions interview, so you opt for a nice hotel instead.
<<else>>\
Jacob's dad lives in Oxford. He lets you stay the night, so you can get to your admissions interview without hassle the next morning.
<</if>>\
The interview's held on the campus. From the outside it looks like a medieval church, and inside the halls look like Hogwarts, but the office you're interviewed in is cosily shabby. There, a female doctor and a male professor present you with _aTestPaper, and ask for your detailed opinions.
The atmosphere is laid-back and encouraging, but the questions they ask really test your subject knowledge in depth. When you leave your underarms are slick with sweat and you feel drained, totally unsure how well you performed.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>''INTERVIEW CHECK''</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to pass the interview. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>INTERVIEW</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>''INTERVIEW CHECK...<i>PASSED!</i>''</h3>
<hr>
<<else>>
<h3>''INTERVIEW CHECK...<i>FAILED!</i>''</h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKTEENROM-2600 Oxford interview success]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKTEENROM-2700 Oxford interview failure]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<lifepath-ukTeenRom-AlevelResults>>
<<set $kate.uni.shortName to "Oxford">>
<<avatar-lol>>
<<if $kate.quirks.includes("single mum")>>
<<set _parentalUnitsReassure to "mum reassures">>
<<else>>
<<set _parentalUnitsReassure to "parents reassure">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It was a gruelling experience, and the interviewers were too cagey for you to guess what kind of impression you made. By the time you get home you're feeling doubtful and anxious, but your _parentalUnitsReassure you that it probably went fine.
It turns out they were right, as a few days later you get your official acceptance letter. You're going to //Oxford!//
It feels overwhelming. Oxford: the place that produced most of your country's Prime Ministers. <<if $kate.quirks.includes("geekGirl")>>The university of Tolkien. <</if>>With Cambridge, the most prestigious institution in the country; maybe even the world.
<<if $kate.quirks.includes("elite")>>\
Your mother is an alumnus, and she seems incredibly pleased to hear that you've made it into her alma mater.
<<elseif $kate.quirks.includes("middle class")>>\
You can barely believe it. Your family is incredibly proud of you. You're incredibly proud of yourself.
<<elseif $kate.quirks.includes("working class")>>\
You can barely believe...actually, you //can't// believe it. You're a normal girl from a north London council estate, and you're going to be learning alongside your country's future visionaries? Part of you thinks it's a mistake. You keep looking at your acceptance letter to make sure it's real.
You worry that you'll be completely out of your depth when you get there, or worse that someone will realise the mistake and take your admittance back. You have to keep reminding yourself that you earned this. You //are// going to Oxford.
<<else>>\
ERROR IN KATE.QUIRKS ARRAY
<</if>>
//[[Continue|UKTEENROM-3000 Jacob breakup]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<lifepath-ukTeenRom-AlevelResults>>
<<avatar-expr-mouth-pout>>
<<if $kate.quirks.includes("single mum")>>
<<set _parentalUnits to "mum",
_theySay to "she says">>
<<else>>
<<set _parentalUnits to "parents",
_theySay to "they say">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
On the way home you think of dozens of better answers than the ones you came up with in the pressure of the interview. When you get home you tell your _parentalUnits you think you blew it; _theySay it probably went fine.
When the letter comes, it's not a surprise: //Thank you for attending the interview...carefully considered...extremely strong...not been possible to offer you a place.//
Being interviewed for Oxbridge is an achievement in itself, but the rejection still stings. Luckily, you have a [[backup option|UKTEENROM-2400 Uni acceptance][$kate.uni.shortName to "Durham"]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
You've grown up a lot in the past two years. Now your A Levels are behind you, university's the next big challenge. It seems like any future is possible.
<i>Except for a future with Jacob.</i> That used to be the only future you could imagine, but now it's slipping out of your grasp.
The last six months have been a breakup in slow motion, the boy you idolise and idealise taking you utterly for granted. He flirts with other girls, cancels plans without warning, and loses his temper if you call him on it.
You were delighted when he turned up to your 18th birthday party. It took you a couple of days to realise how messed up that is.
$temp.firstFriend's come to hate him for the way he treats you. Whenever you cry on her shoulder – a lot, these days – she says you can do much better.
<<if $kate.attributes.agreeableness.level gt 0>>\
[Agreeable] [[Try harder to make it work.|UKTEENROM-3100 Kate tries harder]]
<<else>>\
<span class="greyedOut">[Agreeable] Try harder to make it work.</span>
<</if>>\
[[Break up with Jacob.|UKTEENROM-3200 Kate ends it]]
<</page>><<silently>>
<<lifepath-ukTeenRom-kateTries>>
<<avatar-amazed>>
<</silently>>\
<<header>>\
<<page>>\
You do everything you can to make things work. You work extra hard on your looks, making an effort with makeup and underwear, and you put up stoically with his lack of availability, slotting into his busy schedule wherever you can.
Nothing works. The relationship finally crashes and burns in one disastrous, humiliating night, when you drop by his flat unannounced only to see him through the window, canoodling on the couch with his ex.
[[Continue.|UKTEENROM-3300 The aftermath]]
<</page>><<silently>>
<<lifepath-ukTeenRom-kateTries>>
<<avatar-expr-eyebrows-worried>>
<</silently>>\
<<header>>\
<<page>>\
It's so painful, but you realise that he can't love you if he treats you like this. You've got to stand up for yourself.
You arrange to meet him at a Starbucks, where you tell him it's over. Inside it feels like you're killing your own dream, rubbing out the future you could have had together, <i>should</i> have had together.
You want him to talk you out of this madness, realise what he's throwing away, make you believe he'll change.
Instead he just shrugs, his expression inscrutable, and says "okay."
[[Okay.|UKTEENROM-3300 The aftermath]]
<</page>><<silently>>
<<lifepath-ukTeenRom-aftermath>>
<<countKatesSiblings>>
<<if _brothers gt 0 and _sisters gt 0>>
<<set _yourSiblingsAlsoHelp to "Your siblings also do their best to help you through it.">>
<<elseif _brothers gt 1>>
<<set _yourSiblingsAlsoHelp to "Your brother also does his best to help you through it.">>
<<elseif _sisters gt 1>>
<<set _yourSiblingsAlsoHelp to "Your sisters also do their best to help you through it.">>
<<elseif _brothers == 1>>
<<set _yourSiblingsAlsoHelp to "Your brother also does his best to help you through it.">>
<<elseif _sisters == 1>>
<<set _yourSiblingsAlsoHelp to "Your sister also does her best to help you through it.">>
<</if>>
<<avatar-normal>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyelid-tearful>>
<<avatar-expr-mouth-snarl>>
<<if hasVisited("UKTEENROM-3100 Kate tries harder")>>\
<<set $statistics.set("Jacob",{story: $temp.jacobsStory, end: "Cheat"})>>
<<else>>
<<set $statistics.set("Jacob",{story: $temp.jacobsStory, end: "Normal"})>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKTEENROM-3100 Kate tries harder")>>\
After a screaming match in his front garden, you ride the tube home in tears...and single. \
<<else>>\
You pay for the coffees and go home...single.
Even though you broke it off, you're a mess afterwards. \
<</if>>\
For a fortnight, it feels like all you can do is cry. <<if $kate.quirks.includes("single mum")>>Your mum sits by your bedside and gives you advice.<<else>>Your parents sit by your bedside and give you advice.<</if>> <<if _brothers gt 0 or _sisters gt 0>>_yourSiblingsAlsoHelp<</if>>
You neglected your friendships when you were with Jacob. But now $temp.firstFriend – and Josh and Mark and Tom – rally round to help you get over him.
At least once a week $temp.firstFriend insists that you put makeup on and go out to the pub with her. She's convinced that after your long relationship with Jacob, you need to play the field a little: "Nothing gets you over the last one like getting under the next one," she says. And the boys are just too funny to stay sad around for long.
[[Continue|UKTEENROM-4000 Birth control II]]
<</page>><<silently>>
<<rTables-addStoryPartner 1>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-sad>>
<</silently>>\
<<header>>\
<<page>>\
You're young, hot and newly single – Jacob won't be the last man in your life. But you're also planning on going to university, so birth control is essential.
<<if $kate.quirks.includes("onThePill")>>\
[[Stay on the pill.|UKTEENROM-4100 Pill choice][$temp.kateSays to "stayOnThePill"]]
[[Come off the pill.|UKTEENROM-4100 Pill choice][$temp.kateSays to "comeOffThePill"]]
<<else>>\
[[Go on the pill.|UKTEENROM-4100 Pill choice][$temp.kateSays to "goOnThePill"]]
[[Stay off the pill.|UKTEENROM-4100 Pill choice][$temp.kateSays to "stayOffThePill"]]
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "stayOnThePill">>\
You decide to stay on the pill. That protects you against pregnancy, but not STDs: how often will you use condoms?
<<elseif $temp.kateSays == "comeOffThePill">>\
<<set $kate.quirks.delete("onThePill"),
$kate.quirks.push("strictCondomPolicy")>>\
You decide to come off the pill, at least for now. This means that all your sexual partners will have to use condoms, which will also protect you against STDs.
<<elseif $temp.kateSays == "goOnThePill">>\
<<set $kate.quirks.push("onThePill")>>\
You decide it's time to go on the pill. That protects you against pregnancy, but not STDs: how often will you use condoms?
<<elseif $temp.kateSays == "stayOffThePill">>\
<<set $kate.quirks.push("strictCondomPolicy")>>\
You decide to stay off the pill. This means all your sexual partners will have to use condoms, which will also protect you against STDs.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<if not $kate.quirks.includes("onThePill")>>\
[[Continue.|UKTEENROM-4200 Condom policy]]
<<else>>\
<<if $kate.attributes.conscientiousness.level gt 0>>\
[Conscientious] [[Every time.|UKTEENROM-4200 Condom policy][$temp.kateSays to "strict"]]
<<else>>\
<span class="greyedOut">[Conscientious] Every time.</span>
<</if>>\
[[Mostly.|UKTEENROM-4200 Condom policy][$temp.kateSays to "normal"]]
<<if $kate.attributes.conscientiousness.level lt 0>>\
[Unconscientious] [[When I remember.|UKTEENROM-4200 Condom policy][$temp.kateSays to "ohYeahCondoms"]]
<<else>>\
<span class="greyedOut">[Unconscientious] When I remember.</span>
<</if>>\
<<if $kate.attributes.agreeableness.level gt 0>>\
[Agreeable] [[Unless the guy doesn't want to.|UKTEENROM-4200 Condom policy][$temp.kateSays to "aboveMyPayGrade"]]
<<else>>\
<span class="greyedOut">[Agreeable] Unless the guy doesn't want to.</span>
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if not $kate.quirks.includes("onThePill") or $temp.kateSays == "strict">>\
<<set $kate.quirks.push("strictCondomPolicy")>>\
<i>Condom policy set to <b>strict.</b> Randomly generated lovers will always wear condoms.</i>
<<elseif $temp.kateSays == "normal">>\
<<set $kate.quirks.push("normalCondomPolicy")>>\
<i>Condom policy set to <b>normal.</b> Randomly generated lovers will usually wear condoms.</i>
<<elseif $temp.kateSays == "ohYeahCondoms">>\
<<set $kate.quirks.push("laxCondomPolicy")>>\
<i>Condom policy set to <b>lax.</b> Randomly generated lovers will sometimes wear condoms.</i>
<<elseif $temp.kateSays == "aboveMyPayGrade">>\
<<set $kate.quirks.push("gentlemansChoiceCondomPolicy")>>\
<i>Condom policy set to <b>lax.</b> Randomly generated lovers will wear condoms if they're Agreeable.</i>
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
[[Continue|BJFORTB-1000 Setup]]
<</page>><<silently>>
/* <<lifepath-ukRomance-OtherPartners-clothes>> */
<</silently>>\
<<header>>\
<<page>>\
Sixth form's over. It'll soon be time to move out of your family home, and live independently! In the future, you'll only return here from time to time.
Before you go, you'll roll to see how many sexual partners you had here (besides Jacob<<if $temp.friendsBlown gt 0>>, and not including <<if $temp.friendsBlown == 1>>the blowjob you gave to Mark<<elseif $temp.friendsBlown == 2>>blowing Mark and Tom<<elseif $temp.friendsBlown == 3>>blowing Mark, Tom and Josh<<else>>(ERROR IN TEMP.FRIENDSBLOWN VAR)<</if>><</if>>).
<<if $kate.quirks.includes("picky")>>\
Most players will roll 2 four-sided dice (2D4) here; you'll just roll 1D4, because $kate.firstName is <i>Picky</i>.
<<elseif $kate.quirks.includes("easy")>>\
Most players will roll 2 four-sided dice (2D4) here. But you'll roll 3D6, because $kate.firstName is <i>Easy</i>.
<<else>>\
You'll now roll 2 four-sided dice (2D4) to find out how many guys $kate.firstName has been with.
<</if>>\
<div id="dice-rolled">
<<button "Roll Dice">>
<<if $kate.quirks.includes("picky")>>
<<set _random1 to random(1,4)>>
<<set _dice to "1d4 @ "+_random1>>
<<set _result to _random1>>
<<elseif $kate.quirks.includes("easy")>>
<<set _random1 to random(1,6)>>
<<set _random2 to random(1,6)>>
<<set _random3 to random(1,6)>>
<<set _dice to "1d6 + 1d6 +1d6 @ "+_random1 +" "+_random2 +" "+_random3>>
<<set _result to _random1+ _random2 + _random3>>
<<else>>
<<set _random1 to random(1,4)>>
<<set _random2 to random(1,4)>>
<<set _dice to "1d4 + 1d4 @ "+_random1 +" "+_random2>>
<<set _result to _random1+ _random2>>
<</if>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
[[Result. |UKTEENROM-5100 Body count][$temp.kateBodyCount to _result]]
<</replace>>
<</rollDice>>
<</button>>
</div>\
<</page>><<silently>>
<<if $kate.quirks.includes("easy")>>
<<if $temp.kateBodyCount lt 4>>
<<set _reputationAssessment to "That's not as many as most of your friends – although, weirdly, some people call you a slut behind your back. You can't understand it.">>
<<elseif $temp.kateBodyCount gte 4 and $temp.kateBodyCount lte 6>>
<<set _reputationAssessment to "That's about the same as most of your friends.">>
<<elseif $temp.kateBodyCount lte 12>>
<<set _reputationAssessment to "That's more than most of your friends; some of them call you a slut behind your back.">>
<<else>>
<<set _reputationAssessment to "That's more than all of your friends; although you're not aware of it, you've got a reputation outside your social circly for being an easy girl. (This confuses the men you //won't// sleep with, who feel especially rejected.)">>
<</if>>
<<elseif $kate.quirks.includes("picky")>>
<<set _reputationAssessment to "That's not as many as most of your friends.">>
<<else>>
<<if $temp.kateBodyCount lt 4>>
<<set _reputationAssessment to "That's not as many as most of your friends.">>
<<elseif $temp.kateBodyCount gte 4 and $temp.kateBodyCount lte 6>>
<<set _reputationAssessment to "That's about the same as most of your friends.">>
<<else>>
<<set _reputationAssessment to "That's a little more than most of your friends.">>
<</if>>
<</if>>
<<set _sexpertXP to $temp.kateBodyCount * 100>>
<<awardXP sexpert _sexpertXP>>
<</silently>>\
<<header>>\
<<page>>\
You've had $temp.kateBodyCount other sexual partners. _reputationAssessment
In this version, your "body count" is just a number, but in future versions a short bio of each sexual encounter will be published on your Character Sheet.
You gained <<= $temp.kateBodyCount+"00">> experience points in the Sexpert skill.
[[Continue|UKTEENROM-6000 Kate needs a break]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("elite")>>\
<<silently>>
<<if $kate.surname == "Cohen">>
<<set _cohen to "Goldman">>
<<else>>
<<set _cohen to "Cohen">>
<</if>>
<</silently>>\
For generations, it's been the $kate.surname family tradition for girls to attend finishing school once they're 18.
You're not crazy about the prospect. "They're going to turn me into some kind of Stepford Wife," you complain.
<<if $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>\
<<countKatesSiblings>>\
<<if _brothers gt 0>>\
<<if _brothers == 1>>\
"Hopefully," your brother says. \
<<else>>
"Hopefully," your big brother says. \
<</if>> <<if $kate.quirks.includes("big brother")>>He sniggers<<else>>He yelps<</if>> when you punch him in the shoulder.
<<elseif _sisters gt 0>>\
<<if _sisters == 1>>\
"Hopefully," your sister <<if $kate.quirks.includes("kid sister")>>giggles<<else>>says<</if>>. \
<<else>>
"Hopefully," your big sister says. \
<</if>> <<if $kate.quirks.includes("big sister")>>She smirks when you glower at her.<<else>>She yelps when you flick her ear.<</if>>
<</if>>\
<<else>>\
"Don't be ridiculous," your mother scoffs. "Am I a Stepford Wife?" You just give her a look in reply, letting her think that over.
<</if>>\
In the end, you reluctantly bow to tradition – especially when the family solicitor, Mr _cohen, tells you that graduating from a reputable finishing school is one of the conditions of your trust fund.
[[Continue|UKTEENROM-6100 Gap year decision]]
<<elseif $kate.quirks.includes("working class")>>\
<<silently>>
<<if $kate.firstName == "Skye">>
<<set _skye to "Courtney">>
<<else>>
<<set _skye to "Skye">>
<</if>>
<</silently>>\
With your place at $kate.uni.shortName secured, you could go straight on to uni now. But you've been in education all your life! You're not sure you're ready to jump straight into yet another three years of study.
The last couple of years were especially difficult, with most of your friends starting their careers while you were slaving away at sixth form.
You know university's worth it in the long run. You'd go crazy if you ended up as a secretary or a shop assistant like most of those girls, and you're <i>definitely</i> not going to end up as a pole dancer like _skye (or "Chardonnay" as she's known at her work – you and $temp.firstFriend call her "Lambrini" behind her back).
Even so...[[you need a break.|UKTEENROM-6100 Gap year decision]]
<<else>> /* Kate is middle class */ \
With your place at $kate.uni.shortName secured, you could go straight on to uni now. But you've been in education all your life! You're not sure you're ready to jump straight into yet another three years of study.
You know university's worth it in the long run. You don't know what career you want ultimately, but a degree opens up all kinds of possibilities. You could end up travelling somewhere exotic, and working with all kinds of people!
Even so...[[you need a break.|UKTEENROM-6100 Gap year decision]]
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("elite")>>\
<<silently>>
<<avatar-normal>>
<</silently>>\
The school that your family's chosen for you is the Surval Montreux International Boarding School for Girls, in Switzerland.
Nestled in the foothills of the Alps, looking down over the town of Montreux and beautiful Lake Geneva, Surval exists to prepare the daughters of wealthy international families for university and the future.
[[Look into it.|UKTEENROM-6200 Gap year planning]]
<<elseif $kate.quirks.includes("working class")>>\
"Babe, look at this," $temp.firstFriend tells you excitedly one day, showing you a website she's saved on her Samsung Wave smartphone. You have to lean in close to read the tiny screen.
<i><b>NOW RECRUITING
OVERSEAS HOLIDAY REPS & GUIDES</b>
Join as a holiday rep and be part of a truly international team. If you are a fast learner and can cope with the exciting pressures of living and working abroad...</i>
"Amazing, right?" trills Jade. "Getting paid to work in Ibiza!"
[[Do you think they'd take us?|UKTEENROM-6200 Gap year planning]]
<<else>> /* Kate is middle class */\
You're not the only one who feels that way. $temp.firstFriend's going on a gap year to Australia with her boyfriend. Tom's going to stay with his aunt and uncle out in Oklahoma. And Josh has signed up for a UN volunteering project in Africa! It seems like everybody's about to disappear off around the world.
"Come with me," says Josh, when you complain about it.
"Huh?"
"They took me, they'll take you," he shrugs. "We could go together."
<<if $temp.friendsBlown == 2>>\
"He might finally get that blowie," laughs Mark, not looking up from //Modern Warfare 2.//
"Fuck off, twat," grumbles Josh.
<<else>>\
"Hmm," you muse. You hadn't realised that tagging along was an option.
<</if>>\
<<link "//Think it over.//" "UKTEENROM-6200 Gap year planning">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("elite")>>\
From the prospectus...it doesn't actually look too bad. There's a big emphasis on teaching girls confidence and encouraging them to reach their full potential. That part sounds okay.
The curriculum will be personalised to you, with a wide range of options including public speaking, logic & rhetoric, horse riding, skiing and yoga.
And there'll be regular trips to European capitals, plus a charity field project in either Africa or Asia. Who knows: maybe a year out of London will do you good.
<<link "//Enrol at Surval Montreux International Finishing School for Girls.//" "MONTREUX-1000 Prepping for a year away">><</link>>
<<elseif $kate.quirks.includes("working class")>>\
"Do you think they'd take us?" you ask.
"Yes babe!" $temp.firstFriend exclaims. "Imagine – your big brain, my big gob? We'll be perfect!"
You look into it, and – although it won't be all foam parties and booze cruises, like $temp.firstFriend seems to think – spending a season or two working in some fantastic Mediterranean resort like Ayia Napa, Tenerife or Zante could be just the break you need from dreary London.
You'd be solving simple, practical problems while you were working – totally different from studying – and soaking up the sun, partying and swimming on your time off.
You check with $kate.uni.shortName, and find out they're willing to defer you for a year.
<<link "//Apply for the job!//" "CORFU-1000 Interview">><</link>>
<<else>> /* Kate is middle class */\
The more you think about it, the more the idea grows on you. You'd spend a few months helping some of the poorest people in the world – surely a worthwhile experience, and something that would look great on your CV, no matter what career you end up going for.
After the project, you'd have the chance to explore Africa, and see some incredible landscapes and animals on safari. And although Josh isn't as confident as Tom or as tall as Mark, you trust him totally – having him along and looking out for you would make you feel safe.
You check with $kate.uni.shortName, and find out they're willing to defer you for a year.
<<link "//Ask Josh to recommend you.//" "NAMIB-1000 Joining the UN">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTrousers-blackSkinnyTrousers")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-darkGreyFlaredLongSleevedVNeck-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</silently>>\
<<header>>\
<<page>>\
"I'd love to, but I really shouldn't..."
//"Pleeeease?"// You put on your best doe-eyed look. "We're all going. Just have one drink. I //promise// you'll have a good time."
"Well..." He swallows nervously, not oblivious to your double entendre. "Maybe. No promises. [[We'll see|UKHOTPROF-1100 Oz's birthday party]]."
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-redCowlHalterNeckMini-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<if $kate.surname[0]=="T">>
<<set _turnbull to "Walsh">>
<<else>>
<<set _turnbull to "Turnbull">>
<</if>>
<<if $kate.surname[0]=="D">>
<<set _dyer to "Andrews">>
<<else>>
<<set _dyer to "Dyer">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Everyone's thrilled when Professor Wells shows up at The Ram! It's so strange to see him off campus, drinking at a bar like a normal person.
Other $kate.uni.shortName students – guys and girls – throng around him at the bar. Everybody's fascinated by his choice of drink (Guinness Extra Cold); they buy him several more as thanks for all his help.
The booze loosens his tongue and you overhear snatches of conversation as he's milked for scandals and rumours: //have you ever seen Professor _dyer out of college? Is Doctor _turnbull really such a prude?// Later he makes everyone burst out laughing with some spookily accurate impersonations of his colleagues.
Even though you invited him, you don't really get much time with him at the party...just a few snatches of conversation and, when nobody's looking, a few long and smouldering looks that get your heart racing.
<<link "//Challenge him to a game of pool.//" "UKHOTPROF-1200 Prof pool challenge">><</link>>
<<link "//Make him jealous.//" "UKHOTPROF-1600 Mind games">><</link>>
<<link "//Just let things happen.//" "UKHOTPROF-1800 Vags">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A crowd gathers around the pool table to watch you clash against Professor Wells. Support quickly forms along gender lines, the girls eager to see you snatch a victory against the patriarchy, the boys warning Wells that he'll no longer be a man if he doesn't beat you.
"Don't know, lads," he laughs as he chalks up his cue. "Think I'm getting hustled."
<<link "//Play fair.//" "UKHOTPROF-1300 Kate breaks">><<set $temp.kateSays to "playFair">><</link>>
<<link "//Play to lose.//" "UKHOTPROF-1300 Kate breaks">><<set $temp.kateSays to "letHimWin">><</link>>
<</page>><<silently>>
/* POOL CONTEST */
/*Set the roll target*/
<<set _profRoll to random(1,10)>>
<<set _diceRollTarget to _profRoll>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.coordination.level>>
<<set _dressMod to -1>>
<<set _heelsMod to -1>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "//Coordination//"])>>
<<set _diceRollModifiers.pushUnique([_dressMod , "Short dress"])>>
<<set _diceRollModifiers.pushUnique([_dressMod , "High heels"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _dressMod + _heelsMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gt _diceRollTarget>>
<<set _success to true>>
<<elseif _result eq _diceRollTarget>>
/*TIE*/
<<set _tie to true>>
<<set _coin to random(0,1)>>
<<if _coin eq 1>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<else>>
<<set _success to false>>
<</if>>
/* END POOL CONTEST */
<</silently>>\
<<header>>\
<<page>>\
Wells wins the toss, but tells you to break. Not asks you, just tells you, in the casually authoritative way he deals with you sometimes.
You wonder if he's even aware of how much it turns you on.
Playing pool in a short dress and heels is going to be a challenge – you can't bend over too far, and balancing isn't automatic. You lean as far forward as you dare, slipping the cue softly back and forth over the crook of your hand, getting used to the feeling.
Then you strike suddenly, blasting the triangle of balls apart with a satisfyingly loud //CLACK// and series of thumps. A red ball slams into a corner pocket and vanishes.
"Go $kate.firstName!" squeals Oz.
//"Definitely// getting hustled," mutters the Prof.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>POOL CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to see who's best at pool. Professor Wells rolled _diceRollTarget with 1D10+0, so you need to roll <b><<= (_diceRollTarget+1)>> or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to win.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PLAY POOL</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _tie>>
<<if _success>>
<h3>POOL CHECK...<i>TIED AND PASSED!</i></h3>
<hr>
<<else>>
<h3>POOL CHECK...<i>TIED AND FAILED!</i></h3>
<hr>
<</if>>
<<else>>
<<if _success>>
<h3>POOL CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>POOL CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>.<<if _tie >> Tied, coin toss:<</if>> <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<if $temp.kateSays == "playFair">>
//[[Continue|UKHOTPROF-1400 Pool game][$temp.kateSays to "iWonFairly"]]//
<<else>>
//[[Continue|UKHOTPROF-1400 Pool game][$temp.kateSays to "iThrewTheGame"]]//
<</if>>
<<else>>
<<if $temp.kateSays == "playFair">>
//[[Continue|UKHOTPROF-1400 Pool game][$temp.kateSays to "heWonFairly"]]//
<<else>>
//[[Continue|UKHOTPROF-1400 Pool game][$temp.kateSays to "didntNeedToThrowIt"]]//
<</if>>
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The next few minutes are thrillingly intimate; even though everybody's watching the game, it feels like it's just the two of you. Just like in class, you can't be too obvious; just like in class, you connect secretly and intensely with mutual eye contact.
Also just like in class, he gets to eye you up a lot (although, to be fair, it's not just him tonight). You tug your hem down after you straighten up from each shot, careful not to flash your <<if $kate.quirks.includes("commando")>>bum<<else>>knickers<</if>> to the entire pub.
<<if $temp.kateSays == "iWonFairly">>\
<<set $temp.kateBeatProfAtPool to true>>\
He's okay at pool. Jacob or half the guys at Rileys would have eaten him alive – but he puts up a fight until you gradually get the upper hand.
"Told you this was a hustle," he says as you lines up your shot on the 8-ball. When it goes down the girls cheer and the boys groan.
<span class="greenHighlighter">//Your friends ''loved'' that!//</span> <span class="redHighlighter">//Prof. Wells and the boys were ''disappointed.''//</span>
"Good game," he says as he shakes your hand. "You're full of surprises."
[[Misspent youth.|UKHOTPROF-1500 Pool game outcome]]
<<elseif $temp.kateSays == "heWonFairly">>\
He's pretty good at pool. Jacob or half the guys at Rileys would have eaten him alive – but he gradually gets the upper hand in this match. "Unlucky," he says as he lines up for his shot at the 8-ball. When it goes down the girls groan, and the boys slap him heartily on the back, pleased that the natural order of things has been maintained.
<span class="greenHighlighter">//Prof. Wells and the boys ''liked'' that.//</span> <span class="redHighlighter">//Your friends were ''disappointed.''//</span>
He grins cockily as he shakes your hand. "Hey, you're not bad at this," he observes.
[[Misspent youth.|UKHOTPROF-1500 Pool game outcome]]
<<elseif $temp.kateSays == "iThrewTheGame">>\
You have to deliberately miss a few shots to keep him in the game long enough to beat you. "Unlucky," he says as he lines up for his shot at the 8-ball. When it goes down the girls groan, and the boys slap him heartily on the back, pleased that the natural order of things has been maintained.
<span class="greenHighlighter">//Prof. Wells and the boys ''liked'' that.//</span> <span class="redHighlighter">//Your friends were ''disappointed.''//</span>
He grins cockily as he shakes your hand. "Hey, you're not bad at this," he observes.
[[Misspent youth.|UKHOTPROF-1500 Pool game outcome]]
<<elseif $temp.kateSays == "didntNeedToThrowIt">>\
In the end you don't need to let him win – he beats you, fair and square. "Unlucky," he says as he lines up for his shot at the 8-ball. When it goes down the girls groan, and the boys slap him heartily on the back, pleased that the natural order of things has been maintained.
<span class="greenHighlighter">//Prof. Wells and the boys ''liked'' that.//</span> <span class="redHighlighter">//Your friends were ''disappointed.''//</span>
He grins cockily as he shakes your hand. "Hey, you're not bad at this," he observes.
[[Misspent youth.|UKHOTPROF-1500 Pool game outcome]]
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Misspent youth," you smirk. In reality it was just you and your steady boyfriend getting served drinks at Rileys when slightly underage...but there's no harm in letting him build up a mental picture of you as a precocious bad girl, hanging around in pool halls.
Before he can reply, Lewis, a student from your course, butts in. "Winner stays on?" he suggests, eager to <<if $temp.kateSays == "iWonFairly">>topple you from your throne<<else>>challenge the Prof<</if>>.
<<link "//Continue//" "UKHOTPROF-1800 Vags">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Quite a few guys showed up to Oz's party. Maybe now's a good time to get to know some of them?
Steeling your nerves, you knock back your drink and head to the bar, lining up beside a couple of guys you recognise from the Engineering Department.
"Hey," one says immediately, "$kate.firstName, right?"
"Hmm?" you reply, pretending to notice him for the first time. "Oh...hi! We met at..."
"Halloween!" he enthuses. "You look //great// tonight..."
[[Thanks!|UKHOTPROF-1700 Kate flirts][$temp.kateSays to "thanks"]]
[[We're going clubbing later.|UKHOTPROF-1700 Kate flirts][$temp.kateSays to "clubbing"]]
[[I didn't look great at Halloween?|UKHOTPROF-1700 Kate flirts][$temp.kateSays to "whatAboutHalloween"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "thanks">>\
"Aw, thanks!" you smile.
<<elseif $temp.kateSays == "clubbing">>\
"We're going clubbing later," you say by way of explanation. It's true, but it's not the whole reason you spent hours on your appearance tonight.
<<elseif $temp.kateSays == "whatAboutHalloween">>\
"I didn't look great at Halloween?" you say sharply.
"Buh...uh...no...I mean yes..." he stammers.
Your stern look breaks into a sudden easy grin. "Relax," you laugh, "I was joking." He chuckles weakly.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
Soon you're deep in animated conversation with these two guys, and the friends they introduce you to, and a couple of other guys drawn over by the vivacious way you're laughing and chatting with a whole group of guys.
<span class="greyHighlighter">//Prof. Wells ''noticed'' that.//</span>
The professor definitely notices what you're doing. In fact, he can't keep his eyes off you; it seems like every time you throw him a little glance, he's staring at you, watching you laugh and flirt with a whole group of fellow students.
The boys are all eating out of your hand...blissfully unaware that they're props in this little psychodrama.
<<link "//Continue//" "UKHOTPROF-1800 Vags">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Later the party moves from The Ram to Vagabonds, and Professor Wells – who's now a little tipsy – tags along with the group after some token protests. You notice him step outside to make a call to someone before you leave the pub in a little convoy of minicabs.
Vags – or "Slags" as it's more commonly known to $kate.uni.shortName students – is a tacky meat market, popular with local townies. <<if $kate.quirks.includes("rockChick")>>The DJ only plays shit pop music, but<<else>>But<</if>> they do cheap drinks and admit girls for free, so you've gotten to know the place pretty well.
You dance, knock down some rum punch, and have a good time. When DJ Fresh comes on, Professor Wells dances with Oz and [[makes her night|UKHOTPROF-1900 Smoking area]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Soon after, you find him outside in the smoking area. Some townies are out here, puffing out sweetly-scented vape clouds, but there's nobody from your group.
It's the first time you two have been properly alone together all night. His eyes light up when he sees you. "Hey," he smiles.
[[Glad you came?|UKHOTPROF-2000 Glad you came?]]
[[Who were you calling earlier?|UKHOTPROF-2800 Who were you calling]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hey." You take a place against the wall beside him, leaning against the cold bricks. It feels nice after the sweaty mayhem of the dance floor. "Glad you came?"
"Yeah." A long pause, companionable silence after the noise and mayhem inside. "Better make a move soon, though."
[[Oh. That's disappointing.|UKHOTPROF-2100 Prof stonewalls][$temp.kateSays to "oh"]]
<<if $temp.kateBeatProfAtPool>>\
[[Is this because I thrashed you at pool.|UKHOTPROF-2100 Prof stonewalls][$temp.kateSays to "isThisAboutPool"]]
<<else>>\
[[Ha. Past your bedtime?|UKHOTPROF-2100 Prof stonewalls][$temp.kateSays to "pastYourBedtime"]]
<</if>>\
[[Who were you calling earlier?|UKHOTPROF-2800 Who were you calling]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "oh">>\
"Oh." That's not what you were expecting or hoping to hear.
"Yeah, I'm too old for all nighters." You smile, expecting him to go on, but he slips back into silence. "Well...better call a cab, I guess."
<<elseif $temp.kateSays == "isThisAboutPool">>\
"Is this because I thrashed you at pool?"
He laughs. "You're a bad winner, you know that?" You grin, expecting him to go on, but he slips back into silence. "Anyway. I'd better call a cab."
<<elseif $temp.kateSays == "pastYourBedtime">>\
"Ha. Past your bedtime?"
He smirks. "Something like that."
You grin, expecting him to go on, but he slips back into silence. "Anyway. I'd better call a cab."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
Despite saying that, he doesn't reach for his phone.
//[Stop pursuing him]// [[Okay. See you in class.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "thanksForComing"]]
[[Too bad you're leaving.|UKHOTPROF-2400 Too bad you're leaving]]
[[Who were you calling earlier?|UKHOTPROF-2800 Who were you calling]]
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "thanksForComing">>\
"Okay," you say. "Well...thanks for coming. I think you made Oz's night! See you in class?"
"Yeah," he says. "$kate.firstName?"
Professor Wells looks at you like he's about to say something important: but nothing comes out. For a moment, you feel like he's going to kiss you. You stare back at him, waiting.
But the moment passes. "Don't stay out too late tonight," he tells you. "Remember you've got assignments."
<<link "Yes, Professor." "UKHOTPROF-2300 Back to normal">><</link>>
<<elseif $temp.kateSays == "neverMind">>\
"Never mind." You let your boot hit the floor again. "Forget it."
"$kate.firstName, I..."
Professor Wells looks at you like he's about to say something important: but nothing comes out. For a moment, you feel like he's going to kiss you. You stare back at him, waiting.
But the moment passes. "Don't stay out too late tonight," he tells you. "Remember you've got assignments."
<<link "Yes, Professor." "UKHOTPROF-2300 Back to normal">><</link>>
<<elseif $temp.kateSays == "forgetIt">>\
<<if hasVisited("UKHOTPROF-4300 Kate heats up the kiss")>>\
<<silently>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyelid-tearful>>
<<avatar-expr-mouth-pout>>
<</silently>>\
<<if hasVisited("UKHOTPROF-4700 Car park first kiss")>>\
"Forget it," you interrupt. "This was stupid."
"$kate.firstName, wait. //Wait..."// He reaches for you, but you're already out of the car. You slam the door shut and escape to your block as fast as your stride will carry you.
Hot pressure's building up behind your eyes, but you manage to hold down the tears until the stupid card reader fails to recognise your $kate.uni.shortName ID. On the fifth swipe it unlocks, and you rush to your room with hot tears [[streaming down your cheeks|UKHOTPROF-2300 Back to normal]].
<<else>>\
"Forget it," you interrupt. "This was stupid."
"$kate.firstName, wait. //Wait..."// He reaches for you, but you're already heading for your car. You slide in, start the engine, and get out of there as fast as you can.
Hot pressure's building up behind your eyes, but you manage to hold down the tears until you're out on the main road. You drive back to your halls with tears [[streaming down your cheeks|UKHOTPROF-2300 Back to normal]].
<</if>>
<<else>>\
"Forget it," you interrupt. "This was stupid."
"$kate.firstName, wait. //Wait..."// but you're already walking away, as fast these stupid spike heels will carry you. Hot pressure's building up behind your eyes, but you manage to hold down the tears until you're in the back of a minicab.
"You are very beautiful," says the driver, an elderly Pakistani man. "He is not worth it."
<<link "//[Sniff]// Thanks." "UKHOTPROF-2250 Taxi ride">><</link>>
<</if>>\
<<elseif $temp.kateSays == "hahaSure">>\
<<silently>>
<<if $kate.uni.degreeSubject == "english">>
<<set _subject to "English">>
<<elseif $kate.uni.degreeSubject == "business">>
<<set _subject to "business studies">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _subject to "law">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _subject to "psychology">>
<<else>>
<<set _subject to "ERROR IN TEMP SUBJECT VAR">>
<</if>>
<</silently>>\
"Hmm?" you pretend not to understand question. "Haha, sure! Nothing to do with me, right?" You grin and do your best impersonation of a girl with no romantic feelings for her _subject professor.
"Well..." he shrugs. Professor Wells looks at you as though he's about to say something important: but nothing comes out. For a moment, you feel like he's going to kiss you. You gaze back at him, waiting.
But the moment passes. "Don't stay out too late tonight," he tells you. "Remember you've got assignments."
<<link "Yes, Professor." "UKHOTPROF-2300 Back to normal">><</link>>
<<elseif $temp.kateSays == "idBetterGetBack">>\
"I'd better get back," you tell him. "Thanks anyway."
"Of course, of course. Well, thanks for getting me out of the office for a few hours."
<<link "Pleasure. See you in class!" "UKHOTPROF-2300 Back to normal">><</link>>
<<elseif $temp.kateSays == "thanksForDinner">>\
"Goodnight, professor."
A last moment off-campus together. He looks at you like he's about to say something important: but nothing comes out. For a moment, you feel like he's going to kiss you. You gaze back at him, waiting.
But the moment passes. "See you on Friday."
<<link "Seeya." "UKHOTPROF-2300 Back to normal">><</link>>
<<elseif $temp.kateSays == "thanksForDrivingMeHome">>\
"Goodnight, professor."
A last lingering moment together in his car. Just the two of you. He looks at you like he's about to say something important: but nothing comes out. For a moment, you feel like he's going to kiss you. You gaze back at him, waiting.
But the moment passes. "See you on Friday."
<<link "Seeya." "UKHOTPROF-2300 Back to normal">><</link>>
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-eyelid-tearful>>
<<avatar-expr-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you sniffle, trying to keep it together. The driver offers soothing, grandfatherly advice as he takes you back to your [[halls|UKHOTPROF-2300 Back to normal]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "forgetIt">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("teenRom/10_geekSocks-palePinkWithPinkHeartsCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique("teenRom/10_rockerLeggings-blackCottonLeggings")>>
<<set $avatar.clothing.pushUnique("teenRom/40_geekTop-pinkHoodieSweater-" + $kate.braSize)>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-mouth-pout>>
<</silently>>\
You suffer through a weekend of feeling stressed out and humiliated. You even toy with the idea of changing courses, so you won't have to see Professor Wells again.
On reflection, you realise it probably turned out for the best. There's no way an affair with a professor could work out. Thankfully, he stays totally discreet about it, so there's no public fallout to deal with.
Your relationship with him chills considerably; from now on, you keep things with him strictly professional. And things go back to normal very quickly. After a few weeks, you're over it.
<<elseif $temp.kateSays == "idBetterGetBack" or $temp.kateSays == "thanksForDinner" or $temp.kateSays == "thanksForDrivingMeHome">>\
After your <<if $temp.kateSays == "thanksForDinner" or $temp.kateSays == "thanksForDrivingMeHome">>dinner<<else>>coffee meeting<</if>> things go back to normal. You and Hot Prof share a highly productive relationship for the rest of your time at $kate.uni.shortName; you work hard in his class, and he mentors and develops you into a better student.
Your relationship stays mildly flirty, but the chemistry between you loses some of its tension and energy after <<if $temp.kateSays == "thanksForDinner" or $temp.kateSays == "thanksForDrivingMeHome">>you had dinner together<<else>>you went for coffee together<</if>> without anything else happening. Having a meeting off campus that stayed businesslike seems to have defused things somehow.
It's probably for the best; there's no way an affair with a professor could work out, right?
<<else>>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTrousers-blackSkinnyTrousers")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-darkGreyFlaredLongSleevedVNeck-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</silently>>\
After the party things go back to normal, although Professor Wells going out to Vags makes him even more of a legend in everybody's eyes.
You and Hot Prof share a highly productive relationship for the rest of your time at $kate.uni.shortName. You work hard in his class, and he mentors and develops you into a better student.
Your relationship stays mildly flirty, but the chemistry between you peaked that night at Vags. It loses a lot of its tension and energy after that.
It's probably for the best; there's no way an affair with a professor could work out, right?
<</if>>\
<<link "//Continue//" "UKUNI-7000 Spring 2012">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Too bad you're leaving." You shift position against the wall, propping a spike heel on the bricks, subtly showing off some leg.
"Oh yeah?" he asks. "Why?"
//[Stop pursuing him]// [[Never mind, forget it.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "neverMind"]]
[[Maybe you were going to get lucky.|UKHOTPROF-2500 Getting lucky]]
[[Who were you calling earlier?|UKHOTPROF-2800 Who were you calling]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe you were going to get lucky," you tell him.
"Oh //really// now?" He smirks, amused. "And who's that with?"
//[Stop pursuing him]// [[Never mind, forget it.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "neverMind"]]
//[Seduction attempt]// [[Me. Obviously.|UKHOTPROF-2600 Kate offers herself]]
[[Who were you calling earlier?|UKHOTPROF-2800 Who were you calling]]
<</page>><<silently>>
/* SEDUCTION CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _glamMod to 1>>
<<set _heelsMod to 1>>
<<set _attractionMod to 1>>
<<set _youthMod to 1>>
<<set _alcoholMod to 1>>
<<if hasVisited("UKHOTPROF-1600 Mind games")>>
<<set _jealousyMod to 1>>
<<set _diceRollModifiers.pushUnique([_jealousyMod, "Jealousy (from watching you flirt)"])>>
<<else>>
<<set _jealousyMod to 0>>
<</if>>
<<if hasVisited("UKHOTPROF-1400 Pool game") and not $temp.kateBeatProfAtPool>>
<<set _confidenceMod to 1>>
<<set _diceRollModifiers.pushUnique([_confidenceMod, "Confidence (from beating you at pool)"])>>
<<else>>
<<set _confidenceMod to 0>>
<</if>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "//Beauty//"])>>
<<set _diceRollModifiers.pushUnique([_glamMod , "Glammed up"])>>
<<set _diceRollModifiers.pushUnique([_heelsMod, "High heels"])>>
<<set _diceRollModifiers.pushUnique([_attractionMod, "Mutual attraction"])>>
<<set _diceRollModifiers.pushUnique([_youthMod, "Youth bonus"])>>
<<set _diceRollModifiers.pushUnique([_alcoholMod, "Alcohol"])>>
<<set _diceRollModifiers.pushUnique([-3 , "Risk to Hot Prof's career"])>>
<<set _diceRollModifiers.pushUnique([-1 , "Hot Prof in a relationship"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _glamMod + _heelsMod + _attractionMod + _jealousyMod + _confidenceMod + _youthMod + _alcoholMod -4>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END SEDUCTION CHECK */
<</silently>>\
<<header>>\
<<page>>\
"Well...me." Your cheeks burn as you say it. //"Obviously,"// you add in a small voice. You never imagined you'd have to throw yourself at him like this.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>SEDUCTION CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to get him to agree to sex. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>SEDUCTION ATTEMPT</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>SEDUCTION CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>SEDUCTION CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKHOTPROF-3000 Kate seduces Hot Prof]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKHOTPROF-2700 Prof rejects Kate]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Jesus, $kate.firstName..." The Prof's face turns serious. "I'm flattered, I really am. But my job..."
[[Forget it, this was stupid.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "forgetIt"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Who were you calling earlier?"
"Hm?"
"At The Ram. Before we left."
"Hm." A long silence. You have a good idea of who it was, but you still want to hear him say it. "My girlfriend," he finally admits.
It's your turn to be quiet, and think through the implications of this.
"So," he says at last.
"So," you reply.
He watches you closely, trying to gauge your reaction. "Is that...okay?" he asks.
//[Back out of an affair]// [[Haha, sure, nothing to do with me!|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "hahaSure"]]
//[Seduction attempt]// [[Yeah.|UKHOTPROF-2900 Kate accepts side chickdom]]
<</page>><<silently>>
/* SEDUCTION CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _glamMod to 1>>
<<set _heelsMod to 1>>
<<set _attractionMod to 1>>
<<if hasVisited("UKHOTPROF-1600 Mind games")>>
<<set _jealousyMod to 1>>
<<set _diceRollModifiers.pushUnique([_jealousyMod, "Jealousy (from watching you flirt)"])>>
<<else>>
<<set _jealousyMod to 0>>
<</if>>
<<if hasVisited("UKHOTPROF-1400 Pool game") and not $temp.kateBeatProfAtPool>>
<<set _confidenceMod to 1>>
<<set _diceRollModifiers.pushUnique([_confidenceMod, "Confidence (from beating you at pool)"])>>
<<else>>
<<set _confidenceMod to 0>>
<</if>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "//Beauty//"])>>
<<set _diceRollModifiers.pushUnique([_glamMod , "Glammed up"])>>
<<set _diceRollModifiers.pushUnique([_heelsMod, "High heels"])>>
<<set _diceRollModifiers.pushUnique([_attractionMod, "Mutual attraction"])>>
<<set _diceRollModifiers.pushUnique([-2 , "Risk to Hot Prof's career"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _glamMod + _heelsMod + _attractionMod + _jealousyMod + _confidenceMod -2>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END SEDUCTION CHECK */
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you reply. It's not like you hadn't suspected it. "It's okay."
"Seriously?"
"Yeah." He looks at you intensely, eyes flashing with desire.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>SEDUCTION CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to get him to agree to sex. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>SEDUCTION ATTEMPT</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>SEDUCTION CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>SEDUCTION CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKHOTPROF-3000 Kate seduces Hot Prof]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKHOTPROF-2700 Prof rejects Kate]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You can almost see his mind racing. He doesn't say anything, just looks at you. //Hungrily.//
It's now or never. "C'mon," you say. "Let's [[get out of here|UKHOTPROF-3100 Sneaking back into halls]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Sneaking out of Vags is easy. Sneaking him back into your block is more nervewracking...but you make it to your [[little room|UKHOTPROF-4800 Kate's room]] without bumping into any witnesses.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTrousers-blackSkinnyTrousers")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-darkGreyFlaredLongSleevedVNeck-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<<if $kate.uni.degreeSubject == "english">>
<<set _subject to "linguistics">>
<<elseif $kate.uni.degreeSubject == "business">>
<<set _subject to "corporate reform">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _subject to "case law">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _subject to "about the mind">>
<<else>>
<<set _subject to "ERROR IN SUBJECT TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"This was a good idea," says Professor Wells. "It's nice to get off campus sometimes."
You had to drive to get here, but you picked The Beehive because it's a such a lovely pub: leather chairs and beams, bookcases and a fireplace. Over coffees and tasty little biscuits you've had a long talk about your latest assignment, and how you could develop it into the subject of your dissertation.
You'll have to do some extra reading in areas that aren't strictly part of the course, but he thinks it'll be worth it. "Not many dissertations are actually worth reading," he says, "but this one could be."
A member of the pub staff lights up the fireplace, and you realise suddenly that it's getting dark outside. "Wow," you glance at your watch. Have you really been sitting here just talking for three hours?
He chuckles. "Time flies when you're talking _subject. Have you got to get back? Or...this place does food, we can grab a table?"
[[Sure!|UKHOTPROF-3300 Dinner with Hot Prof]]
//[End the affair]// [[I'd better get back.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "idBetterGetBack"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Let me just make a call." He steps out to call someone, while you pack away your laptop and notes.
When he returns, a waitress leads you through to the pub's dining area, seating you at a table for two under an old leaded window.
She lights up the candles on your table, and leaves you to peruse your menus. //This is nice!// you think. Your eyes meet and he smiles.
When the waitress returns, you opt for a blackened chicken Caesar. The Prof settles on sausages and mash. "Fantastic! And to drink?" she asks.
"Hm, red or white?" he asks you, picking up the wine list.
[[I've gotta drive.|UKHOTPROF-3350 Driving objection]]
[[White.|UKHOTPROF-3400 Wine choice][$temp.kateSays to "white"]]
[[Red.|UKHOTPROF-3400 Wine choice][$temp.kateSays to "red"]]
[[You choose.|UKHOTPROF-3400 Wine choice][$temp.kateSays to "youChoose"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm driving," you remind him.
"I can give you a lift back," he offers. "I'll just have a glass or two."
[[Okay...white.|UKHOTPROF-3400 Wine choice][$temp.kateSays to "white"]]
[[Red, please.|UKHOTPROF-3400 Wine choice][$temp.kateSays to "red"]]
[[You choose.|UKHOTPROF-3400 Wine choice][$temp.kateSays to "youChoose"]]
<</page>><<silently>>
<<if $kate.firstName == "Skye">>
<<set _skye to "Courtney">>
<<else>>
<<set _skye to "Skye">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "white" or $temp.kateSays == "youChoose">>\
<<set $temp.wineChoice to "white">>\
<<if $temp.kateSays == "white">>\
"<<if hasVisited("UKHOTPROF-3350 Driving objection")>>Okay," you smile. "<</if>>How about a white?" <<if not hasVisited("UKHOTPROF-3350 Driving objection")>>you suggest.<</if>>
<<else>>\
<<if hasVisited("UKHOTPROF-3350 Driving objection")>>"Okay," you smile. "You choose."<<else>>"You choose," you smile.<</if>>
<</if>>\
"Mmm." He studies the wine list carefully. "The Chardonnay, please."
<<if $kate.quirks.includes("working class")>>\
You smirk and he looks confused. "Bad choice?"
"No, no, it's fine," you say. "You just...reminded me of something funny. I'll tell you in a minute."
The waitress takes the hint, and makes herself scarce. "So...one of my friends from school is a //stripper,"// you tell him. "'Chardonnay' is her stage name."
"You're serious?"
"Deadly. I can't drink it without thinking of her."
"Wow." He chuckles incredulously. "I wonder what her parents think..."
People are always interested in _skye's job: guys titillated, girls morbidly fascinated. The Professor hangs raptly on your every word, fascinated as you animatedly discuss a stripper over candlelight.
<<else>>\
"Fantastic." Your waitress heads to the kitchen, leaving you to talk with the Prof over candlelight.
<</if>>\
<<elseif $temp.kateSays == "red">>\
<<set $temp.wineChoice to "red">>\
"<<if hasVisited("UKHOTPROF-3350 Driving objection")>>Okay," you shrug. "<</if>>How about a red?" <<if not hasVisited("UKHOTPROF-3350 Driving objection")>>you suggest.<</if>>
"Mmm." He studies the wine list carefully. "The Malbec, please."
"Fantastic." Your waitress heads to the kitchen, leaving you to talk with the Prof over candlelight.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<link "//Continue//" "UKHOTPROF-3500 Dinner seduction">><</link>>
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Wine, good company, a candlelit meal. This feels romantic and sophisticated.">>
<</first>>
/* RESIST SEDUCTION CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.conscientiousness.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Conscientiousness"])>>
<<set _diceRollModifiers.pushUnique([-1 , "Attracted to Hot Prof"])>>
<<set _diceRollModifiers.pushUnique([-1 , "Being wined and dined"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier -2>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END RESIST SEDUCTION CHECK */
<</silently>>\
<<header>>\
<<page>>\
Food comes, wine and conversation flow. It's a lovely dinner.
He's so funny, and mature, and engaging: you're having a much better time with him than you do on dates with guys your own age. There's something so stimulating about how fast he thinks, and how much he knows.
//It would be nice to do this more,// you muse contentedly as you finish your second glass of <<if $temp.wineChoice == "white">>cold Chardonnay<<else>>fruity Merlot<</if>>. //Really nice.//
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>RESIST SEDUCTION CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to avoid being swept off your feet. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>RESIST SEDUCTION</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>RESIST SEDUCTION CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>RESIST SEDUCTION CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKHOTPROF-3600 More wine?]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKHOTPROF-3600 More wine?]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Professor Wells lifts the wine bottle, wordlessly offering you a third glass.
And, implicitly, a lift home in his car. <<if $temp.diceRollOutcome == "failure">>Which definitely feels like a good idea right now.<</if>>
<<if $temp.diceRollOutcome == "success">>\
//[Resist Seduction check ''passed'']// [[Better not.|UKHOTPROF-3700 Just the bill][$temp.kateSays to "betterNot"]]
<<else>>\
<span class="greyedOut">//[Resist Seduction check ''failed''] Better not.//</span>
<</if>>\
[[Sure you don't mind driving me back?|UKHOTPROF-3700 Just the bill][$temp.kateSays to "youllDrive"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "betterNot">>\
You place your hand on top of the glass. "Better not," you say.
<<elseif $temp.kateSays == "youllDrive">>\
<<set $temp.kateIsCatchingARide to true>>\
"You sure you don't mind driving me back?"
"Not at all." He smiles and pours you a big glass of wine. You smile back and take a big sip.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
You eat and talk, and soon your plates are empty. "Just the bill, please," he tells the waitress.
You sit together in companionable, contented silence while you wait for her to come back with the card machine. His face looks so handsome by candlelight. You feel a strong urge to reach across the table and lock your fingers with his.
[[Who were you calling earlier?|UKHOTPROF-3800 Who did you call?]]
[[This was really nice.|UKHOTPROF-3900 This was nice]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Who were you calling earlier?" you ask suddenly.
"Hm?"
"Before we had dinner. Who did you call?"
"Hm." A long silence. You have a good idea of who it was, but you still want to hear him say it. "My girlfriend," he finally admits.
The waitress returns, giving you time to think through the implications of this while Professor Wells [[pays for dinner|UKHOTPROF-4000 Beehive car park]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"This was really nice," you tell him. "I enjoyed myself."
"Me too," he agrees. For a long moment you just gaze into his eyes. Then the waitress returns, [[breaking the spell|UKHOTPROF-4000 Beehive car park]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step out together into the cool night air. <<if $temp.kateIsCatchingARide>>The Professor leads you to his car, a boxy silver people carrier.<<else>>The Professor walks you to your car.<</if>>
<<if $temp.kateIsCatchingARide>>\
You jump in the front and he drives you [[back to campus|UKHOTPROF-4600 University car park]]. The radio's on some kind of talk show, a debate about Scottish independence, but you're not paying attention.
<<else>>\
"Thanks for dinner," you tell him, your keys in your hand.
"My pleasure," he replies. "I had a nice time."
//[End the affair]// [[Goodnight, Professor.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "thanksForDinner"]]
<<link "//Goodnight kiss.//" "UKHOTPROF-4100 Car park first kiss">><</link>>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
For a moment you both just stand there, that awkward end-of-a-date moment when neither of you are sure if it's over.
Then, instinctively, you lean up and [[kiss him|UKHOTPROF-4200 Car park makeout]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy is hot and wet.">>
<</first>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-4700 Car park first kiss")>>\
It's clumsy at first, but then your tongues meet sensuously and you're making out with Professor Wells, right there in the front of his car.
You kiss for a long time, exploring each other with tongues and touches.
You break apart, and he looks out around the car park nervously. There's nobody around, but you're really close to your halls. "We shouldn't do this," he says.
//[End the affair]// [[You're right, I'm sorry.|UKHOTPROF-2200 Kate/Prof fizzle]]
//[Seduction attempt]// <<link "//Kiss him again.//" "UKHOTPROF-4300 Kate heats up the kiss">><</link>>
<<else>>\
It's clumsy at first, but then your tongues tussle sensuously and you're making out with Professor Wells, right there in the car park of the Beehive.
You kiss for a long time, his tongue in your mouth and a stiffness pressing against your belly.
You break apart, and he looks around nervously. "We shouldn't do this," he says.
//[End the affair]// [[You're right, I'm sorry.|UKHOTPROF-2200 Kate/Prof fizzle]]
//[Seduction attempt]// <<link "//Kiss him again.//" "UKHOTPROF-4300 Kate heats up the kiss">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-horny>>
/* SEDUCTION CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _glamMod to 1>>
<<set _makeoutMod to 1>>
<<set _attractionMod to 1>>
<<set _youthMod to 1>>
<<set _alcoholMod to 1>>
<<if hasVisited("UKHOTPROF-1600 Mind games")>>
<<set _jealousyMod to 1>>
<<set _diceRollModifiers.pushUnique([_jealousyMod, "Jealousy (from watching you flirt)"])>>
<<else>>
<<set _jealousyMod to 0>>
<</if>>
<<if hasVisited("UKHOTPROF-1400 Pool game") and not $temp.kateBeatProfAtPool>>
<<set _confidenceMod to 1>>
<<set _diceRollModifiers.pushUnique([_confidenceMod, "Confidence (from beating you at pool)"])>>
<<else>>
<<set _confidenceMod to 0>>
<</if>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "//Beauty//"])>>
<<set _diceRollModifiers.pushUnique([_glamMod , "Glammed up"])>>
<<set _diceRollModifiers.pushUnique([_makeoutMod, "Made out"])>>
<<set _diceRollModifiers.pushUnique([_attractionMod, "Mutual attraction"])>>
<<set _diceRollModifiers.pushUnique([_youthMod, "Youth bonus"])>>
<<set _diceRollModifiers.pushUnique([-3 , "Risk to Hot Prof's career"])>>
<<set _diceRollModifiers.pushUnique([-1 , "Hot Prof in a relationship"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _glamMod + _makeoutMod + _attractionMod + _jealousyMod + _confidenceMod + _youthMod -4>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END SEDUCTION CHECK */
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-4700 Car park first kiss")>>\
You shut him up with your body, leaning over the central console and pressing in closer for a second kiss. It's sexy and sensual and it's a long time before you come up for air.
He just looks at you, mouth open, a war between fear and desire raging in his clear blue eyes.
"My room's right there," you tell him.
<<else>>\
You shut him up with your body, pressing in closer for a second kiss. It's sexy and sensual and it's a long time before you come up for air.
He just looks at you, mouth open, a war between fear and desire raging in his clear blue eyes.
"We can go back to mine," you tell him.
<</if>>\
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>SEDUCTION CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to get him to agree to sex. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>SEDUCTION ATTEMPT</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>SEDUCTION CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>SEDUCTION CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKHOTPROF-4500 Kate seduces Hot Prof]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKHOTPROF-2700 Prof rejects Kate]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-normal>>
<</silently>>\
<<header>>\
<<page>>\
You break apart again. Hot Prof's face turns serious. Snippet about him losing his nerve: I'm flattered, I really am, but my job, etc.
[[You're right, this was stupid.|UKHOTPROF-2200 Kate/Prof fizzle]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-4700 Car park first kiss")>>\
You can almost see his mind racing. Then he makes a decision. "Okay. Let's go."
You hurry from his car to the halls. Swiping him into your block is nerve-wracking, but you manage to sneak him to [[your room|UKHOTPROF-4800 Kate's room]] without bumping into any witnesses.
<<else>>\
<<silently>>
<<if $kate.uni.shortName == "Oxford">>
<<set _block to "quad",
_katesBlock to "Longwall 2">>
<<elseif $kate.uni.shortName == "Durham">>
<<set _block to "building",
_katesBlock to "Owengate">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set _block to "halls",
_katesBlock to "Talybont South">>
<</if>>
<</silently>>\
You can almost see his mind racing. Then he makes a decision. "What _block are you in?"
"_katesBlock," you tell him. "Room 4."
You drive back to campus, //fast.// You've only just had time to light a vanilla candle, and have a fast tidy-up, when you hear [[a soft tap on your door|UKHOTPROF-4800 Kate's room]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's a short drive back. He pulls up in the public car park across the street from your halls. At this hour it's quiet, just a few parked cars, nobody around.
"So," he says.
"Thanks for dinner," you tell him.
"My pleasure," he replies. "I had a nice time."
You unbuckle your seatbelt and let it slither away. For a moment you both just sit there, that awkward end-of-a-date moment when neither of you are quite sure if it's over.
//[End the affair]// [[Goodnight, Professor.|UKHOTPROF-2200 Kate/Prof fizzle][$temp.kateSays to "thanksForDrivingMeHome"]]
<<link "//Kiss him.//" "UKHOTPROF-4700 Car park first kiss">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Impulsively, instinctively, you lean across the console and [[kiss him|UKHOTPROF-4200 Car park makeout]].
<</page>><<silently>>
<<set $npc1 to {},
$npc1.arousalBonus to 0>>
<<if hasVisited("UKHOTPROF-3100 Sneaking back into halls")>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy is hot and wet.">>
<</first>>
<</if>>
<<avatar-kissing>>
<</silently>>\
<<header>>\
<<page>>\
You pull him inside by his tie, kissing him hungrily. He closes the door with his foot, his hand groping your ass through your <<if hasVisited("UKHOTPROF-3100 Sneaking back into halls")>>dress<<else>>leggings<</if>>.
You stumble together towards the bed, and \
<<if hasVisited("UKHOTPROF-3100 Sneaking back into halls")>>\
continue your makeout session. Kissing someone ten years older feels awkward at first...then your tongues start tussling sensuously, and it just feels //good.//
<<else>>\
continue your makeout session, this time in private.
<</if>>\
You've fantasised about doing this for a long time. The way it happened wasn't much like you were expecting, but after //months// of forbidden attraction, every kiss and touch sends a wave of desire running through you.
In moments you're peeling each other [[out of your clothes|UKHOTPROF-4900 Foreplay]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-mouth-smirk>>
<<avatar-expr-nose-scrunch>>
<<set $avatar.clothing.delete("uni/20_ukUniTrousers-blackSkinnyTrousers")>>
<<set $avatar.clothing.delete("uni/30_ukUniTop-darkGreyFlaredLongSleevedVNeck-" + $kate.braSize)>>
<<set $avatar.clothing.delete("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<<set $avatar.clothing.delete("uni/20_ukUniDress-redCowlHalterNeckMini-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
"Jesus," he murmurs when your <<if hasVisited("UKHOTPROF-1100 Oz's birthday party")>>dress is<<else>>clothes are<</if>> on the floor, and he sees you in your underwear for the first time. For a moment he just looks you up and down, drinking in the sight.
His shirt's off and by contrast, his body's a little bit softer and a little bit hairier than you're used to. But you don't care; in fact the difference is sexy, and kind of empowering.
He's older, wiser, more experienced, an authority over you and the other students; your superior in so many ways. //But I'm hotter.//
You smile as you take him back in your arms and kiss him again, bare skin on bare skin. You're moments away from having sex.
<<link "//Go down on him first.//" "UKHOTPROF-5000 Pre-sex BJ">><</link>>
<<link "//Ask him to wear a condom.//" "UKHOTPROF-5200 Hot Prof straps on">><</link>>
<<if $kate.quirks.includesAny("laxCondomPolicy", "gentlemansChoiceCondomPolicy")>>\
//[Lax condom policy] [[Don't bother with protection.|UKHOTPROF-5200 Hot Prof straps on][$temp.kateSays to "doMeBareback"]]//
<<else>>\
<span class="greyedOut">//[Lax condom policy] Don't bother with protection.//</span>
<</if>>\
<</page>><<silently>>
/* BJ CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _skillMod to $kate.skills.sexpert.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Beauty"])>>
<<if $kate.skills.sexpert.level == -4>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexual inexperience"])>>
<<else>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexpert skill"])>>
<</if>>
<<set _diceRollModifiers.pushUnique([1 , "Youth bonus"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod +1>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END BJ CHECK */
<</silently>>\
<<header>>\
<<page>>\
"Lay back," you whisper. He reclines on the bed – //creaaaaaak// – and you manoeuvre down in it.
Sliding down his boxers, you free your Professor's dick. It's hard and ready, the skin darker than the rest of his body, framed by a dense curly tangle of pubes.
You lower your lips to his penis, and guide it sensuously into your soft, wet mouth.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BJ CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to give an especially good BJ. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>BLOWJOB</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>BJ CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BJ CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKHOTPROF-5100 Prof Wells BJ]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKHOTPROF-5100 Prof Wells BJ]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-mouth-openWide>>
<<avatar-expr-cheeksBJ>>
<<if random(1,10) + $kate.skills.sexpert.level gte 6>>
<<first>>
<<addNotification "Arousal +1" "Your pussy's hot, wet and ready.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
For the next few minutes your room is quiet except for the soft, satisfied murmurs of your favourite professor, and the soft slurping sounds of your mouth on his dick.
<<if $temp.diceRollOutcome == "success">>\
<<set $npc1.arousalBonus += 1>>\
You look up into his eyes while you work, enjoying the sight of him in your bed, and the weird mix of submission and empowerment that giving a BJ makes you feel. "Wow," he murmurs, looking down at you, his big brain for once at a loss for words. "Fuck."
His cock is rock hard in your mouth. You decide you'd better stop pretty soon, just in case he suddenly comes. With one last swirling sweep of your tongue, you reluctantly come up for air.
<<else>>\
<<silently>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
//I can't believe I'm doing this,// you think as you suck up and down on his hard shaft. //If the girls knew...//
"Mmh," murmurs the prof, his fingers twirling affectionately through your hair. "That feels so good." You keep it up for what feels like a respectable amount of time, then come up for air with a smile.
<</if>>\
<<link "//Ask him to wear a condom.//" "UKHOTPROF-5200 Hot Prof straps on">><</link>>
<<if $kate.quirks.includesAny("laxCondomPolicy", "gentlemansChoiceCondomPolicy")>>\
//[Lax condom policy] [[Don't bother with protection.|UKHOTPROF-5200 Hot Prof straps on][$temp.kateSays to "doMeBareback"]]//
<<else>>\
<span class="greyedOut">//[Lax condom policy] Don't bother with protection.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked braless barefoot>>
<<if hasVisited ("UKHOTPROF-1100 Oz's birthday party")>>
<<avatar-stripNaked braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<else>>
<<avatar-stripNaked braless barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<</if>>
/* SEXPERT CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _skillMod to $kate.skills.sexpert.level>>
<<set _npcArousal to $npc1.arousalBonus>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Beauty"])>>
<<if $kate.skills.sexpert.level == -4>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexual inexperience"])>>
<<else>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexpert skill"])>>
<</if>>
<<if $npc1.arousalBonus gt 0>>
<<set _diceRollModifiers.pushUnique([_npcArousal , "BJ bonus"])>>
<</if>>
<<set _diceRollModifiers.pushUnique([-1 , "Condom penalty"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod + _npcArousal -1>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END SEXPERT CHECK */
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "doMeBareback">>\
Surprisingly, Professor Wells produces a condom, without being asked. He rolls it on while you slip out of your underwear, tossing it on the floor.
<<else>>\
Professor Wells rummages around in his stuff for a condom. He rolls it on while you slip out of your underwear, tossing it on the floor.
<</if>>\
Your narrow bed creaks as you regain it, quietly under your weight then more noisily under his. You open your legs as he climbs on top of you. One last look passes between you before your relationship changes forever.
Reaching down with one hand, he guides the tip of his cock inside you...then makes you //gasp// as his hardness slips fully up into your soft, wet pussy.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>SEXPERT CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to make Professor Wells come in this position. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>MISSIONARY POSITION</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>SEXPERT CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>SEXPERT CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKHOTPROF-5300 Missionary fuck]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKHOTPROF-5300 Missionary fuck]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<<if random(1,10) gte 6>>
<<set _professorWellsSucceeded to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "success">>\
<<if _professorWellsSucceeded>>\
Your bed creaks noisily for the next few minutes. It's hot and it's passionate and it's over fast. You come quickly, overwhelmed by the sensations of being under your professor's naked body, his cock thrusting hard and fast inside you.
He comes soon afterwards, moaning as he fills the condom inside you, then slumps down into the bed, pressed up close in your arms because it's so narrow. After weeks and months of build-up, it was all over in less than ten minutes.
And it was pretty great. "Wow," he murmurs, his piercing blue eyes connecting with yours, his fingertips playing with your hair.
"Wow," you echo, and kiss him.
<<else>>\
Your bed creaks noisily for the next few minutes. It's hot and it's passionate and it's over fast. Professor Wells can't hold back; after some hard and fast thrusting he suddenly comes, moaning as he fills the condom inside you.
You were close. A moment of surprised disappointment, then his finger is massaging your clit and he's licking and sucking on your stiff nipples, taking turns on them. You feel your orgasm building up again, especially when he goes from fingering your clit to finger-fucking your pussy.
Soon you come and he slumps down into the bed beside you, pressed up close in your arms because the bed's so narrow. After weeks and months of build-up, it was all over in less than ten minutes.
And it was pretty great. "Wow," he murmurs, his piercing blue eyes connecting with yours, his fingertips playing with your hair.
"Wow," you echo, and kiss him.
<</if>>\
<<else>>\
<<if _professorWellsSucceeded>>\
Your bed creaks noisily for the next few minutes. You come very quickly, overwhelmed by the sensations of being under your professor's naked body, his cock thrusting hard and fast inside you. You cry out noisily as you climax.
He pulls out and manoeuvres you around on the bed so you're on all fours...then slides back inside you from behind. //Creak-creak-creak// goes the bed as your professor fucks you doggy-style, your bare butt slapping against him.
He comes soon afterwards, moaning as he fills the condom inside you, then slumps down into the bed, pressed up close in your arms because it's so narrow. After weeks and months of build-up, it was all over in ten minutes.
And it was pretty great. "Wow," he murmurs, his piercing blue eyes connecting with yours, his fingertips playing with your hair.
"Wow," you echo, and kiss him.
<<else>>\
<<silently>>
<<set _katesImagination to $kate.kinks.random()>>
<<if _katesImagination == "exhibitionist">>
<<set _soonYoureLovingIt to "The mixed sensations of pain and pleasure make you find your voice, then the sudden mental image of Colin next door hearing you yelp and moan while you're spanked and fucked in your creaky bed pushes you over the edge of a noisy and passionate orgasm.">>
<<elseif _katesImagination == "masochist">>
<<set _soonYoureLovingIt to "Every smack seems to make you wetter and closer to coming. He senses it and slaps you harder...experimentally at first, then with more confidence and aggression as he realises you're not going to stop him hitting you. Your ass feels like it's on fire when you come.">>
<<elseif _katesImagination == "submissive">>
<<if hasVisited("UKHOTPROF-1100 Oz's birthday party")>>
<<set _soonYoureLovingIt to "You hadn't planned for your night out with Professor Wells to end with you naked on all fours, getting spanked and fucked. But now it's happening your orgasm comes quickly and noisily.">>
<<else>>
<<set _soonYoureLovingIt to "You hadn't planned for your coffee date with Professor Wells to end with you naked on all fours, getting spanked and fucked. But now it's happening your orgasm comes quickly and noisily.">>
<</if>>
<<else>>
<<set _soonYoureLovingIt to "(ERROR IN TEMP SOONYOURELOVINGIT VAR)">>
<</if>>
<</silently>>\
Your bed creaks noisily for the next few minutes. You try to keep the noise down as much as you can, limiting yourself to sexy little gasps and moans under his naked body.
He pulls out and manoeuvres you around on the bed so you're on all fours...then slides back inside you from behind. //Creak-creak-creak// goes the bed as your professor fucks you doggy-style, your bare butt slapping against him.
"Bad girl," he mutters, delivering a sharp little smack to your ass. That makes you gasp, and he does it again, harder. Soon he's peppering your ass with hard little smacks while his cock thrusts hard and fast inside you.
_soonYoureLovingIt
He comes soon afterwards, moaning as he fills the condom inside you, then slumps down into the bed, pressed up close in your arms because it's so narrow. After weeks and months of build-up, it was all over in ten minutes.
And it was pretty great. "Wow," he murmurs, his piercing blue eyes connecting with yours, his fingertips playing with your hair.
"Ow," you giggle, twisting to show off the red handprints on your bum.
<</if>>\
<</if>>\
<<link "//Chill out.//" "UKHOTPROF-5400 Bat out of hell">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<avatar-expr-mouth-smile>>
<<set $avatar.background.pushUnique("uni/20_ukUniPillow")>>
<<set $avatar.clothing.pushUnique("uni/60_ukUniDuvet-DuvetAndArm-fair")>>
<<if $kate.tattoos.includes("rightForearmRosesSleeve")>>
<<set $avatar.clothing.pushUnique("uni/65_ukUniDuvetPose-tattoo-rightForearmRosesSleeve")>>
<</if>>
<<if $kate.tattoos.includes("rightHandPaperPlane")>>
<<set $avatar.clothing.pushUnique("uni/65_ukUniDuvetPose-tattoo-rightHandPaperPlane")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It feels amazing just lying together, naked and entwined. But you both know he can't be here when the morning comes. Eventually, reluctantly, he gets up and gets dressed.
"Am I going to get an A for this?" you deadpan.
He laughs. "You're actually a very bad girl, $kate.firstName," he replies. "Very ill-disciplined. We're going to need to work on that."
"Can't wait," you smile. He peeks out of your door to check the coast is clear, then [[slips quietly away|UKHOTPROF-5500 Honeymoon phase]]<<if $kate.quirks.includes("rockChick")>>, like a bat out of hell<</if>>.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackOpaqueVeryNarrowBlackBand-barefoot")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniSkirt-blackAndPurpleTartanWithBucklesMini")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-blackLongSleevedTurtleNeckJumper-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</silently>>\
<<header>>\
<<page>>\
It's so weird seeing him in class on Tuesday. You both play it extra cool, just in case anyone <<if hasVisited("UKHOTPROF-1100 Oz's birthday party")>>suspects you left Vag's together<<else>>saw him sneaking in or out of your block<</if>> the other night.
But nobody says anything or asks anything, and it quickly becomes apparent that you got away with it.
The next time you meet outside of class, it's at The Hawkwell House Hotel, an elegant country hotel set in three acres of lovely gardens.
Wearing a black dress and new lingerie, you have dinner in the <<if not $kate.quirks.includes("elite")>>fancy <</if>>restaurant, then //very// hot sex – several times – in the king-sized bed in your [[double room|UKHOTPROF-5600 Honeymoon phase 2]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-babyBlueVestWithSpaghettiStraps-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-darkGreyZipUpHoodie-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</silently>>\
<<header>>\
<<page>>\
The sex is amazing, but so's everything else you do around it; dinner the night before, reading newspapers together in bed, then walking the grounds hand-in-hand the next day, discussing current affairs.
It's an incredible experience. Much too soon, you're standing by your cars in the hotel car park, about to go your separate ways.
<<if hasVisited("UKHOTPROF-2800 Who were you calling") or hasVisited("UKHOTPROF-3800 Who did you call?")>>\
[[I feel bad about your girlfriend.|UKHOTPROF-6000 Kate expresses guilt]]
<<link "//Kiss him goodbye.//" "UKHOTPROF-6400 Goodbye kiss">><</link>>
<<else>>\
<<link "//Ask if he has a wife or a girlfriend.//" "UKHOTPROF-5700 Are you single?">><</link>>
<<link "//Kiss him goodbye.//" "UKHOTPROF-6400 Goodbye kiss">><</link>>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"So, um...I probably should have asked this sooner," you say. "But...are you in a relationship?"
His face looks grave. "Yeah," he admits. "A girlfriend."
"Right." It's not like you hadn't suspected it...but you need a moment to process how you feel, now he's said it out loud. //After// having sex with you, on two different occasions. Although, to be fair, you never actually asked, but...
"You and I, we can't be //together,"// he explains. "You're a student. I'd lose my job. And they'd probably kick you out, too."
"Mm-hmm," you murmur, still thinking.
"So, are we, um? Well, are you...okay with that?"
//[End the affair]// [[We can't do this again.|UKHOTPROF-6700 Kate ends it]]
[[You need to end it with her.|UKHOTPROF-5800 You need to end it]]
[[Yeah...I'm okay with it.|UKHOTPROF-6600 Kate accepts side chickdom]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-6200 That's not the issue")>>\
"I want you to break up with her." //Was that not obvious?//
<<else>>\
"You need to end it with her," you tell him.
<</if>>\
"It's not that simple," he protests. "We've been together a long time and..."
He trails off when he sees the expression on your face.
"Listen," he says, and takes a deep sigh. "She...she has mental health issues. She suffers from depression, she's self-harmed, if I leave her...look, I'm worried she might //do something.// It's not just as simple as what I want."
//[End the affair]// [[This is bullshit.|UKHOTPROF-6700 Kate ends it]]
<<link "But what //do// you want?" "UKHOTPROF-5900 Kate believes Hot Prof">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Well..." your face softens as you consider this, "but what //do// you want?"
"I'd be with you if I could," he smiles, and the way he looks at you makes you believe it. "In a heartbeat."
//[End the affair]// [[I'm sorry, this is bullshit.|UKHOTPROF-6700 Kate ends it]]
[[Well...if that's true, I'm okay with it.|UKHOTPROF-6400 Goodbye kiss]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I feel bad about your girlfriend," you tell him.
"Me too," he looks down at the gravel.
"What's the deal with you and her?" you ask.
He sighs. "It's...complicated," he says, not meeting your gaze.
[[Complicated how?|UKHOTPROF-6100 Complicated how?]]
[[It's okay. I won't pry.|UKHOTPROF-6500 Kate won't pry]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Complicated how?"
"Just...complicated." He looks up suddenly. "You and I...you know we can't be //together,// right? You're a student. I'd lose my job. And they'd probably kick you out."
[[But that doesn't mean you should cheat on your girlfriend. Or on me with her.|UKHOTPROF-6200 That's not the issue]]
[[I get it. Sorry, I didn't mean to pry.|UKHOTPROF-6500 Kate won't pry]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"But that doesn't mean you should cheat on your girlfriend," you point out. "Or on me, with her."
He shrugs helplessly. "I don't know what to tell you. What is it you want?"
[[I want you to break up with her.|UKHOTPROF-5800 You need to end it]]
[[I don't know. I just feel bad.|UKHOTPROF-6300 I feel bad]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know," you shrug. "I just feel bad about this."
"Hey," he says soothingly, pulling you in for a hug. "You've got //nothing// to feel bad about. You're not doing anything wrong, okay? This is just something I need to figure out. Okay?"
//[End the affair]// [[I think we shouldn't do this again.|UKHOTPROF-6700 Kate ends it]]
[[Okay.|UKHOTPROF-6400 Goodbye kiss]]
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Making out with him turned you on again.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-6300 I feel bad")>>\
"Okay." You kiss...a comforting kiss on the lips that soon turns sensual, your tongues tangling while he pulls you in tight, squeezing your hips, cupping your butt.
<<elseif hasVisited("UKHOTPROF-5900 Kate believes Hot Prof")>>\
"If that's true," you say, "I guess I'm okay with it."
He pulls you into his arms. "It //is// true." You kiss...a comforting kiss on the lips that soon turns sensual, your tongues tangling while he pulls you in tight, squeezing your hips, cupping your butt. Soon you're not thinking about his girlfriend //at all.//
<<elseif hasVisited("UKHOTPROF-6500 Kate won't pry")>>\
Your kiss goodbye quickly turns sensual. Your tongues tangle while he pulls you in tight, squeezing your hips, cupping your butt.
<<elseif hasVisited("UKHOTPROF-6600 Kate accepts side chickdom")>>\
You make out for a long time in the car park, tongues tangling while he pulls you in tight, squeezing your hips, fondling your butt.
<<else>>\
"Well...I had a really nice time," you tell him.
"Me too." He pulls you in for a kiss; it quickly turns sensual, your tongues tangling while he pulls you in tight, squeezing your hips, cupping your butt.
<</if>>\
"Jesus," he <<if hasVisited("UKHOTPROF-6500 Kate won't pry")>>says<<else>>grins fiercely<</if>> as you break apart. "You have //no// idea what you do to me."
[[You too. See you in class.|UKHOTPROF-6800 Drive back to campus]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("UKHOTPROF-6100 Complicated how?")>>I get it, I get it<<else>>It's okay<</if>>," you tell him. "I'm sorry. I didn't mean to pry."
"Thanks." He smiles wryly. "You're a cool girl."
"Yeah. Well...don't you forget it."
"I won't." He grins and tugs you [[into his arms|UKHOTPROF-6400 Goodbye kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He watches your face as you think through the implications. "Yeah," you shrug. "I'm okay with it."
"Really?"
"I guess."
Admitting that didn't feel good, but something about it turned him on. His eyes flash with desire, and he tugs you back [[into his arms|UKHOTPROF-6400 Goodbye kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-11100 What now?")>>\
"Okay, fine, I get it!" you shrug angrily. "Stop shouting at me."
"Sorry," he sighs. "Just...sorry."
It's over. He drops you //miles// from your halls. You have to walk across half of $kate.uni.shortName just to [[get back|UKUNI-7600 Moving off campus]].
<<elseif hasVisited("UKHOTPROF-11000 Rumours")>>\
"We've got to end this," you say.
"No shit," he replies, bitterness in his voice. "Just...deny everything, okay? And //zero// contact with me outside of lectures. Maybe this'll all just blow over."
He drops you //miles// from your halls. You have to walk across half of $kate.uni.shortName just to [[get back|UKUNI-7600 Moving off campus]].
<<elseif hasVisited("UKHOTPROF-10200 Sneaking around 3")>>\
After some reflection, you decide it's best to break things off with Hot Prof. The reality didn't match up to the fantasy for you; it's not worth all the skulking around and the risk.
Professor Wells agrees with you – perhaps a little more readily than you'd like. Was it ever about more than sex to him? You're not sure, but you are sure it was right to end your fling before anybody got hurt.
//[[Continue|UKUNI-7200 Freshman 15]]//
<<elseif hasVisited("UKHOTPROF-5800 You need to end it")>>\
"I'm sorry." You hold up your hand to cut him off. "This is bullshit. I'm done."
"$kate.firstName, wait..." but you're [[already leaving|UKHOTPROF-6800 Drive back to campus]].
<<else>>\
"We can't do this again," you tell him. "It's not right."
"Yeah." He sighs heavily. "You're probably right. It could never work out."
<<link "//Continue//" "UKHOTPROF-6800 Drive back to campus">><</link>>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-6700 Kate ends it")>>\
On the drive home you feel numb; you went from happy to single in sixty seconds. Part of you is angry at him for doing this, part of you is angry at yourself for being complicit.
For the next few weeks you'll torture yourself with unanswered questions and a search for what this meant, but deep down, even now, you're sure <<if hasVisited("UKHOTPROF-5800 You need to end it")>>you did the right thing<<else>>that he was right about one thing<</if>>. It could never have worked out.
<<else>>\
On the drive home you're tingly with nerves. This relationship is probably a bad idea, but last night was amazing. And the sneaking around is kind of exciting.
<</if>>\
A short drive later, you park across the street [[from your block|UKUNI-7000 Spring 2012]]. Maryanne asks how your cousin's wedding went. You lie smoothly.
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-darkToLightKhakiFadeCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniLeggings-darkGreyCottonLeggings")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-whiteFlaredVestWithSpaghettiStraps-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You're still seeing Professor Wells secretly...although the dynamic has changed since February. You haven't spent a whole night with him since the hotel; since then, your dates always end in the single bed in your room.
There's a weird dichotomy in your relationship. Meeting up with him in some nice isolated bar feels adult and sophisticated; it's great going to places that feel totally different from the places you go with other students. Off campus, being with him makes you feel mature and sexy.
By comparison, his sneaky visits to your dorm room are starting to feel a little...tacky. You can't exactly put your finger on it, but something about having him in your room so much accentuates the "mature" thing...and not necessarily [[in a good way|UKHOTPROF-10100 Sneaking around 2]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Things aren't helped by the fact that, since that time you bumped into someone he knew at Bar Ha Ha – an encounter made a //hundred// times weirder by the fact he didn't introduce you to each other – he's become paranoid about being seen with you off campus.
The last few dates have literally just been him sneaking into your room. You have sex, hiding all the while from your housemates, then he [[slips away|UKHOTPROF-10200 Sneaking around 3]] when he thinks the coast is clear.
<</page>><<silently>>
<<set _dominantKink to $kate.kinks.random()>>
<<if _dominantKink == "exhibitionist">>
<<if $kate.quirks.includes("commando")>>
<<set _andItMatchesYourKink to "And he's sexy outside the bedroom, too; more than once he's made you attend lectures in a short skirt with no underwear, an absurdly erotic experience.">>
<<else>>
<<set _andItMatchesYourKink to "And he's sexy outside the bedroom, too; more than once he's made you attend lectures with no underwear, an absurdly erotic experience.">>
<</if>>
<<elseif _dominantKink == "masochist">>
<<set _andItMatchesYourKink to "And although he's cerebral and non-violent in his real life, in bed he instinctively uses just the right amount of hair pulling, nipple gripping and sharp slaps across your face or your ass to make you come fast and hard.">>
<<elseif _dominantKink == "submissive">>
<<set _andItMatchesYourKink to "And you both enjoy letting the authority he has over you in education play out in bed; you call him Professor during sex, and often roleplay that your assignment grades are based on your sexual performance.">>
<<else>>
<<set _andItMatchesYourKink to "(ERROR IN TEMP ANDITMATCHESYOURKINK VAR)">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It's complicated, because just being in the relationship carries an illicit thrill that's kind of addictive.
Also, the sex itself is //so good.// More than any guy you've been with, he's blown away by your body; being desired so much feels amazing. _andItMatchesYourKink
But you can't shake the feeling that being with him is wrong<<if hasVisited("UKHOTPROF-2800 Who were you calling") or hasVisited("UKHOTPROF-3800 Who did you call?") or hasVisited("UKHOTPROF-5700 Are you single?")>> – not to mention the whole girlfriend thing, which he never talks about<</if>>.
It's a dilemma. You can't talk to your friends about it, so it's hard to know what to do.
//[[Break off the affair.|UKHOTPROF-6700 Kate ends it]]//
//[[Keep it going.|UKHOTPROF-10300 Dorm fuck 2]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniNecklace-blackMediumWidthChoker")>>
<<if hasVisited ("PROVOC-1900 Lingerie show")>>
<<set $avatar.underwear.pushUnique("/foreignAdventure/surval/20_survalBra-babyBlueSilkApBra-" +$kate.braSize)>>
<<else>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-pinkAndBrownBowPlungeBra-" + $kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniSkirt-redAndBlackTartanWithBucklesMini")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-whiteTieFrontCroppedTshirt-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</silently>>\
<<header>>\
<<page>>\
One advantage of not leaving your dorm room is that you can wear whatever you like for sex. Tonight, Professor Wells requested a naughty schoolgirl look...at around 11PM there's a fingertip tap at your door; you open up, and he slips inside.
"$kate.firstName," he says, like it's the first time he's been in here. "This assignment you just turned in..."
//[Play along]// [[Yes, Professor?|UKHOTPROF-10400 Dorm fuck roleplay]]
<</page>><<silently>>
<<if $kate.uni.degreeSubject == "english">>
<<set _essayTitle to "The Major Use of Motifs and Symbolism in Where Are You Going, Where Have You Been, a Short Story by Joyce Carol Oates">>
<<elseif $kate.uni.degreeSubject == "business">>
<<set _essayTitle to "An Analysis of How GAFAM Companies Create Competitive Advantage From The Innovation Process">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _essayTitle to "The Concept of Intellectual Property and the Social, Ethical and Professional Issues It Faces">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _essayTitle to "An Introduction to Abnormal Psychology and its Three Major Groups">>
<<else>>
<<set _essayTitle to "ERROR IN TEMP ESSAYTITLE VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...yes, Professor?" you answer demurely.
"Trash." He holds up a photocopy of your recent essay, //_essayTitle, by $kate.firstName $kate.surname.// At least you hope it's a photocopy, because he's marked it with a big red ''F.'' "Utter trash. I've spoken with the Dean and he agrees: only corporal punishment is appropriate."
//[Play along]// [[(Sigh) Yes, Professor.|UKHOTPROF-10400 Dorm fuck roleplay 2]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your bed creaks as he sits on it, inviting you to take your place over his knee. His dick is already hard, you feel it press into your belly as you drape yourself over him.
He lifts up your flippy little skirt and slaps your butt. //Smack!// You let out a sharp little gasp, and his erection twitches. "Less of the theatrics, please, $kate.firstName," he says, affecting an exasperated tone. "Not your first time in this position, is it?"
"No, professor."
"That's because you're a bad girl." He slaps you across the other butt cheek, //smack!// "What are you, $kate.firstName?"
[[(Gasp) A bad girl, Professor!|UKHOTPROF-10400 Dorm fuck roleplay 3]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
So begins a long roleplaying session over the professor's knee, his erection pressing into your stomach as he rains a mix of smacks and trumped-up complaints about your academic unsuitability down on your lithe, scantily-clad form.
//Smack!// His finger <<if $kate.quirks.includes("commando")>>slips between the lips of your naked pussy, feeling how hot and wet you are<<else>>prods the gusset of your little thong, feeling how hot and wet you are under it<</if>>. You bite your lip to stifle a moan, trying your keep your voice down just in case Colin next door somehow doesn't know you're being spanked by your mystery date. "You're not supposed to be enjoying this, young lady," clucks the professor. //Smack!//
[[(Gasp) Sorry, sir!|UKHOTPROF-10400 Dorm fuck roleplay 4]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The spanking continues, alternating sometimes with phases of being fingered while his free hand slips inside your bra to grope your breasts and fondle your stiff nipples.
Your butt cheeks are glowing and your pussy is dripping wet when Professor Wells finally proclaims that it's time for your [[Oral Assessment|UKHOTPROF-10400 Dorm fuck roleplay 5]].
<</page>><<silently>>
<<set $avatar.clothing.delete("uni/20_ukUniTop-whiteTieFrontCroppedTshirt-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-whiteTieFrontCroppedTshirt-undone-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You slither down to your knees between his legs, draw out his stiff cock, and slip your mouth onto it. It feels bigger and harder than it's ever felt.
You're so turned on that you suck it urgently, as hard and fast as you'd like to be [[fucked|UKHOTPROF-10400 Dorm fuck roleplay 6]]. "Jesus," murmurs the prof, breaking character for the first time.
<</page>><<silently>>
<<avatar-stripNaked braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniNecklace-blackMediumWidthChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</silently>>\
<<header>>\
<<page>>\
Soon your bed is //creak-creak-creak//ing as Professor Wells fucks the bad girl, doggy-style.
You're ridiculously turned on and you come almost straight away. Professor Wells is right behind you in more ways than one, letting out a deeply satisfied groan as he fills the condom.
You sag down into the bed together, pressed up close on the small mattress. He grins at you and gives you a kiss.
[[I didn't really get an F, right?|UKHOTPROF-10400 Dorm fuck roleplay 7][$temp.kateSays to "justChecking"]]
[[That was so fucking hot.|UKHOTPROF-10400 Dorm fuck roleplay 7][$temp.kateSays to "thatWasHot"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "justChecking">>\
"Um...I didn't //really// get an F, right?"
"Hm?" He looks confused for a second, then laughs. "Oh, your – no no, it was really good."
"Okay," you reply. "Because I worked hard on that."
"I was just playing around. Don't worry," he cups your ass and pulls you in for a kiss, "you're straight A material. In so many ways."
<<elseif $temp.kateSays == "thatWasHot">>\
"That was so fucking hot," you murmur approvingly.
"I know, right? We should do that more."
"Definitely."
"Wear that skirt all day on campus on Thursday. No underwear."
"Yes, Professor."
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
You hang out together for an hour or so, just chatting and sharing some wine and the post-orgasmic chill. At about 1AM he judges the coast to be clear, and slips out to meet his Uber.
//[[Continue|UKUNI-7200 Freshman 15]]//
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniSkirt-blueTropicalPrintFlippyMini")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-rustVNeckShortCrinkleSleevedTop-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-tanAnkleHighStrappyFlatSandals")>>
<</silently>>\
<<header>>\
<<page>>\
It was probably inevitable the rumours would start.
At first it's subtle; students staring at you on campus or in the cafeteria, frosty looks or sharp comments from formerly friendly members of the faculty, the sense that people are talking about you...maybe even //laughing// at you...behind your back.
"Someone //fucking// reported me!" says the Professor, pounding the steering wheel in frustration. You're parked up in a quiet country road, a little way out of town; you've never seen him this angry, or this scared. "Who did you tell?"
"No one," you insist.
He stares at you angrily...then relents. "Someone probably saw me coming out of your block. //Fuck!"// he slaps the wheel again. "I've been an idiot."
//[End the affair]// [[We've got to end this.|UKHOTPROF-6700 Kate ends it]]
[[So what do we do?|UKHOTPROF-11100 What now?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"So what do we do?"
"There's no 'we!'" he snaps angrily. "Not any more. Look, just...deny everything, okay? And zero contact with me out of class. Maybe, //maybe// this'll all just blow over."
//[End the affair]// [[Okay! Stop shouting at me.|UKHOTPROF-6700 Kate ends it]]
[[Don't over-react. We just need to lay low for a bit.|UKHOTPROF-11200 Kate is a thrillseeker]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Don't over-react," you tell him.
"Over-react?" He splutters. "I'll get //fired,// $kate.firstName! And you'll get kicked out! You get that, right?"
"We need to co-ordinate, not fall apart. Let's just lay low for a while. It'll be easier when I move off campus."
Professor Wells isn't entirely sold, but he agrees to just play it cool for the next few weeks. You both practice what to say in case you're questioned, and agree on how you'll communicate from now on.
He drops you //miles// from your halls. You have to walk across half of $kate.uni.shortName just to [[get back|UKUNI-7600 Moving off campus]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-greySportsShorts")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-ecruRibbedFrontButtonedShortSleevedCropTop-" + $kate.braSize)>>
<<avatar-expr-mouth-smile>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<set $header.line2 to "2011 / AGE 19">>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MONTREUX-3000 Graduation")>>\
After nine months away, it's wonderful to be home. Roksy couldn't have been a better roommate, but it's a relief to have your own private space again. And you had no idea how much you missed the hustle and bustle of West London; Montreux's a hamlet by comparison.
<<elseif hasVisited("NAMIB-4100 Departing Namibia")>>\
After nine months away, it's wonderful to be home. England's grey skies and urban, peaceful streets are a world away from the hardships of Namibia, and you had no idea how much you'd miss your own bed or your mum's cooking.
<<elseif hasVisited("CORFU-6000 Handover")>>\
After nine months away, it's wonderful to be home. You and $temp.firstFriend agree that the best part about being back in Tottenham is sleeping in your own bed for as long as you want; and the worst part is having to pay for drinks again.
<<else>>\
ERROR IN HASVISITED() VAR
<</if>>\
It's great catching up with your family and friends, but you don't have long to reconnect with everybody. Almost as soon as you're home, it's time to pack your stuff and leave again...this time [[for university|UKUNI-1100 Arriving at uni]].
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-babyBlueCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-babyBlueAndBrownLongSleevedBaseballTop-" + $kate.braSize)>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-petrolConverseTrainers")>>
<</if>>
<<if $kate.uni.shortName == "Oxford">>
<<set $header.line1 to "''OXFORD'', OXFORDSHIRE">>
<<elseif $kate.uni.shortName == "Durham">>
<<set $header.line1 to "''DURHAM'', COUNTY DURHAM">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set $header.line1 to "''CARDIFF'', WALES">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.shortName == "Oxford">>\
<<image "/locationPhotos/uni/oxfordCity.jpg" 75 900 550 0>>\
Oxford's west of London, a 90-minute motorway cruise through an endless patchwork of green and yellow farm fields. The city itself is charming and quintessentially English, with winding streets, historic buildings, and peaceful canals and green spaces. Your first experience of the nightlife is George Street with its chain pubs and noisy crowds, but in time you'll discover that the best of Oxford's nightlife is hidden down narrow alleyways, cobbled back streets and tucked behind the medieval city walls.
The university doesn't have a main campus: instead, colleges, departments and accommodation are scattered throughout the city centre. You're studying at Magdalen College (pronounced "maudlin"), a cluster of grand medieval buildings overlooking a private meadow where a herd of deer is kept.
<<elseif $kate.uni.shortName == "Durham">>\
<<image "/locationPhotos/uni/durhamTown.jpg" 95 1000 550 0>>\
Durham is a riverside city in the far north of England, a five-hour motorway drive from London. It's a beautiful place, a fantastical jumble of soaring medieval towers and winding streets, surrounded by bucolic English countryside. The epic nightlife of Newcastle is just an 11-minute train ride away.
The university campus is a sprawling, 563 acre estate which includes dozens of colleges and other buildings, connected by a free bus service.
<<elseif $kate.uni.shortName == "Cardiff">>\
<<image "/locationPhotos/uni/cardiffBay.jpg" 125 1000 450 0>>\
A three-hour motorway drive from London, Wales's biggest city is an easy place to like. It's a modern port city, with all the trappings of a European capital: from ancient buildings and museums to ultra-modern art galleries and shopping malls. The city centre has a medieval castle to the north and a rejuvenated waterside to the south, with good shops and a vibrant, buzzy nightlife.
The university campus is in the city centre, just across a busy street from the castle.
<<else>>\
ERROR IN KATE.UNI.SHORTNAME VAR
<</if>>\
//[[Find your accommodation.|UKUNI-1200 Kate's room]]//
<</page>><<silently>>
<<if $kate.uni.shortName == "Oxford">>
<<set $header.line1 to "''MAGDALEN COLLEGE'', OXFORD">>
<<elseif $kate.uni.shortName == "Durham">>
<<set $header.line1 to "''DURHAM UNIVERSITY'', DURHAM">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set $header.line1 to "''CARDIFF UNIVERSITY'', WALES">>
<</if>>
<<if $kate.quirks.includes("single mum")>>
<<set _parentalUnitsHave to "teary-eyed mum has">>
<<else>>
<<set _parentalUnitsHave to "teary-eyed parents have">>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
Well...this is it!
<<image "/locationPhotos/uni/studentRoom.jpg" 125 1000 500 0>>\
Your _parentalUnitsHave just left you behind in your new home: a tiny and vaguely beer-scented dorm room, featuring a giant territorial stain left on the carpet for you by the previous resident.
<<link "//Unpack and explore.//" "UKUNI-1300 Communal kitchen">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You run out of storage space long before you're fully unpacked. This is a really tiny living space; where's all your stuff supposed to //go?//
After a while you venture out into the communal kitchen, psyching yourself up to meet some of your new housemates.
<<if $kate.attributes.extraversion.level gt 0>>\
You're nervous at first, but once you've broken the ice they're easy to talk to; it helps that you've all got one thing in common already, of course.
<<elseif $kate.attributes.extraversion.level == 0>>\
You're nervous at first, but at least you've all got one thing in common already.
<<else>>\
You were dreading this part, but at least you've all got one thing in common already.
<</if>>\
Over the next few days, everybody makes civilised small talk while sizing the others up for BFF or romantic potential. There are a couple of weirdos...but [[early signs|UKUNI-1400 Freshers Week]] are good.
<</page>><<silently>>
<<set $avatar.underwear.delete("uni/10_ukUniSocks-babyBlueCottonTrainerSocks")>>
<<set $avatar.clothing.delete("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.delete("uni/20_ukUniTop-babyBlueAndBrownLongSleevedBaseballTop-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-brownSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-ecruFloralLongSleevedTop-" + $kate.braSize)>>
<<if not $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.delete("uni/20_ukUniShoes-petrolConverseTrainers")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-ecruSlipOnFlatShoesWithTanSoles")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.shortName == "Oxford">>\
<<image "/locationPhotos/uni/oxfordUniversity.jpg" 160 1000 650 0>>\
<<elseif $kate.uni.shortName == "Durham">>\
<<image "/locationPhotos/uni/durhamCampus.jpg" 100 1000 400 0>>\
<<elseif $kate.uni.shortName == "Cardiff">>\
<<image "/locationPhotos/uni/cardiffCampus1.jpg" 100 1000 500 0>>\
<</if>>\
The first week – Freshers Week – is a whirlwind! As well as settling into the halls, getting your ID card, and trying to find your introductory lectures, every club and society on campus is trying to attract you to join.
You roam around fresher fairs where stalls give out free t-shirts, pens and pizza. The whole campus feels like one big thronging celebration, and you meet way more $kate.uni.shortName students this week than you'll ever be able to remember.
<<if hasVisited("UKYOUTH-7100 Sports Star")>>\
//[Sporty] [[Try out for the volleyball team.|UKUNI-1500 Kate's hobby][$kate.uni.hobby to "volleyball"]]//
<<else>>\
//<span class="greyedOut">[Sporty] Try out for the volleyball team.</span>//
<</if>>\
<<if $kate.attributes.extraversion.level gt 0>>\
//[Extraverted] [[Audition for the theatre society.|UKUNI-1500 Kate's hobby][$kate.uni.hobby to "actress"]]//
<<else>>\
//<span class="greyedOut">[Extraverted] Audition for the theatre society.</span>//
<</if>>\
<<if hasVisited("UKYOUTH-7200 Geek Girl")>>\
//[D&D player] [[Join a D&D group.|UKUNI-1500 Kate's hobby][$kate.uni.hobby to "d&d"]]//
<<else>>\
//<span class="greyedOut">[D&D player] Join a D&D group.</span>//
<</if>>\
<<if hasVisited("UKYOUTH-7400 Rock Chick")>>\
//[Bass guitarist] [[Audition for a band.|UKUNI-1500 Kate's hobby][$kate.uni.hobby to "rockStar"]]//
<<else>>\
//<span class="greyedOut">[Bass guitarist] Audition for a band.</span>//
<</if>>\
<<if $kate.attributes.daring.level gte 0>>\
//[Daring] [[Join the Army Officer Training Corps.|UKUNI-1500 Kate's hobby][$kate.uni.hobby to "cadet"]]//
<<else>>\
//<span class="greyedOut">[Daring] Join the Army Officer Training Corps.</span>//
<</if>>\
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-blackAndOrangeFuckMeFreshersTshirt-" + $kate.braSize)>>
<<if $kate.firstName == "Kat" or $kate.firstName == "Cat" or $kate.firstName == "Katherine" or $kate.firstName == "Catherine" or $kate.firstName == "Kathy" or $kate.firstName == "Cathy">>
<<set _cat to "Abi">>
<<else>>
<<set _cat to "Cat">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.hobby == "volleyball">>\
<<getKatesHighSchool>>\
All the sports clubs have sign-up stands dotted around the campus. You're drawn to the $kate.uni.shortName Volleyball stand - _highSchoolShortName didn't have a volleyball team, but you liked the sport when you got to play.
The two third-year students manning the stand are both very good looking, radiating the attractive alpha energy of the confident athlete. The girl, _cat, perks up when you tell her you're an ex-netballer. "Oh, me too!" she enthuses. "You should definitely try out, it's a //super// workout."
If her sculpted shoulders and long lean legs are anything to go by, she's telling the truth. You sign up for the try outs, wondering if this is something you'll be good at.
<<elseif $kate.uni.hobby == "actress">>\
A poster on a noticeboard tells you that the theatre group is auditioning actors for a production of Macbeth.
You've played Lady Macbeth before! It was a school production – and it used simplified modern English instead of the original Shakespearean – but you know the story well and you're sure you could learn the part.
You note down the website, and check out the audition details later. You'll have to perform her monologue from Act 1, Scene 5, and also do a cold read of another monologue that you'll be given on the day.
//What the hell.// You book an audition slot. You have two weeks to learn your lines! It's daunting, but exciting.
<<elseif $kate.uni.hobby == "d&d">>\
A poster on a campus noticeboard stops you dead in your tracks.
//WANTED: BRAVE ADVENTURERS// it begins, going on to offer a reward in Gold Pieces and Experience Points to all those brave enough to quest for the Rod of Seven Parts (every Tuesday at 6PM in room Y204 of the Science Department).
You haven't played D&D for years, and something about seeing the jargon makes you miss your days as a peasant-farmgirl-turned-adventuress, boldly plundering tombs and slaying goblins.
There's no number on the poster, so you'll just have to turn up to room Y204 next week to see what it's all about. You put a note into your phone to remind you.
<<elseif $kate.uni.hobby == "rockStar">>\
A poster on a noticeboard says that Death From Above is looking for a new bassist. They list their influences as Led Zep, Soundgarden and tequila. //Hmm...sounds promising.//
You speak with their drummer on the phone; he books you in for an audition next week, and emails you a couple of tracks to learn. The tracks are actually really good – way better than anything you wrote for Naked Tuna – and the singer has a much more powerful voice than Tom.
You jam along to the tracks every night in your room to get ready for the audition. This is when you learn that the walls in your block are paper thin; your next-door neighbour Colin can hear you playing the bass, even without an amp. Luckily he doesn't seem to mind; he says it's cool that you're a musician.
<<elseif $kate.uni.hobby == "cadet">>\
$temp.firstFriend once tried to get you to join the Army Cadets with her (on the grounds it would be a good way to meet fit boys). You refused then, but something about the UOTC recruitment stand on campus draws you in.
The soldier manning the stand has an easy charm and a soft Scottish accent that reminds you of your driving instructor.
"It's about gettin' a wee taste of the Army," he explains. You'll be trained in military skills and get to take part in adventure training activities like kayaking and rock climbing; but there's no commitment to actually join the Army after your degree.
He talks up the social side – there's a subsidised bar, and regular Regimental dinners and theme nights – then drops the clincher: you get paid £40 for every training day you attend. "Nice wee top-up of yer drinkin' money, eh?"
//What the hell.// You add your details to a list of names – mostly boys, you notice. Maybe $temp.firstFriend was right about the Army Cadets...
<<else>>\
(ERROR IN KATE.UNIHOBBY VAR)
<</if>>\
//[[Continue|UKUNI-1600 Fresher Pressure]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-pinkAndBrownBowStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-pinkAndBrownBowPlungeBra-" + $kate.braSize)>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackSheerNarrowBlackBand-highHeels")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-blackBodyconSleevelessMiniDress-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<if $kate.uni.shortName == "Oxford">>
<<set $header.line1 to "''THE RAM,'' OXFORD">>
<<elseif $kate.uni.shortName == "Durham">>
<<set $header.line1 to "''THE RAM,'' DURHAM">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set $header.line1 to "''THE RAM,'' CARDIFF">>
<</if>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
It calms down a little after Freshers Week, but for now every day ends in an organised or impromptu drinking session. A seven-day drinking binge is a rite of passage for $kate.uni.shortName freshers, and the week is a blur of student nights, parties and pub crawls. <<if hasVisited("CORFU-6000 Handover")>>It reminds you of Corfu, except this time you're not just orchestrating the carnage, you're living it.<</if>>
Hard drinking's normal here. So is hooking up...or at least that's what Simon, a charming third-year politics student, tells you as kicking-out time approaches at The Ram.
He's confident and ruggedly handsome, easily the hottest guy to hit on you in Freshers Week. You noticed each other earlier, and had a drunken snog up against a wall, after bumping into each other in the corridor outside the loos.
"You've got beautiful eyes," he coos, leaning into your ear and playing with your hair. "C'mon, let's go back to halls."
<<if $kate.quirks.includes("easy")>>\
<span class="greyedOut">//[Too Easy] Go home alone.//</span>
<<else>>\
//[Not Easy] [[Go home alone.|UKUNI-3100 Kate preserves her honour]]//
<</if>>\
//[[Go home with Simon.|UKUNI-1700 Walking home with Simon]]//
<</page>><<silently>>
<<if $kate.uni.shortName == "Oxford">>
<<set $header.line1 to "''MAGDALEN COLLEGE'', OXFORD">>
<<elseif $kate.uni.shortName == "Durham">>
<<set $header.line1 to "''DURHAM UNIVERSITY'', DURHAM">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set $header.line1 to "''CARDIFF UNIVERSITY'', WALES">>
<</if>>
<<set $npc1 to {},
$npc1.isWearing to []>>
<<if $kate.uni.shortName == "Oxford">>
<<set _flagstones to "ancient flagstones of Magdalen College">>
<<elseif $kate.uni.shortName == "Durham">>
<<set _flagstones to "ancient flagstones of Durham University">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set _flagstones to "century-old flagstones of Cardiff University">>
<</if>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You walk back to your halls hand-in-hand with Simon, your heels clicking noisily on the _flagstones as you approach your block.
You swipe into your building, and lead him up to your room. A waft of vanilla greets you as you open your door; you've been burning scented candles non-stop to get rid of the beer smell.
[[Come in.|UKUNI-1750 Simon enters Kate's room]]
<<if $kate.attributes.conscientiousness.level lt 0>>\
//[Unconscientious]// [[Sorry it's a mess.|UKUNI-1750 Simon enters Kate's room][$temp.kateSays to "sorryAboutTheMess"]]
<<else>>\
<span class="greyedOut">//[Unconscientious]// Sorry it's a mess.</span>
<</if>>\
<</page>><<silently>>
<<if $kate.quirks.includes("rockChick")>>
<<set _music to "Pixies">>
<<else>>
<<set _music to "Little Mix">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "sorryAboutTheMess">>\
<<set $npc1.thinksKateIsASlob to true>>\
"Sorry it's a mess," you say, hurrying inside to kick a laundry pile under your bed and out of sight. "I'm still unpacking."
"It's fine." He follows you inside – the first man you've had back to your little room.
<<else>>\
"Come in," you smile and lead him inside – the first man you've had back to your little room.
<</if>>\
Simon takes a seat on your bed, making it squeak under his tall, muscular frame. He gazes around at your things while you light another vanilla candle, and put some _music on your music player. <<if $kate.quirks.includes("rockChick")>>"Nice guitar," he says, admiring your bass in its stand.<<else>>"Cool photos," he says.<</if>>
<<link "//Join him on your bed.//" "UKUNI-1800 Kate joins Simon on the bed">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-pinkAndBrownBowStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-pinkAndBrownBowPlungeBra-" + $kate.braSize)>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackSheerNarrowBlackBand-barefoot")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-blackBodyconSleevelessMiniDress-" + $kate.braSize)>>
<<avatar-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you say, putting a heel up on your chair to reach the zip, <<if $kate.quirks.includes("rockChick")>>"I was in a band."<<else>><<if hasVisited("MONTREUX-3000 Graduation")>>"That's Lake Geneva."<<elseif hasVisited("NAMIB-4100 Departing Namibia")>>"That's Namibia, I did some volunteering."<<elseif hasVisited("CORFU-6000 Handover")>>"I was a holiday rep, that's Corfu."<<else>>ERROR IN HASVISITED VAR<</if>><</if>> You peel off your boots, then join Simon on the squeaky bed.
He's really very handsome, in a slick and mainstream sort of way, and he's studying politics<<if $kate.uni.shortName == "Oxford" or $kate.uni.shortName == "Durham">> at $kate.uni.shortName<</if>>. Maybe you have a future Prime Minister in your room...
<<link "//Make out.//" "UKUNI-1900 Kate/Simon makeout">><</link>>
<</page>><<silently>>
<<avatar-expr-eyelid-closed>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Sitting side-by-side, you kiss each other softly to a soundtrack of <<if $kate.quirks.includes("rockChick")>>jagged jangly guitars and steady tuneful basslines<<else>>synthy drums and perfect pop harmonies<</if>>.
Now you're in private, things escalate very fast. He cups and squeezes your breasts through your dress, plucking confidently at your nipples as they stiffen, then his hand moves down to roam all over your slippery smooth, nylon-clad thighs.
<<link "//Make out and let him touch you.//" "UKUNI-1950 Tights down">><</link>>
<</page>><<silently>>
<<set $avatar.underwear.delete("uni/10_ukUniStockings-blackSheerNarrowBlackBand-barefoot")>>
<<set $avatar.underwear.push("uni/10_ukUniTights-pulledDown")>>
<</silently>>\
<<header>>\
<<page>>\
You kiss like that for a while, enjoying the thrill of getting acquainted with his mouth and his hands. His body feels solid and muscular through his shirt.
//Creeeak// goes the bed as he stands up, moving in front of you. His fingers snake up under your dress, curling inside the waistband of your tights, tugging them down.
You lift your butt instinctively, letting him peel the stretchy nylon down your thighs, baring your legs to the knee. <<if not $kate.quirks.includes("commando")>>Your knickers came down with them too.<</if>> His eyes lock with yours, intense and full of desire.
[[I don't normally do this on a first date...|UKUNI-2000 Simon fingers Kate][$temp.kateSays to "imAGoodGirl"]]
//[[Gaze back sexily.|UKUNI-2000 Simon fingers Kate][$temp.kateSays to "nothing"]]//
<</page>><<silently>>
<<set $avatar.underwear.delete("uni/10_ukUniTights-pulledDown")>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "imAGoodGirl">>\
<<silently>>
<<avatar-expr-eyelid-normal>>\
<<avatar-expr-eyebrows-raised>>\
<</silently>>\
"I don't normally do this..." you begin.
"Shhhh," he replies, his tone soothing.
<<elseif $temp.kateSays == "nothing">>\
<<silently>>
<<avatar-expr-eyelid-squint>>\
<</silently>>\
You fix him with your best smouldering, sexy look.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
He slides your tights <<if not $kate.quirks.includes("commando")>>and underwear <</if>> down to your ankles and off your feet. He tosses them aside carelessly, then – //creeeak// – climbs back onto the bed with you.
You make out some more, this time with your legs apart and his hand twitching between them, a big masculine middle finger fondling your wet pussy [[as you kiss|UKUNI-2100 Optional foreplay]].
<</page>><<silently>>
<<set $avatar.underwear.delete("uni/30_ukUniPants-pinkAndBrownBowStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-pinkAndBrownBowPlungeBra-" + $kate.braSize)>>
<<set $avatar.clothing.delete("uni/20_ukUniDress-blackBodyconSleevelessMiniDress-" + $kate.braSize)>>
<<avatar-normal>>
<<avatar-expr-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Soon your dress comes off and you're peeling him out of his clothes. He has the body of a rugby player, stocky and powerful, with big sculpted thighs.
His dick's already hard, making a tentpole in his stripy boxers.
<<link "//Go down on him first.//" "UKUNI-2200 Pre-sex BJ">><</link>>
<<link "Have you got a condom?" "UKUNI-2400 Condom negotiation">><</link>>
<<if $kate.quirks.includesAny("laxCondomPolicy", "gentlemansChoiceCondomPolicy")>>\
//[Lax condom policy] [[Don't bother with protection.|UKUNI-2600 Penetrated]]//
<<else>>\
<span class="greyedOut">//[Lax condom policy] Don't bother with protection.//</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.kinks.includes("submissive")>>\
You slide off the bed, onto your knees between his legs, the floorboards hard through the thin carpet.
<<else>>\
You guide Simon onto his back, then shuffle down the bed – //creak, creak, creak// – so you're level with his groin. Your bed's so narrow that your feet dangle over the side.
<</if>>\
He lifts his hips to let you tug down his boxer shorts, and you get your first look at his nakedness. His pubic hair is neatly clipped, and his dick is just the right size – big, but not //too// big. It feels pleasingly stiff and thick in your hand.
You dip your head and guide it [[into your mouth|UKUNI-2250 BJ roll]].
<</page>><<silently>>
<<avatar-bjFace>>
/* BJ CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _skillMod to $kate.skills.sexpert.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Beauty"])>>
<<if $kate.skills.sexpert.level == -4>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexual inexperience"])>>
<<else>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexpert skill"])>>
<</if>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END BJ CHECK */
<</silently>>\
<<header>>\
<<page>>\
Simon murmurs approvingly as your mouth bobs gently up and down on his cock, soft and wet.
He's too big to take all the way inside, so you just concentrate on pleasuring the parts you can reach. Breathing through your nose, you suck and slide rhythmically up and down on the tip, hoping that he's enjoying it.
After a little while of this, his hand moves onto the back of your head and pushes you – none too gently – further down on his dick. His cock touches the back of your throat, making you gag. "Mmh, yeah," he murmurs, letting you go. "Like that."
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>BJ CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to give good head. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>BLOWJOB</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>BJ CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>BJ CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKUNI-2300 Kate/Simon BJ]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKUNI-2300 Kate/Simon BJ]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.diceRollOutcome == "success">>\
You come up for a little air...then go down again, deeper this time, trying to take more of him into your mouth.
It's not what you're used to and it's not easy – it makes you gag when you take in too much – but it's exciting to try something new.
And Simon seems to love it, murmuring encouragement whenever you go deep enough to make yourself gag, giving your head a firm encouraging push if you haven't done so in a while. You can feel his cock turning //rock// hard inside your mouth.
He's hard, you're wet; it's time for the main event. Your mouth comes off his cock with a wet //pop,// then <<if $kate.kinks.includes("submissive")>>join him on your bed<<else>>move back up in the bed<</if>>.
<<else>>\
You come up for a little air then get back to work, sucking and slurping on the tip of his dick.
Simon's hand moves back onto the back of your head, pushing you down on it. //Gluck,// you splutter, coming back up with a gasp. "Ah yeah," murmurs Simon breathily.
//Suck...push...gluck. Like that. Suck...push...gluck. Oh yeah.// It's hard work for a girl who's not a porn star, but you can't argue with the results; you can feel his cock turning //rock// hard in your mouth.
Mercifully, he's soon ready for the main event. Your mouth comes off his cock with a wet //pop,// then <<if $kate.kinks.includes("submissive")>>join him on your bed<<else>>move back up in the bed<</if>>.
<</if>>\
<<link "Have you got a condom?" "UKUNI-2400 Condom negotiation">><</link>>
<<if $kate.quirks.includesAny("laxCondomPolicy", "gentlemansChoiceCondomPolicy")>>\
//[Lax condom policy] [[Don't bother with protection.|UKUNI-2600 Penetrated]]//
<<else>>\
<span class="greyedOut">//[Lax condom policy] Don't bother with protection.//</span>
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairPonytail>>
/* CONDOM NEGOTIATION */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to random(1,10)>> /* npc rolls 1d10 */
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to 0 - $kate.attributes.agreeableness.level>>
<<set _skillMod to $kate.skills.charmer.level>>
<<set _simonLooksMod to -1>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Agreeableness"])>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Charmer skill"])>>
<<set _diceRollModifiers.pushUnique([_simonLooksMod , "Simon hotness"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod + _simonLooksMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result == _diceRollTarget>>
<<set _success to "tie">>
<<elseif _result gt _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END CONDOM NEGOTIATION */
<</silently>>\
<<header>>\
<<page>>\
"Have you got a condom?" you ask as you take off your bra.
"Oh, c'mon," he protests as he's manoeuvring you onto your back, "it'll ruin it."
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>''NEGOTIATION CHECK''</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to persuade Simon to wear a condom. You need to roll <b>higher than Simon</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed. //Simon will roll 1D10.//
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PERSUADE HIM</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success == "tie">>
<h3>''NEGOTIATION CHECK...//TIE!//''</h3>
<hr>
<<elseif _success>>
<h3>''NEGOTIATION CHECK...//PASS!//''</h3>
<hr>
<<else>>
<h3>''NEGOTIATION CHECK...//FAIL!//''</h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Simon rolled: <b>_diceRollTarget</b>. You rolled: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success == "tie">><<set _success to either(true,false)>>Tie! Coin toss...<<if _success>>won.<<else>>lost.<</if>> <</if>><<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
//[[You win.|UKUNI-2500 Condom decision][$temp.kateSays to "success"]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Simon wins.|UKUNI-2500 Condom decision][$temp.kateSays to "failure"]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "success">>\
<<set $npc1.isWearing.pushUnique("condom")>>\
"Condom or we stop right here."
You can tell he wants to complain, but his desire to [[fuck you|UKUNI-2600 Penetrated]] wins out over getting his way. He retrieves a condom from his jeans and fumbles the wrapper open.
<<elseif $temp.kateSays == "failure">>\
<<if $kate.quirks.includes("onThePill")>>\
"Wait wait wait," you protest, "we should use a con..."
"I know," he grins, pushing your knees apart.
<<else>>\
"I'm not on the pill," you warn him.
"Don't worry," he says, pushing your legs apart. "I'll pull out."
<</if>>\
And that's it. He swishes the tip of his cock between your wet lips, then [[pushes it up inside you|UKUNI-2600 Penetrated]], bareback.//
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairPonytail>>
/* SEXPERT CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _skillMod to $kate.skills.sexpert.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Beauty"])>>
<<if $kate.skills.sexpert.level == -4>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexual inexperience"])>>
<<else>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Sexpert skill"])>>
<</if>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
<<set _npcDiceRoll to random(1,10)>>
<<if _npcDiceRoll gte 6>>
<<set _npcSuccess to true>>
<</if>>
/* END SEXPERT CHECK */
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKUNI-2500 Condom decision") and $temp.kateSays == "failure">>Now<<else>>Soon<</if>> you're on your back in your narrow bed, with Simon's <<if not $npc1.isWearing.includes("condom")>>naked <</if>>cock sliding into you for the first time.
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>''SEXUAL PERFORMANCE CHECK''</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to make him come in this position. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed. //Simon will also make a sexual performance check.//
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>MISSIONARY POSITION</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>''SEXUAL PERFORMANCE CHECK...<i>PASSED!</i>''</h3>
<hr>
<<else>>
<h3>''SEXUAL PERFORMANCE CHECK...<i>FAILED!</i>''</h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success and _npcSuccess>>/*Links to succes and/or failure page*/
//[[Continue|UKUNI-2700 Kate/Simon sex scene][$temp.kateSays to "mutual"]]//
<<elseif _success>>
//[[Continue|UKUNI-2700 Kate/Simon sex scene][$temp.kateSays to "kate"]]//
<<elseif _npcSuccess>>
//[[Continue|UKUNI-2700 Kate/Simon sex scene][$temp.kateSays to "simon"]]//
<<else>>
//[[Continue|UKUNI-2700 Kate/Simon sex scene][$temp.kateSays to "mutualFail"]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You gasp and squeeze his shoulders as he fills you up. Soon your bed squeaks noisily in time with his thrusts.
If he's in, your next-door neighbour Colin will definitely be able to hear you getting nailed on the other side of the thin connecting wall...but right now you don't care. It feels so good being under Simon's big, powerful body, his thick cock pumping rhythmically inside you<<if $npc1.isWearing.includes("condom")>>.<<else>>, bareback.<</if>>
<<if $temp.kateSays == "mutual">>\
<<silently>>
<<avatar-orgasmFace>>\
<</silently>>\
You cling to his arms, loving the passion and the energy he's fucking you with. After just a few minutes, you can't hold back: you bite on your hand to muffle your voice so Colin doesn't hear you //scream// when you come.
Simon doesn't last long after that. <<if not $npc1.isWearing.includes("condom")>>He pulls out at the last moment, splashing a thick load of cum across your slender belly<<else>>He groans in deep satisfaction as he fills the condom inside you<</if>>. "Whew," he gasps, "that was great." <<if $npc1.isWearing.includes("condom")>>He peels off the used condom and dumps it in your wastepaper bin.<</if>>
Your bed //creaks// as he settles down beside you, sharing your pillow, tired after his exertion. A little later, you're [[both asleep|UKUNI-2800 Title card]].
<<elseif $temp.kateSays == "kate">>\
<<silently>>
<<avatar-sexFace>>\
<</silently>>\
You cling to his arms, loving the passion and the energy he's fucking you with. If he keeps this up for just a couple of minutes, you'll definitely...
"Mmmh!" he cries out, his thrusting suddenly erratic. //"Fuck!"//
<<if not $npc1.isWearing.includes("condom")>>\
He pulls out at the last moment, splashing a thick load of cum across your slender belly. You gaze up at him in surprise, your pussy feeling suddenly empty and unsatisfied; he just grins down blithely. "Whew! That was great," he says.
<<else>>\
Groaning in deep satisfaction, he thrusts inside you a few more times...then slides out of you. He peels off the used condom and dumps it in your wastepaper basket.
"That was great," he says, climbing back into bed.
<</if>>\
Your bed //creaks// as he settles down beside you, sharing your pillow, tired after his exertion. A little later, you're [[both asleep|UKUNI-2800 Title card]].
<<elseif $temp.kateSays == "simon">>\
<<silently>>
<<avatar-orgasmFace>>\
<</silently>>\
You cling to his arms, loving the passion and the energy he's fucking you with. After just a few minutes, you can't hold back: you bite on your hand to muffle your voice so Colin doesn't hear you //scream// when you come.
Afterwards you change position, Simon on his back, you sitting up and riding his cock, cowgirl-style. Up and down you bounce, his gaze roaming all over your face and body as you work to get him off. <<if $kate.braSize == "large">>He chuckles at the way your boobs spring up and down, and you self-consciously steady them with your arm; he grasps your wrist and pulls your arm down, wanting to watch them bounce.<</if>>
//Squeak-squeak-squeak// goes the bed under your weight. You ride him like this for several minutes until he finally comes<<if $npc1.isWearing.includes("condom")>> inside you, groaning in deep satisfaction as he fills the condom<<else>>. You barely manage to slip off him in time to avoid getting "creampied"; he squirts his cum all over your crotch and up your thigh instead.<</if>>
"Whew," he gasps, "that was great." <<if $npc1.isWearing.includes("condom")>>He peels off the used condom and dumps it in your wastepaper bin.<</if>>
Your bed //creaks// as he settles down beside you, sharing your pillow, tired after his exertion. A little later, you're [[both asleep|UKUNI-2800 Title card]].
<<else>>\
<<silently>>
<<avatar-sexFace>>\
<</silently>>\
You cling to his arms, loving the passion and the energy he's fucking you with. If he keeps this up for just a couple of minutes, you'll definitely...
Without warning, he pulls out and manhandles you into a new position: Simon on his back, you sitting up and riding his cock, cowgirl-style. Up and down you bounce, his gaze roaming all over your face and body as you work to get him off. <<if $kate.braSize == "large">>He chuckles at the way your boobs spring up and down, and you self-consciously steady them with your arm; he grasps your wrist and pulls your arm down, wanting to watch them bounce.<</if>>
//Squeak-squeak-squeak// goes the bed under your weight. You find it harder to come in this position, but Simon loves it. It's not long until he comes<<if $npc1.isWearing.includes("condom")>> inside you, groaning in deep satisfaction as he fills the condom<<else>>. You barely manage to slip off him in time to avoid getting "creampied"; he squirts his cum all over your crotch and up your thigh instead.<</if>>
"Whew," he gasps, "that was great." <<if $npc1.isWearing.includes("condom")>>He peels off the used condom and dumps it in your wastepaper bin.<</if>>
Your bed //creaks// as he settles down beside you, sharing your pillow, tired after his exertion. A little later, you're [[both asleep|UKUNI-2800 Title card]].
<</if>>\
<</page>><<page>>\
[[EARLY NEXT MORNING...|UKUNI-2900 MORNING AFTER]]
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.background.pushUnique("uni/20_ukUniPillow")>>
<<set $avatar.clothing.pushUnique("uni/60_ukUniDuvet-DuvetAndArm-fair")>>
<<if $kate.tattoos.includes("rightForearmRosesSleeve")>>
<<set $avatar.clothing.pushUnique("uni/65_ukUniDuvetPose-tattoo-rightForearmRosesSleeve")>>
<</if>>
<<if $kate.tattoos.includes("rightHandPaperPlane")>>
<<set $avatar.clothing.pushUnique("uni/65_ukUniDuvetPose-tattoo-rightHandPaperPlane")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You wake up with a sore head and an empty bed.
Simon's up and moving; you watch groggily as he quietly slips back into last night's clothes.
<<link "//Offer him your number.//" "UKUNI-2950 Call me maybe">><</link>>
<<link "//Let him go.//" "UKUNI-3000 One night stand outcome">><<set $temp.kateSays to "letHimGo">><</link>>
<</page>><<silently>>
/* SEDUCTION CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to $kate.attributes.beauty.level>>
<<set _diceRollModifiers.pushUnique([_attributeMod , "Beauty"])>>
<<set _slutMod to -1>>
<<set _diceRollModifiers.pushUnique([_slutMod , "Thinks you're a slut"])>>
<<if $npc1.thinksKateIsASlob>>
<<set _slobMod to -1>>
<<set _diceRollModifiers.pushUnique([_slobMod , "Thinks you're a slob"])>>
<<else>>
<<set _slobMod to 0>>
<</if>>
<<if $kate.hairColour == "blonde">>
<<set _blondeMod to +1>>
<<set _diceRollModifiers.pushUnique([_blondeMod , "Likes blondes"])>>
<<else>>
<<set _blondeMod to -1>>
<<set _diceRollModifiers.pushUnique([_blondeMod , "Prefers blondes"])>>
<</if>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _slutMod + _slobMod + _blondeMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END SEDUCTION CHECK */
<</silently>>\
<<header>>\
<<page>>\
"Hey," you smile tiredly.
"Hey."
You reach up to the bedside for your phone. "You want my number?"
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>''SEDUCTION CHECK''</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to see if he wants to see you again. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>OFFER YOUR NUMBER</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>''SEDUCTION CHECK...<i>PASSED!</i>''</h3>
<hr>
<<else>>
<h3>''SEDUCTION CHECK...<i>FAILED!</i>''</h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKUNI-3050 Kate bags a fuck buddy]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKUNI-3000 One night stand outcome][$temp.kateSays to "fuckedAndChucked"]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "fuckedAndChucked">>\
"Nah, that's okay," he says dismissively, a little smirk playing on his face. Smug little fucker. <<if $kate.attributes.neuroticism.level lt 0>>//Whatever, it's his loss.//<<else>>//That's okay?! What the hell does that mean?//<</if>>
He dresses and leaves without saying another word. You see him around on campus from time to time, but he just blanks you.
You later find out you were an unwitting part of the $kate.uni.shortName Rugby Club's annual "Fuck A Fresher" competition.
<<elseif $temp.kateSays == "letHimGo">>\
You watch him get dressed and leave. He doesn't say goodbye, or even look at you. <<if $kate.attributes.neuroticism.level lt 0>>//Whatever...it's his loss.//<<else>>When you door clicks shut you feel like you could cry.<</if>>
You see him around on campus from time to time, but he just blanks you. You later find out you were an unwitting part of the $kate.uni.shortName Rugby Club's annual "Fuck A Fresher" competition.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<link "//Continue//" "UKUNI-3200 Hobby tryout">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," he shrugs.
"Um...don't let me twist your arm."
He grins at that. "Sorry. It's just..." he comes back to the bed and kisses you on the cheek. "Never mind, call me. //07762..."//
You see him a couple of times again over the next few weeks. You quickly realise that he's not interested in you as a girlfriend – it'll be a purely physical, "no strings" kind of thing if you keep it going.
<<link "//That works.//" "UKUNI-3200 Hobby tryout">><<set $temp.kateIsSimonsSideChick to true>><</link>>
<<link "//He can get his kicks somewhere else.//" "UKUNI-3200 Hobby tryout">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Making out with him is okay...but you're not ready to go home and have sex with a guy you've only just met. "I'm not like that," you tell him.
"C'mon, it's Freshers," he coaxes, giving your boob a little squeeze. "You're supposed to get wild." But you hold out, and go back to your room alone.
"Prick tease," is the last thing he says to you. You see him around on campus from time to time, but he blanks you. You later find out the $kate.uni.shortName Rugby Club, which he's part of, holds an annual "Fuck A Fresher" challenge...you narrowly avoided being an unwitting participant.
<<link "//Continue//" "UKUNI-3200 Hobby tryout">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.hobby == "volleyball">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("teenRom/30_sportyTop-hotPinkLooseCroppedVestNoGames-" + $kate.braSize)>>
/* <<set $avatar.underwear.pushUnique("foreignAdventure/africa/10_africaShorts-lightGreyLycraCyclingShorts")>> */
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-greySportsShorts")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniKneepads-blackVolleyballKneepads")>>
<<set $avatar.foreground.pushUnique("uni/60_ukUniVolleyball-volleyball")>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-whiteAndBlackAnkleSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndEcruTrainers")>>
<</silently>>\
The volleyball try-outs are on you before you know it. Turning up is intimidating, especially that bit at the start when everybody's sizing each other up before the session begins.
It starts with a pretty tough warm-up and then, when everyone's blood is pumping, the coach leads you through a set of basic drills then some short practice sets, rotating you all through the different positions on court. You're no expert, but you realise you've got an advantage here – some of the other girls have never even played volleyball before.
//[[Help the rookies.|UKUNI-3300 Hobby tryout 2][$temp.kateSays to "leader"]]//
//[[Exploit their weaknesses in play.|UKUNI-3300 Hobby tryout 2][$temp.kateSays to "killer"]]//
//[[Just follow instructions.|UKUNI-3300 Hobby tryout 2][$temp.kateSays to "follower"]]//
<<elseif $kate.uni.hobby == "actress">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.underwear.pushUnique("teenRom/10_rockerSocks-blackCottonTrainerSocksWithGreyCuffs")>>
<<set $avatar.underwear.pushUnique("teenRom/30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/20_rockerJeans-darkBlueDenimRippedSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("teenRom/30_rockerTop-blackAndRedSkinnyfitSlipknotTshirt-"+$kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.underwear.pushUnique("teenRom/10_geekSocks-blackCottonTrainerSocksWithGreyCuffs")>>
<<set $avatar.underwear.pushUnique("teenRom/30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/30_geekTop-PinkFlaredVestNatural20-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/20_geekJeans-darkBlueDenimSkinnyJeans")>>
<<elseif $kate.quirks.includes("sportsStar")>>
<<set $avatar.underwear.pushUnique("teenRom/10_sportySocks-hotPinkCottonTrainerSocksWithPalePinkCuffs")>>
<<set $avatar.underwear.pushUnique("teenRom/30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/30_sportyTop-hotPinkLooseCroppedVestNoGames-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/20_sportyJeans-darkBlueDenimSkinnyJeans")>>
<<else>>/*alpha*/
<<set $avatar.underwear.pushUnique("teenRom/30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/30_alphaTop-whiteCottonFlaredVestWithSpaghettiStraps-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/20_alphaJeans-darkBlueDenimSkinnyJeans")>>
<</if>>
<</silently>>\
//"The raven himself is hoarse
That croaks the fatal entrance of Duncan
Under my battlements..."//
Your acting audition is rushing up fast. Your next-door neighbour, Colin, hears you practising your lines night after night through the thin separating wall; he ends up coming round to help you as a prompter.
He doesn't understand the Shakespearean language at all. Explaining it to him helps clarify the monologue in your own mind; Lady Macbeth is psyching herself up, calling on spirits to help remove her goodness and make her capable of the evil plot she's hatching.
Once Colin understands what's going on, he loves it: "Wow. This is like...the OG Game of Thrones. I'm sure you'll get this!"
You're not sure how best to play it. Lady Macbeth is alone on stage for this speech, so how does that affect your monologue? Is she [[whispering, scared of being overheard?|UKUNI-3300 Hobby tryout 2][$temp.kateSays to "subtle"]] Or [[confident and calling out to the heavens?|UKUNI-3300 Hobby tryout 2][$temp.kateSays to "bold"]]
<<elseif $kate.uni.hobby == "d&d">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-babyBlueCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-ecruFloralLongSleevedTop-" + $kate.braSize)>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-petrolConverseTrainers")>>
<</if>>
<</silently>>\
You feel nervous about playing D&D with a bunch of complete strangers. You pause at the door of room Y204 of the Science Department, feeling a strong urge to keep walking instead instead of entering.
You take a deep breath, twist the handle, and push.
Inside, the first thing you notice is a familiar face: Colin, your next-door neighour from the block. He's sat at a table with six other very geeky-looking guys, all staring up at you. "$kate.firstName?" he says, surprised to see you. "Is...everything alright?"
[[Yeah, I came to play D&D?|UKUNI-3300 Hobby tryout 2]]
<<elseif $kate.uni.hobby == "rockStar">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("teenRom/20_rockerJeans-darkBlueDenimRippedSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("teenRom/30_rockerTop-blackAndRedSkinnyfitSlipknotTshirt-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<</silently>>\
Your bass audition is on you before you know it. You arrive at Rocking Horse Rehearsal Rooms with your bass and a stomach full of butterflies, and meet Neil and Terry for the first time.
Neil's the singer and guitarist. His long dark hair and beard bring to mind either Chris Cornell or Jesus. Terry, the drummer, has a shaved head, a wiry strong physique and a quiet demeanour (at least until he's behind the kit).
You get two sweaty handshakes and some brief small talk while you set up – they lost their last bassist when he graduated, apparently - then you're plugged into the PA, [[ready to jam with Death From Above|UKUNI-3300 Hobby tryout 2]].
<<elseif $kate.uni.hobby == "cadet">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-whiteAndBlackAnkleSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndEcruTrainers")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-babyBlueAndBrownLongSleevedBaseballTop-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/40_ukUniBoilerSuit-britishArmyMOD-" + $kate.braSize)>>
<<if $kate.uni.shortName == "Oxford">>
<<set _uotc to "Oxford University Officer's Training Corps",
_uotcLocation to "a barracks building just outside the town centre">>
<<set $header.line1 to "''MAGDALEN COLLEGE'', OXFORD">>
<<elseif $kate.uni.shortName == "Durham">>
<<set _uotc to "Northumbrian University Officer's Training Corps",
_uotcLocation to "a barracks building in Newcastle">>
<<set $header.line1 to "''DURHAM UNIVERSITY'', DURHAM">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set _uotc to "Wales University Officer's Training Corps",
_uotcLocation to "a barracks building near the campus">>
<<set $header.line1 to "''CARDIFF UNIVERSITY'', WALES">>
<</if>>
<</silently>>\
Your first experience of the _uotc is a kind of open day. You're taken by minibus to _uotcLocation, where you and a bunch of other students from $kate.uni.shortName and other local unis are given green boiler suits and organised into little teams.
Throughout the day you're walked through a range of activities. There are physical puzzles where as a team you have to work out how to cross obstacles using planks of wood and ropes; there's a brief medical where you're weighed and your breathing and pulse rate are recorded; there's an exercise session where you all do press-ups and sit-ups, then go for a run as a group; and, late in the afternoon, you get to fire five rounds with an SA80 rifle on an indoor shooting range.
The day ends with dinner in the officer's mess, then a few drinks at the bar where you get to chat with the instructors and commanding officers.
It's not for everyone. It's not glamorous, and there's lots of waiting around. And even though the mood of the day is pretty relaxed – there's no shouting or bullying, like in the movies – there's an underlying severity about the Army that's somewhat jarring. It's weird to step from an open institution of learning into a base with razorwire fences, an armoury, and posters about IED ambushes on the walls.
As for you...you're intrigued by the dichotomy. You [[sign up for the UOTC|UKUNI-4000 BFFs Maryanne]], wondering where this will lead.
<<else>>\
(ERROR IN KATE.UNI.HOBBY VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.hobby == "volleyball">>\
<<silently>>
/* ATHLETICS CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to Math.round( ($kate.attributes.coordination.level + $kate.attributes.fitness.level ) /2 )>>
<<set _skillMod to $kate.skills.athlete.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Average of //Coordination// and //Fitness//"])>>
<<if $kate.skills.athlete.level == -4>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Inexperienced athlete"])>>
<<else>>
<<set _diceRollModifiers.pushUnique([_skillMod , "//Athlete// skill"])>>
<</if>>
<<if $temp.kateSays == "leader">>
<<set _decisionMod to 1>>
<<set _diceRollModifiers.pushUnique([_decisionMod , "Displayed leadership"])>>
<<elseif $temp.kateSays == "killer">>
<<set _decisionMod to 1>>
<<set _diceRollModifiers.pushUnique([_decisionMod , "Displayed killer instinct"])>>
<<else>>
<<set _decisionMod to 0>>
<</if>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod + _decisionMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END ATHLETICS CHECK */
<</silently>>\
<<if $temp.kateSays == "leader">>\
As nervous as you were feeling, you realise it must be ten times worse for the girls who've never played. You keep an eye on them, making sure they understand the drills.
<<elseif $temp.kateSays == "killer">>\
You keep one eye on the other girls, marking the ones who are least experienced. Whenever you get the chance to take a shot, you pound the ball hard and fast at a rookie.
It's ruthless but it helps you win more sets.
<<elseif $temp.kateSays == "follower">>\
You concentrate on doing the best individual job you can.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>ATHLETE CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to shine in the try-outs. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to make the B Team.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PLAY VOLLEYBALL</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>ATHLETE CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>ATHLETE CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKUNI-3400 Hobby tryout result]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKUNI-3400 Hobby tryout result]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<<elseif $kate.uni.hobby == "actress">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-babyBlueCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-blackLongSleevedTurtleNeckJumper-" + $kate.braSize)>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-petrolConverseTrainers")>>
<</if>>
/* ACTING CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 10>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to Math.round( ( $kate.attributes.beauty.level + $kate.attributes.extraversion.level + $kate.attributes.creativity.level ) /3 ) >>
<<set _skillMod to -4>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Average of Beauty, Creativity & Extraversion"])>>
<<set _diceRollModifiers.pushUnique([_skillMod , "Inexperienced actress"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END ACTING CHECK */
<</silently>>\
<<set _directorPreference to either("subtle", "bold")>>\
A week later you're standing alone onstage, your stomach churning with nerves, the little theatre empty except for the play's director and a few other strangers out in the aisles, taking notes. "Okay, and this is...$kate.firstName $kate.surname. Start whenever you're ready, $kate.firstName."
Oh god. Your stomach does a little somersault as you walk to your mark. //This is good, this is good,// you tell yourself, //Lady Mac would be nervous, too.//
All eyes are upon you. You take a deep breath to prepare your voice. "The raven himself is hoarse," you begin...
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>ACTING CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to nail the lead part. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PERFORM</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>ACTING CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>ACTING CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKUNI-3400 Hobby tryout result]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKUNI-3400 Hobby tryout result]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<<elseif $kate.uni.hobby == "d&d">>\
"Yeah...I'm here to play D&D?"
"Seriously?" Nobody looks like they can quite believe it.
"Well yeah. If that's okay?"
A moment's stunned silence. Then a chair scrapes and the Dungeon Master, a heavyset and bespectacled student in his late twenties, rises dramatically to his feet. "Please," he says, graciously waving a pudgy hand at an empty seat. "[[Join us|UKUNI-3400 Hobby tryout result]]!"
<<elseif $kate.uni.hobby == "rockStar">>\
<<silently>>
/* MUSICIAN CHECK */
/*"1d4+1d6+1d8+1d10+1d12+1d20+1d100 @ 4 6 8 10 12 20 10"*/
/*Set the roll target*/
<<set _diceRollTarget to 6>>
/*Calculate the roll with the 1d10 and setup the dice for display*/
<<set _diceRoll to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_diceRoll>> /*Show dice via formule, only used for display */
/*Calculate all the modifiers*/
<<set _diceRollModifiers to []>>
<<set _finalDiceRollModifier to 0>>
<<set _attributeMod to Math.round( ( $kate.attributes.conscientiousness.level + $kate.attributes.coordination.level ) /2 ) >>
<<set _skillMod to $kate.skills.musician.level>>
/*These will be shown in the "Why?" link on the page*/
/*Make sure you add all the modifiers you want to be shown*/
<<set _diceRollModifiers.pushUnique([_attributeMod , "Average of //Conscientiousness// & //Coordination//"])>>
<<set _diceRollModifiers.pushUnique([_skillMod , "//Musician// skill"])>>
<<set _finalDiceRollModifier to _finalDiceRollModifier + _attributeMod + _skillMod>>
/*Calculate the result*/
<<set _result to _diceRoll + _finalDiceRollModifier>>
<<if _result gte _diceRollTarget>>
<<set _success to true>>
<<else>>
<<set _success to false>>
<</if>>
/* END MUSICIAN CHECK */
<</silently>>\
"What do you wanna start with?" asks Neil.
"Uhhh...//Want You Dead?"// you suggest.
"Cool," says Terry, "Count in with four." He lifts a stick and hovers over a cymbal...
<div id="dice-rolled">/*This will be replaced after the roll*/
<<nobr>><div class="diceResultBox">/*This div is the dice box*/
<div class="diceResultBoxHeader">/*Dicebox header*/
<<dice-showDiceImage "d10">> /*Either "d10", "d8", "d6" or "d4" -> To show correct dice image*/
<h3>MUSICIAN CHECK</h3>
<hr>
</div>
<div class="diceResultBoxText">/*Dicebox Text*/
Roll to nail the audition. You need to roll <b>_diceRollTarget or higher</b> with <<if _finalDiceRollModifier gte 0>><b>1d10+_finalDiceRollModifier</b><<else>><b>1d10_finalDiceRollModifier</b> <</if>> to succeed.
<div id="dice-explanation" style="padding-top:2%; padding-bottom:5%">
<i><<link "[Why?]">>/*Why modifier link, will replace "dice-explanation" with the widget*/
<<replace '#dice-explanation'>>
<<dice-showModifiers>>
<</replace>>
<</link>></i>
</div>
<<set _buttonText to "<b><i>PLAY</i></b>">>
<<button _buttonText>>/*Roll the dice button*/
<<rollDice _diceDisplay>>
<<replace '#dice-rolled'>>/*everything between START REPLACE and STOP REPLACE will be shown in the place of "dice-rolled" at the top, so we need a second identical box */
/*START REPLACE*/
<<nobr>><div class="diceResultBox">/*Again the grey dice box*/
<div class="diceResultBoxHeader">
<<dice-showDiceImage "d10">>
<<if _success>>
<h3>MUSICIAN CHECK...<i>PASSED!</i></h3>
<hr>
<<else>>
<h3>MUSICIAN CHECK...<i>FAILED!</i></h3>
<hr>
<</if>>
</div>
<div class="diceResultBoxText">
Target: <b>_diceRollTarget</b>. Result: _diceRoll<<if _finalDiceRollModifier gte 0>>+<</if>>_finalDiceRollModifier = <b>_result</b>. <<if _success>>//Success.//<<else>>//Failure.//<</if>>
<br>
<br>
<<if _success>>/*Links to succes and/or failure page*/
<<set $temp.diceRollOutcome to "success">>
//[[Continue|UKUNI-3400 Hobby tryout result]]//
<<else>>
<<set $temp.diceRollOutcome to "failure">>
//[[Continue|UKUNI-3400 Hobby tryout result]]//
<</if>>
</div>
</div><</nobr>>
/*STOP REPLACE*/
<</replace>>
<</rollDice>>
<</button>>
</div>
</div><</nobr>>
</div>
<<else>>\
(ERROR IN KATE.UNIHOBBY VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.hobby == "volleyball">>\
Girls who pass the try-out go into either the B or C Team, based on the coach's assessment.
<<if $temp.diceRollOutcome == "success">>\
<<set $temp.kateVolleyballRank to "B Team">>\
You're picked for the B Team – which means your fitness and technical skills are good, and you mainly just need match experience.
The coach warns you that as B Team girls you need to eat, sleep and breathe volleyball – only the best will get picked for the A Team next year.
<<elseif $temp.diceRollOutcome == "failure">>\
<<set $temp.kateVolleyballRank to "C Team">>\
You're picked for the C Team – which means you've got potential, but your technical skills need development.
The coach warns you that C Team drills //hard// – the aim is to get your fitness levels and ball skills high enough that you can all be promoted to the B Team next year.
<<else>>\
(ERROR IN TEMP.DICEROLLOUTCOME VAR)
<</if>>\
//[[Continue|UKUNI-4000 BFFs Maryanne]]//
<<elseif $kate.uni.hobby == "actress">>\
"Come, thick night...And pall thee in the dunnest smoke of hell...That my keen knife see not the wound it makes...Nor heaven peep through the blanket of the dark...To cry, //'Hold, hold!"//
Silence in the theatre. Your small audience murmuring to one another.
"That's good, $kate.firstName," says the director. "Can we do that again? This time with more sorrow in 'Hold, hold?' As if you're heaven itself there, crying out in anguish. Whenever you're ready."
You try it, then a couple of other ways, then they get you to cold read her chiding monologue from Act 1, Scene 7. "Thanks, $kate.firstName," they say afterwards. You're told they'll be in touch; you've got no idea [[how you did|UKUNI-3500 Hobby tryout result 2]].
<<elseif $kate.uni.hobby == "d&d">>\
They're absolute dorks. And you have an absolute blast.
Most of the first session is taken up with character creation. The DM, Glenn, uses a different version of the rules than you're used to, so he has to help you quite a bit; you get the sense he doesn't mind at all, though.
Your first D&D character was a fighter, so you mix things up and go for a wizard this time. Glenn and the others help you craft Melory Twoflower, a Neutral Evil witch's apprentice who's travelling with the party for her own mysterious reasons. (Glenn says you and he can work out the details over email later.)
She has the power to cast magic missiles and make groups of enemies fall asleep; but in this version of the rules she can only cast her spells rarely, so you really have to pick your moment. When your sleep spell turns the tide in an ambush, knocking several bandit archers unconscious at once, you and the whole group fall in love with Melory.
"That was so cool," enthuses Colin on the walk back to your block. "That moment when Barathur called to his archers and they were all snoring...hahaha! I had no idea you were a gamer!"
"You either!" you tell him. "Goodnight!" It's the first of many adventures you'll have with these guys.
//[[Continue|UKUNI-4000 BFFs Maryanne]]//
<<elseif $kate.uni.hobby == "rockStar">>\
//Tish-tish-tish-tish!//
The song kicks in and your bass rumbles out of the PA, mixed in with Neil's heavy guitar and Terry's steady drumbeat. Your very first thought is about how good it feels to be playing in a band again...even though it's with two guys you only just met, playing live and in harmony feels instinctively natural and right.
<<if $temp.diceRollOutcome == "success">>\
Rhythmically, it feels like you just //click// with Terry right away; his beats are so steady that they're easy to lock into. And all the practice in your room pays off; you nail the changes in //Black Rainbow,// and you lock in tight for the fast bit at the end of //Seven Witches.//
The rehearsal goes so smoothly that you spend the last twenty minutes of your slot just jamming covers you all know. The boys tell you [[they'll be in touch|UKUNI-3500 Hobby tryout result 2]]; you go back to your halls buzzing with excitement. That couldn't have gone any better.
<<elseif $temp.diceRollOutcome == "failure">>\
The first track sounds great; the rest of the jam is a bit messier. You keep missing the changes in //Black Rainbow,// and you struggle to keep up in the fast bit at the end of //Seven Witches.// When your hour's over, it's physically a relief; for the last quarter of an hour, you've been trying not to show how badly your left hand is cramping up .
The boys thank you for coming and tell you [[they'll be in touch|UKUNI-3500 Hobby tryout result 2]].
<<else>>\
(ERROR IN TEMP.DICEROLLOUTCOME VAR)
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.hobby == "actress">>\
<<if $temp.diceRollOutcome == "success">>\
<<silently>>
<<set $temp.kateIsLadyMacbeth to true>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-greySportsShorts")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-ecruRibbedFrontButtonedShortSleevedCropTop-" + $kate.braSize)>>
<</silently>>\
Next week you get the email...you nailed it, you got the part!
Colin comes tapping at your door after he hears you squeal. "I got it!" you exclaim, "I got the part!"
"I knew you would!" He startles you with a congratulatory hug that somehow manages to feel both feeble and invasive at the same time.
//I hope he never does // that //again,// you think as you extricate yourself from his awkward embrace – but you don't let it spoil your vibe. You got the part!
<<elseif $temp.diceRollOutcome == "failure">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-greySportsShorts")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-ecruRibbedFrontButtonedShortSleevedCropTop-" + $kate.braSize)>>
<</silently>>\
Next week you get an email offering you a part; not as Lady Macbeth, but as one of the Witches.
Colin says they must be crazy to have picked someone else over you, but you're just thrilled to have landed a part. The Witches are one of the coolest and creepiest things about Macbeth...it'll be fun to play one.
<<else>>\
(ERROR IN TEMP.DICEROLLOUTCOME VAR)
<</if>>\
//[[Continue|UKUNI-4000 BFFs Maryanne]]//
<<elseif $kate.uni.hobby == "rockStar">>\
<<if $temp.diceRollOutcome == "success">>\
Doubts creep in over the next few days – even though you know the audition went well, you don't know if anybody better came in and blew them away. Or maybe they just didn't like you, or didn't think a girl is a good fit?
You're thrilled when a few days later, Terry emails to offer you the gig. You did it!
<<elseif $temp.diceRollOutcome == "failure">>\
You feel like you let yourself down with your playing...so it's a surprise when Terry emails you a few days later to offer you the gig. Wow...you actually did it! Maybe you were too hard on yourself?
<<else>>\
(ERROR IN TEMP.DICEROLLOUTCOME VAR)
<</if>>\
Weekly rehearsals with Death From Above become a normal part of your life; the boys are eager to teach you the set list as fast as possible so the band can start gigging again.
//[[Continue|UKUNI-4000 BFFs Maryanne]]//
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniJeans-darkBlueDenimBootcutJeans")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-purpleShirredCropTopWithTieStrapsAndPeplum-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-greyStrappyWedgeSandals")>>
<<if $kate.uni.degreeSubject == "english">>
<<set _department to "English">>
<<elseif $kate.uni.degreeSubject == "business">>
<<set _department to "business school">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _department to "Law">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _department to "Psych">>
<<else>>
<<set _department to "ERROR IN KATE.UNI.DEGREESUBJECT VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.attributes.neuroticism.level gte 1>>\
Worries about making new friends, succeeding academically, and managing to live alone caused you many anxious, sleepless nights in the run-up to starting at $kate.uni.shortName. The reality isn't as bad as you feared, and you settle in quite quickly. \
<<elseif $kate.attributes.neuroticism.level == 0>>\
You were very nervous about starting at $kate.uni.shortName – but when you got here you realised you were just one of hundreds of new arrivals. Realising that everybody else was in the same boat helped you get through the difficult first few days. \
<<else>>\
Starting at $kate.uni.shortName was daunting, but your calm and level-headed nature helped you adapt quickly. \
<</if>>\
<<if $kate.attributes.extraversion.level gte 1>>\
And you quickly realised you were making friends.
<<elseif $kate.attributes.extraversion.level == 0>>\
It wasn't long before you started to find friends.
<<else>>\
To your relief, you soon made some friends here.
<</if>>\
Your closest friend is Maryanne, a fellow _department student, and your neighbour from across the hall in your first year.
<<if $kate.attributes.conscientiousness.level gt 0>>\
Like you, she's innately organised and disciplined. You two are a natural fit as study buddies and enforcers of the washing-up rota.
<<else>>\
She's one of those people who's super organised, and over the first year you learn a lot from her approach to study and just general "adulting" (though you could never develop her love of lists). In return, spending time with you teaches her that it's okay to be spontaneous and rely on improvisation sometimes.
<</if>>\
<<if $kate.attributes.agreeableness.level lt 0>>\
You're both strong characters, and your friendship's punctuated by the occasional sharp disagreement. After a few frosty days of giving each other the cold shoulder, things are always back to normal.
<<else>>\
She's normally great but, over time, you come to learn that one of her flaws is a bitchy temper. When she's in one of her moods it's normally easiest to just let her get her way.
<</if>>\
<<link "//Continue//" "UKUNI-4100 BFFs Sadie">><</link>>
<</page>><<silently>>
<<if $kate.uni.degreeSubject == "english">>
<<set _aSimilarDegree to "an English Lit">>
<<elseif $kate.uni.degreeSubject == "business">>
<<set _aSimilarDegree to "a law">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _aSimilarDegree to "a business school">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _aSimilarDegree to "a business school">>
<<else>>
<<set _aSimilarDegree to "ERROR IN KATE.UNI.DEGREESUBJECT VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Sadie is _aSimilarDegree student, who attends some of the same lectures as you. \
<<if $kate.attributes.extraversion.level gt 0>>\
She has a natural ability to command a room that made you slightly wary of her at first; after you become friends, she confesses that she felt the exact same thing about you.
<<else>>\
Her natural charm and friendly personality made her easy to talk to.
<</if>>\
<<if $kate.attributes.openness.level gt 0>>\
You share an instinctive interest in abstract and outré ideas, and you spend many late nights sitting up drinking with Sadie, arguing excitedly about politics or society or some other abstract thing. (Maryanne says you're both weird.)
<<else>>\
She has a quirky, inquisitive mind and you sometimes find her opinions startling and interesting. (Maryanne says she's just weird.)
<</if>>\
<<if $kate.attributes.agreeableness.level lt 0>>\
Like you and Maryanne, she's strong-willed and opinionated, and you sometimes clash. \
<<else>>\
She and Maryanne normally get along, but sometimes they clash spectacularly and fall out for weeks at a time. \
<</if>> When that happens, Sadie just withdraws for a few weeks into her latest fling; while she's rarely single, she doesn't want to settle down.
<<link "//Continue//" "UKUNI-4200 BFFs Oz">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ozge (Oz to her friends) is a stunning Turkish girl. Studying fashion (her father runs a successful online fashion brand back home), you met her on a pub crawl during Freshers Week and just clicked.
<<if $kate.attributes.agreeableness.level lt 0>>\
In a group of strong-willed women, she's the sweetest and mellowest; maybe even a pushover, but that can be a nice change from butting heads with Maryanne and Sadie over every little thing.
<<else>>\
Like you, she's easier going than Maryanne and Sadie. You and Oz sometimes bond together when one or both of them are being especially monstrous.
<</if>>\
<<if $kate.attributes.neuroticism.level gt 0>>\
<<if $kate.attributes.agreeableness.level gte 0>>Another thing you have in common is that<<else>>Like you,<</if>> Oz suffers from anxiety from time to time. Talking with her helps because she understands the feeling better than the others.
<<else>>\
Oz is naturally highly strung and anxious, often crippling herself with worry over deadlines, assignments, social events, her parents, boys, and her future. She says that talking with you helps her a lot.
<</if>>\
<<link "//Continue//" "UKUNI-4300 Boys boys boys">>
<<set $temp.kateWantsABf to true>>
<<if $kate.quirks.includes("easy")>>
<<set $temp.kateWantsHookups to true,
$temp.kateIsOnTinder to true>>
<<if hasVisited("UKUNI-3050 Kate bags a fuck buddy")>>
<<set $temp.kateIsSimonsSideChick to true>>
<</if>>
<<elseif not $kate.quirks.includes("picky")>>
<<set $temp.kateWantsHookups to either(true, false),
$temp.kateIsOnTinder to either(true, false)>>
<<if hasVisited("UKUNI-3050 Kate bags a fuck buddy")>>
<<set $temp.kateIsSimonsSideChick to either(true, false)>>
<</if>>
<</if>>
<</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Oz struggles with homesickness. You feel it as well in the first few weeks, but not to as badly. Even though you're away from home, being surrounded by intelligent people stirs a sense of pride in you, and belonging.
Being surrounded by intelligent //men// is also intriguing. Even though most of them are plain and nerdy, you've noticed a smattering of striking boys on campus.
In your experience, boys tend to be clever //or// hot; Jacob was a rare exception. Something tells you that the boys of $kate.uni.shortName are going to be interesting to learn about.
<<link "//Keep alert for potential campus romances.//" "UKUNI-4400 Life/study balance choice">><</link>>
<<link "//Also join Tinder.//" "UKUNI-4400 Life/study balance choice">><<set $temp.kateIsOnTinder to true>><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The biggest day-to-day change is how much freedom you have, and how little oversight you're subjected to.
You have to figure out how to do a range of things without any adult supervision, from using the library, to feeding yourself, to managing your budget. And it's totally up to you when – even //whether// – to write assignments or attend lectures.
Everyone starts university intending to work hard, but the lack of structure and wealth of new social opportunities sometimes ruins those good intentions.
<<if $kate.attributes.conscientiousness.level gte 0>>\
//<<link "//Study hard.//" "UKUNI-4500 Life/study balance outcome">><<set $temp.uniStudyPolicy to "workHard">><</link>>
<<else>>\
<span class="greyedOut">//[Unconscientious] Study hard.//</span>
<</if>>\
<<link "//Balance study and a life.//" "UKUNI-4500 Life/study balance outcome">><<set $temp.uniStudyPolicy to "balanced">><</link>>
<<if $kate.attributes.conscientiousness.level lte 0>>\
//<<link "//Girls just wanna have fun.//" "UKUNI-4500 Life/study balance outcome">><<set $temp.uniStudyPolicy to "playHard">><</link>>
<<else>>\
<span class="greyedOut">//[Too Conscientious] Girls just wanna have fun.//</span>
<</if>>\
<</page>><<silently>>
<<first>>
<<if $temp.uniStudyPolicy == "workHard">>
<<if $kate.quirks.includes("elite")>>
<<addNotification "Academic performance +2" "Academic performance increased.">>
<<else>>
<<addNotification "Academic performance +1" "Academic performance increased.">>
<</if>>
<<elseif $temp.uniStudyPolicy == "playHard">>
<<addNotification "Academic performance -1" "Academic performance decreased.">>
<</if>>
<</first>>
<<if $kate.uni.degreeSubject == "english">>
<<set _aPrestigiousOrganisation to "the BBC">>
<<elseif $kate.uni.degreeSubject == "business">>
<<set _aPrestigiousOrganisation to "Amazon UK">>
<<elseif $kate.uni.degreeSubject == "law">>
<<set _aPrestigiousOrganisation to "the law firm Barfield Griffin Price">>
<<elseif $kate.uni.degreeSubject == "psychology">>
<<set _aPrestigiousOrganisation to "the veteran's charity, Help for Heroes">>
<<else>>
<<set _aPrestigiousOrganisation to "ERROR IN KATE.UNI.DEGREESUBJECT VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.uniStudyPolicy == "workHard">>\
<<set $temp.academicPerformance to 1>>\
<<if $kate.attributes.conscientiousness.level gt 0>>\
Your disciplined nature fits well with your new-found freedom. You stick meticulously to a study plan and a budget. That means you don't go out as often as Sadie, but you also avoid getting into the kinds of emergencies she seems to attract.
<<else>>\
Deciding to take uni seriously, you schedule regular study time and stick to your plan. It means you have to say no to parties or nights out sometimes, but staying well ahead of deadlines and exams makes them much less stressful.
<</if>>\
<<elseif $temp.uniStudyPolicy == "balanced">>\
<<set $temp.academicPerformance to 0>>\
<<if $kate.attributes.conscientiousness.level gt 0>>\
There's more to uni than just working all the time! You make a study plan, but decide not to stick to it slavishly. You settle into a rhythm of studying most days, and letting your hair down at a student night<<if $kate.quirks.includes("rockChick")>>, rock club<</if>> or block party one or two nights per week.
<<elseif $kate.attributes.conscientiousness.level == 0>>\
You aim for a good balance of having fun, but not falling behind on your studies. You settle into a rhythm of studying most days, and letting your hair down at a student night<<if $kate.quirks.includes("rockChick")>>, rock club<</if>> or block party one or two nights per week.
<<else>>\
You try your hardest to study, but it's hard to motivate yourself unless a deadline is imminent. You eventually settle into a balance of sorts – when a deadline is close you work harder than everybody else, fuelled by energy drinks and late nights, and when the pressure's off you reward yourself by letting your hair down at house parties, bar crawls<<if $kate.quirks.includes("rockChick")>>, rock clubs<</if>> and student nights.
<</if>>\
<<elseif $temp.uniStudyPolicy == "playHard">>\
<<set $temp.academicPerformance to -1>>\
<<if $kate.attributes.conscientiousness.level == 0>>\
You make use of your new-found freedom to let your hair down at the many house parties, bar crawls<<if $kate.quirks.includes("rockChick")>>, rock clubs<</if>> and student nights that are now open to you.
<<else>>\
You just can't motivate yourself to study until a deadline is right on top of you. Your working style is characterised by last minute stress, caffeine-fuelled late nights, and routinely missed assignment deadlines. You tell everyone that you work best under pressure.
You make use of your new-found freedom to let your hair down at the many house parties, bar crawls<<if $kate.quirks.includes("rockChick")>>, rock clubs<</if>> and student nights that are now open to you.
<</if>>\
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<if $kate.quirks.includes("elite")>>\
<<set $temp.academicPerformance += 1>>\
You're able to live off your student loan plus your allowance, which means you can focus fully on your studies instead of also trying to pack in a part-time job.
A friend of your <<if $kate.quirks.includes("single mum")>>uncle's<<else>>dad's<</if>> can arrange an internship for you at _aPrestigiousOrganisation over the summer. Or, alternatively, Roksy invites you to fly out to Mexico for a long holiday!
<<link "//Take the internship.//" "UKUNI-4600 Part time job">><<set $temp.kateSays to "internship">><</link>>
<<link "//See Mexico instead.//" "UKUNI-4600 Part time job">><<set $temp.kateSays to "mexico">><</link>>
<<else>>\
Your student loan's more money than you've ever had in your life...but it's not enough to live on for three years. You'll need to find a part-time job.
<<if hasVisited("UKYOUTH-7100 Sports Star") or $temp.masterkey>>\
//[Sporty]// <<link "//Lifeguard.//" "UKUNI-4600 Part time job">><<set $temp.kateSays to "lifeguard">><</link>>
<<else>>\
//<span class="greyedOut">[Sporty] Lifeguard.</span>//
<</if>>\
//[Attractive]// <<link "//Cosmetics retail.//" "UKUNI-4600 Part time job">><<set $temp.kateSays to "beautySales">><</link>>
<<if $kate.attributes.extraversion.level gt 0 or $kate.braSize == "large">>\
//[Extraverted (or Busty)]// <<link "//Barmaid at The Ram.//" "UKUNI-4600 Part time job">><<set $temp.kateSays to "barmaid">><</link>>
<<else>>\
//<span class="greyedOut">[Extraverted (or Busty)] Barmaid at The Ram.</span>//
<</if>>\
//[Attractive]// <<link "//Part time receptionist.//" "UKUNI-4600 Part time job">><<set $temp.kateSays to "receptionist">><</link>>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "internship">>\
You get your <<if $kate.quirks.includes("single mum")>>uncle<<else>>dad<</if>> to set it up. He gives you the email address of his friend, Mr Wingfield, and tells you to send him a thank-you message. <<if $kate.attributes.conscientiousness.level lt 0>>(You keep //meaning// to, but you never get around to sending it.)<</if>>
<<elseif $temp.kateSays == "mexico">>\
You message Roksy and get some dates to fly out. Mexico! You went there once when you were a kid, but now you're an adult you'll be able to really see the sights. You can't wait!
<<elseif $temp.kateSays == "lifeguard">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSwimsuit-redBaywatchSwimsuit-" + $kate.braSize)>>
<</silently>>\
After an interview and a swim test, you score a job at a local swimming pool as a lifeguard.
A short training course certifies you in rescue swimming and first aid, then you're issued with the red one-piece swimsuit, a whistle and a rescue buoy.
It's a pretty laid back job; your biggest problem normally is kids running around or splashing too much in the pool. Mostly you sit by the poolside and watch hot and not-so-hot bathing suit bodies pass back and forth; //very// occasionally you get to dive in and help a kid or an old person in trouble.
Being a female lifeguard is strange because you experience power and vulnerability at the same time; you're in a position of authority and control, but you're also on display all the time in a clingy red swimsuit. You often find yourself being ogled by the boys or dads with their kids.
<<if $kate.kinks.includes("exhibitionist")>>\
You kind of like being the pool's eye candy. Sometimes, when none of your colleagues are around, you play up to the attention by swimming a few laps near the dads, moving provocatively, or running a hand through your hair.
<<else>>\
You'd never admit it but you do like the attention sometimes, and occasionally play up to it. It's a good confidence booster.
<</if>>\
You mainly keep it professional, though, shutting down inappropriate attention (including rebuffing the same group of lads who hopelessly try to flirt with you every Saturday afternoon).
<<elseif $temp.kateSays == "beautySales">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackSheerNarrowBlackBand-highHeels")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-blackSlipOnHighHeels")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-blackShortSleevedBeautySalesMiniDressWithPinkBowBelt-" + $kate.braSize)>>
<</silently>>\
Your interview at the department store House of Fraser is so short, you assume you blew it. The recruitment lady barely had time to scrawl the acronym //LORC// on your CV before it was over.
You later learn that //LORC// is a code meaning //Lingerie or Cosmetics// – meaning you're attractive enough to work in the two most glamorous departments in the store.
You're picked for Cosmetics, which gives you access to designer makeups at a huge discount. You always make sure to look after your friends when they need something; and you notice you become popular with girls you barely know close to formals and socials.
When you started they gave you a range of products from Yves Saint Lauren, Dior, Charlotte Tilbury and more. You’re expected to look the part and be able to offer advice to customers, so you really develop your make up game to keep up...HD, Smokey, Matte you can do them all.
With your new make-up and new skills, you sometimes try to recreate your favourite celebrity looks when you’re bored.
<<elseif $temp.kateSays == "barmaid">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTrousers-blackSkinnyCapriTrousers")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-redPlungeHalterneckCroppedTopWithWaistLacing-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-greyPatentMaryJaneHighHeels")>>
<<if $kate.firstName[0]=="L">>
<<set _lisa to "Kerry">>
<<else>>
<<set _lisa to "Lisa">>
<</if>>
<</silently>>\
With four rotating guest ales, a pool table and a jukebox last updated in the early 90s, The Ram attracts a mixed crowd of $kate.uni.shortName hipster students and bearded fortysomething locals.
Working here means often having to give up your Friday and Saturday nights; but it's not too bad, as the job itself is very social.
Sometimes it sucks to serve your friends a few drinks, then watch them leave to go onto a new place without you. But barmaiding here is a great way to get to know $kate.uni.shortName students you wouldn't otherwise have met, and it gives you a certain cachet on campus.
The beardy regulars are a little standoffish, at first. Apparently your predecessor is sorely missed, and not everybody's crazy about "the new _lisa". You never do find out exactly why she was such a legend, but the beardies do warm to you over time. And they're way more generous about buying you drinks than your fellow $kate.uni.shortName students.
<<elseif $temp.kateSays == "receptionist">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackVerySheerNarrowBlackBand-highHeels")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniSkirt-greyMiniPencilWithBlackWaistband")>>
<<set $avatar.clothing.pushUnique("uni/50_ukUniJacket-greyTwo-ButtonLongSleevedSuitJacketWithBlackTop-small")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-blackSlipOnHighHeels")>>
<</silently>>\
You take a part-time office job at Froogle, a small tech startup that's creating a search engine for financial products (like mortgages and loans). The owner, Dinesh, is a charismatic Indian entrepreneur who makes you believe that Froogle is going to change the world.
Your job is boring, but easy. making photocopies, filling up printers with paper, ordering stationery, taking phone calls, welcoming visitors, making tea and coffee for Dinesh and the sales team.
As months go by without the product ever actually being launched, you come to suspect that Froogle's main business activity is actually cold calling retired people from all over the world and persuading them to invest in Froogle.
Still, Dinesh is fun to work for and the rowdy office culture is a lively change from academia, so you work here for your entire $kate.uni.shortName career.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<link "//Continue//" "UKUNI-4700 Autumn semester #1">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-greenRibbedJumperWithWhiteCollarAndShirtTailsDetail-" + $kate.braSize)>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndGreyStripeAdidasTrainers")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Freshers Week passes, and you settle into a routine of lectures, library research, and <<if $temp.uniStudyPolicy == "workHard">>occasional<<elseif $temp.uniStudyPolicy == "balanced">>weekly<<else>>frequent<</if>> late night drinking sessions.
Halloween comes and goes (you and Sadie go as decomposing hookers), and the nights grow long and cold. On Bonfire Night, you join a procession of $kate.uni.shortName students carrying blazing torches on a ritual march from the campus through the town.
<<link "//Continue//" "UKUNI-4800 First semester relationships">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In these first few months, <<if $temp.kateIsOnTinder>>you sign up for Tinder and<</if>> you meet a few seriously hot guys on campus; guys you could picture yourself in a relationship with. But the campus dating scene at $kate.uni.shortName isn't what you expected when you first got here.
The problem is that, while there are plenty of guys to go around, hardly any are actually boyfriend material. 90% are ugly, immature, gross or weird.
With hot guys in a minority, you're ;learning that girls are expected to be cool about hooking up with them first and dating someday, maybe. Hookups often start via text: a classmate or friend-of-a-friend will DM you about something innocuous, which ends up escalating to late night requests for nudes or a booty call.
How responsive you are to this kind of thing will shape your reputation on campus.
<<if $kate.quirks.includes("easy")>>\
//[Easy] [[I'm a sucker for attention.|UKUNI-4900 First semester flings][$temp.kateSays to "easy"]]//
<<else>>\
<span class="greyedOut">//[Easy] I'm a sucker for attention.//</span>
<</if>>\
[[Sometimes the right guy catches me in the right mood.|UKUNI-4900 First semester flings][$temp.kateSays to "normal"]]
<<if $kate.quirks.includes("picky")>>\
//[Picky] [[Sexting isn't the way to my heart.|UKUNI-4900 First semester flings][$temp.kateSays to "picky"]]//
<<else>>\
<span class="greyedOut">//[Picky] Sexting isn't the way to my heart.//</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
When you do get involved with a guy, it's often hard to know exactly what your relationship status is with him, or even how much he likes you. Straight out asking questions like that can make you look crazy or too emotional...so you and your friends spend hours deciphering the hidden meanings in text messages and DMs instead.
Later in your uni career, it'll be normal for Maryanne to be "kind of with" a guy, while Sadie's "sort of seeing" another, who once had "a bit of a thing" with <<if $temp.kateWantsABf or $temp.kateHasCasualSex or $temp.kateIsOnTinder>>you and/or <</if>>Oz.
<<if hasVisited("UKUNI-3050 Kate bags a fuck buddy")>>\
You keep seeing Simon. Dating a third year who's on the rugby team actually earns you quite a bit of kudos in your social circle...even though your "relationship" is mainly just flirty DMs and a monthly shag in your room.
<</if>>\
<<if $temp.kateSays == "easy">>\
Most of your friends will roll two 6-sided dice (2D6) to see how many hookups and casual relationships they have at $kate.uni.shortName. You'll roll 3D6, because you're an easier hookup than them.
<<elseif $kate.quirks.includes("picky")>>\
Most of your friends will roll two 6-sided dice (2D6) to see how many hookups and casual relationships they have at $kate.uni.shortName. You'll roll 1D6, because you're more //picky// about hookups than them.
<<else>>\
Like most of your friends, you'll roll two 6-sided dice (2D6) to see how many hookups and casual relationships you have at $kate.uni.shortName.
<</if>>\
<div id="dice-rolled">
<<button "''HOOKUPS & FLINGS''">>
<<if $kate.quirks.includes("easy")>>
<<set _random1 to random(1,6)>>
<<set _random2 to random(1,6)>>
<<set _random3 to random(1,6)>>
<<set _dice to "1d6 + 1d6 + 1d6 @ "+_random1 +" "+_random2 +" "+_random3>>
<<set $temp.freshmanBodyCount to _random1 + _random2 + _random3>>
<<elseif $kate.quirks.includes("picky")>>
<<set _random to random(1,6)>>
<<set _dice to "1d6 @ "+_random>>
<<set $temp.freshmanBodyCount to _random>>
<<else>>
<<set _random1 to random(1,6)>>
<<set _random2 to random(1,6)>>
<<set _dice to "1d6 + 1d6 @ "+_random1 +" "+_random2>>
<<set $temp.freshmanBodyCount to _random1 + _random2>>
<</if>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
<<link "//Continue//" "UKUNI-5000 First semester body count">>
<</link>>
<</replace>>
<</rollDice>>
<</button>>
</div>\
<</page>><<silently>>
<<set _sexpertXP to $temp.freshmanBodyCount * 100>>
<<awardXP sexpert _sexpertXP>>
<</silently>>\
<<header>>\
<<page>>\
You have $temp.freshmanBodyCount hookups and casual relationship<<if $temp.freshmanBodyCount gt 1>>s<</if>> at $kate.uni.shortName. <<if $temp.freshmanBodyCount lte 4>>That's less than most girls.<<elseif $temp.freshmanBodyCount lte 9>>That's about the same as most of your friends.<<else>>You don't know it, but you're considered an easy hookup.<</if>> You gained _sexpertXP experience points in the Sexpert skill.
In this version, your "body count" is just a number, but in future versions a short bio of each sexual encounter will be published on your Character Sheet.
<<link "//Continue//" "UKUNI-5100 Home for the holidays">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTrousers-blackStraightcutTrousers")>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/40_ukUniChristmasJumper-redWithBlackSleevesSleigher-" + $kate.braSize)>>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set $avatar.clothing.pushUnique("uni/40_ukUniChristmasJumper-redWithGreySleevesNowIHaveAMachineGun-" + $kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/40_ukUniChristmasJumper-redWithGreySleevesRudolph-" + $kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniboots-backSuedeAnkleStillettosWithBuckles")>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<if $kate.quirks.includes("single mum")>>
<<set _parentalUnits to "mum">>
<<else>>
<<set _parentalUnits to "parents">>
<</if>>
<<if $kate.firstName[0]=="L">>
<<set _auntLucy to "Auntie Jane">>
<<else>>
<<set _auntLucy to "Aunt Lucy">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You have three weeks off over Christmas. After months of living in halls, it's a relief to get home and relax with your family<<if $kate.quirks.includes("big brother") or $kate.quirks.includes("kid brother")>> – even though your <<if $kate.quirks.includes("big brother") and $kate.quirks.includes("kid brother")>>little <</if>>brother throws a temper tantrum every time he's forced to socialise instead of playing Xbox for more than a few minutes.<<else>>.<</if>>
Christmas lunch is especially nice, catching up with various relations who haven't seen <<if hasVisited("MONTREUX-3000 Graduation")>>much of <</if>>you since before <<if hasVisited("MONTREUX-3000 Graduation")>>you left for Surval<<elseif hasVisited("NAMIB-4100 Departing Namibia")>>your Namibia trip with Josh<<elseif hasVisited("CORFU-6000 Handover")>>your stint in Corfu with $temp.firstFriend<</if>>!
"She is //so// grown up," says _auntLucy approvingly, making your whole family beam with pride (except your <<if $kate.quirks.includes("kid sister")>>little sister<<elseif $kate.quirks.includes("kid brother")>>little brother<<else>>little cousin Jimmy<</if>>, who pretends to be sick in <<if $kate.quirks.includes("kid sister")>>her<<else>>his<</if>> plate, but everyone ignores <<if $kate.quirks.includes("kid sister")>>her<<else>>him<</if>>).
You see in 2012 at a house party, getting drunk on <<if $kate.quirks.includes("elite")>>Bollinger<<else>>prosecco<</if>> with $temp.firstFriend and <<if $kate.quirks.includes("big brother")>>your big brother<<else>>Mark<</if>>...and then it's time to head [[back to uni|UKUNI-5200 Title card]].
<</page>><<page>>\
[[JANUARY 2012|UKUNI-6000 Hot prof]]
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans")>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-blackLongSleevedTurtleNeckJumper-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/50_rockerJacket-blackLeatherBikerJacket")>>
<<if $kate.uni.shortName == "Oxford">>
<<set $avatar.clothing.pushUnique("uni/60_ukUniScarf-magdalenCollegeOxford")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/60_ukUniSnood-darkGreyKnitted")>>
<</if>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-greyHighNeckThreeQuarterLengthSleeveBohoTop-" + $kate.braSize)>>
<<if $kate.uni.shortName == "Oxford">>
<<set $avatar.clothing.pushUnique("uni/50_ukUniJacket-tanPuffaWithOxfordScarf")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/50_ukUniJacket-tanPuffaWithGreySnood")>>
<</if>>
<</if>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<<if $kate.uni.shortName == "Oxford">>
<<set $header.line1 to "''MAGDALEN COLLEGE'', OXFORD">>
<<elseif $kate.uni.shortName == "Durham">>
<<set $header.line1 to "''DURHAM UNIVERSITY'', DURHAM">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set $header.line1 to "''CARDIFF UNIVERSITY'', WALES">>
<</if>>
<<set $header.line2 to "2012 / AGE 19">>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
You settle back into your learning routine at $kate.uni.shortName. You're getting to know which lectures you enjoy and which ones are a chore; a lot depends on who the lecturer is.
Your favourite – everybody's favourite, really – is Professor Wells. He's so engaging he's almost electric. He shouts about ethics, reads poetry in lectures, and gives intriguingly strange in-class exercises.
Sadie and Oz both confess to crushes on him; Maryanne calls him "hot prof". In his mid-thirties, he's kept a trim, fit body and his eyes are a steely, piercing blue.
He's not exactly //hot// hot. You probably wouldn't look twice if you walked past him in the street. But something about him is definitely sexy. \
<<if _katesFantasy == "submissive">>\
You think it's something to do with the authority. Having to be respectful and call a guy maybe ten years older than you "Professor" is weirdly erotic.
<<elseif _katesFantasy == "masochist">>\
He's normally fun and easy-going, but once he sternly snapped at you in front of the class. Being spoken to like that was //hot.//
<<elseif _katesFantasy == "exhibitionist">>\
And you could be imagining it, but sometimes the way he looks at you in class makes you think that he could be into you, if he weren't your professor. There's something kind of thrilling about that.
<</if>>\
<<link "//Keep it professional.//" "UKUNI-6100 Sadie teases Hot Prof">><</link>>
<<link "//Tease him.//" "UKUNI-6200 Kate teases Hot Prof">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You look nice today," Oz tells Sadie over a coffee break in the quad.
"She always looks nice on Tuesdays and Fridays," observes Maryanne. "Hot Prof."
"Oh shut up, you two. $kate.firstName, you said there's a vacancy at <<if $kate.quirks.includes("elite")>>The Ram<<else>>your work<</if>>?"
"Yeah..." you reply, but the girls are right...Sadie //does// make more of an effort when Professor Wells is on the timetable.
It's nothing too blatant, but wearing makeup and baring a little leg or cleavage does stand out when the rest of the class rolled in wearing hoodies and jeans. And she often stays behind to ask him questions after class...
<<link "//Hmmm.//" "UKUNI-6300 Kate's hobby">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackOpaqueVeryNarrowBlackBand-barefoot")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniSkirt-blackSideSlitMini")>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-blackLongSleevedTurtleNeckJumper-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("teenRom/50_rockerJacket-blackLeatherBikerJacket")>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBootsWithBlackSocks")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-greyHighNeckThreeQuarterLengthSleeveBohoTop-" + $kate.braSize)>>
<<if $kate.uni.shortName == "Oxford">>
<<set $avatar.clothing.pushUnique("uni/50_ukUniJacket-tanPuffaWithOxfordScarf")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/50_ukUniJacket-tanPuffaWithGreySnood")>>
<</if>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You make a bit more of an effort when his classes are on the timetable. Nothing too obvious...just a touch of makeup, wearing your hair down, and picking clothes that show a little leg <<if $kate.braSize == "small">>or hug your butt<<else>>or cleavage<</if>>.
It's nice playing dress up! And it adds a sizzling, yet totally unspoken, frisson to your relationship with Professor Wells.
It's especially hot when you ask him for advice, and he stands behind your desk to help. When you're that close the tension between you is electric – especially if you wore something low cut enough to offer him a discreet eyeful, while you pretend not to notice, and the rest of the class has no idea what's going on.
It's very flattering to have sexual tension with the hottest professor on campus. The only downside is some teasing from Maryanne and Oz when they notice how nice you always look on "Hot Prof Days". You get the feeling they're gossiping about you behind your back, even though nothing's going on, not really.
<<link "//Continue//" "UKUNI-6300 Kate's hobby">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.uni.hobby == "volleyball">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-blackAnkleSocks")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-blackSportsShorts")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-blackWithWhiteStripeVolleyballTshirt-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndEcruTrainers")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniKneepads-blackVolleyballKneepads")>>
<<set $avatar.foreground.pushUnique("uni/60_ukUniVolleyball-volleyball")>>
<<if $kate.attributes.height.level gte 2>>
<<set _position to "middleHitter">>
<<elseif $kate.attributes.height.level lt 0>>
<<set _position to "libero">>
<<elseif $kate.attributes.coordination.level gt 1>>
<<set _position to "leftSideHitter">>
<<elseif $kate.attributes.extraversion.level gt 0>>
<<set _position to "setter">>
<<else>>
<<set _position to "rightSideHitter">>
<</if>>
<</silently>>\
Outside of lectures, being on the volleyball squad eats up a lot of your time.
<<if _position == "middleHitter">>\
Your height makes you a natural fit for the middle hitter position. That means you're the team's first line of blocking defence, and, since you're up close to the net, your reactions need to be lightning fast.
<<elseif _position == "libero">>\
Because you're not one of the tall girls (and definitely not one of the Amazons destined to be a middle hitter), you play in the libero position. This means you're a defensive specialist, playing in the back of the court; your job is to serve-receive, pass, and dig up the ball.
<<elseif _position == "leftSideHitter">>\
It turns out you're pretty lethal with a volleyball – lethal enough that you get picked to play left-side hitter, the main attacking position on the court. It's incredibly satisfying to end a rally by picking out a gap in the defence and pounding the ball //hard// into it.
<<elseif _position == "setter">>\
You gravitate to the setter position. It's the most strategic role on the court, requiring leadership and constant decision-making. Every game pushes you both physically and mentally.
<<else>>\
You're picked for the right-side hitter position. This is the secondary attack position, and it also puts you right across the court from the other team's power hitter. Playing right-side hitter is a test of your skills as an all-rounder.
<</if>>\
Volleyball's a fast-paced sport, with lightning-fast rallies and lots of running, jumping, and teamwork. Every match and drill night is a great workout, and you quickly become fast friends with the other girls on the $temp.kateVolleyballRank.
<<elseif $kate.uni.hobby == "actress">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<if $temp.kateIsLadyMacbeth>>
<<set $avatar.clothing.pushUnique("uni/50_ukUniCostume-greenFlaredLongSleevedLadyMacbethDress-" + $kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/50_ukUniCostume-blackFlaredLongSleevedWitchDress-" + $kate.braSize)>>
<</if>>
<</silently>>\
The opening night of Macbeth (or "the Scottish play", as everyone in the production superstitiously insists on calling it) races up. Posters of you have been on the walls all around campus for weeks!
On the big night, you wait nervously in the wings while an audience of students and locals settles into their seats. Macbeth begins with possibly the most theatrical opening stage direction of any play: //Thunder and lightning, Enter three witches.//
At 7PM precisely, the lights dim, and the sound of a foul storm roils menacingly through the theatre PA. Rain hisses, thunder booms, stage lights flash.
<<if $temp.kateIsLadyMacbeth>>\
Then the sound dips, and the witches head for the stage. You'll take the stage in scene 5 – the scene where you persuade your husband, Macbeth, to seize his destiny and assassinate the king. Your stomach's churning and your mouth is dry - right now you'd give anything to get out of this, but it's [[too late to back down|UKUNI-6310 Macbeth]].
<<else>>\
Then the sound dips and – sharing an encouraging nod with your two sister witches – you take the stage. Your stomach's churning and your mouth is dry. But it's [[too late to back out|UKUNI-6310 Macbeth]].
<</if>>\
<<elseif $kate.uni.hobby == "d&d">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-greyNarrowBlackBand-barefoot")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-whiteLongSleevedTurtleNeckJumper-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/40_ukUniDress-blackDungareeDressWithFrontPockets")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</silently>>\
"The characters in your books are so amazing," says Oz one day in your room, flipping through a D&D book. "I love the costumes. Look at this belt with all the little pockets! Can I borrow this? It's giving me ideas."
"It's Glenn's," you tell her. "I can ask him? Hey, did you know I <<if not hasVisited("CC-COSPLAY-1000 Entering the contest")>>nearly <</if>>did cosplay once?"
"Huh? What's cosplay?"
When Oz finds out there are competitions where people display fantasy costumes they've made, she's stunned. "Why didn't you tell me about this?" she demands.
"I thought you knew! You study fashion."
"I'd //love// to make things like this! We //have// to do it," she says, with real intensity. "We'll work together on your next cosplay – deal?"
<<if hasVisited("UKUNI-6200 Kate teases Hot Prof")>>\
<<link "Sure, why not?" "UKUNI-6400 Hot Prof seduction choice">><</link>>
<<else>>\
<<link "Sure, why not?" "UKUNI-7000 Spring 2012">><</link>>
<</if>>\
<<elseif $kate.uni.hobby == "rockStar">>\
<<silently>>
<<if hasVisited("CC-BOTB-2200 Metal makeover")>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniStockings-blackSheerNarrowBlackBandWithFishnetOverlay-highHeels")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-blackCottonFlaredOrangeWildCatVest-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniSkirt-blackBodyconMini")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<else>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniLeggings-blackCottonLeggings")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-blackCottonFlaredOrangeWildCatVest-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<</if>>
<</silently>>\
In the meantime, Death From Above has made it out of the rehearsal room and back onto the local music scene, ready to debut with new bassist $kate.firstName!
Rehearsing and promoting gigs takes up a lot of your time, but playing shows makes it all worth it. You love locking your bassline in with Terry and Neil, feeling the whole crowd move to the same rhythm. Something about it's almost spiritual; you're separated from the crowd, but you're also connected with them in some way.
DFA has about twenty "superfans" who buy merch, come to every show, sing along to all the tracks, and start a mosh pit when you play //Seven Witches.//
From hanging out with them after shows and at the merch table, you get to know them all pretty well during your time at $kate.uni.shortName: some are old rockers, some are young metalheads, but they all have one thing in common: Death From Above is their favourite band.
It's exciting...and pretty humbling. Nobody ever said that about Naked Tuna.
<<elseif $kate.uni.hobby == "cadet">>\
<<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-pinkAndBrownBowStringSidedPants")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTrousers-khakiDMPCargoTrousers")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-khakiDMPLongSleevedTop-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-brownLeatherAssaultBoots")>>
<</silently>>\
Every week you have drill night at the UOTC.
The format's the same: it starts with parade (everybody standing in formation for a roll call and announcements), then you "fall out" for activities – either lessons in some military skill like map-reading, weapons drill or radio operation, or packing kit for a field exercise if one's coming up.
You can optionally leave at this point, but most cadets stay on for dinner in the mess (cheap, very good), then drinks in the bar (cheap, very many).
The UOTC is sometimes described as "a drinking club with a rifle problem" and this is only half a joke; these sessions are pretty boozy, and normally end with everyone getting changed into their civvies and going on to a nightclub.
Mixing booze and camaraderie with a group of fit, take-charge, testosterone-fuelled young men means hook-ups are pretty common in the UOTC.
<<if $kate.quirks.includes("easy")>>\
Most female cadets will roll two 4-sided die (2D4) to see how many male cadets and staff members they hook up with in UOTC. You'll roll 3D4, because you're //easy.//
<<elseif $kate.quirks.includes("picky")>>\
Most female cadets will roll two 4-sided dice (2D4) to see how many male cadets and staff members they hook up with in UOTC. You'll roll 1D4, because you're more //picky// than they are.
<<else>>\
Like most female cadets, you'll roll two 4-sided dice (2D4) to see how many male cadets and staff members you hook up with in UOTC.
<</if>>\
<div id="dice-rolled">
<<button "''UOTC HOOKUPS''">>
<<if $kate.quirks.includes("easy")>>
<<set _random1 to random(1,4)>>
<<set _random2 to random(1,4)>>
<<set _random3 to random(1,4)>>
<<set _dice to "1d4 + 1d4 + 1d4 @ "+_random1 +" "+_random2 +" "+_random3>>
<<set $temp.uotcBodyCount to _random1 + _random2 + _random3>>
<<elseif $kate.quirks.includes("picky")>>
<<set _random to random(1,4)>>
<<set _dice to "1d4 @ "+_random>>
<<set $temp.uotcBodyCount to _random>>
<<else>>
<<set _random1 to random(1,4)>>
<<set _random2 to random(1,4)>>
<<set _dice to "1d4 + 1d4 @ "+_random1 +" "+_random2>>
<<set $temp.uotcBodyCount to _random1 + _random2>>
<</if>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
<<link "//Continue//" "UKUNI-6350 UOTC body count">>
<</link>>
<</replace>>
<</rollDice>>
<</button>>
</div>\
<<else>>\
(ERROR IN KATE.UNIHOBBY VAR)
<</if>>\
<<if $kate.uni.hobby != "cadet" and $kate.uni.hobby != "actress" and $kate.uni.hobby != "d&d">>\
<<if hasVisited("UKUNI-6200 Kate teases Hot Prof")>>\
<<link "//Continue//" "UKUNI-6400 Hot Prof seduction choice">><</link>>
<<else>>\
<<link "//Continue//" "UKUNI-7000 Spring 2012">><</link>>
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateIsLadyMacbeth>>\
//"That which hath made them drunk hath made me bold..."//
<<else>>\
//"Fair is foul, and foul is fair,
Hover through the fog and filthy air..."//
<</if>>\
If there's a buzz like nailing all your lines on opening night, you don't know what it is. The play ends to rapturous applause, a whole theatre full of people on their feet and commending your performance with whoops and cheers and a storm of flowers tossed up onto the stage.
You beam in triumph and delight as you and the rest of the cast soak it all in. It's an amazing experience<<if $kate.quirks.includes("rockChick")>> – a way better reaction than your band Naked Tuna ever got<</if>>. Your body's swimming in adrenaline as you head backstage to get changed for the after-party.
One thing's crystal clear in your mind: this is not the last time you'll be performing on a stage. //I am// definitely //doing this again.//
<<if hasVisited("UKUNI-6200 Kate teases Hot Prof")>>\
<<link "//Continue//" "UKUNI-6400 Hot Prof seduction choice">><</link>>
<<else>>\
<<link "//Continue//" "UKUNI-7000 Spring 2012">><</link>>
<</if>>\
<</page>><<silently>>
<<if $kate.firstName[0]=="H">>
<<set _harriet to "Nikki">>
<<else>>
<<set _harriet to "Harriet">>
<</if>>
<<if $kate.surname[0]=="S">>
<<set _smith to "Jones">>
<<else>>
<<set _smith to "Smith">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You have ''$temp.uotcBodyCount'' hookups in UOTC. It's hard to tell, because the other girls in your platoon don't talk about it, but you think that's <<if $temp.uotcBodyCount lte 2>>fewer than most<<else>>about the norm<</if>>.
It's definitely not as many as OCdt _harriet _smith, a statuesque but plain cadet from a local agricultural college. She picks up the nickname "Backup" for her willingness to go home with any male cadets who fail to get laid in the club. You and some of the other girls do your best to warn the men in your platoon away from that gross bitch, but you're not sure they listen.
In this version, your body count is just a number, but in future versions a short bio of each sexual encounter will be published on your Character Sheet. You'll also gain Experience Points from each one.
<<if hasVisited("UKUNI-6200 Kate teases Hot Prof")>>\
<<link "//Continue//" "UKUNI-6400 Hot Prof seduction choice">><</link>>
<<else>>\
<<link "//Continue//" "UKUNI-7000 Spring 2012">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("teenRom/10_geekSocks-palePinkWithPinkHeartsCottonAnkleSocks")>>
<<set $avatar.clothing.pushUnique("teenRom/10_rockerLeggings-blackCottonLeggings")>>
<<set $avatar.clothing.pushUnique("teenRom/40_geekTop-pinkHoodieSweater-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
Valentine's Day comes and goes. Only Sadie has a date, so you end up sitting in with Maryanne and Oz, drinking pink wine and talking about how lame and commercial Valentine's Day is.
Occasional dating <<if hasVisited("UKUNI-3050 Kate bags a fuck buddy")>>and your thing with Simon are<<else>>is<</if>> //fine,// but lately you've been thinking a lot about Professor Wells: the zingy banter, his maturity and sexy authority, the way you're obviously attracted to each other.
And it's not just a physical thing. There's an intellectual connection, which makes you feel like you'd be one of his favourite students even if there weren't an attraction between you. He said your last assignment "felt like reading a younger version of myself"; in fact, he's asked for a meeting to discuss how you could turn it into the subject of your dissertation.
Student/teacher relationships are such a cliche. There's no way it could possibly work out...right?
It's probably illegal. You'd have to keep it completely secret. At least at first, anyway. But //maybe...//
<<link "//Keep it to mutual appreciation and flirting.//" "UKUNI-6500 Hot Prof flirting only">><</link>>
<<if $kate.attributes.extraversion.level gt 0>>\
//[Extraverted]// <<link "//Invite him out to Oz's birthday drinks on Friday.//" "UKHOTPROF-1000 Hot Prof party invite">><</link>>
<<else>>\
<span class="greyedOut">//[Extraverted] Invite him out to Oz's birthday drinks on Friday.//</span>
<</if>>\
<<link "//Suggest having the meeting off campus, over a coffee.//" "UKHOTPROF-3200 Off campus meeting">><</link>>
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTrousers-blackSkinnyTrousers")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-darkGreyFlaredLongSleevedVNeck-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniBoots-blackKneeHighFlatsWithBuckle")>>
<</silently>>\
<<header>>\
<<page>>\
After some daydreaming, you realise that actually getting involved would be a terrible idea. You've got a good thing going with Professor Wells. Why spoil it?
You and Hot Prof go on to share a highly productive relationship for the rest of your time at $kate.uni.shortName. You work hard in his class, and he mentors and develops you into a better student.
It doesn't hurt at all that you both obviously find each other hot, but by unspoken agreement neither of you ever pushes it further than playful flirting in class or in email, or the occasional lingering look.
Sometimes you wonder if his sexual fantasies about you are anywhere near as detailed and dirty as yours are about him.
<<link "//Continue//" "UKUNI-7000 Spring 2012">><</link>>
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("teenRom/30_bra-pinkAndChampagneCandyStripeBra-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-yellowAndWhitePolkaDotShortSleevedVNeckMini-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-yellowAnkleHighStrappyFlatSandals")>>
<</silently>>\
<<header>>\
<<page>>\
Your studies continue, the lectures gradually becoming more complex and advanced. The air warms up as winter gives way to spring, the campus blooming with daffodils and the smell of fresh cut grass.
<<if $kate.uni.shortName == "Oxford">>In April you and all your friends have a picnic on the bank of the Thames, and watch the 158th University Boat Race. Holding a glass of Pimms aloft, you scream encouragement at the Oxford boat as it passes; unfortunately Cambridge wins this year, after the race is interrupted by a protestor swimming in the water.<<else>>One night in early March you're crossing the quad when you see a huddle of other students, staring up at the sky.
You look up in time to see a glowing orange object streak through the stars. It glides silently across the sky, then fizzles out in a shower of sparks. The consensus in the quad is that it was a plane on fire...but checking online reveals it to have been a big meteor, visible across most of the UK.<</if>>
//[[Continue|UKUNI-7100 Kate's 20th]]//
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked>>
<<lifepath-18yrAvatarHairLongMessy>>
<<set $avatar.background.pushUnique("uni/20_ukUni-20TodayBalloons")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-redOneShoulderMiniWithSideSlit-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-blackStilettoStrappySandals")>>
<<set $header.line2 to "2012 / AGE 20">>
<</silently>>\
<<header>>\
<<page>>\
Weeks roll by. You celebrate your 20th birthday at The Ram, then \
<<if $kate.quirks.includes("rockChick")>>\
go mosh the night away at a rock night called Alchemy.
<<else>>\
<<if hasVisited("UKHOTPROF-1800 Vags")>>\
drink and dance the night away at Slags.
<<else>>\
drink and dance the night away at a tacky local nightclub, Vagabonds.
<</if>>\
<</if>>\
<<if $temp.kateIsSimonsSideChick>>\
Simon does something unexpectedly nice by showing up at your party, even though he //hates// <<if $kate.quirks.includes("rockChick")>>Alchemy<<else>>Vags<</if>>! Sadly, you down too many birthday drinks to thank him properly; your birthday ends with Maryanne holding your hair out of the toilet bowl while you puke out a sea of tequila.
<<else>>\
You have a great time, including meeting a hot guy <<if $kate.quirks.includes("rockChick")>>with blue hair<<else>>in a suit<</if>> who buys you quite a few birthday drinks. You make plans to take him home, despite the vocal misgivings of //all// your friends, but you end up partying too hard to do so.
The night ends with Maryanne holding your hair out of the toilet bowl while you puke out a sea of tequila.
<</if>>\
<<if hasVisited("UKHOTPROF-5500 Honeymoon phase") and not hasVisited("UKHOTPROF-6700 Kate ends it")>> /* kate is in a relationship w/Hot Prof */ \
<<link "//Continue//" "UKHOTPROF-10000 Sneaking around phase">><</link>>
<<else>>\
<<link "//Continue//" "UKUNI-7200 Freshman 15">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<if $kate.uni.hobby == "volleyball">>\
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-greySportsShorts")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-ecruRibbedFrontButtonedShortSleevedCropTop-" + $kate.braSize)>>
<<else>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-babyBlueCottonTrainerSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniJeans-darkBlueDenimSkinnyJeans-thicc")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-babyBlueAndBrownLongSleevedBaseballTop-thicc-" + $kate.braSize)>>
<<if $kate.quirks.includes("rockChick")>>
<<set $avatar.clothing.pushUnique("uni/30_rockerBoots-blackDMFlatformAnkleBoots")>>
<<else>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-petrolConverseTrainers")>>
<</if>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Of course, mainly your time at $kate.uni.shortName is spent in lectures or in research. You get to know the campus well, especially the ancient, impressive libraries.
Maintaining a healthy lifestyle is a challenge. With unlimited cafeteria food, no parents to control their diets, regular heavy drinking, and snack-fuelled late night study sessions, it's common for students to pack on weight in their first year at uni.
<<if $kate.uni.hobby == "volleyball">>\
It's not going to happen to you, though. Volleyball squad workouts are brutal, even without all the sprinting and jumping in matches.
And besides...you've seen the summer uniform! It's practically a bikini. Coach Liz told you that the outdoor summer matches draw a much bigger audience than the indoor ones...now you've seen what you'll be wearing, you know why.
Realising that you'll be running around showing off your midriff to the whole university – and by the sound of it, half the dads and lads of $kate.uni.shortName – really helps focus the mind when you're considering having that extra slice of pizza, or skipping a workout.
//[Conscientious]// //[[Try to develop a six-pack.|UKUNI-7250 Six-pack]]//
//[[Just stay toned.|UKUNI-7240 Staying toned]]//
<<else>>\
You've never struggled with your weight before<<if $kate.braSize == "large">>– "it all just goes <<if $kate.quirks.includes("elite")>>to her breasts<<else>>on her boobs<</if>>", your mum said about your figure once – <<else>>...<</if>>so it's a bit of a shock to realise that zipping up your favourite skinny jeans has turned into a struggle.
You talk about it with Maryanne, who's noticed her own clothes getting tighter, too. The two of you resolve to eat healthier, and become exercise buddies as well as study buddies.
//[[Join a spinning class.|UKUNI-7300 Fitness regime][$temp.kateSays to "spinning"]]//
//[[Join a running club.|UKUNI-7300 Fitness regime][$temp.kateSays to "running"]]//
<</if>>\
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("foreignAdventure/africa/10_africaShorts-lightGreyLycraCyclingShorts")>>
/* <<set $avatar.clothing.pushUnique("uni/10_ukUniVest-lightGreyRacerbackVest-" + $kate.braSize)>> */
<<set $avatar.clothing.pushUnique("teenRom/30_sportyTop-hotPinkLooseCroppedVestNoGames-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You're exercising plenty, so staying trim mainly just means not making too many bad decisions. By powering late-night study sessions with tea and popcorn instead of energy drinks and pizza, and not //always// saying yes to takeaway night, you end up feeling pretty good about getting out there in the [[summer uniform|UKUNI-7350 Summer uniform]].
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.body.delete("23_abs-sixPack-" + $kate.complexion)>>
<<set $avatar.sixPack to true>>
<<set $avatar.clothing.pushUnique("foreignAdventure/africa/10_africaShorts-lightGreyLycraCyclingShorts")>>
/* <<set $avatar.clothing.pushUnique("uni/10_ukUniVest-lightGreyRacerbackVest-" + $kate.braSize)>> */
<<set $avatar.clothing.pushUnique("teenRom/30_sportyTop-hotPinkLooseCroppedVestNoGames-" + $kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
It isn't easy. The hard part isn't all the millions of crunches you have to do – you actually kind of like the burn – it's getting lean enough so that the muscles show through your skin.
That means saying no to pretty much every takeaway night, powering late-night study sessions with tea and fruit instead of energy drinks and pizza, and switching to shots on nights out.
You're not always //perfect,// but you're persistent, and starting to see results is addictive. By the time summer rolls around you're looking forward to showing off your hard work in the [[summer uniform|UKUNI-7350 Summer uniform]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "spinning">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-whiteAndBlackAnkleSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniLeggings-lightGreyCottonLeggings")>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniVest-lightGreyRacerbackVest-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndEcruTrainers")>>
<</silently>>\
$kate.uni.shortName has a well-equipped gym on campus. You join with Maryanne, and sign up for spinning classes three days per week.
The first couple of sessions are //brutal,// but your bodies quickly adapt. It's hard work, but doing it together makes it easier.
The physical improvements are obvious – you can ride faster and longer on the bike, the extra inches fall off you, and your legs look great in short skirts and skinny jeans – but the improvements to your mood and energy levels are what makes it really addictive.
<<elseif $temp.kateSays == "running">>\
<<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-whiteAndBlackAnkleSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniLeggings-blackCroppedLeggingsWithHotPinkWaistband")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-hotPinkCropVest-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndEcruTrainers")>>
<</silently>>\
Together you join //Legs Miserablés,// the $kate.uni.shortName Uni running club, and get introduced to dozens of scenic running routes that you'd never have discovered alone.
Running brings physical improvements – you can go further and faster, and you look great in short skirts and skinny jeans – but also mental ones: the camaraderie of running long distances in a group, the confidence built by regular physical accomplishment, and the resilience that only people who've run through exhaustion can understand. You stay in the club, and from time to time enter races, building up a collection of medals.
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
<<if hasVisited("UKHOTPROF-5500 Honeymoon phase") and not hasVisited("UKHOTPROF-6700 Kate ends it")>> /* kate is in a relationship w/Hot Prof */ \
<<link "//Continue//" "UKHOTPROF-11000 Rumours">><</link>>
<<elseif hasVisited("UKUNI-6100 Sadie teases Hot Prof")>> /* sadie is in a relationship w/Hot Prof */ \
//[[Continue|UKUNI-7400 Slut shaming Sadie]]//
<<else>>\
<<link "//Continue//" "UKUNI-7600 Moving off campus">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("uni/10_ukUniSocks-blackAnkleSocks")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUni-summerVbUniform-bottoms")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUni-summerVbUniform-top-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-whiteAndEcruTrainers")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniKneepads-blackVolleyballKneepads")>>
<<set $avatar.foreground.pushUnique("uni/60_ukUniVolleyball-volleyball")>>
<</silently>>\
<<header>>\
<<page>>\
Coach Liz wasn't joking about the attendance! Summer volleyball must be one of the few sports where more people show up to watch the women's competitions than the men's.
On one hand, it's kind of gross that a lot of people show up to ogle you. On the other hand...it's kind of cool that a lot of people show up to watch some sport. Competing in front of a crowd makes every summer match feel serious and exciting.
All your hard work pays off. At the end of the summer season, you're picked for the <<if $temp.kateVolleyballRank == "B Team">>A Team<<set $temp.kateVolleyballRank to "A Team">><<else>>B Team<<set $temp.kateVolleyballRank to "B Team">><</if>>!
<<if hasVisited("UKHOTPROF-5500 Honeymoon phase") and not hasVisited("UKHOTPROF-6700 Kate ends it")>> /* kate is in a relationship w/Hot Prof */ \
<<link "//Continue//" "UKHOTPROF-11000 Rumours">><</link>>
<<elseif hasVisited("UKUNI-6100 Sadie teases Hot Prof")>> /* sadie is in a relationship w/Hot Prof */ \
//[[Continue|UKUNI-7400 Slut shaming Sadie]]//
<<else>>\
<<link "//Continue//" "UKUNI-7600 Moving off campus">><</link>>
<</if>>\
<</page>><<silently>>
<<avatar-normal>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTrousers-khakiCapriCargoTrousers")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniTop-babyBlueVestWithSpaghettiStraps-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-beigeLowWedgeSandals")>>
<<if $kate.uni.shortName == "Oxford">>
<<set _unsuitablePartner to "Erik the Panda",
_unsuitablePartnerExplanation to "Erik is the mascot of the Scouting Society">>
<<elseif $kate.uni.shortName == "Durham">>
<<set _unsuitablePartner to "Butler the Mole",
_unsuitablePartnerExplanation to "Butler is the Josephine College mascot">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set _unsuitablePartner to "Dewi the Dragon",
_unsuitablePartnerExplanation to "Dewi is the Cardiff University sports mascot">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You sit down for a coffee in the quad with Oz and Maryanne, who's eager to share some juicy gossip. "So I think we've found out who Sadie's mystery boyfriend is," she begins. "Guess who a little birdy saw coming out of her block at 2AM?"
"_unsuitablePartner?" jokes Oz, stirring sugar into her triple shot Americano. _unsuitablePartnerExplanation.
"Nope. Hot Prof."
[[No way!|UKUNI-7500 Gossiping about Sadie][$temp.kateSays to "noWay"]]
[[Knew it.|UKUNI-7500 Gossiping about Sadie][$temp.kateSays to "knewIt"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateSays == "noWay">>\
"No way!" you gasp. "Who saw him?"
<<elseif $temp.kateSays == "knewIt">>\
"Knew it," you smirk. "Who saw him?"
<<else>>\
(ERROR IN TEMP.KATESAYS VAR)
<</if>>\
"Someone reliable," Maryanne assures you. "Told you she always looks 'nice' for his lectures! I just can't believe they're doing it in her dorm room, it's hardly discreet."
"My goodness," Oz giggles, picturing it. "Well...one sure way to get an A, I guess."
Rumours and gossip fly around the campus for the next few weeks. Opinion on Professor Wells is divided: some students think this makes him hotter, more of a stud. More traditional students say he should be reported to the Dean.
Sadie's called a slut behind her back by the students, and gets hard looks and sharp comments from faculty members. She swears blind to you and the others that it's all bullshit. But it's hard to believe her.
//[[Continue|UKUNI-7600 Moving off campus]]//
<</page>><<silently>>
<<avatar-stripNaked barefoot>>
<<lifepath-18yrAvatarHairPonytail>>
<<set $avatar.underwear.pushUnique("30_bra-plain-nude-" +$kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniShorts-petrolHikerShortsWithBrownBelt")>>
<<set $avatar.clothing.pushUnique("uni/30_ukUniTop-whiteEmpireFlaredVestWithSpaghettiStraps-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniShoes-blackStrappyFlatSandals")>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("UKHOTPROF-11000 Rumours")>>\
The next few weeks are tough. The rumours and gossip hang over you like a dark cloud. You keep to yourself as much as you can. It's a relief when the spring semester comes to an end...maybe the fuss will die down over the summer.
<<else>>\
The spring semester comes to an end, and so does your first full year at $kate.uni.shortName University!
<</if>>\
<<if $temp.kateIsSimonsSideChick>>\
Simon graduates; you spend one last night in his room, and help him clean it up in the morning. At first he's grateful but, as the morning passes, you realise he's trying to get rid of you.
Wearing rubber gloves and carrying a bucket of cleaning supplies, you bump into his parents on the way out. He doesn't introduce you.
<</if>>\
Second year students can't live in halls, so you need to move off campus and into [[student digs|UKUNI-7700 The student house]].
<</page>><<silently>>
<<if $kate.uni.shortName == "Oxford">>
<<set _studentNeighbourhood to "Summertown, a hip student neighbourhood close to campus">>
<<elseif $kate.uni.shortName == "Durham">>
<<set _studentNeighbourhood to "The Viaduct, a hip student neighbourhood close to the campus">>
<<elseif $kate.uni.shortName == "Cardiff">>
<<set _studentNeighbourhood to "Tredegarville, a hip student neighbourhood close to the campus">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.attributes.conscientiousness.level gt 0>>\
Fortunately, you and Maryanne planned ahead. Your \
<<else>>\
Your friendship group had a secret weapon on this front: Maryanne's love of planning ahead. Her \
<</if>>\
diligence allowed you guys to beat the rush – after several viewings you settle on a 4-bed house in _studentNeighbourhood.
<<if $kate.attributes.conscientiousness.level gt 0>>Sadie and Oz are thrilled with you guys – you've found<<else>>You, Sadie and Oz all have to hand it to Maryanne – she's found<</if>> a nice, spacious house in a safe but cool neighbourhood, with rent that everyone can afford.
The landlord, Mr Radakrishnan, is pleased that his new tenants are "four nice girls" who won't hold wild parties and wreck the place like boys would.
"Not a great judge of character," is Sadie's verdict on him. "The Ram's like five minutes away. Pre-drinks, Ram, back to ours. You realise we're gonna be the most popular second years on campus, right?"
[[(End of current content)|End of content page]]
<</page>><<page>>\
[[26 YEARS AGO...|UKYOUTH-2000 Your birth]]
<</page>><<silently>>
<<util-avatarValuesToCamel>>
<<getKatesBirthHospital>>
<<lifepathSetBabyAvatar>>
<<set $header.line1 to "''_HOSPITAL,'' LONDON",
$header.line2 to "APRIL 11, 1992 / 0657HRS">>
<<if $kate.attributes.height.level gte 2>>
<<set _babyWeight to "9lb 4oz",
_bodyDescription to "strapping">>
<<elseif $kate.attributes.height.level == 1>>
<<set _babyWeight to "8lb 10oz",
_bodyDescription to "healthy">>
<<elseif $kate.attributes.height.level == 0>>
<<set _babyWeight to "7lb 8oz",
_bodyDescription to "healthy little">>
<<elseif $kate.attributes.height.level == -1>>
<<set _babyWeight to "6lb 13oz",
_bodyDescription to "cute little">>
<<elseif $kate.attributes.height.level lte 2>>
<<set _babyWeight to "6lb 2oz",
_bodyDescription to "tiny">>
<</if>>
<<if $kate.attributes.beauty.level gte 2>>
<<set _adorable to "beautiful">>
<<else>>
<<set _adorable to "pretty">>
<</if>>
<<if $kate.quirks.includes("elite")>>
<<set _yourFamilyHome to "a multi-million pound townhouse in Mayfair">>
<<elseif $kate.quirks.includes("working class")>>
<<set _yourFamilyHome to "a council house in Tottenham">>
<<else>> /* Kate is middle class */
<<set _yourFamilyHome to "a suburban terrace in Wimbledon">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Weighing in at _babyWeight, you're born on a sunny spring morning – a _bodyDescription girl named $kate.firstName! Everybody agrees that you're an especially _adorable baby.
You stay in the hospital overnight. Next morning, <<if $kate.quirks.includes("single mum")>>a family member carefully drives you and your mum<<else>>your parents carefully drive you<</if>> home, to [["" + _yourFamilyHome + ""|UKYOUTH-2010 Childhood home]].
<</page>><<silently>>
<<lifepath-8yrAvatar>>
<<avatar-age8-normal>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<set $header.line2 to "THE NINETIES">>
<<countKatesSiblings>>
<<if _brothers gt 0 and _sisters gt 0>>
<<set _siblings to "siblings">>
<<elseif _brothers gt 1>>
<<set _siblings to "brothers">>
<<elseif _sisters gt 1>>
<<set _siblings to "sisters">>
<<elseif _brothers == 1>>
<<set _siblings to "brother">>
<<elseif _sisters == 1>>
<<set _siblings to "sister">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("elite")>>\
You [[grow up|UKYOUTH-3000 Early years]] in London's most elite neighbourhood. The most expensive square on the Monopoly board, Mayfair's home to imposing residential buildings and world-famous restaurants, hotels and galleries.
Your family home is a spectacular five floor Georgian townhouse overlooking Hyde Park. On Sunday mornings, you <<if _brothers gt 0 or _sisters gt 0>>and your _siblings<</if>> like to stroll through a pristine street lined with Bentleys, Lamborghinis and Aston Martins, <<if _brothers gt 0 or _sisters gt 0>>each<</if>> carrying a bag of breadcrumbs to feed the swans who live in the park.
<<elseif $kate.quirks.includes("working class")>>\
You [[grow up|UKYOUTH-3000 Early years]] in Tottenham, a working class neighbourhood in North London that's home to one of the country's top football teams. On match days, you <<if _brothers gt 0 or _sisters gt 0>>and your _siblings amuse yourselves<<else>>amuse yourself<</if>> for hours by waving to the horde of fans marching past your front window to get to the match.
Your family home is a council house that's run-down on the outside and brimming with chintz on the inside. The garden's tiny, but there's a big public park with a play area nearby.
In summers they open a community paddling pool in the park, and it's filled with squealing local kids from dawn to dusk.
<<else>> /* Kate is middle class */\
You [[grow up|UKYOUTH-3000 Early years]] in a sprawling residential suburb: street after street of Victorian terraces, broken up occasionally by a park or some local shops clustered around a junction or a tube station.
Your family home is an unremarkable mid-row terrace. Wimbledon Common, one of London's biggest green spaces, is about a ten minute walk to the north.
Your back garden overlooks an ambulance station, and you <<if _brothers gt 0 or _sisters gt 0>>and your _siblings<</if>> sometimes peep through a gap in the fence at the goings-on – although nothing ever really happens.
<</if>>\
<</page>><<silently>>
<<set $header.line2 to "2000 / AGE 8">>
<<getKatesPrimarySchool>>
/* set up the names of Kate's first friends, based on her social class */
<<if $kate.quirks.includes("elite")>>
<<if $kate.firstName == "Jocasta">>
<<set $temp.firstFriend to "Tabitha">>
<<else>>
<<set $temp.firstFriend to "Jocasta">>
<</if>>
<<set _otherFriends to [
"Lucy",
"Kitty",
"Tamsin"]>>
<<elseif $kate.quirks.includes("working class")>>
<<if $kate.firstName == "Jade">>
<<set $temp.firstFriend to "Carley">>
<<else>>
<<set $temp.firstFriend to "Jade">>
<</if>>
<<set _otherFriends to [
"Skye",
"Courtney",
"Suze"]>>
<<else>> /* Kate is middle class */
<<if $kate.firstName == "Amy">>
<<set $temp.firstFriend to "Hannah">>
<<else>>
<<set $temp.firstFriend to "Amy">>
<</if>>
<<set _otherFriends to [
"Claire",
"Vicky",
"Kate"]>>
<</if>>
/* Delete Kate's name from the _otherFriends array so they can't share a name */
<<set _otherFriends.delete($kate.firstName)>>
<<if $kate.quirks.includes("elite")>>
<<set _hometown to "Hyde Park">>
<<elseif $kate.quirks.includes("working class")>>
<<set _hometown to "the estate">>
<<else>> /* Kate is middle class */
<<set _hometown to "Wimbledon Common">>
<</if>>
<<if $kate.attributes.extraversion.level gte 1>>
<<set _friends to "lots of friends! Your best friends are " + $temp.firstFriend + ", " + _otherFriends.pluck() + ", " + _otherFriends.pluck() + ", and a boy neighbour called Josh",
_group to "five">>
<<elseif $kate.attributes.extraversion.level == 0>>
<<set _friends to "your first friends! Your best friends are " + $temp.firstFriend + ", " + _otherFriends.pluck() + ", and a boy neighbour called Josh",
_group to "four">>
<<elseif $kate.attributes.extraversion.level lte -1>>
<<set _friends to "a few close friends. Your best friends are " + $temp.firstFriend + " and a boy neighbour called Josh",
_group to "three">>
<</if>>
<<if $kate.quirks.includes("single mum") and not $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>
<<set _youHeadToYour to "your mum takes you to stay at her">>
<<else>>
<<if not $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>
<<set _youHeadToYour to "your parents take you to stay at their">>
<<else>>
<<set _youHeadToYour to "your family stays at your">>
<</if>>
<</if>>
<<avatar-age8-smile>>
<</silently>>\
<<header>>\
<<page>>\
The 1990s sweep slowly by. You grow up during the rise of the internet, the boy band, and the Spice Girls with their encouraging girl power message.
You enrol at _primarySchool, and make _friends. The _group of you like riding your bikes around _hometown together.
As New Year's Eve 1999 approaches, everybody worries that the Y2K computer bug will cause power grids to fail, aircraft to fall from the sky, and maybe even nuclear war to start by accident! <<if $kate.quirks.includes("elite")>>Fearing civil unrest in London, _youHeadToYour farm in Cornwall for a few days.<</if>>
But midnight comes and goes without incident, bringing the millennium to a peaceful [[close|UKYOUTH-4000 9/11]].
<</page>><<silently>>
<<set $header.line2 to "SEP 11, 2001 / AGE 9">>
/* ensure primary teacher's surname doesn't match Kate's */
<<if $kate.surname == "Taylor" or $kate.surname == "Tailor">>
<<set _yourPrimaryTeacher to "Miss Daley">>
<<else>>
<<set _yourPrimaryTeacher to "Miss Taylor">>
<</if>>
<<lifepath-8yrAvatar-school>>
<<avatar-age8-normal>>
<</silently>>\
<<header>>\
<<page>>\
It's a normal Tuesday afternoon at school; you're at your desk, taking a spelling test. Meanwhile – halfway across the world – the deadliest terror attack in human history is underway.
You suspect something's up when _yourPrimaryTeacher gets called out of the classroom, and returns looking very worried. But it's not until you get home that you learn [[what's happened in America|UKYOUTH-4001 9/11 on TV]].
<</page>><<silently>>
<<lifepath-8yrAvatar-school>>
<<avatar-age8-shock>>
<</silently>>\
<<header>>\
<<page>>\
It started when 19 hijackers seized control of four passenger jets in mid-air. In one stunning hour they crashed three of them into the World Trade Center and the Pentagon; the fourth crashed into a field while the passengers inside fight back. Thousands of ordinary civilians were killed this morning, and the course of the next two decades shifted dramatically.
Normally you watch <i>SpongeBob SquarePants</i> every afternoon, but for the next few days you race home from school to watch news coverage of burning skyscrapers, and scary terrorists in [[faraway deserts|UKYOUTH-4010 The War on Terror]].
<</page>><<silently>>
<<set $header.line2 to "2001 / AGE 9">>
<<if $kate.quirks.includes("single mum")>>
<<set _yourDad to "Your mum's new boyfriend",
_dadName to "Jeff">>
<<else>>
<<set _yourDad to "Your dad",
_dadName to "dad">>
<</if>>
<<avatar-age8-normal>>
<</silently>>\
<<header>>\
<<page>>\
For a short time, the free world's united against the threat. The Prime Minister, Tony Blair, promises to stand shoulder to shoulder with America. In less than a month, US & British air strikes are raining down on Afghanistan; more countries will soon join the effort.
_yourDad tells you that, on the ground, the SAS will be showing the Yanks how it's done.
[[Who's the SAS?|UKYOUTH-4020 What's the SAS?]]
[["Whatever, " + _dadName + "."|UKYOUTH-4030 Whatever dad]]
<</page>><<silently>>
<<if $kate.quirks.includes("single mum")>>
<<set _he to "Jeff">>
<<else>>
<<set _he to "He">>
<</if>>
<<set $kate.quirks.push("andyMcNabFan")>>
<<avatar-age8-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
_he <<if not $kate.quirks.includes("elite")>>proudly <</if>>explains that the SAS are the <<if $kate.quirks.includes("elite")>>toughest soldiers in the Army<<else>>best-trained soldiers in the world<</if>>, and lends you his copy of <i>Bravo Two Zero</i> by Andy McNab. It's a true account of a secret mission in Iraq, which took place the year before you were born.
This book is very heavy going for a nine-year old, and you skip over some parts filled with so much jargon or detail that they're impossible to follow.
But you follow the gist, and develop a strong admiration for the brave, cheery narrator and the tough soldiers in his team. When you later make discreet enquiries, you're disappointed to learn that girls aren't allowed in the SAS.
[[Continue|UKYOUTH-4900 Title Card]]
<</page>><<silently>>
<<if $kate.quirks.includes("single mum")>>
<<set _dad to "Jeff">>
<<else>>
<<set _dad to "dad">>
<</if>>
<<avatar-age8-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Sure thing, _dad," you nod along. "Whatever."
<<if $kate.quirks.includes("single mum")>>\
She's way too good for him; you can't <i>wait</i> for the breakup. You've already planned some things to do that will cheer her up, like a trip to the zoo, and rewatching <i>Titanic</i> together.
<<else>>\
He's so uncool sometimes. You're not even a teenager yet and he's <i>already</i> embarrassing.
<</if>>\
<<link "//Continue.//" "UKYOUTH-4900 Title Card">><</link>>
<</page>><<page>>\
[[THREE YEARS PASS...|UKYOUTH-5000 High school]]
<</page>><<silently>>
<<getKatesPrimarySchool>>
<<getKatesHighSchool>>
<<lifepath-12yrAvatar>>
<<avatar-age12-normal>>
<<set $header.line1 to "''_HIGHSCHOOL'', _HIGHSCHOOLLOCATION",
$header.line2 to "2004 / AGE 12">>
<</silently>>\
<<header>>\
<<page>>\
Moving up to secondary school is nervewracking! It's a big comfort when you learn that you and $temp.firstFriend have been assigned to the same form.
Moving around to different classrooms and teachers between lessons is a novelty. The campus is much busier than _primarySchoolShortName, the hallways bustling with hundreds of noisy pupils once every hour.
<<if $kate.attributes.extraversion.level gte 1>>\
Despite your initial nerves you make new friends easily, and come to be seen as one of the [[popular girls|UKYOUTH-5010 High school academics]].
<<elseif $kate.attributes.extraversion.level == 0>>\
You stick close to $temp.firstFriend at first, but also make some new close friends once you [[settle in|UKYOUTH-5010 High school academics]].
<<elseif $kate.attributes.extraversion.level lte -1>>\
You're quite shy, spending most of your time either with $temp.firstFriend or alone. Some people consider you a [[bit of a wallflower|UKYOUTH-5010 High school academics]].
<</if>>\
<</page>><<silently>>
<<lifepath-12yrAvatarNoBlazer>>
<<getKatesPrimarySchool>>
<<getKatesHighSchool>>
<<avatar-age12-normal>>
<<if $kate.attributes.intellect.level gte 2>>
<<set _performWell to "shine, near the top of the class in every subject">>
<<avatar-age12-smile>>
<<else>>
<<set _performWell to "perform well, especially in English and Humanities">>
<</if>>
<<if $kate.quirks.includes("single mum")>>
<<set _parents to "mum">>
<<else>>
<<set _parents to "mum and dad">>
<</if>>
<<if $kate.quirks.includes("elite")>>
<<set _youreUniversityMaterial to "Your form tutor tells your _parents that you shouldn't have any trouble getting into a good university.">>
<<elseif $kate.quirks.includes("working class")>>
<<set _youreUniversityMaterial to "Your form tutor tells your _parents to consider sending you to university!">>
<<else>> /* Kate is middle class */
<<set _youreUniversityMaterial to "Your form tutor tells your _parents that you're a good candidate for university.">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.attributes.conscientiousness.level gt 0>>\
Academically you _performWell. In your report cards, you're praised for the consistent quality of both your classwork and your homework. _youreUniversityMaterial
<<elseif $kate.attributes.conscientiousness.level lt 0>>\
Academically you _performWell (although your teachers <<if $kate.attributes.intellect.level lt 2>>in all subjects<</if>> complain about a lack of effort in your homework). _youreUniversityMaterial
<<else>>\
Academically you _performWell – although some teachers complain you don't push yourself hard enough. _youreUniversityMaterial
<</if>>\
<<if $kate.attributes.coordination.level gte 1>>\
At _primarySchoolShortName, girls were encouraged to participate in sport. Now you're encouraged to <i>compete</i> with one another...and you learn that you're actually pretty fast on your feet, and accurate with a rounders bat. Your PE teacher <<if $kate.attributes.coordination.level gte 2>>says you've got a lot of natural talent, and encourages you to join<<else>>encourages you to try out for<</if>> the netball team [[next year|UKYOUTH-6000 7/7 Attack]].
<<elseif $kate.attributes.coordination.level lte -1>>\
Your least favourite subject is PE; it's always embarrassing to be one of the last girls standing up against the wall, waiting to be picked. You won't be joining the netball team [[next year|UKYOUTH-6000 7/7 Attack]].
<<else>>\
On the PE field, you're middling; you're okay with a rounders bat, but you're not one of the sporty girls desperate to try out for the netball team [[next year|UKYOUTH-6000 7/7 Attack]].
<</if>>\
<</page>><<silently>>
<<getKatesHighSchool>>
<<set $header.line2 to "JULY 7 2005 / AGE 13">>
<<avatar-age12-expr-eyebrows-sad>>
<<avatar-age12-expr-mouth-normal>>
<</silently>>\
<<header>>\
<<page>>\
One summer morning in your second year, shortly after you arrive at school, four suicide bombers attack central London.
<<if $kate.quirks.includes("elite")>>\
At 8.49am, three blow themselves up on packed underground trains leaving King's Cross. One explodes near Edgware Road station, just a few streets away from your house! Luckily, no-one you know is hurt. \
<<elseif $kate.quirks.includes("working class")>>\
At 8.49am, three blow themselves up on packed underground trains leaving King's Cross station – that's just three stops from your house! \
<<else>> /* Kate is middle class */ \
At 8.49am, three blow themselves up on packed underground trains leaving King's Cross. \
<</if>> An hour later, the final bomber blows himself up aboard a double decker bus.
For the emergency services, a day of chaos in the capital is followed by days tending to casualties and recovering charred remains from the burned-out tunnels.
In the end 52 people were killed and 700 were wounded, in the worst single terrorist atrocity on British soil. The suicide bombers were home-grown, but claimed to have been inspired by Al Qaeda.
<<link "//Continue//" "UKYOUTH-7000 Teen identity crisis">><</link>>
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON",
$header.line2 to "2005 / AGE 13">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON",
$header.line2 to "2005 / AGE 13">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON",
$header.line2 to "2005 / AGE 13">>
<</if>>
<<if $kate.quirks.includes("single mum") and not $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>
<<set _yourFamily to "your mum">>
<<else>>
<<if not $kate.quirks.includesAny("big brother", "big sister", "kid brother", "kid sister")>>
<<set _yourFamily to "your parents">>
<<else>>
<<set _yourFamily to "your family">>
<</if>>
<</if>>
<<getKatesHighSchool>>
<<lifepath-12yrAvatarJeansAndHoodie>>
<<avatar-age12-normal>>
<</silently>>\
<<header>>\
<<page>>\
Like all teenagers, you struggle over the next few years to understand who you are and where you fit in. As you experiment with and discover your own independent identity, it feels like <<if $kate.attributes.extraversion.level lte -1>>$temp.firstFriend understands<<else>>your friends understand<</if>> you in a way _yourFamily never will.
As you mature, your place in the social hierarchy at _highSchoolShortName becomes more defined. How do the other kids see you?
<<if $kate.attributes.coordination.level gte 1>>\
[Coordinated] [[Sporty.|UKYOUTH-7100 Sports Star]]
<<else>>\
<span class="greyedOut">[Coordinated] Sporty.</span>
<</if>>\
[Intellectual] [[One of the nerds.|UKYOUTH-7200 Geek Girl]]
<<if $kate.attributes.extraversion.level gte 1>>\
[Extraverted] [[An alpha female.|UKYOUTH-7300 Alpha Female]]
<<else>>\
<span class="greyedOut">[Extraverted] An alpha female.</span>
<</if>>\
<<if $kate.attributes.openness.level gte 1>>\
[Open to Experience] [[The rock chick.|UKYOUTH-7400 Rock Chick]]
<<else>>\
<span class="greyedOut">[Open to Experience] The rock chick.</span>
<</if>>\
<</page>><<silently>>
<<set $kate.quirks.pushUnique("sportsStar")>>
<<lifepath-16yrAvatar>>
<<lifepath-16yrAvatarSportStarClothes1>>
<<avatar-age16-normal>>
<<set $header.line2 to "2008 / AGE 16">>
<<awardXP athlete 500>>
<</silently>>\
<<header>>\
<<page>>\
You make the netball team, gravitating to the Centre position once the coach recognises your knack for quickly spotting opportunities and threats on the court.
As their bodies change in their teens, lots of girls drop out of sport. But you push yourself harder and harder, loving the cameraderie and the sense of well-being that you get from regular training.
You and your team-mates have to put up with after-school training sessions – and jibes about lesbianism – that most girls in your year don't. But the sweet thrill of a well-earned victory always makes it worth it.
<<link "//Continue.//" "UKYOUTH-8000 Barely Illegal">><</link>>
<</page>><<silently>>
<<set $kate.quirks.pushUnique("geekGirl")>>
<<lifepath-16yrAvatar>>
<<lifepath-16yrAvatarGeekClothes1>>
<<set $header.line2 to "2008 / AGE 16">>
/* set up an array of girl's names that aren't Kate's or her best friend */
<<set _femaleClassmate to [
"Chloe",
"Emily",
"Helen",
"Jess",
"Kat",
"Lucy",
"Maria",
"Rachel",
"Rhona",
"Stacey",
"Steph"],
_femaleClassmate.delete($kate.firstName, $temp.firstFriend)>>
<<awardXP academic 500>>
<</silently>>\
<<header>>\
<<page>>\
Your sharp mind needs more stimulation than it gets from TV, and schoolwork, and whatever fashion trends and celebrities the <<if $kate.attributes.extraversion.level gt 0>>other<<else>>popular<</if>> girls are obsessing over today.
You find yourself gravitating towards the other clever kids in your school year. $temp.firstFriend can't understand why you like hanging out with the nerds so much, but you honestly prefer talking about things like gravity and vampires than about how <<= _femaleClassmate.pluck()>> is being such a massive bitch to Jason, or why <<= _femaleClassmate.pluck()>> unfriended <<= _femaleClassmate.pluck()>> on Myspace.
<<link "//Continue.//" "UKYOUTH-8000 Barely Illegal">><</link>>
<</page>><<silently>>
<<set $kate.quirks.pushUnique("alphaFemale")>>
<<lifepath-16yrAvatar>>
<<lifepath-16yrAvatarAlphaClothes1>>
<<set $header.line2 to "2008 / AGE 16">>
<<awardXP charmer 500>>
<</silently>>\
<<header>>\
<<page>>\
Being part of the popular clique at school gives you a lot of social power, but you also feel like you're constantly on display and being judged on your appearance and your behaviour.
You develop a keen interest in fashion and beauty, and the social skills needed to survive amongst a group of bitchy, backstabbing teenage girls.
<<link "//Continue.//" "UKYOUTH-8000 Barely Illegal">><</link>>
<</page>><<silently>>
<<set $kate.quirks.pushUnique("rockChick")>>
<<lifepath-16yrAvatar>>
<<lifepath-16yrAvatarRockChickClothes1>>
<<set $header.line2 to "2008 / AGE 16">>
<<avatar-age16-normal>>
<<awardXP musician 500>>
<</silently>>\
<<header>>\
<<page>>\
Rock music is a profound discovery for you. You turn your room into a temple to your new passion, walls adorned with posters of gorgeous, long-haired singers and guitarists. You spend most of your allowance either on CDs, or on black clothes and makeup.
<<if $kate.quirks.includes("single mum")>>\
Your mum isn't crazy about your new look – nor the volume at which <i>Scream Aim Fire</i> and <i>Avenged Sevenfold</i> blast out from your room most nights. But she caves when she realises this isn't just a phase for you, and buys you a bass guitar and a little practice amp for your 16th birthday.
<<else>>\
Your dad isn't crazy about his little girl's new look – nor the volume at which <i>Scream Aim Fire</i> and <i>Coral Fang</i> blast out from her room most nights. But he caves when he realises this isn't just a phase for you, and your parents buy you a bass guitar and a little practice amp for your 16th birthday.
<</if>>\
In your bedroom, you jam along to your favourite albums until your fingers bleed. From posters on the walls, your idols Brody Dalle, D'arcy Wretzkey, Kim Deal and Melissa Auf der Maur gaze dispassionately down upon your efforts.
<<link "//Continue.//" "UKYOUTH-8000 Barely Illegal">><</link>>
<</page>><<silently>>
/* WIP – crush will use this page to set familiar name, once he figures out how to not display <<textbox>>es in white-on-white */
<</silently>>\
<<header>>\
<<page>>\
Some people go by a familiar name instead of their full first name; Jessica might go by Jess, and Elizabeth might go by Ellie, Liz, Libby or Beth.
First name: <<textbox "$kate.firstName" $kate.firstName>>
Familiar name: <<textbox "$kate.familiarName" $kate.firstName>>
(i) This just affects how NPCs refer to you in conversation: they won't react to this choice in any way. Picking a sexy name //now// will make it less sexy when $kate.firstName actually has to pick a stripper name //later.//
Leave these the same if the name you go by is the same as the name on your passport.
<</page>><<silently>>
<<lifepath-16yrAvatarRemoveBlazer>>
<<if $kate.quirks.includes("sportsStar")>>
<<lifepath-16yrAvatarSportStarClothes2>>
<<lifepath-16yrAvatarSportStarKino>>
<</if>>
<<if $kate.hairColour == "Blonde">>
<<set _blonde to "perfect">>
<<else>>
<<set _blonde to "blonde">>
<</if>>
<<if $kate.hairColour == "ginger">>
<<set _flawed to "ginger">>
<<elseif $kate.braSize == "small">>
<<set _flawed to "flat-chested">>
<<elseif $kate.eyeShape == "cat">>
<<set _flawed to "bug-eyed">>
<<elseif $kate.mouthShape == "thin">>
<<set _flawed to "thin-lipped">>
<<elseif $kate.attributes.height.level gt 0>>
<<set _flawed to "lanky">>
<<elseif $kate.attributes.height.level lt 0>>
<<set _flawed to "short-arsed">>
<<elseif $kate.noseShape == "nubian">>
<<set _flawed to "squash-nosed">>
<<elseif $kate.noseShape == "roman">>
<<set _flawed to "big-nosed">>
<<elseif $kate.attributes.extraversion.level lt 0>>
<<set _flawed to "shy">>
<<elseif $kate.eyeShape == "wide">>
<<set _flawed to "beady-eyed">>
<<elseif $kate.attributes.coordination.level lt 0>>
<<set _flawed to "clumsy">>
<<elseif $kate.faceShape == "round">>
<<set _flawed to "moon-faced">>
<<else>>
<<set _flawed to "jug-eared">>
<</if>>
<<awardXP charmer 500>>
<</silently>>\
<<header>>\
<<page>>\
As you enter young adulthood, you realise that your female friendships are becoming more complex and competitive.
You also realise – somewhat incredulously – that boys are starting to notice you. Like really notice you!
This is weird because when you <<if $kate.quirks.includes("batarian")>>take your glasses off and <</if>>look in the mirror you see a _flawed schoolgirl, not one of the _blonde, rail-thin models and actresses who stare you down from every magazine cover and billboard. But, apparently, your name was <<if $kate.attributes.beauty.level gt 1>>number one<<else>><<= either("second", "third")>><</if>> on the "hot girls list" that some of the boys got in trouble for!
It was actually hard to stay outraged about the list once you learned where "$kate.firstName $kate.surname" was written on it (although you kept this to yourself, in the name of female solidarity). Learning that the boys in your year upvoted you for your looks is fascinating, even if the reasons why are [[a bit mystifying|UKYOUTH-8010 Sketchballs]].
<</page>><<silently>>
<<avatar-age16-expr-eyelid-squint>>
<</silently>>\
<<header>>\
<<page>>\
The downside is predatory attention from sketchy grown-ups.
Since you started developing hips and breasts and pretty facial features, you've been regularly leered at by creeps and weirdos. And the older you get, the worse they behave.
Sometimes men catcall you in the streets, and sometimes they make dodgy comments. But mostly they just <i>stare</i> in a way that makes you feel objectified and vulnerable.
You learn to take it in your stride, but you also learn to be wary around strange men. Leading them on or pissing them off could be dangerous; they're all much bigger and stronger than you, and any one of them could be a psycho.
<<link "//Continue.//" "UKYOUTH-8100 Tomboy friends">><</link>>
<</page>><<silently>>
<<lifepath-16yrAvatarCasual>>
<<avatar-age16-expr-eyelid-normal>>
<<avatar-age16-expr-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("sportsStar")>>\
Three guys you're definitely <i>not</i> afraid of are Tom, Mark and Josh, three boys from your class. You were assigned to work as a group in Business Studies last year, and you hit it off so well that you still hang out with them once or twice a week.
It's mostly just sitting on the kerb in the Tesco Express car park, watching them mess up tricks on their skateboards. But it's a nice change from all the female energy at school, in the netball team, and at your athletics club.
<<elseif $kate.quirks.includes("geekGirl")>>\
Three guys you're definitely <i>not</i> afraid of are Tom, Mark and Josh – your D&D group. You roleplay with them once a week, spending hours sharing imaginary adventures in Faerun and the World of Darkness, and sometimes just sit on the kerb in the Tesco Express car park watching them mess up tricks on their skateboards.
<<elseif $kate.quirks.includes("alphaFemale")>>\
Three guys you're definitely <i>not</i> afraid of are Tom, Mark and Josh, three boys from your class. You were assigned to work as a group in Business Studies last year, and you hit it off so well that you still hang out with them once or twice a week.
Mostly this just involves sitting on the kerb in the Tesco Express car park, watching them mess up tricks on their skateboards. But the boys are a nice break from the bitchy, internecine warfare of the Mean Girls.
<<elseif $kate.quirks.includes("rockChick")>>\
Three guys you're definitely <i>not</i> afraid of are Tom, Mark and Josh – the other metalheads in your school year, and also the singer, drummer and guitarist in your band, <i>Naked Tuna.</i> You rehearse with them once a week, and go see gigs with them, and sometimes just sit on the kerb in the Tesco Express car park watching them mess up tricks on their skateboards.
<</if>>\
You're not attracted to any of them, not really; they're all kind of silly and immature. But they're fun to hang out with, and the way they show affection for each other – constant, merciless personal taunts – sometimes makes you laugh so much that your ribs hurt.
<<link "//Continue.//" "UKYOUTH-9000 Clique Challenge">><</link>>
<</page>><<silently>>
<<getKatesHighSchool>>
<<avatar-age16-normal>>
<<avatar-age16-expr-eyebrows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Your GCSE exams are fast approaching. Doing well at these could help you get into a better university.
<<if $kate.quirks.includes("sportsStar")>>\
<<set _takeTheChallenge to "Train for the District 400m",
_linkDestination to "CC-DISCHAMP-1000 Entering the contest">>\
However...you're now old enough to run in the District Championships as an intermediate. Your 400 metre time is good enough to be in with a shot at the podium - but your coach warns you'll need to book some extra training if you're serious about going for it.
<<elseif $kate.quirks.includes("geekGirl")>>\
<<set _takeTheChallenge to "Enter the cosplay competition at Comic Con",
_linkDestination to "CC-COSPLAY-1000 Entering the contest">>\
However...Comic Con is smack dab in the middle of the GCSE schedule. The boys all want to go, and Josh thinks you should enter the Champions of Cosplay as a team.
<<elseif $kate.quirks.includes("alphaFemale")>>\
<<set _takeTheChallenge to "Campaign for Prom Queen",
_linkDestination to "CC-PROM-1000 Entering the contest">>\
However...the <i>other</i> big end-of-school event is the _highSchoolShortName Leavers' Prom! Everyone's going, and all the girls will be making an effort with dresses and hair and makeup – but only a few alpha females are serious candidates for Prom Queen.
If you want to go for the crown yourself, the first step is to campaign to join the Prom Court.
<<elseif $kate.quirks.includes("rockChick")>>\
<<set _takeTheChallenge to "Enter the Battle of the Bands",
_linkDestination to "CC-BOTB-1000 Entering the contest">>\
However...an opportunity's come up for <i>Naked Tuna.</i> You've got the chance to enter a national Battle of the Bands contest – and the top prize is a record contract! There are also studio time and coaching prizes for the runners up.
<</if>>\
<<if $kate.attributes.conscientiousness.level gte 0>>\
[Conscientious] [[Concentrate on your exam revision.|CC-SBUD-1000 Endless revision]]
<<else>>\
<span class="greyedOut">[Conscientious] Concentrate on your exam revision.</span>
<</if>>\
[["" + _takeTheChallenge + "."|_linkDestination]]
<</page>><<silently>>
<<getKatesHighSchool>>
<<set $header.line1 to "''_HIGHSCHOOL'', _HIGHSCHOOLLOCATION">>
<<lifepath-16yrAvatar>>
<<lifepath-16yrAvatarSchoolUniform>>
<<set _numberOfGCSE to 10 + $kate.attributes.conscientiousness.level>>
<<if $kate.quirks.includes("sportsStar")>>
<<set _gcse5 to "Physical Education">>
<<elseif $kate.quirks.includes("geekGirl")>>
<<set _gcse5 to "Computer Science">>
<<elseif $kate.quirks.includes("alphaFemale")>>
<<set _gcse5 to "Drama">>
<<elseif $kate.quirks.includes("rockChick")>>
<<set _gcse5 to "Music">>
<</if>>
<<set _gsceChoice to [{name:"English Language", minimum:9},{name:"English Literature", minimum:6},{name:"Maths", minimum:6},{name:"Science", minimum:6},{name:_gcse5, minimum:6},{name:"French", minimum:4},{name:"Art", minimum:4},{name:"Dance", minimum:4},{name:"Business Studies", minimum:4},{name:"Geography", minimum:4},{name:"History", minimum:4},{name:"Further Maths", minimum:4}]>>
<<set _gcseArray to []>>
<<for _i to 0; _i lt _numberOfGCSE; _i++>>
<<set _gcseArray.push(_gsceChoice[_i])>>
<</for>>
<<set _numberWords to ["one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve"]>>
<</silently>>\
<<header>>\
<<page>>\
Over six weeks in May and June, you head back in to _highSchoolShortName to sit your GCSE exams. Your whole school career has been leading up to this – better results could get you into a top university!
You're sitting <<print _numberWords[(_numberOfGCSE-1)]>> exams:
<<nobr>><ul>
<<for _i to 0; _i lt _gcseArray.length; _i++>>
<li>_gcseArray[_i].name</li>
<</for>>
</ul>\<</nobr>>
You'll now roll <<= (_numberOfGCSE)>> ten-sided dice (<<= (_numberOfGCSE)>>D10), one for each subject. Higher rolls mean higher grades! You'll add your <i>Conscientiousness</i> (<<if $kate.attributes.conscientiousness.level gte 0>>+<</if>>$kate.attributes.conscientiousness.level) and your <i>Intellect</i> (<<if $kate.attributes.intellect.level gte 0>>+<</if>>$kate.attributes.intellect.level) to every roll. <<if def $temp.revisionBonus>>You get +$temp.revisionBonus for studying hard.<</if>> <<if $kate.quirks.includes("elite")>>You'll also add +1 to each roll for attending an excellent private secondary school.<</if>>
<div id="dice-rolled">
<<button "Roll dice">>
/* English should always be B or above(8-10). Maths, Science, Geography & Kate's clique GCSE should always be C or above (5-10)*/
/* This ensures Kate will have good enough grades to get into university */
<<for _i to 0; _i lt _gcseArray.length; _i++>>
<<set _gcseArray[_i].random to random(_gcseArray[_i].minimum,10)>>
<</for>>
/*Schooling bonus*/
<<set _schoolingBonus to 0>>
<<if $kate.quirks.includes("elite")>>
/* Give Kate a +1 schooling bonus */
<<set _schoolingBonus += 1>>
<<elseif $kate.quirks.includes("working class")>>
/* Give Kate a +1 schooling bonus */
<<set _schoolingBonus -= 1>>
<</if>>
/* if she has a revision bonus, add it to the roll */
<<if def $temp.revisionBonus>>
<<set _schoolingBonus += $temp.revisionBonus>>
<</if>>
<<if _numberOfGCSE eq 8 >>
<<set _dice to "1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10 @ "+ _gcseArray[0].random+" "+ _gcseArray[1].random+" "+ _gcseArray[2].random+" "+ _gcseArray[3].random+" "+ _gcseArray[4].random+" "+ _gcseArray[5].random+" "+_gcseArray[6].random+" "+ _gcseArray[7].random>>
<<elseif _numberOfGCSE eq 9>>
<<set _dice to "1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10 @ "+ _gcseArray[0].random+" "+ _gcseArray[1].random+" "+ _gcseArray[2].random+" "+ _gcseArray[3].random+" "+ _gcseArray[4].random+" "+ _gcseArray[5].random+" "+_gcseArray[6].random+" "+ _gcseArray[7].random+" "+ _gcseArray[8].random>>
<<elseif _numberOfGCSE eq 10>>
<<set _dice to "1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10 @ "+ _gcseArray[0].random+" "+ _gcseArray[1].random+" "+ _gcseArray[2].random+" "+ _gcseArray[3].random+" "+ _gcseArray[4].random+" "+ _gcseArray[5].random+" "+_gcseArray[6].random+" "+ _gcseArray[7].random+" "+ _gcseArray[8].random+" "+ _gcseArray[9].random>>
<<elseif _numberOfGCSE eq 11>>
<<set _dice to "1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10 @ "+ _gcseArray[0].random+" "+ _gcseArray[1].random+" "+ _gcseArray[2].random+" "+ _gcseArray[3].random+" "+ _gcseArray[4].random+" "+ _gcseArray[5].random+" "+_gcseArray[6].random+" "+ _gcseArray[7].random+" "+ _gcseArray[8].random+" "+ _gcseArray[9].random+" "+ _gcseArray[10].random>>
<<elseif _numberOfGCSE eq 12>>
<<set _dice to "1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10+1d10 @ "+ _gcseArray[0].random +" "+ _gcseArray[1].random +" "+ _gcseArray[2].random +" "+ _gcseArray[3].random +" "+ _gcseArray[4].random +" "+ _gcseArray[5].random +" "+ _gcseArray[6].random +" "+ _gcseArray[7].random +" "+ _gcseArray[8].random +" "+ _gcseArray[9].random +" "+ _gcseArray[10].random +" "+ _gcseArray[11].random>>
<<else>>
<<consoleLog "WRONG NUMBER OF GCSEs">>
<</if>>
<<for _i to 0; _i lt _gcseArray.length; _i++>>
<<if _gcseArray[_i].name eq "Dance" or _gcseArray[_i].name eq "Physical Education">>
<<set _gcseArray[_i].score to _gcseArray[_i].random + $kate.attributes.conscientiousness.level + $kate.attributes.coordination.level + _schoolingBonus>>
<<set _gcseArray[_i].score to Math.clamp(_gcseArray[_i].score, _gcseArray[_i].minimum, 20)>>
<<else>>
<<set _gcseArray[_i].score to _gcseArray[_i].random + $kate.attributes.conscientiousness.level + $kate.attributes.intellect.level + _schoolingBonus>>
<<set _gcseArray[_i].score to Math.clamp(_gcseArray[_i].score, _gcseArray[_i].minimum, 20)>>
<</if>>
<</for>>
<<set $temp.gcse to _gcseArray>>
<<for _i to 0; _i lt $temp.gcse.length; _i++>>
<<if $temp.gcse[_i].score gte 10>>
<<set $temp.gcse[_i].grade to "A*">>
<<elseif $temp.gcse[_i].score gte 6 and $temp.gcse[_i].score lte 9>>
<<set $temp.gcse[_i].grade to "A">>
<<elseif $temp.gcse[_i].score gte 4 and $temp.gcse[_i].score lte 5>>
<<set $temp.gcse[_i].grade to "B">>
<<elseif $temp.gcse[_i].score gte 2 and $temp.gcse[_i].score lte 3>>
<<set $temp.gcse[_i].grade to "C">>
<<elseif $temp.gcse[_i].score lte 1>>
<<set $temp.gcse[_i].grade to "D">>
<<else>>
<<set $temp.gcse[_i].grade to "Invalid Grade">>
<</if>>
<</for>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
[[Continue|UKYOUTH-11000 Endless summer]]
<</replace>>
<</rollDice>>
<</button>>
</div>\
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set $header.line1 to "''MAYFAIR,'' W LONDON">>
<<elseif $kate.quirks.includes("working class")>>
<<set $header.line1 to "''TOTTENHAM,'' N LONDON">>
<<else>> /* Kate is middle class */
<<set $header.line1 to "''WIMBLEDON'', SW LONDON">>
<</if>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
You go home to wait for your exam results.
With revision pressure gone, the summer days feel endless. At first all the free time is nice, but soon you're bored with sitting around in parks, or watching the boys skate or play video games.
[[Get a job as a waitress.|UKYOUTH-11100 Waitress job]]
[[Get a job delivering pizza.|UKYOUTH-11200 Pizza delivery job]]
<</page>><<silently>>
<<lifepath-16yrAvatarWaitress>>
<<avatar-age16-smile>>
<<awardXP charmer 500>>
<</silently>>\
<<header>>\
<<page>>\
You interview at a local hotel and get offered a job as an evening waitress. You learn how to set a formal dinner service, how to sell expensive wines, and how tiring it is to work a night shift in heels.
The money isn't great, but the rest of the team are nice, the work is exciting during busy services, and the tips can be great – especially when slightly drunk middle-aged men try and make an impression on you.
[[Continue|UKYOUTH-12000 GCSE results]]
<</page>><<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _location to "west London">>
<<elseif $kate.quirks.includes("working class")>>
<<set _location to "north London">>
<<else>> /* Kate is middle class */
<<set _location to "wimbledon">>
<</if>>
<<lifepath-16yrAvatarPizza>>
<<avatar-age16-smile>>
<<awardXP daring 500>>
<<awardXP driver 500>>
<</silently>>\
<<header>>\
<<page>>\
You ace an interview at Pizza Pup and get offered a job as a delivery rider. They advance you the money for your moped licence, and you discover that buzzing around the streets of _location is quite exciting.
You enjoy your job; time passes quickly when you're out on the road, the customers are always pleased to see you, and your colleagues are mostly young and fun.
[[Continue|UKYOUTH-12000 GCSE results]]
<</page>><<silently>>
<<lifepath-16yrAvatarCasual>>
<<lifepath-16yrAvatarHairLoose>>
<<avatar-age16-normal>>
<<set $avatar.foreground.delete("age16/20_pizzaPupStaffCap")>>
<<getKatesHighSchool>>
<<set _gradeCount to []>>
<<for _i to 0; _i lt $temp.gcse.length; _i ++>>
<<set _gradeCount.push($temp.gcse[_i].grade)>>
<</for>>
<<set _aStarCount to _gradeCount.count("A*")>>
<<set _aCount to _gradeCount.count("A")>>
<<set _bCount to _gradeCount.count("B")>>
<<set _cCount to _gradeCount.count("C")>>
<<set _dCount to _gradeCount.count("D")>>
<<set _eCount to _gradeCount.count("E")>>
<<awardXP academic 500>>
<</silently>>\
<<header>>\
<<page>>\
On a mild August Thursday, you return to _highSchoolShortName for the last time, to collect your GCSE results.
<<nobr>>
<b><<= $kate.firstName.toUpperCase()>> <<= $kate.surname.toUpperCase()>></b><br>
<<for _i to 0; _i lt $temp.gcse.length; _i++>>
$temp.gcse[_i].name $temp.gcse[_i].grade<br>
<</for>>
<<if _aStarCount gte 7>>
<<silently>>
<<avatar-age16-thrilled>>
<</silently>>
<br />
You got the best results in your entire school year! All the hard work paid off. Several teachers shake your hand and congratulate you!
<br />
There's <<if $kate.quirks.includes("working class")>>crazy <</if>>talk of you one day winning a place at Oxford or Cambridge – but first you need to enrol in [[sixth form college|UKYOUTH-13000 6th Form College]].
<<elseif _cCount lte 0 and _dCount lte 0 and _eCount lte 0>>
<<silently>>
<<avatar-age16-smile>>
<</silently>>
<br />
You did very well – these grades are more than good enough to get you into [[sixth form college|UKYOUTH-13000 6th Form College]].
<<else>>
<<silently>>
<<avatar-age16-smile>>
<</silently>>
<br />
These are solid results; good enough to get you into [[sixth form college|UKYOUTH-13000 6th Form College]].
<</if>>
<</nobr>>
<</page>><<silently>>
<<avatar-age16-normal>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.quirks.includes("elite")>>\
<<set _goingElsewhere to "being packed off to a boarding college",
_sixthFormShortName to "Collingham">>\
You're accepted at Collingham College, an exclusive private sixth form college in Kensington. Set in a grand converted townhouse overlooking a beautiful garden square, you're one of about 200 students enrolled here, all following in the footsteps of such famous alumni as Prince Edward, Lord Snowden and Christopher Robin Milne.
<<elseif $kate.quirks.includes("working class")>>\
<<set _goingElsewhere to "starting her apprenticeship as a hairdresser – only a few kids from Highgate Wood are going on to sixth form",
_sixthFormShortName to "Haringey 6th">>\
You enrol at Haringey 6th Form College, a recently established academy with hip, modern facilities.
<<else>> /* Kate is middle class */ \
<<set _goingElsewhere to "staying at Raynes Park for sixth form",
_sixthFormShortName to "Esher Sixth">>\
Raynes Park has its own connected sixth form college, just across the playground from your old school. However, you're accepted at Esher Sixth Form – it's a 20-minute train ride away, but it has an excellent reputation.
<</if>>\
Going here means building a new social circle, especially as your best friend $temp.firstFriend's _goingElsewhere. But over the next two years, you'll make good friends at _sixthFormShortName.
Choose three A Levels to study:
<input type="checkbox" id="$stdy" value="Art" class="chkGroup"> Art
<input type="checkbox" id="$hkeye" value="Business" class="chkGroup"> Business
<input type="checkbox" id="$ufg" value="Dance" class="chkGroup"> Dance
<input type="checkbox" id="$dkpf" value="English" class="chkGroup"> English
<input type="checkbox" id="$lif" value="Law" class="chkGroup"> Law
<input type="checkbox" id="$spsk" value="Psychology" class="chkGroup"> Psychology
<<nobr>><div id="nextLink"></div><</nobr>>
<</page>>
<<script>>
$(document).one(':passagerender', function (ev) {
// Set initial state of temp.form list to empty array
State.variables.temp.form = [];
function selectiveCheck (event) {
var i, checkedChecks = document.querySelectorAll(".chkGroup:checked");
$("#result").empty();
// Reset array listing
State.variables.temp.form = [];
for (i = 0; i < checkedChecks.length; i++) {
if (checkedChecks.length < max + 1) {
$("#result").wiki($(checkedChecks[i]).attr("value") + " ");
// Push new subject
State.variables.temp.form.push($(checkedChecks[i]).attr("value"));
} else if (event.target != checkedChecks[i]) {
$("#result").wiki($(checkedChecks[i]).attr("value") + " ");
// Push new subject
State.variables.temp.form.push($(checkedChecks[i]).attr("value"));
}
}
if (checkedChecks.length >= max + 1) {
return false;
}
if (State.variables.temp.form.length == 3 ){
new Wikifier(null,'<<replace "#nextLink">>[[Study|UKYOUTH-13100 6th Form Study]]<</replace>>');
}else{
new Wikifier(null,'<<replace "#nextLink">><</replace>>');
}
}
var checks = $(ev.content).find(".chkGroup");
var max = 3;
for (var i = 0; i < checks.length; i++) {
checks[i].onclick = selectiveCheck;
}
});
<</script>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A Levels are much tougher than GCSEs, and the learning style is very different. You have fewer lessons, but you have to do //much// more work outside the classroom.
<<if $kate.attributes.conscientiousness.level gt 0>>\
Your disciplined nature serves you well; you set up a study plan and stick to it.
<<elseif $kate.attributes.conscientiousness.level == 0>>\
It's a struggle to stay motivated, but like most of your fellow students you intensify your efforts as term deadlines approach.
<<else>>\
Your mercurial nature makes working like this a struggle. It's just so easy to put study or revision off until tomorrow...until you run out of tomorrows, and have to suddenly cram in a whole term's work in just a few stress-filled weeks.
<</if>>\
You'll now roll 3D10, one for each subject, to see how well you perform.
<div id="dice-rolled">
<<button "Roll dice">>
<<set _random6Form1 to random(1,10)>>
<<set _random6Form2 to random(1,10)>>
<<set _random6Form3 to random(1,10)>>
/*Schooling bonus*/
<<set _schoolingBonus to 0>>
<<if $kate.quirks.includes("elite")>>
/* Give Kate a +1 schooling bonus */
<<set _schoolingBonus += 1>>
<<elseif $kate.quirks.includes("working class")>>
/* Give Kate a +1 schooling bonus */
<<set _schoolingBonus -= 1>>
<</if>>
<<set _dice to "1d10+1d10+1d10 @ "+ _random6Form1+" "+ _random6Form2+" "+ _random6Form3>>
<<for _i to 0; _i lt $temp.form.length; _i++>>
<<set _score to 0>>
<<if $temp.form[_i] eq "Dance">>
<<set _score to $kate.attributes.conscientiousness.level + $kate.attributes.coordination.level + _schoolingBonus>>
<<else>>
<<set _score to $kate.attributes.conscientiousness.level + $kate.attributes.intellect.level + _schoolingBonus>>
<</if>>
<<if _i eq 0>>
<<set _random6Form1 to _random6Form1+ _score>>
<<elseif _i eq 1>>
<<set _random6Form2 to _random6Form2 +_score>>
<<else>>
<<set _random6Form3 to _random6Form3+ _score>>
<</if>>
<</for>>
<<set $temp.sixForm to [{name:$temp.form[0], score:_random6Form1},{name:$temp.form[1], score:_random6Form2},{name:$temp.form[2], score:_random6Form3}]>>
<<script>>
//cleanup $temp.form
delete State.variables.temp.form;
<</script>>
<<rollDice _dice>>
<<replace '#dice-rolled'>>
[[Continue|UKYOUTH-14000 Meeting Jacob]]
<</replace>>
<</rollDice>>
<</button>>
<</page>><<silently>>
<<set _jacobsStories to [
"6thForm"]>>
<<if hasVisited("UKYOUTH-11200 Pizza delivery job")>>
<<set _jacobsStories.push("pizzaPup")>>
<</if>>
<<if $kate.quirks.includes("rockChick")>>
<<set _jacobsStories.push("metalhead")>>
<</if>>
<<set $temp.jacobsStory to _jacobsStories.random()>>
<<set _jacobStudy to []>>
<<for _i to 0; _i lt $temp.sixForm.length; _i++>>
<<if $temp.sixForm[_i].name neq "Dance">>
<<set _jacobStudy.push($temp.sixForm[_i].name)>>
<</if>>
<</for>>
<<set _subj1 to _jacobStudy.pluck()>>
<<set _subj2 to _jacobStudy.pluck()>>
<<avatar-age16-expr-eyebrows-raised>>
<<avatar-age16-expr-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
You've had crushes on boys before, but they're nothing compared to the volcano of emotions you have for Jacob, the first boy you fall in love with.
<<if $temp.jacobsStory == "pizzaPup">>\
You meet him at work. He's funny, handsome and charismatic, the self-proclaimed Top Dog of Pizza Pup's busy kitchen crew. For months, the two of you flirt and banter every time you return to base to pick up an order. Then, one day, he blows you away by telling you he's dumped his girlfriend because he's fallen in love with you.
<<elseif $temp.jacobsStory == "6thForm">>\
<<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _sixthForm to "Collingham">>
<<elseif $kate.quirks.includes("working class")>>
<<set _sixthForm to "Haringey 6th">>
<<else>> /* Kate is middle class */
<<set _sixthForm to "Esher Sixth">>
<</if>>
<</silently>>\
You meet him at sixth form, where he's also studying _subj1 and _subj2. He's tall, handsome and funny, and when he whips off his top on the sports field one afternoon you learn that his body's straight out of a Diet Coke ad.
The two of you get together at a party shortly after that. All the girls at _sixthForm are deeply envious of you for bagging Jacob.
<<elseif $temp.jacobsStory == "metalhead">>\
He's from south London but you meet him at the 2008 Reading Festival, where he and his friends set up their tents next to yours. Tall, blue-eyed and fiercely handsome, with long blonde hair and a pentagram tattoo, he looked like he could have stepped right off a poster from your bedroom wall.
Josh didn't like him, but you were totally smitten. You sat on his shoulders through Metallica's entire headline set, and made out in your tent afterwards even though you were both sweaty and gross. Before you said goodbye you checked and double-checked that he'd taken your number.
<<else>>\
(ERROR IN JACOBSSTORY VAR)
<</if>>\
When the two of you officially become an item, it's like something totally new awakens inside you. <i>Love...</i>you realise that you now care about someone else in a way that you didn't fully understand was possible.
It'd be scary if it didn't feel so instinctive, and so perfect.
[[Continue|UKYOUTH-14000 Jacob relationship]]
<</page>><<silently>>
<<avatar-age16-normal>>
<<avatar-age16-expr-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.jacobsStory == "pizzaPup">>\
You'd never known you could feel this happy before! At work you keep your hands off each other and it's //torture// having to wait for your shift to end, so you can hurry to the loading area and make out.
<<elseif $temp.jacobsStory == "6thForm">>\
<<silently>>
<<if $kate.quirks.includes("elite")>>
<<set _sixthForm to "Collingham">>
<<elseif $kate.quirks.includes("working class")>>
<<set _sixthForm to "Haringey 6th">>
<<else>> /* Kate is middle class */
<<set _sixthForm to "Esher Sixth">>
<</if>>
<</silently>>\
You'd never known you could feel this happy before! At sixth form you keep your hands off each other in class, but you're inseparable between lessons – <<if $kate.quirks.includes("rockChick")>>the jock and the rock chick<<elseif $kate.quirks.includes("geekGirl")>>the jock and the nerd girl<<else>>the alpha couple of _sixthForm<</if>>.
<<elseif $temp.jacobsStory == "metalhead">>\
You'd never known you could feel this happy before! If you could you'd spend every night in his room, laying on his bed listening to metal albums and making out.
<<else>>\
(ERROR IN JACOBSSTORY VAR)
<</if>>\
Just being together with him makes you feel totally fulfilled. But that doesn't make you stagnate...if anything you feel more driven to succeed academically<<if $kate.quirks.includes("rockChick")>> and with your band,<<elseif $kate.quirks.includes("sportsStar")>> and athletically,<<else>>,<</if>> because you want to impress him.
Outside <<if $temp.jacobsStory == "pizzaPup">>work<<elseif $temp.jacobsStory == "metalhead">>music<<elseif $temp.jacobsStory == "6thForm">>college<</if>>, his main hobby is playing pool at a dimly-lit snooker club called Rileys. At first you find going there a little intimidating – you're often the only girl there, and the owner doesn't seem to like you much.
But he also never checks IDs at the bar, and Jacob likes it here...so you get to know his club pretty well. He even warms to you a little bit after Jacob [[teaches you to play pool|UKYOUTH-15000 Time card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
[[TWO YEARS PASS...|UKTEENROM-1000 18 Today!]]
<</page>><<silently>>
<</silently>>\
<a data-passage="AGENCY-1000 A day at the office">
<<if $kate.agency == "cia">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/dc.jpg"+' >'>>
<<elseif $kate.agency == "mi6">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/london.jpg"+' >'>>
<<elseif $kate.agency == "asis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/canberra.jpg"+' >'>>
<<elseif $kate.agency == "csis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/ottawa.jpg"+' >'>>
<<elseif $kate.agency == "nzsis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/wellington.jpg"+' >'>>
<</if>>\
</a><<silently>>
<<emote-calm>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / MARCH 2018",
_recruitHQ to "at the Farm">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / MARCH 2018",
_recruitHQ to "at Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / MARCH 2018",
_recruitHQ to "on Swan Island">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / MARCH 2018",
_recruitHQ to "at Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / MARCH 2018",
_recruitHQ to "at Papakura Camp">>
<</if>>
/* Preload more emotions */
/* Noses */
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_nose-' + $kate.complexion + '-' + $kate.noseShape + '-scrunch.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_nose-' + $kate.complexion + '-' + $kate.noseShape + '-wrinkle.png">' >>
/* Eyelids */
<<= '<img src="' + $imagePath.avatar + '/113Expressions/55_eyelids-' + $kate.eyeShape + '-' + $kate.complexion + '-closed.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/55_eyelids-' + $kate.eyeShape + '-' + $kate.complexion + '-squint.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/55_eyelids-' + $kate.eyeShape + '-' + $kate.complexion + '-tearful.png">' >>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
<<image "/locationPhotos/agency/langleyReception.jpg" 100 1000 570 0>>\
So far, life as a CIA Intelligence Officer isn't much like the movies.
All through your year-long training programme _recruitHQ, you dreamed of [[exotic postings|AGENCY-1010 Routine work]], destroying terrorist cells and exposing coups d'etat.
<<elseif $kate.agency == "mi6">>\
<<image "/locationPhotos/uk/vauxhallCross.jpg" 50 1000 550 0>>\
So far, your career at MI6 makes you feel more like Miss Moneypenny than James Bond.
All through your year-long officer training programme _recruitHQ, you dreamed of [[exotic postings|AGENCY-1010 Routine work]], destroying terrorist cells and exposing coups d'etat.
<<elseif $kate.agency == "asis">>\
<<image "/locationPhotos/agency/rgCaseyExterior.jpg" 50 1000 550 0>>\
So far, life as an ASIS Intelligence Officer isn't much like the movies.
All through your year-long training programme _recruitHQ, you dreamed of [[exotic postings|AGENCY-1010 Routine work]], destroying terrorist cells and exposing coups d'etat.
<<elseif $kate.agency == "csis">>\
<<image "/locationPhotos/agency/csisHq.jpg" 100 1000 550 0>>\
So far, life as a CSIS Intelligence Officer isn't much like the movies.
All through your year-long training programme _recruitHQ, you dreamed of [[exotic postings|AGENCY-1010 Routine work]], destroying terrorist cells and exposing coups d'etat.
<<elseif $kate.agency == "nzsis">>\
<<image "/locationPhotos/agency/pipiteaHouse.jpg" 50 1000 550 0>>\
So far, life as an SIS Intelligence Officer isn't much like the movies.
All through your year-long training programme _recruitHQ, you dreamed of [[exotic postings|AGENCY-1010 Routine work]], destroying terrorist cells and exposing coups d'etat.
<</if>>\
<span class="greyedOut">
<hr>
<small>TESTING SHORTCUTS (1.20)
<<link "– Shortcut to the shower scene at the end of Girls' Night Out" "GNO-180000 Title card">><<set $kate.stripperName to "River", $kate.cover.firstName to $kate.firstName>><<if $kate.braSize == "small">><<set $kate.piercings.push("nipplesSilverBarbells")>><</if>><<set $kate.bikiniLine to "brazilian">><<set $iAmTestingTheDebriefScene to true>><<apply-makeup-manicure "mothIntoFlame">><<apply-makeup-pedicure "mothIntoFlame">><<set $amanda to {}, $amanda.firstName to "Lisa", $amanda.surname to "Mitchell", $amanda.stripperName to "Amanda", $zoe to {}, $zoe.firstName to "Lauren", $zoe.surname to "McCoy", $zoe.stripperName to "Zoe", $gina to {}, $gina.nickname to "Steph", $emilia to {}, $emilia.firstName to "Emilia">><</link>>
/* <<link "– Shortcut to Kate's shift at the club" "WW-5000 Title card">><<set $kate.stripperName to "River">><<if $kate.braSize == "small">><<set $kate.piercings.push("nipplesSilverBarbells")>><</if>><<set $kate.bikiniLine to "brazilian">><<set $iAmTestingTheDebriefScene to true>><<apply-makeup-manicure "mothIntoFlame">><<apply-makeup-pedicure "mothIntoFlame">><</link>> */ \
<<link "– Shortcut to the start of episode 1.19" "TNG-99 Test page">><<set $kate.stripperName to "River", $kate.cover.firstName to $kate.firstName, $kate.cover.surname to "Burnett">><<if $kate.braSize == "small">><<set $kate.piercings.push("nipplesSilverBarbells")>><</if>><<set $kate.bikiniLine to "brazilian">><<apply-makeup-manicure "midnightMission">><<apply-makeup-pedicure "midnightMission">><<set $amanda to {}, $amanda.firstName to "Lisa", $amanda.surname to "Mitchell", $amanda.stripperName to "Amanda", $zoe to {}, $zoe.firstName to "Lauren", $zoe.surname to "McCoy", $zoe.stripperName to "Zoe", $gina to {}, $gina.nickname to "Steph", $gina.stripperName to "Gina", $emilia to {}, $emilia.firstName to "Emilia">><</link>>
<<link "– Shortcut to the start of episode 1.20" "TNG-10600 Comedown">><<set $kate.stripperName to "River", $kate.cover.firstName to $kate.firstName, $kate.cover.surname to "Burnett">><<if $kate.braSize == "small">><<set $kate.piercings.push("nipplesSilverBarbells")>><</if>><<set $kate.bikiniLine to "brazilian">><<apply-makeup-manicure "midnightMission">><<apply-makeup-pedicure "midnightMission">><<set $amanda to {}, $amanda.firstName to "Lisa", $amanda.surname to "Mitchell", $amanda.stripperName to "Amanda", $zoe to {}, $zoe.firstName to "Lauren", $zoe.surname to "McCoy", $zoe.stripperName to "Zoe", $gina to {}, $gina.nickname to "Steph", $gina.stripperName to "Gina", $emilia to {}, $emilia.firstName to "Emilia">><<avatar-stripNaked>><<wear-bracelet-friendshipBraceletsLeftWrist>><<apply-makeup-eyeshadow-smoky>><<apply-makeup-eyeliner-jessica>><<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''", $header.line2 to "BANGKOK / MAY 2018">><</link>>
/* <<link "– Shortcut to the start of episode 1.21" "GTH-100 Message from Connor">><<set $kate.stripperName to "River", $kate.cover.firstName to $kate.firstName, $kate.cover.surname to "Burnett">><<if $kate.braSize == "small">><<set $kate.piercings.push("nipplesSilverBarbells")>><</if>><<set $kate.bikiniLine to "brazilian">><<apply-makeup-manicure "midnightMission">><<apply-makeup-pedicure "midnightMission">><<set $amanda to {}, $amanda.firstName to "Lisa", $amanda.surname to "Mitchell", $amanda.stripperName to "Amanda", $zoe to {}, $zoe.firstName to "Lauren", $zoe.surname to "McCoy", $zoe.stripperName to "Zoe", $gina to {}, $gina.nickname to "Steph", $gina.stripperName to "Gina", $emilia to {}, $emilia.firstName to "Emilia">><<avatar-stripNaked>><<wear-bracelet-friendshipBraceletsLeftWrist>><</link>> */
</small></span>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
For a junior officer, straight out of <<university>>, the reality is a full-time desk job at Langley.
You haven't touched a gun or a spy gadget since your training. Your main work is writing reports with names like //Spatial and Temporal Analyses of <div class="tooltip">VBIED<span class="tooltiptext">Vehicle Borne Improvised Explosive Device – a car or truck bomb</span></div> Incidents in Iraq, 2017-2018.//
It's a mild spring morning in DC; you've just started work. You're sipping a Starbucks at your desk, catching up on the secure cables that came in overnight, when your secure line buzzes.
<<link "//[Answer it]// OTA, this is $kate.surname." "AGENCY-1100 The boss wants you">><</link>>
<<elseif $kate.agency == "mi6">>\
For a junior officer, straight out of <<university>>, the reality is a full-time desk job at Vauxhall Cross.
You haven't touched a gun or a spy gadget since your training. Your main work is writing reports with names like //Spatial and Temporal Analyses of <div class="tooltip">VBIED<span class="tooltiptext">Vehicle Borne Improvised Explosive Device – a car or truck bomb</span></div> Incidents in Iraq, 2017-2018.//
It's a cool, sunny spring morning in London; you've just started work. You're sipping tea at your desk, catching up on the secure cables that came in overnight, when your secure line buzzes.
<<link "//[Answer it]// MID/OPS, this is $kate.surname." "AGENCY-1100 The boss wants you">><</link>>
<<elseif $kate.agency == "asis">>\
For a junior officer, straight out of <<university>>, the reality is a full-time desk job at HQ.
You haven't touched a gun or a spy gadget since your training. Your main work is writing reports with names like //Spatial and Temporal Analyses of <div class="tooltip">VBIED<span class="tooltiptext">Vehicle Borne Improvised Explosive Device – a car or truck bomb</span></div> Incidents in Iraq, 2017-2018.//
It's a cool March morning in Canberra; you've just started work. You're sipping coffee at your desk, catching up on the secure cables that came in overnight, when your secure line buzzes.
<<link "//[Answer it]// Operations, this is $kate.surname." "AGENCY-1100 The boss wants you">><</link>>
<<elseif $kate.agency == "csis">>\
For a junior officer, straight out of <<university>>, the reality is a full-time desk job at HQ.
You haven't touched a gun or a spy gadget since your training. Your main work is writing reports with names like //Spatial and Temporal Analyses of <div class="tooltip">VBIED<span class="tooltiptext">Vehicle Borne Improvised Explosive Device – a car or truck bomb</span></div> Incidents in Iraq, 2017-2018.//
It's a cold March morning in Ottawa; you've just started work. You're sipping coffee at your desk, catching up on the secure cables that came in overnight, when your secure line buzzes.
<<link "//[Answer it]// ITC, this is $kate.surname." "AGENCY-1100 The boss wants you">><</link>>
<<elseif $kate.agency == "nzsis">>\
For a junior officer, straight out of <<university>>, the reality is a full-time desk job at HQ.
You haven't touched a gun or a spy gadget since your training. Your main work is writing reports with names like //Spatial and Temporal Analyses of <div class="tooltip">VBIED<span class="tooltiptext">Vehicle Borne Improvised Explosive Device – a car or truck bomb</span></div> Incidents in Iraq, 2017-2018.//
It's a blazing hot March morning in Wellington; you've just started work. You're sipping coffee at your desk, catching up on the secure cables that came in overnight, when your secure line buzzes.
<<link "//[Answer it]// Operations, this is $kate.surname." "AGENCY-1100 The boss wants you">><</link>>
<<else>>
//FATAL ERROR IN KATE.AGENCY VAR//
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
You grab the phone. "<div class="tooltip">IOC/AG<span class="tooltiptext">Information Operations Center/Analytical Group</span></div>, $kate.surname."
"$kate.firstName...Jack <<Colby>>." <<Colby>> is Deputy Director, Counterterrorism Center – the boss of your //boss's// boss.
<<elseif $kate.agency == "mi6">>\
You grab the phone. "Mid Ops, $kate.surname."
"$kate.firstName...Jim <<Greenwood>>." Sir James is the Deputy Chief of Operations – the boss of your //boss's// boss.
<<elseif $kate.agency == "asis">>\
You grab the phone. "Ops, $kate.surname."
"$kate.firstName...Jim <<McKenzie>>." <<McKenzie>>'s the Deputy Chief of Operations – the boss of your //boss's// boss.
<<elseif $kate.agency == "csis">>\
You grab the phone. "ITC, $kate.surname."
"$kate.firstName...Adam <<McKenzie>>." <<McKenzie>> is Deputy Director, International Terrorism Centre – the boss of your //boss's// boss.
<<elseif $kate.agency == "nzsis">>\
You grab the phone. "Ops, $kate.surname."
"$kate.firstName...Mark <<McKenzie>>." <<McKenzie>>'s the Deputy Chief of Operations – the boss of your //boss's// boss.
<</if>>\
You're instantly alert. He doesn't normally dial directly down to your team; whatever he wants, it [[must be important|AGENCY-1102 Must be important]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<if $kate.agency == "cia">>
<<set _sirJames to "Jack",
_onEarth to "the heck">>
<<elseif $kate.agency == "mi6">>
<<set _sirJames to "Sir James",
_onEarth to "on earth">>
<<elseif $kate.agency == "asis">>
<<set _sirJames to "Jim",
_onEarth to "the blazes">>
<<elseif $kate.agency == "csis">>
<<set _sirJames to "Adam",
_onEarth to "in heck">>
<<elseif $kate.agency == "nzsis">>
<<set _sirJames to "Mark",
_onEarth to "the blazes">>
<<else>>
<<set _sirJames to "ERROR IN TEMPVAR SIRJAMES",
_onEarth to "ERROR IN ONEARTH TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"Can you come up to my office, please?"
<<elseif $kate.agency == "mi6">>\
"Can you come up to my office, please?"
<<elseif $kate.agency == "asis">>\
"Can you come to my office?"
<<elseif $kate.agency == "csis">>\
"Can you come up to my office, please?"
<<elseif $kate.agency == "nzsis">>\
"Can you come to my office?"
<</if>>\
Your stomach twinges. Why _onEarth would <<if $kate.agency == "cia">>Jack <<Colby>><<elseif $kate.agency == "mi6">>Sir James<<elseif $kate.agency == "asis">>Jim <<McKenzie>><<elseif $kate.agency == "csis">>Adam <<McKenzie>><<elseif $kate.agency == "nzsis">>Mark <<McKenzie>><<else>>(ERROR IN KATE.AGENCY VAR)<</if>> call you to his office?
You don't think you can be in trouble for anything – unless one of your assessments contains some //horrible// error?
[[Yes sir.|AGENCY-1200 Go see the boss][$kateSays to "yessir"]]
[[Do I need to bring anything?|AGENCY-1200 Go see the boss][$kateSays to "needSomething"]]
[[What's this about, sir?|AGENCY-1200 Go see the boss][$kateSays to "why"]]
<</page>><<silently>>
<<emote-mouth-talking>>
/* Preload more emotions */
/* Blushes */
<<= '<img src="' + $imagePath.avatar + '/113Expressions/60_cheeks-blush.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/60_chest-flushed.png">' >>
/* Mouth overlays */
<<= '<img src="' + $imagePath.avatar + '/113Expressions/60_mouthOverlay-' + $kate.complexion + '-' + $kate.mouthShape + '-blowjob.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/60_mouthOverlay-' + $kate.complexion + '-' + $kate.mouthShape + '-tongue.png">' >>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yessir">>\
<<emote-brows-calm>>\
"Uh...yessir. On the way."
<<elseif $kateSays == "needSomething">>\
"Uh...yessir. Do I need to bring anything?"
"Just yourself."
"Yessir."
<<elseif $kateSays == "why">>\
"Uh...what's this about, sir?"
"I'll explain when you get here."
"Yessir. On the way."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You lock your screen, then – after checking there's a pen and pad in your bag – [[hurry to his office|AGENCY-1210 Journey through HQ]].
<</page>><<silently>>
<<emote-calm>>
<<wear-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
To get there, you have to take a long walk through "the wave" – a maze of stark, colour-coded internal hallways with built in twists and turns designed to choke off radio signals.
Pausing in the empty corridor outside <<Colby>>'s office, you take a deep calming breath, and wipe your palms dry on your skirt.
//[[Knock and enter.|AGENCY-1300 Boss's office]]//
<<elseif $kate.agency == "mi6">>\
You walk briskly through a hive of bare, clean, air-conditioned corridors.
On the inside, Vauxhall Cross is stark and utilitarian. Doors are marked with obscure acronyms. The only decorations on the walls are floor plans and exit signs.
Pausing in the empty corridor outside Sir James's office, you take a deep calming breath, and wipe your palms dry on your skirt.
//[[Knock and enter.|AGENCY-1300 Boss's office]]//
<<elseif $kate.agency == "asis">>\
You walk briskly through a hive of bare, clean, air-conditioned corridors.
Up here on the fifth floor, RG Casey is stark and utilitarian. Doors are marked with obscure acronyms. The only decorations on the walls are floor plans and exit signs.
Pausing in the empty corridor outside <<McKenzie>>'s office, you take a deep calming breath, and wipe your palms dry on your skirt.
//[[Knock and enter.|AGENCY-1300 Boss's office]]//
<<elseif $kate.agency == "csis">>\
You walk briskly through a hive of bare, clean, air-conditioned corridors.
On the inside, NHQ is stark and utilitarian. Doors are marked with obscure acronyms. The only decorations on the walls are floor plans and exit signs.
Pausing in the empty corridor outside <<McKenzie>>'s office, you take a deep calming breath, and wipe your palms dry on your skirt.
//[[Knock and enter.|AGENCY-1300 Boss's office]]//
<<elseif $kate.agency == "nzsis">>\
You walk briskly through a hive of bare, clean, air-conditioned corridors.
Up here on the sixth floor, Pipitea Plaza is stark and utilitarian. Doors are marked with obscure acronyms. The only decorations on the walls are floor plans and exit signs.
Pausing in the empty corridor outside <<McKenzie>>'s office, you take a deep calming breath, and wipe your palms dry on your skirt.
//[[Knock and enter.|AGENCY-1300 Boss's office]]//
<</if>>\
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
//"Come in...//$kate.firstName, take a seat."
You enter a bland government office and sit down; the blandly handsome Jack <<Colby>> pushes a document over to your side of the desk.
Everything about him radiates confident authority, the kind shaped on the sports fields of the Ivy League. "I need you read into something. Sign and name [[here|AGENCY-1310 Sign this]], please..."
<<elseif $kate.agency == "mi6">>\
//"Come in...//ah, $kate.firstName, take a seat."
You enter a bland government office and sit down; the blandly handsome Sir James pushes a document over to your side of the desk.
Everything about him radiates confident authority, the kind shaped on the playing fields at Eton. "I need you read into something. Sign and name [[here|AGENCY-1310 Sign this]], please..."
<<elseif $kate.agency == "asis">>\
//"Come in...//g'day, $kate.firstName, take a seat."
You enter a bland government office and sit down; the blandly handsome Jim <<McKenzie>> pushes a document over to your side of the desk.
Everything about him radiates confident authority, the kind shaped from a life of privilege and success. "I need you read into something. Sign and name [[here|AGENCY-1310 Sign this]], please..."
<<elseif $kate.agency == "csis">>\
//"Come in...//$kate.firstName, take a seat."
You enter a bland government office and sit down; the blandly handsome Adam <<McKenzie>> pushes a document over to your side of the desk.
Everything about him radiates confident authority, the kind shaped from a life of privilege and success. "I need you read into something. Sign and name [[here|AGENCY-1310 Sign this]], please..."
<<elseif $kate.agency == "nzsis">>\
//"Come in...//g'day, $kate.firstName, take a seat."
You enter a bland government office and sit down; the blandly handsome Mark <<McKenzie>> pushes a document over to your side of the desk.
Everything about him radiates confident authority, the kind shaped from a life of privilege and success. "I need you read into something. Sign and name [[here|AGENCY-1310 Sign this]], please..."
<<else>>\
//CRITICAL ERROR IN KATE.AGENCY VAR! [[CONTINUE ANYWAY|AGENCY-1310 Sign this]]//
<</if>>\
<</page>><<silently>>
<<remove-tanLeatherHandbag>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
Being 'read into' a programme means you're about to receive classified information about it.
You always have to sign a form first, acknowledging your access, and reminding you that unauthorised disclosure of any part is a breach of the Espionage Act, punishable by a 20-year prison term or the death penalty.
<<elseif $kate.agency == "mi6">>\
Being 'read into' a programme means you're about to receive classified information about it.
You always have to sign a form first, acknowledging your access – and reminding you that unauthorised disclosure of any part is a breach of the Official Secrets Act, punishable by discharge from the service and imprisonment for 14 years.
<<elseif $kate.agency == "asis">>\
Being 'read into' a programme means you're about to receive classified information about it.
You always have to sign a form first, acknowledging your access – and reminding you that unauthorised disclosure of any part is a breach of Section 79 of the Crimes Act, punishable by discharge from the service and imprisonment for 7 years.
<<elseif $kate.agency == "csis">>\
Being 'read into' a programme means you're about to receive classified information about it.
You always have to sign a form first, acknowledging your access – and reminding you that unauthorised disclosure of any part is a breach of the Security of Information Act, punishable by discharge from the service and imprisonment for 14 years.
<<elseif $kate.agency == "nzsis">>\
Being 'read into' a programme means you're about to receive classified information about it.
You always have to sign a form first, acknowledging your access – and reminding you that unauthorised disclosure of any part is a breach of the Official Information Act, punishable by discharge from the service and imprisonment for 14 years.
<<else>>\
//ERROR IN KATE.AGENCY VAR!//
<</if>>\
//[[Sign the access control form for a programme called (QO5) NEPTUNE.|AGENCY-1400 Read in]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sign and print //<<= $kate.firstName.toUpperCase()>> <<= $kate.surname.toUpperCase()>>// with your <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> ID number, and slide the document back to him to check.
"Alright. I've had a personnel request from an interagency task force," he begins. "Its codename is <small>NEPTUNE...</small>have you heard of it?"
[[No, sir.|AGENCY-1500 Neptune]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, sir." You shake your head.
<<if $kate.agency == "cia">>\
"Technically it's a <div class="tooltip"><small>FIVE EYES</small><span class="tooltiptext">an intelligence agency alliance comprising the US, the UK, Australia, Canada and New Zealand</span></div> combined task force. Directed and funded by the Agency, of course. It neutralises funders of cross-border terrorism."
<<elseif $kate.agency == "mi6">>\
"Technically it's a <div class="tooltip"><small>FIVE EYES</small><span class="tooltiptext">an intelligence agency alliance comprising the US, the UK, Australia, Canada and New Zealand</span></div> combined task force. We and <div class="tooltip">the Cousins<span class="tooltiptext">the CIA</span></div> do the heavy lifting, of course," he smiles wryly. "It neutralises funders of cross-border terrorism."
<<elseif $kate.agency == "asis">>\
"It's a <div class="tooltip"><small>FIVE EYES</small><span class="tooltiptext">an intelligence agency alliance comprising the US, the UK, Australia, Canada and New Zealand</span></div> combined task force. CIA led, we share intel and loan them officers from time to time. It neutralises funders of cross-border terrorism."
<<elseif $kate.agency == "csis">>\
"It's a <div class="tooltip"><small>FIVE EYES</small><span class="tooltiptext">an intelligence agency alliance comprising the US, the UK, Australia, Canada and New Zealand</span></div> combined task force. CIA led, we share intel and loan them officers from time to time. It neutralises funders of cross-border terrorism."
<<elseif $kate.agency == "nzsis">>\
"It's a <div class="tooltip"><small>FIVE EYES</small><span class="tooltiptext">an intelligence agency alliance comprising the US, the UK, Australia, Canada and New Zealand</span></div> combined task force. CIA led, we share intel and loan them officers from time to time. It neutralises funders of cross-border terrorism."
<</if>>\
[[Neutralise as in...|AGENCY-1600 JTF job requirement][$temp.playerDecision to "neutralise"]]
[[Who are the targets?|AGENCY-1600 JTF job requirement][$temp.playerDecision to "targets"]]
<</page>><<silently>>
<<emote-mouth-talking>>
/* Preload clothes for next scene */
<<if $kate.agency != "mi6">>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/skinnyBlueJeans/20_trousers-darkBlueDenimSkinnyJeans-barefoot.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/skinnyBlueJeans/20_trousers-darkBlueDenimSkinnyJeans-barefoot-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/30_jumper-greenRibbedSweaterWithWhiteCollarAndShirtTails-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/30_jumper-greenRibbedSweaterWithWhiteCollarAndShirtTails-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/20_shoes-whiteAndGreyStripeAdidasTrainers.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/20_shoes-whiteAndGreyStripeAdidasTrainers-rear.png">' >>
<<else>>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/blackStraightcutTrousers/30_trousers-blackStraightcutTrousers-highHeels.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/blackStraightcutTrousers/30_trousers-blackStraightcutTrousers-highHeels-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed-rear.png">' >>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "neutralise">>\
"Neutralise as in...?"
"<div class="tooltip">Render<span class="tooltiptext">capture & interrogate</span></div> or <div class="tooltip">terminate<span class="tooltiptext">kill</span></div>."
<<elseif $temp.playerDecision == "targets">>\
"Who are the targets?"
"Donors, couriers, organisers," he answers, "anyone they can get a fix on."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
His words hang in the air while he produces a thin dossier marked <div class="tooltip"><small>TS{{{//}}}QO5{{{//}}}OC/REL TO USA, FVEY</small><span class="tooltiptext">Top Secret; only for individuals read into compartment <small>QO5;</small> originator controls all access; never share beyond <small>FIVE EYES</small></span></div><<if $kate.agency == "cia">>//,//<<else>> – US security markings – <</if>>which he sets on the desk.
"$kate.firstName, I know <<if $kate.agency == "cia" or $kate.agency == "csis">>you've been pushing for an overseas mission<<elseif $kate.agency == "mi6">>you've been eager for a foreign assignment<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>you're keen for your first foreign mission<<else>>ERROR IN KATE.AGENCY VAR<</if>>..."
Your senses jolt suddenly alert. Is this real? You'd expected to be ordered to write a report, or organise a committee, or something – are you actually about to get your first field posting?
//Don't blow it.// You work hard to keep a poker face while he [[talks|AGENCY-1700 Mission profile]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"...but I want you to listen very carefully to this. CTF <small>NEPTUNE</small> wants a female officer for an undercover tasking," he says. "Your age, appearance and psych evals all fit their profile. They've asked us to release you for a few days, so you can be interviewed at their HQ in Scotland.
"Before you say yes." He holds up a finger. "It's a <div class="tooltip">NOC<span class="tooltiptext">Non Official Cover: a posting in a hostile environment, without diplomatic immunity</span></div> posting, and <small>NEPTUNE</small> is a <div class="tooltip">kinetic<span class="tooltiptext">authorised to use violent military and paramilitary action</span></div> task force. It's...unusual for them to recruit such a junior officer.
"I don't know the details, but it's probably dangerous. You don't have to volunteer. If you like, I'll tell them we can't spare you."
<span class="greyedOut">//[Volunteer]//</span> <<link "I'll do it." "AGENCY-2000 Kate volunteers">><</link>>
<<link "I'd rather stay here at HQ." "AGENCY-1800 Kate refuses the call to adventure">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Danger? Non-Official Cover? This isn't the field posting you've been waiting for. "I think I'd rather stay here, sir," you reply.
"Are you sure?" he asks. "Because this mission is really the whole point of //Female Agent."//
<<link "//[Volunteer]// Fine, I'll go." "AGENCY-2000 Kate volunteers">><</link>>
<<link "//[End the mission]// I'm sure, sir, I don't want to go undercover." "AGENCY-1900 Abort mission">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"I'm sure, sir."
"I understand. Well, that will be all, then, $kate.firstName," he says. "I'll tell //NEPTUNE// that they need to find [[another officer|country-select]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _representingOurAgency to "CIA, you'll be expected to lead">>
<<elseif $kate.agency == "mi6">>
<<set _representingOurAgency to "representing MI6">>
<<elseif $kate.agency == "asis">>
<<set _representingOurAgency to "representing ASIS to the Yanks">>
<<elseif $kate.agency == "csis">>
<<set _representingOurAgency to "representing CSIS to the Americans">>
<<elseif $kate.agency == "nzsis">>
<<set _representingOurAgency to "representing SIS to the Yanks">>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("AGENCY-1800 Kate refuses the call to adventure")>>\
"Fine, I'll go," you harrumph.
"I thought you'd say that," he says, sliding the dossier across his desk. "Joining instructions. Good luck, $kate.firstName. And do a good job while you're there: remember you're _representingOurAgency."
<<else>>\
"I'll do it," you say immediately.
He smiles wryly and slides the dossier across his desk. "I thought you'd say that. Here are the joining instructions. Good luck, $kate.firstName. And do a good job while you're there: remember you're _representingOurAgency."
<</if>>\
[[Yes sir.|AGENCY-2080 For England][$temp.playerDecision to "yessir"]]
[[I will, sir.|AGENCY-2080 For England][$temp.playerDecision to "iWill"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _hq to "the campus at Langley",
_travelHome to "drive home to your apartment in Georgetown">>
<<elseif $kate.agency == "mi6">>
<<set _hq to "Vauxhall Cross",
_travelHome to "take the tube back to your flat in Clapham">>
<<elseif $kate.agency == "asis">>
<<set _hq to "RG Casey",
_travelHome to "drive home to your apartment in Belco">>
<<elseif $kate.agency == "csis">>
<<set _hq to "NHQ",
_travelHome to "drive home to your apartment in Rockcliffe">>
<<elseif $kate.agency == "nzsis">>
<<set _hq to "Pipitea",
_travelHome to "drive home to your apartment in Te Aro">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "yessir">>\
"Yes sir. Understood."
<<elseif $temp.playerDecision == "iWill">>\
"I will, sir," you promise.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
Your boss is summoned. Once he's been briefed, he calls a quick team meeting to explain that you'll be away for at least the next few days, possibly longer. Everyone is curious, but they know better than to ask where you're going.
By lunchtime, you've handed over your active projects to colleagues. You sign out of _hq, and <<link "_travelHome" "AGENCY-2090 Title card">><</link>>.
<</page>><<silently>>
<<avatar-stripNaked>>
<<emote-calm>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<if $kate.agency == "mi6">>
<<wear-shoes-blackPatentHeels>>
<<wear-trousers-blackStraightcutTrousers>>
<<wear-jumper-blackTurtleNeckWithRolledUpSleeves>>
<<wear-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves>>
<<else>>
<<wear-trousers-darkBlueDenimSkinnyJeans>>
<<wear-hosiery-blackTrainerSocks>>
<<wear-top-greenRibbedSweaterWithWhiteCollarAndShirtTails>>
<<wear-shoes-whiteAdidasTrainers>>
<</if>>
<</silently>>\
<a data-passage="AGENCY-2100 Travel to Scotland">
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/katesApartmentTitleCard.jpg"+' >'>>
</a><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''WASHINGTON DULLES INTL AIRPORT (IAD)''",
$header.line2 to "VIRGINIA / MARCH 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''HEATHROW AIRPORT (LHR)''",
$header.line2 to "LONDON / MARCH 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''CANBERRA AIRPORT (CBR)''",
$header.line2 to "AUSTRALIA / MARCH 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''MACDONALD-CARTIER INTL AIRPORT (YOW)''",
$header.line2 to "OTTAWA / MARCH 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''WELLINGTON INTL AIRPORT (CBR)''",
$header.line2 to "NEW ZEALAND / MARCH 2018">>
<</if>>
<<set $avatar.background.pushUnique("agency/20_airportLoungeWindow-both")>>
<<set $avatar.background.pushUnique("agency/22_victorinoxLuggage-both")>>
/* Preload clothes */
<<if $kate.agency != "mi6">>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/blackStraightcutTrousers/30_trousers-blackStraightcutTrousers-highHeels.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/blackStraightcutTrousers/30_trousers-blackStraightcutTrousers-highHeels-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/sweaters/blackTurtleNeckWithRolledUpSleeves/30_jumper-blackTurtleNeckWithRolledUpSleevesFixed-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/jackets/tanTwinButtonSuitJacketWithRolledUpSleeves/50_jacket-tanTwinButtonSuitJacketWithRolledUpSleevesFixed-rear.png">' >>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
Next day, instead of going in to the office as usual, you fly Upper Class to London Heathrow (LHR) with Virgin Atlantic.
<<image "/locationPhotos/agency/virginAtlanticA330.jpg" 50 1000 343 0>>\
It's an eight-hour flight aboard an Airbus A330-300. You spend the night in a hotel in London, and [[fly on to Scotland|AGENCY-2140 Fly on to Scotland]] the following day.
<<elseif $kate.agency == "mi6">>\
Next morning, instead of going in to the office as usual, you fly Club Europe to Glasgow aboard a British Airways A319-100.
<<image "/locationPhotos/agency/baAirbus2.jpg" 130 1000 500 0>>\
Taking off from bright sunny Heathrow, you touch down in [[grey drizzly Glasgow|AGENCY-2150 Title card]] 90 minutes later.
<<elseif $kate.agency == "asis">>\
Next day, instead of going in to the office as usual, you fly Singapore Airlines to London.
<<image "/locationPhotos/agency/singaporeAirlines.jpg" 180 1000 480 0>>\
You're in the air for 22 hours, with a brief stopover in Singapore to stretch your legs. Officers of your grade normally fly economy, but ASIS upgrades you to business class this time. Flying on the luxurious upper deck of the Airbus makes the long trip less brutal.
You spend a night in a hotel in London, and [[fly on to Scotland|AGENCY-2140 Fly on to Scotland]] the following day.
<<elseif $kate.agency == "csis">>\
Next day, instead of going in to the office as usual, you fly Signature Class to London Heathrow (LHR) with Air Canada.
<<image "/locationPhotos/agency/airCanada.jpg" 140 1000 430 0>>\
It's a seven-hour flight aboard a a Boeing 767-300ER. You spend the night in a hotel in London, and [[fly on to Scotland|AGENCY-2140 Fly on to Scotland]] the following day.
<<elseif $kate.agency == "nzsis">>\
Next day, instead of going in to the office as usual, you fly Air New Zealand to Singapore. There you transfer and fly Singapore Airlines on to London.
<<image "/locationPhotos/agency/singaporeAirlines.jpg" 180 1000 480 0>>\
You're in the air for 25 hours. Officers of your grade normally fly economy, but SIS upgrades you to business class this time. Flying on the luxurious upper deck of the Airbus makes the long trip less brutal.
You spend a night in a hotel in London, and [[fly on to Scotland|AGENCY-2140 Fly on to Scotland]] the following day.
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''LONDON HEATHROW AIRPORT (LHR)''",
$header.line2 to "ENGLAND / MARCH 2018">>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-shoes-blackPatentHeels>>
<<wear-trousers-blackStraightcutTrousers>>
<<wear-jumper-blackTurtleNeckWithRolledUpSleeves>>
<<wear-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves>>
<<set $avatar.background.pushUnique("agency/20_airportLoungeWindow-both")>>
<<set $avatar.background.pushUnique("agency/22_victorinoxLuggage-both")>>
<</silently>>\
<<header>>\
<<page>>\
The following morning, from London Heathrow Airport, you fly Club Europe to Glasgow aboard a British Airways A319-100.
<<image "/locationPhotos/agency/baAirbus2.jpg" 130 1000 500 0>>\
Taking off from bright sunny Heathrow, you touch down in [[grey drizzly Glasgow|AGENCY-2150 Title card]] 90 minutes later.
<</page>><<silently>>
<</silently>>\
<a data-passage="AGENCY-2200 Priority disembark">
<<= '<img src='+ $imagePath.base + "locationPhotos/uk/scotlandTitleCard2.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''GLASGOW INTERNATIONAL AIRPORT (GLA)''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<<set $avatar.background.delete("agency/20_airportLoungeWindow-both")>>
<</silently>>\
<<header>>\
<<page>>\
On landing at Glasgow, you're disembarked ahead of all the other passengers.
Instead of passing through the terminal with everybody else, you exit directly onto the runway, where a little luggage cart is waiting.
Once you and your bags are aboard, the cart whizzes you across the tarmac to a nearby [[helipad|AGENCY-2300 Glasgow helipad]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Here you transfer to another aircraft, this time a <<if $kate.agency != "mi6">>British <</if>>Royal Navy Dauphin 2 helicopter.
<<image "/locationPhotos/uk/dauphin2OnRunway.jpg" 200 1000 425 0>>\
You buckle into the back, and put on your headset while the blades spin up. The moment you hear //"NAVY 185, cleared for takeoff,"// the heli lifts off. Your stomach lurches as the ground [[falls rapidly away|AGENCY-2400 Flight to Faslane]] from under you.
<</page>><<silently>>
<<set $header.line1 to "''ABOARD NAVY 185''">>
<<set $avatar.background.delete("agency/22_victorinoxLuggage-both")>>
<<set $avatar.foreground.pushUnique("accessories/heliHeadset/60_heliHeadset-" + $kate.hairStyle)>>
<<if $kate.hairStyle == "superShort">>
<<set $avatar.background.pushUnique("accessories/heliHeadset/8_heliHeadset-superShort-rear")>>
<<else>>
<<set $avatar.foreground.pushUnique("accessories/heliHeadset/8_heliHeadset-rear")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/highlands.jpg" 125 1000 550 0>>\
The view from the tiny aircraft is stunning. Farmers' fields and small towns slide past below, and soon you're cruising at 170mph over the rugged and beautiful Scottish countryside.
The pilot's voice crackles over your headset. "Flight time'll be about ten minutes, marm."
[[Roger.|AGENCY-2500 First look at Faslane][$kateSays to "Roger."]]
[[Thanks.|AGENCY-2500 First look at Faslane][$kateSays to "Thanks."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
The heli crests over some stark rugged hills, and you get your first look at your destination: HM Naval Base Clyde, better known in intelligence circles as just 'Faslane'.
<<image "/locationPhotos/uk/faslaneAerialView.jpg" 125 1000 450 0>>\
From the air it looks like a normal port, but you know it's the home base of the <<if $kate.agency != "mi6">>British<<else>>Royal<</if>> Navy's submarine fleet...including its //Vanguard//-class, armed with <div class="tooltip">Trident missiles<span class="tooltiptext">ballistic nuclear weapons. A single Royal Navy Trident II missile can destroy four different city-sized targets</span></div>.
You're [[coming in to land|AGENCY-2600 Landing at Faslane]] at one of the most secure military bases in the world.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/dauphin2Landing2.jpg" 125 1000 500 0>>\
//"NAVY 185, pad one cleared to land, wind one six zero degrees, four knots."//
The heli bumps down onto a landing pad inside Faslane Naval Base.
A man in blue jeans and a sweater is waiting nearby. In his mid-forties, he's tall, dark, and kinda handsome, despite the lines on his face and the dad bod.
"You're [[clear to disembark|AGENCY-2700 Meeting Clark]], marm," says the pilot.
<</page>><<silently>>
<<set $header.line1 to "''FASLANE NAVAL BASE''">>
<<set $avatar.foreground.delete("accessories/heliHeadset/60_heliHeadset-" + $kate.hairStyle)>>
<<set $avatar.background.delete("accessories/heliHeadset/8_heliHeadset-superShort-rear")>>
<<set $avatar.foreground.delete("accessories/heliHeadset/8_heliHeadset-rear")>>
<<wear-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
You step out of the heli and back onto solid tarmac. A cold, salty wind blows in from the loch. Your senses are heightened, jangly with adrenaline from the heli flight. Or maybe it's just nerves.
The guy strides over, offering a firm handshake. "$kate.firstName!" he shouts over the spinning-down rotors<<if $kate.agency == "cia" or $kate.agency == "csis">>, his accent American<</if>>. His hair's thick and swept back, his features broad and handsome, his smile <<if $kate.agency == "cia" or $kate.agency == "csis">>fierce and confident<<else>>all-American dental perfection<</if>>. "Clark <<Miller>>, <<if $kate.agency == "cia">><div class="tooltip">DO<span class="tooltiptext">CIA Directorate of Operations</span></div><<else>><div class="tooltip">Langley DO<span class="tooltiptext">CIA Directorate of Operations</span></div><</if>>. Welcome to sunny Scotland!"
[[Nice to meet you!|FASLANE-1000 JTF HQ][$temp.kateChoice to "niceToMeetU"]]
[[Thanks, why am I here?|FASLANE-1000 JTF HQ][$temp.kateChoice to "whyAmIHere"]]
<</page>><<page>>\
Welcome to ''Barmaid Simulator.''
You will need:
– Heels
– Thong
– Make up
– Alcohol
– Your Rabbit
– Cocktail ingredients
– Pickle juice
– Smartphone
When you're ready, you can [[start your shift|BSIM-110 Start your shift]].
<</page>><<page>>\
''Scene''
Kate gets ready for her shift in the dressing room.
''How to simulate it''
Go to your room; put on some glam, sexy makeup. You can listen to music or a podcast and drink while you're doing this.
When you're glammed up, change into a thong and heels. It's time to [[start work|BSIM-120 Report to bar]].
<</page>><<page>>\
''Scene''
Kate reports to the bar.
''Simulation''
Go to the kitchen and wait by the counter.
[[Done!|BSIM-130 Bonaht training]]
<</page>><<page>>\
''Scene''
Kate gets cocktail training with Bonaht. He teaches the girls to mix cocktails while showing off their bodies.
''Simulation''
Make yourself a strong cocktail. Over-accentuate the sexiness of every step, repeating it until you get it right (which is when your every move looks like it's out of a porno). Make sure you include a shaking step where Bonaht tells you several times to shake your boobs more.
[[Done!|BSIM-140 Training complete]]
<</page>><<page>>\
Well done! You may drink the cocktail.
''Scene''
It's Kate's turn to blow Bonaht tonight. She takes him to the VIP.
''Simulation''
Take your Rabbit, smartphone and the pickle juice to the couch.
[[Ready!|BSIM-150 Bonaht BJ]]
<</page>><<silently>>
<<set _bjDuration to random(6,9)>>
<</silently>>\
<<page>>\
''Scene''
Kate blows Bonaht in the VIP for a randomly generated time - ''_bjDuration minutes.''
''Simulation''
Set a timer on your phone for _bjDuration minutes. On your knees or crouching in front of the couch, suck the Rabbit for the whole duration.
You can vary your style during this time, but don't take long breaks, you're here to suck cock. Bonaht will play with your tits from time to time so grope them when you have a free hand.
Be mindful of your emotional journey and arousal levels during this time, we'll use it to write the Bonaht BJ scene in the next episode. Remember this will be the first time Kate is blowing someone who isn't Connor on the hidden camera.
When the timer is done, [[Bonaht is close to orgasm|BSIM-160 Vinegar strokes]].
<</page>><<page>>\
''Scene''
Kate gets Bonaht off in her mouth.
''Simulation''
Suck the Rabbit fast and non-stop for 1 minute. This is it, make him come!
[[Done!|BSIM-170 Money shot]]
<</page>><<page>>\
''Scene''
Bonaht comes in Kate's mouth.
''Simulation''
Down the shot of pickle juice.
[[Ew! Done!|BSIM-180 Back to the bar]]
<</page>><<page>>\
''Scene''
Bonaht leaves, Kate returns to work.
''Simulation''
Go back to the kitchen counter.
[[Ready.|BSIM-240 Bar setup]]
<</page>><<silently>>
<<set $customers to [
"notInterestedGuy",
"complimentaryCustomer",
"insultingCustomer",
"eyeCandy"
]>>
<<set $compliments to [
"I have great tits.",
"I've got amazing tits.",
"My tits are massive!",
"I've got a great rack.",
"I'm fucking sexy.",
"I've got a nice ass.",
"I'd be a great fuck!",
"I must give amazing tit fucks.",
"I've got fucking massive tits."
]>>
<<set $insults to [
"I'm a dumb bitch.",
"I'm a slut.",
"I'm a stupid bitch.",
"I'm a stupid whore.",
"I'm white trash."
]>>
<<set $clubTasks to [
""
]>>
<</silently>>\
<<page>>\
You will now be assigned ''random tasks'' to simulate Kate's club shift.
Set up the random timer app on your phone to ping every 1-3 minutes. When it pings, do a task.
Between tasks, you may work, clean up, surf the web, etc. But you have to do it in the kitchen and you have to stay on your feet for the whole shift.
[[Begin.|BSIM-250 Task hub]]
<</page>><<page>>\
Set your random timer app for 1-3 minutes.
When it pings, [[do a random task.|BSIM-300 Random task]]
<</page>><<silently>>
<<set _d100 to random(1,100)>>
<<set _gropingTarget to either("breasts", "nipples")>>
<<set _breasts to either("breasts", "boobs", "tits")>>
<<set _breastTouches to [
"caress",
"crush",
"cup",
"fondle",
"knead",
"massage",
"rub",
"squeeze",
"squash",
"stroke",
"test the weight of",
"play with"
]>>
<<set _nippleTouches to [
"brush across",
"caress",
"circle",
"flick",
"play with",
"knead",
"pinch",
"probe",
"roll",
"rub",
"tease",
"tug",
"squeeze",
"crush",
"squash"
]>>
<</silently>>\
<<page>>\
<<if _d100 lte 80>>\
<<silently>>
<<set _customer to $customers.random()>>
<</silently>>\
<<if _customer == "notInterestedGuy">>\
''Scene''
A hot English customer asks Kate where she's from.
''Simulation''
Lean over the counter, smile, and <<if _gropingTarget == "breasts">><<= _breastTouches.random()>> your _breasts<<else>><<= _nippleTouches.random()>> your nipples<</if>>. Say "I'm from Lon–"
Shut up when you realise he's not listening to you. Let him play with you for <<= random(8,20)>> seconds.
<<set $customers.delete("notInterestedGuy")>>\
<<elseif _customer == "complimentaryCustomer">>\
''Scene''
A nice customer compliments Kate!
''Simulation''
Lean over the counter, smile, and <<if _gropingTarget == "breasts">><<= _breastTouches.random()>> your _breasts<<else>><<= _nippleTouches.random()>> your nipples<</if>> for <<= random(8,20)>> seconds. Say out loud: "<<= $compliments.random()>>"
<<elseif _customer == "insultingCustomer">>\
''Scene''
A nasty customer insults Kate!
''Simulation''
Lean over the counter, smile, and <<if _gropingTarget == "breasts">><<= _breastTouches.random()>> your _breasts<<else>><<= _nippleTouches.random()>> your nipples<</if>> for <<= random(8,20)>> seconds. Say out loud: "<<= $insults.random()>>"
<<elseif _customer == "eyeCandy">>\
<<set _task to either("high", "squat", "bend")>>\
''Scene''
The guys at the bar are enjoying watching Kate work!
''Simulation''
Strut sexily around the kitchen. Imagine feeling everyone's eyes on you.
<<if _task == "high">>\
Reach up to get something high. Make sure to arch your back sexily and show off your butt!
<<elseif _task == "squat">>\
Crouch down and get something low. Make it look good!
<<else>>\
Bend over to get something from a low shelf. Give everyone a great look at your ass.
<</if>>\
<<else>>
Generic customer
<</if>>
<<else>>\
club task
<</if>>\
[[Done.|BSIM-250 Task hub]]
<</page>><<silently>>
<<set $kate.isUndercover to false>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<</silently>>\
<a data-passage="DEBRIEF1-2000 Thanks Kate">
<<= '<img src='+ $imagePath.base + "locationPhotos/uk/faslaneTitleCard3.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''TASK FORCE NEPTUNE''",
$header.line2 to "FASLANE / APRIL 2018">>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"...and that's everything I saw," you say.
"Alright," says Clark. "Thanks, $kate.firstName."
"Yeah, good work," says <<Olivia>>. "It's more info than we had a week ago. It'll help."
[[No problem.|DEBRIEF1-3000 No problem]]
[[Sorry I didn't get the job.|DEBRIEF1-4000 Sorry]]
<<if hasVisited("WELBANG-329000 Brachial stun!")>>\
[[Is it a problem that I knocked him out?|DEBRIEF1-4100 Knockout problem]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No problem," you tell them. "Thanks for the opportunity."
<<include "DEBRIEF1-5000 Leaving Faslane">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry I didn't get the job," you say.
"No problem," says Clark. "You did the right thing."
"Yeah, don't worry," says <<Olivia>>. She glances over at the whiteboard, where your work ID mugshot sits with a dozen other female officers. "We'll figure something out."
<<include "DEBRIEF1-5000 Leaving Faslane">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is it a problem that I knocked him out?"
"Nah." Clark smirks. "Pretty sure he'll be keeping that story to himself."
"Yeah, don't worry," says <<Olivia>>. She glances over at the whiteboard, where your work ID mugshot sits with a dozen other female officers. "We'll try to work around this guy somehow."
<<include "DEBRIEF1-5000 Leaving Faslane">>
<</page>>You finish up at Faslane by being formally "read out" of NEPTUNE and its compartments – meaning your access to the programme is revoked, now you're no longer needed.
Clark and <<Olivia>> will continue the hunt for DEVILFISH; it's [[back to normal|DEBRIEF1-5000 Title card]] for you.<<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-trousers-greyTailoredWorkTrousers>>
<<wear-top-lightGreyScoopNeckSleevelessTankVest>>
<<wear-shoes-beigeMaryJanePumps>>
<<wear-jacket-classicCamelBlazer>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<</silently>>\
<a data-passage="DEBRIEF1-6000 Sir Richard's office">
<<if $kate.agency == "cia">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/dc.jpg"+' >'>>
<<elseif $kate.agency == "mi6">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/london.jpg"+' >'>>
<<elseif $kate.agency == "asis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/canberra.jpg"+' >'>>
<<elseif $kate.agency == "csis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/ottawa.jpg"+' >'>>
<<elseif $kate.agency == "nzsis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/wellington.jpg"+' >'>>
<</if>>\
</a><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / APRIL 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / APRIL 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / APRIL 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / APRIL 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / APRIL 2018">>
<</if>>
/* TK restore this later
<<if hasVisited("MALAY-412000 Modelling for Max")>>
<<set $kate.ending to "sideChick">>
<<elseif $kate.hackedMaxsPhone>>
<<set $kate.ending to "fieldOfficer">>
<<else>>
<<set $kate.ending to "deskJockey">>
<</if>> */
<<if $kate.ending == "fieldOfficer">>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-blackShortWorkSkirt>>
<<wear-top-taupeWorkShirt>>
<<wear-hosiery-plainBlackHoldUpStockings>>
<<wear-shoes-blackPatentHeels>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Ah, $kate.firstName." <<if $kate.agency == "cia">>Jack <<Colby>><<elseif $kate.agency == "mi6">>Sir James <<Greenwood>><<elseif $kate.agency == "asis">>Jim <<McKenzie>><<elseif $kate.agency == "csis">>Adam <<McKenzie>><<elseif $kate.agency == "nzsis">>Mark <<McKenzie>><<else>>ERROR IN KATE.AGENCY VAR<</if>> smiles paternally over his desk. <<if hasVisited("MALAY-412000 Modelling for Max")>>"How<<if $kate.agency == "mi6">> woul<<else>>'d<</if>> you like to keep that tan?"
[[Sir?|DEBRIEF-7000 Wheeler's offer]]
<<else>>\
"<<if $kate.agency == "cia">>CTC<<elseif $kate.agency == "mi6">>MID/OPS<<elseif $kate.agency == "asis">>the ops desk<<elseif $kate.agency == "csis">>ITC<<elseif $kate.agency == "nzsis">>the ops desk<<else>>ERROR IN KATE.AGENCY VAR<</if>><<if $kate.agency == "mi6">> wi<<else>>'<</if>>ll be pleased that you're back..."
And that's it: back to the desk job, and the mountain of reports. At least <<if $kate.surname != "Ryan">>Ryan<<else>>Bristow<</if>> finished //Spatial and Temporal Analysis of VBIED Incidents in Iraq, 2017-2018// while [[you were gone|DEBRIEF-15000 Where were you?]].
<</if>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sir?"
"Got a request here from <<if $kate.agency == "cia">>Gary<<elseif $kate.agency == "mi6">>Ges<<elseif $kate.agency == "asis">>Ges<<elseif $kate.agency == "csis">>Gerard<<elseif $kate.agency == "nzsis">>Gus<<else>>ERROR IN KATE.AGENCY VAR<</if>> <<Wheeler>>. He said he's very impressed with everything he saw of you. He wants to know if you're interested in a posting to Malaysia Station..."
<<if $kate.agency == "cia">><<Colby>><<elseif $kate.agency == "mi6">>Sir James<<elseif $kate.agency == "asis">><<McKenzie>><<elseif $kate.agency == "csis">><<McKenzie>><<elseif $kate.agency == "nzsis">><<McKenzie>><<else>>ERROR IN KATE.AGENCY VAR<</if>> smiles, pleased to offer a young officer her first long-term overseas posting. Normally, you'd jump at the chance...but is there a double meaning to <<Wheeler>>'s praise?
[[I'll do it.|DEBRIEF-7050 Malaysia posting][$kateSays to "yessir"]]
[[I'd...rather stay at HQ.|DEBRIEF-7050 Malaysia posting][$kateSays to "nosir"]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "US EMBASSY / 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "BRITISH HIGH COMMISSION / 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "AUSTRALIAN HIGH COMMISSION / 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "CANADIAN HIGH COMMISSION / 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "NEW ZEALAND HIGH COMMISSION / 2018">>
<</if>>
<<avatar-stripNaked>>
<<wear-trousers-darkBlueDenimBootcutJeans>>
<<wear-shirt-beigeSilkCollarlessBlouse>>
<<wear-shoes-blackSuedeAnklePlatformHeelsOverTrousers>>
<<wear-blackAviators>>
<<wear-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yessir">>\
You're dubious, but it's a hell of an opportunity and it would look weird to refuse it. You pack your things and fly out a few days later.
<<elseif $kateSays == "nosir">>\
You turn it down at first. But – after <<Wheeler>> calls you in <<if $kate.agency == "cia">>Washington<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, and tells you that if your request for a transfer isn't on <<if $kate.agency == "cia">>Jack <<Colby>><<elseif $kate.agency == "mi6">>Sir James <<Greenwood>><<elseif $kate.agency == "asis">>Jim <<McKenzie>><<elseif $kate.agency == "csis">>Adam <<McKenzie>><<elseif $kate.agency == "nzsis">>Mark <<McKenzie>><<else>>ERROR IN KATE.AGENCY VAR<</if>>'s desk tomorrow morning, some interesting photos will be – you "reconsider" and go through with the transfer.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
In his office at the <<if $kate.agency == "cia">>Embassy<<else>>High Commission<</if>>, <<Wheeler>> explains his position. The photos you left on Max's phone – evidence that <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer acted as a honeypot against an allied defence contractor – could cause an international scandal.
If he reports you, your career's [[finished|DEBRIEF-7060 However...]].
<</page>><<silently>>
<<remove-blackAviators>>
<<remove-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
However...apart from the photos, your operation against SAAB was a quick, brilliant piece of industrial espionage. Why not repeat it against other defence contractors as they pass through?
Malaysia holds a major international defence conference twice per year; this station could become a powerhouse of economic intelligence if you're [[willing to play ball|DEBRIEF-7100 Willing to play ball]]...
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-skirt-blackMiniWorkSkirt>>
<<wear-top-taupeWorkShirt>>
/* <<wear-hosiery-plainBlackHoldUpStockings>> */
<<wear-shoes-blackPatentHeels>>
<<wear-tanLeatherHandbag>>
<<apply-makeup-eyeliner-elizabeth>>
<<apply-makeup-eyeshadow-lust>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<<set $header.line1 to "''DIPLOMATIC CIRCUIT''",
$header.line2 to "MALAYSIA / 2018">>
<</silently>>\
<<header>>\
<<page>>\
Taking on a cover role at the embassy as <<Wheeler>>'s personal secretary gives you plenty of excuses to attend defence industry events and exhibitions with your boss.
While he schmoozes with dignitaries and <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>British<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> contractors, you slip off to the bar, and wait for [[men with foreign security clearances to hit on you|DEBRIEF-7150 So Easy]].
<</page>><<silently>>
<<emote-calm>>
<<remove-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
It's //so easy.//
All of these men have been trained about the security risk presented by unaccompanied women at hotel bars; but none of them ever seem to suspect you. Maybe it's because of your nationality; everybody knows that <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>the Kiwi SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> doesn't use honeypots.
After each event, you sit with <<Wheeler>> and sift through the little stack of business cards men have slipped you; then you [[book dates|DEBRIEF-7200 Fast affairs and hot dates]] with the best targets.
<</page>><<silently>>
<<set $header.line1 to "''FAST AFFAIRS & HOT DATES''",
$header.line2 to "MALAYSIA / 2018">>
<<avatar-stripNaked>>
<<wear-shoes-nudePeepToeHeels>>
<<wear-dress-blackBodyconSleevelessMiniDress>>
<<apply-makeup-lipstick-rubyWoo>>
<<apply-makeup-eyeshadow-lust>>
<<apply-makeup-eyeliner-ramona>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You don't even need to have sex with most of them. You become an expert at orchestrating <div class="tooltip">remote compromises<span class="tooltiptext">hacking into a device without physical contact</span></div> of targeted smartphones, and <<Wheeler>> has enough juice to get you priority access to <<if $kate.agency == "cia">><div class="tooltip">CCI<span class="tooltiptext">CIA Center for Cyber Intelligence</span></div><<elseif $kate.agency == "mi6">><div class="tooltip">GCHQ<span class="tooltiptext">Government Communications Headquarters</span></div><<elseif $kate.agency == "asis">><div class="tooltip">ASD<span class="tooltiptext">Australian Signals Directorate</span></div><<elseif $kate.agency == "csis">><div class="tooltip">CSEC<span class="tooltiptext">the Communications Security Establishment</span></div><<elseif $kate.agency == "nzsis">><div class="tooltip">GCSB<span class="tooltiptext">Government Communications Security Bureau</span></div><<else>>ERROR IN KATE.AGENCY VAR<</if>>'s best hackers.
Often, all you have to do is lure them to a certain hotel bar or local restaurant where the Wi-Fi is controlled by <<= $kate.agency.toUpperCase()>>. You can be two sips into your second martini when you get a text message from a "girlfriend" letting you know your latest operation has [[already succeeded|DEBRIEF-7250 Gotta hand it to Wheeler]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "nosir">><<Wheeler>> had to strongarm you into this, but after a while you have to admit<<else>>You have to hand it to <<Wheeler>><</if>>; this op is highly effective. And it's even fun: you get the thrill of deceiving people and the challenge of stealing their secrets, and it's all in the interest of national security.
You're not a honeypot, not really. Mostly all you have to do is flirt in bars, and go on lots of first dates. But sometimes the targets are actually hot, or so senior that <<Wheeler>> orders you to do "whatever it takes" to get some alone time with their phones.
With those men, you've only got [[one rule|DEBRIEF-7300 No pictures]].
<</page>><<silently>>
<<set $header.line1 to "''VARIOUS HOTEL ROOMS''",
$header.line2 to "MALAYSIA / 2018">>
<<remove-dress-blackBodyconSleevelessMiniDress>>
<<remove-shoes-nudePeepToeHeels>>
<<emote-calm>>
<<emote-mouth-open>>
<<emote-brows-raised>>
<<emote-eyes-closed>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
"[[No photos|DEBRIEF-7350 Game over]]."
<<image "/locationPhotos/malaysia/hotelRoomFloor.jpg" 200 1000 600 0>>\
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "US EMBASSY / 2019">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "BRITISH HIGH COMMISSION / 2019">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "AUSTRALIAN HIGH COMMISSION / 2019">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "CANADIAN HIGH COMMISSION / 2019">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''MALAYSIA STATION''",
$header.line2 to "NEW ZEALAND HIGH COMMISSION / 2019">>
<</if>>
<<avatar-stripNaked>>
<<wear-skirt-blackMiniWorkSkirt>>
<<wear-top-taupeWorkShirt>>
/* <<wear-hosiery-plainBlackHoldUpStockings>> */
<<wear-shoes-blackPatentHeels>>
<<apply-makeup-eyeliner-elizabeth>>
<<apply-makeup-eyeshadow-lust>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/ui/gameOver.jpg" 0 1000 238 0>>\
Your ending: //''Malaysia Station Honeypot.'' //
//Body count in the field: <<if hasVisited("MALAY-89000 Max's balcony") and hasVisited("GOF-900 But they never do")>>3 (Max, Connor, Kriangsak)<<elseif hasVisited("MALAY-89000 Max's balcony")>>1 (Max)<<else>>2 (Connor, Kriangsak)<</if>>
<small>DEVILFISH</small> was never apprehended. The Al-Ahmadi Network remains uncompromised.
$kate.firstName is on indefinite assignment to Operation <small>TURNKEY</small>, a defence intelligence project. All enquiries to Head of Malaysia Station.//
<hr />
In a future version, this ending will be more playable and interactive! But for now, you've reached the end of the story.
<b>What now?</b>
We're currently working on the next episode, //FNG.// It will continue $kate.firstName's main quest.
In the meantime, you can:
<ul>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.11</a> (which is focused on $kate.firstName's youth and university years, before she joined <<if $kate.agency == "cia">>the <<else>><<= $kate.agency.toUpperCase()>><</if>>).</li>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.6</a> (which looks different, but has more story content).</li>
<li>Find out more about the game at our <a href="https://www.femaleagentgame.com/">website</a>.</li>
<li>Give us feedback and ideas on <a href="https://discord.gg/eeXEnBS4S8">Discord</a>.</li>
</ul>\
<b>Development is 100% funded by fans</b>
Writing, illustrating and coding the game takes many hours! We wouldn't be able to do it without the support of our great fans on <a href="https://www.patreon.com/crushstation">Patreon</a> and <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>.
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>\
If you love the game and can afford $1 or more, please support us at <a href="https://www.patreon.com/crushstation">Patreon</a> or <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>. You'll be able to download a supporter version with some extra features (like the largest bra size, and a very cheaty back button). More importantly, you'll be directly funding development of the game.
<b>Thanks for playing this version of Female Agent!</b>
<<else>>\
Thank you humbly for making this game possible. I promise to always do my best. 😔
<b>And thanks for playing this version of Female Agent!</b>
<</if>>\
$kate.firstName $kate.surname will always remember you.
– 🦀 <i>Crushstation, October 2023</i>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Imagine if this got out," he says. "Photographic evidence of one of our officers seducing an allied defence contractor. The <<if $kate.agency == "cia">>President<<else>>Prime Minister<</if>> would have to apologise to the Swedes. And we'd be answering questions about using our officers as honey traps for years. Just think of the impact on recruitment. What <<if $kate.agency == "cia">>the hell<<elseif $kate.agency == "mi6">>the devil<<elseif $kate.agency == "asis">>in blazes<<elseif $kate.agency == "csis">>the heck<<elseif $kate.agency == "nzsis">>in blazes<<else>>ERROR IN KATE.AGENCY VAR<</if>> were you //thinking?"//
In the end you're not fired over it...but you are stripped of your security clearance, and reassigned to a deniable, [[dead end admin job|DEBRIEF-8000 Dead end girl]] in <<if $kate.agency == "cia">>the <div class="tooltip">USDA<span class="tooltiptext">US Department of Agriculture</span></div><<elseif $kate.agency == "mi6">><div class="tooltip">DEFRA<span class="tooltiptext">Department for Environment, Food & Rural Affairs</span></div><<elseif $kate.agency == "asis">>the Department of Agriculture & Water Resources<<elseif $kate.agency == "csis">>the Department of Agriculture and Agri-Food<<elseif $kate.agency == "nzsis">>the Ministry for Primary Industries<<else>>ERROR IN KATE.AGENCY VAR<</if>>. It can't turn into a scandal if you're not, and never have been, an intelligence officer.
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''USDA''",
$header.line2 to "WASHINGTON DC / 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''DEFRA''",
$header.line2 to "LONDON / 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''DEPT OF AGRICULTURE & WATER RESOURCES''",
$header.line2 to "CANBERRA / 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''DEPT OF AGRICULTURE & AGRI-FOOD''",
$header.line2 to "OTTAWA / 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''MINISTRY FOR PRIMARY INDUSTRIES''",
$header.line2 to "WELLINGTON / 2018">>
<</if>>
<<avatar-stripNaked>>
<<wear-skirt-blackMiniWorkSkirt>>
/* <<wear-top-babyBlueSemiSheerVNeckTop>> */
<<wear-top-taupeWorkShirt>>
<<wear-hosiery-plainBlackHoldUpStockings>>
<<wear-shoes-blackPatentHeels>>
<</silently>>\
<<header>>\
<<page>>\
The worst part is not being able to tell your family or friends why you're so upset about being shunted into a boring civil service desk job. As far as any of them know, that's always what you did for a living anyway.
The next few years are a battle with depression, boredom, and your weight. Your secret identity as <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer was a key part of who you were; it takes you a long time to learn to live without it.
Your only contact with your old life is through a few former colleagues. You end up having a string of short, on-off relationships with several of the guys you used to work with. None of them work out, and they all like taking photos of you during sex.
You know you're being used, but you put up with it to keep some kind of connection, however tenuous, with the [[secret world|DEBRIEF-9000 Al-Ahmadi]] you used to be part of.
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''<<= $kate.firstName.toUpperCase()>>\'S APARTMENT''",
$header.line2 to "WASHINGTON DC / 2019">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''<<= $kate.firstName.toUpperCase()>>\'S FLAT''",
$header.line2 to "LONDON / 2019">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''<<= $kate.firstName.toUpperCase()>>\'S UNIT''",
$header.line2 to "CANBERRA / 2019">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''<<= $kate.firstName.toUpperCase()>>\'S APARTMENT''",
$header.line2 to "OTTAWA / 2019">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''<<= $kate.firstName.toUpperCase()>>\'S UNIT''",
$header.line2 to "WELLINGTON / 2019">>
<</if>>
<<removeSkirt>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
They never tell you about anything operational, of course, but from time to time they'll share little snippets you can't get from the news.
"You know that task force you were in?" your old boss asks, 18 months after you were fired, and a couple minutes after he pulled out and came all over your couch. "They hit Al-Ahmadi last week. Might be able to sneak some of the reports out, if you're still interested..."
//Wow...they pulled it off?// You stop being mad about your couch, and fix him with your most charming look. You've <<link "//got// to see those reports" "DEBRIEF-10000 Side chick ending">><</link>>...
<</page>><<silently>>
<<set _sexualPartners to 1,
_diceRoll to random(3,8),
_sexualPartners += _diceRoll>>
<</silently>>\
<<page>>\
<<image "/ui/gameOver.jpg" 0 1000 238 0>>\
Your ending: //''Side Chick.'' After a nude photos scandal at <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>NZSIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>, $kate.firstName $kate.surname was reassigned to a clerical job in the civil service. Her only link back to the intelligence community is through affairs with several former colleagues.//
//Body count 2018-2019: _sexualPartners (Max, plus _diceRoll former colleagues)
Your Mandarin Oriental nudes were seen by Malaysia Station and <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Dates with former colleagues normally end with you posing for their camera phone.//
<hr />
In a future version, this ending will be more playable and interactive! But for now, you've reached the end of the story.
<b>What now?</b>
We're currently working on the next episode, //FNG.// It will continue $kate.firstName's main quest.
In the meantime, you can:
<ul>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.11</a> (which is focused on $kate.firstName's youth and university years, before she joined <<if $kate.agency == "cia">>the <<else>><<= $kate.agency.toUpperCase()>><</if>>).</li>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.6</a> (which looks different, but has more story content).</li>
<li>Find out more about the game at our <a href="https://www.femaleagentgame.com/">website</a>.</li>
<li>Give us feedback and ideas on <a href="https://discord.gg/eeXEnBS4S8">Discord</a>.</li>
</ul>\
<b>Development is 100% funded by fans</b>
Writing, illustrating and coding the game takes many hours! We wouldn't be able to do it without the support of our great fans on <a href="https://www.patreon.com/crushstation">Patreon</a> and <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>.
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>\
If you love the game and can afford $1 or more, please support us at <a href="https://www.patreon.com/crushstation">Patreon</a> or <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>. You'll be able to download a supporter version with some extra features (like the largest bra size, and a very cheaty back button). More importantly, you'll be directly funding development of the game.
<b>Thanks for playing this version of Female Agent!</b>
<<else>>\
Thank you humbly for making this game possible. I promise to always do my best. 😔
<b>And thanks for playing this version of Female Agent!</b>
<</if>>\
$kate.firstName $kate.surname will always remember you.
– 🦀 <i>Crushstation, October 2023</i>
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''OPERATIONAL POSTINGS''",
$header.line2 to "SOUTHEAST ASIA / 2019">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''OPERATIONAL POSTINGS''",
$header.line2 to "SOUTH EAST ASIA / 2019">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''OPERATIONAL POSTINGS''",
$header.line2 to "SOUTH EAST ASIA / 2019">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''OPERATIONAL POSTINGS''",
$header.line2 to "SOUTHEAST ASIA / 2019">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''OPERATIONAL POSTINGS''",
$header.line2 to "SOUTH EAST ASIA / 2019">>
<</if>>
<<avatar-stripNaked>>
<<wear-trousers-darkBlueDenimSkinnyJeans>>
<<wear-top-whiteCutOutKnitTop>>
<<wear-shoes-blackSuedeAnklePlatformHeelsOverTrousers>>
<<wear-jacket-classicCamelBlazer>>
<<wear-blackAviators>>
<</silently>>\
<<header>>\
<<page>>\
You work a number of important missions in the years that follow: tracking down an Indonesian arms dealer who stole funding from the CIA; assessing Taiwan's defences against a future Chinese invasion; and investigating a <div class="tooltip">PLARF<span class="tooltiptext">People's Liberation Army Rocket Force</span></div> colonel who claims to want to defect.
You're young for a field officer, and that helps you build a reputation as a rising star in <<if $kate.agency == "cia">>the <div class="tooltip">DO<span class="tooltiptext">CIA Directorate of Operations</span></div><<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Lots of your colleagues ask about it, either out of curiosity or a desire to follow in your footsteps.
You keep your answers vague: partly for OPSEC, and partly because you don't want to reveal that your start in Operations was [[stripping off and getting fingered|DEBRIEF-12000 Jane Bond]] in some foreign apartment.
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-shoes-silverStrappyStilettoSandals>>
<<wear-dress-blackOneShoulderCutOutThighSlitGown>>
<</silently>>\
<<header>>\
<<page>>\
The travel and secrecy makes it impossible to have a relationship. But you're still young – there'll be plenty of time to settle down later.
In the meantime, like your experience at the Mandarin Oriental, you learn that hotel bars are easy places to start a short, glamorous affair. Like a [[real-life Jane Bond|DEBRIEF-13000 Al-Ahmadi]], you punctuate your missions with a string of sexy encounters with attractive strangers.
It keeps you from getting swallowed up in your highly stressful job.
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/vietnam/saigon.jpg" 50 1000 500 0>>\
It doesn't make the headlines, but working your laptop one evening in Saigon, you notice some internal reports describing a rapid series of strike missions carried out against targets from the Al-Ahmadi Network – DEVILFISH's organisation.
That piques your interest. You've been read out of NEPTUNE...but maybe you could persuade a colleague to share some gossip. You set up a secure call to a number in the UK: "Clark? Hey, it's $kate.firstName $kate.surname. Yeah, long time! Listen, when are you next out my way, I wanna catch up? Yeah, perfect. I know <<link "a //great// hotel" "DEBRIEF-14000 Operator ending">><</link>>..."
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-trousers-darkBlueDenimSkinnyJeans>>
<<wear-top-whiteCutOutKnitTop>>
<<wear-shoes-blackSuedeAnklePlatformHeelsOverTrousers>>
<<wear-jacket-classicCamelBlazer>>
<<wear-blackAviators>>
<<set _sexualPartners to 0,
_diceRoll to random(2,12),
_sexualPartners += _diceRoll>>
<<if not hasVisited("MALAY-79000 Kate returns to her room alone")>>
<<set _sexualPartners += 1>>
<</if>>
<</silently>>\
<<page>>\
<<image "/ui/gameOver.jpg" 0 1000 238 0>>\
Your ending: //''Field Officer.'' After completing two field operations early in her career, $kate.firstName $kate.surname transferred out of her desk job and into <<if $kate.agency == "cia">>the <div class="tooltip">DO<span class="tooltiptext">CIA Directorate of Operations</span></div><<else>>operations<</if>>. Her career's going great, but her love life is mainly one-night stands.//
//Body count 2018-2019: _sexualPartners (<<if not hasVisited("MALAY-79000 Kate returns to her room alone")>>Max, plus _diceRoll other hotel encounters<<else>>hotel encounters<</if>>)//
<hr />
In a future version, this ending will be more playable and interactive! But for now, you've reached the end of the story.
<b>What now?</b>
We're currently working on the next episode, //FNG.// It will continue $kate.firstName's main quest.
In the meantime, you can:
<ul>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.11</a> (which is focused on $kate.firstName's youth and university years, before she joined <<if $kate.agency == "cia">>the <<else>><<= $kate.agency.toUpperCase()>><</if>>).</li>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.6</a> (which looks different, but has more story content).</li>
<li>Find out more about the game at our <a href="https://www.femaleagentgame.com/">website</a>.</li>
<li>Give us feedback and ideas on <a href="https://discord.gg/eeXEnBS4S8">Discord</a>.</li>
</ul>\
<b>Development is 100% funded by fans</b>
Writing, illustrating and coding the game takes many hours! We wouldn't be able to do it without the support of our great fans on <a href="https://www.patreon.com/crushstation">Patreon</a> and <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>.
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>\
If you love the game and can afford $1 or more, please support us at <a href="https://www.patreon.com/crushstation">Patreon</a> or <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>. You'll be able to download a supporter version with some extra features (like the largest bra size, and a very cheaty back button). More importantly, you'll be directly funding development of the game.
<b>Thanks for playing this version of Female Agent!</b>
<<else>>\
Thank you humbly for making this game possible. I promise to always do my best. 😔
<b>And thanks for playing this version of Female Agent!</b>
<</if>>\
$kate.firstName $kate.surname will always remember you.
– 🦀 <i>Crushstation, October 2023</i>
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / 2018">>
<</if>>
<<removeJacket>>
<<set $avatar.underwear.delete("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.delete("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You got called away for a few weeks by a task force with a codename, and came back with a <<if hasVisited("WELBANG-70000 Henna tattoo")>>henna tattoo and a <</if>>suntan. That gives you a certain cachet around the water coolers for a while.
But you can't talk about it. The <<if hasVisited("WELBANG-70000 Henna tattoo")>>tattoo vanishes, the <</if>>tan fades, and life quickly goes back to normal: [[reports, analyses, team meetings|DEBRIEF-18000 Desk jockey ending]].
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / 2019">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / 2019">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / 2019">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / 2019">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / 2019">>
<</if>>
<<avatar-stripNaked>>
<<wear-top-whiteBacklessSatinHalterCropTopWithBigBow>>
<<wear-trousers-blackTailoredWorkTrousers>>
<<wear-shoes-blackSuedeAnklePlatformHeels>>
<</silently>>\
<<header>>\
<<page>>\
Life quickly goes back to normal. If not for your secretive job, you'd be a totally normal twentysomething in <<if $kate.agency == "cia">>DC<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, juggling her career and her personal life.
Your <<if hasVisited("MALAY-51000 MO Bar")>>date with Max<<else>>experience of being hit on by a //really// attractive guy at the Mandarin Oriental<</if>> encourages you to make a bit more of an effort to put yourself out into the dating scene. Unfortunately, Tinder's just as hard work as you remember: Mr Swipe Right often turns out to be Mr Wrong in real life. And the dates are never as glamorous as <<if hasVisited("MALAY-51000 MO Bar")>>that rooftop restaurant in Malaysia<<else>>being poolside at a five star hotel in Malaysia<</if>>.
Still, you [[keep trying|DEBRIEF-17000 Al-Ahmadi]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-blackShortWorkSkirt>>
<<wear-top-taupeWorkShirt>>
<<wear-hosiery-plainBlackHoldUpStockings>>
<<wear-shoes-blackPatentHeels>>
<</silently>>\
<<header>>\
<<page>>\
It doesn't make the headlines, but when you're working your desk one morning, you notice some internal reports describing a rapid series of strike missions carried out against targets from the Al-Ahmadi Network – DEVILFISH's organisation.
That piques your interest. You've been read out of NEPTUNE...but maybe you could persuade a colleague to share some gossip?
You set up a secure call to a number in <<if $kate.agency == "mi6">>Scotland<<else>>the UK<</if>>: "Clark? Hey, it's $kate.firstName $kate.surname. Yeah, long time! Listen, when are you next <<if $kate.agency == "cia">>in DC<<elseif $kate.agency == "mi6">>in London<<elseif $kate.agency == "asis">>in Australia<<elseif $kate.agency == "csis">>in Canada<<elseif $kate.agency == "nzsis">>in New Zealand<<else>>ERROR IN KATE.AGENCY VAR<</if>>, I wanna catch up? Oh, perfect, sounds great. Yeah, [[I know a place|DEBRIEF-18000 Desk jockey ending]]..."
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-blackMiniPencil>>
<<wear-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves>>
<<if $kate.agency == "mi6" or $kate.agency == "csis">>
<<wear-hosiery-plainBlackHoldUpStockings>>
<</if>>
<<wear-shoes-blackPatentHeels>>
<<characterCreator-setSecurityPass>>
<<set $avatar.foreground.pushUnique("10_hipsterGlasses")>>
<<set _sexualPartners to 0>>
<<if hasVisited("MALAY-89000 Max's balcony")>>
<<set _sexualPartners += 1>>
<</if>>
<<if hasVisited("GOF-900 But they never do")>>
<<set _sexualPartners += 2>>
<</if>>
<</silently>>\
<<page>>\
<<image "/ui/gameOver.jpg" 0 1000 238 0>>\
Your ending: //''Desk Jockey.''//
//Body count in the field: _sexualPartners <<if hasVisited("MALAY-89000 Max's balcony") and hasVisited("GOF-900 But they never do")>>(Max, Connor, Kriangsak)<<elseif hasVisited("MALAY-89000 Max's balcony")>>(Max)<<else>>(Connor, Kriangsak)<</if>>
<small>DEVILFISH</small> was never apprehended. The Al-Ahmadi Network remains uncompromised by western intelligence.
After a brief adventure in the field, $kate.firstName $kate.surname returned to her desk job at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>>.//
<hr />
In a future version, this ending will be more playable and interactive! But for now, you've reached the end of the story.
<b>What now?</b>
We're currently working on the next episode, //FNG.// It will continue $kate.firstName's main quest.
In the meantime, you can:
<ul>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.11</a> (which is focused on $kate.firstName's youth and university years, before she joined <<if $kate.agency == "cia">>the <<else>><<= $kate.agency.toUpperCase()>><</if>>).</li>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.6</a> (which looks different, but has more story content).</li>
<li>Find out more about the game at our <a href="https://www.femaleagentgame.com/">website</a>.</li>
<li>Give us feedback and ideas on <a href="https://discord.gg/eeXEnBS4S8">Discord</a>.</li>
</ul>\
<b>Development is 100% funded by fans</b>
Writing, illustrating and coding the game takes many hours! We wouldn't be able to do it without the support of our great fans on <a href="https://www.patreon.com/crushstation">Patreon</a> and <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>.
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>\
If you love the game and can afford $1 or more, please support us at <a href="https://www.patreon.com/crushstation">Patreon</a> or <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>. You'll be able to download a supporter version with some extra features (like the largest bra size, and a very cheaty back button). More importantly, you'll be directly funding development of the game.
<b>Thanks for playing this version of Female Agent!</b>
<<else>>\
Thank you humbly for making this game possible. I promise to always do my best. 😔
<b>And thanks for playing this version of Female Agent!</b>
<</if>>\
$kate.firstName $kate.surname will always remember you.
– 🦀 <i>Crushstation, October 2023</i>
<</page>>
/* DEBRIEF PATH 2 "FUCK YOU, NIN" - Debriefing for Kate if she refused to blow Bonaht */<<silently>>
<<set $kate.isUndercover to false>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-trousers-blackTailoredWorkTrousers>>
<<wear-top-greyBohoShirt>>
<<wear-shoes-blackSuedeAnklePlatformHeels>>
<</silently>>\
<a data-passage="DEBRIEF2-2000 Thanks Kate">
<<= '<img src='+ $imagePath.base + "locationPhotos/uk/faslaneTitleCard3.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''TASK FORCE NEPTUNE''",
$header.line2 to "FASLANE / APRIL 2018">>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"...and that's all I know," you say.
"Alright," Clark says. "Thanks, $kate.firstName."
"Yeah," <<Olivia>> nods. "We know you went through a lot to get this. <<if $kate.agency == "cia">><div class="tooltip">DO<span class="tooltiptext">CIA Directorate of Operations</span></div><<else>>CIA<</if>> [[appreciates it|DEBRIEF2-2010 CIA appreciates it]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You finish up at Faslane by being formally 'read out' of NEPTUNE and its compartments – meaning your access to the programme is revoked, now you're no longer on the mission.
Clark and <<Olivia>> will continue the hunt for DEVILFISH; it's [[back to normal|DEBRIEF2-3000 Title card]] for you.
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-trousers-greyTailoredWorkTrousers>>
<<wear-top-lightGreyScoopNeckSleevelessTankVest>>
<<wear-shoes-beigeMaryJanePumps>>
<<wear-jacket-classicCamelBlazer>>
<</silently>>\
<a data-passage="DEBRIEF2-5010 Sir Richard's office">
<<if $kate.agency == "cia">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/dc.jpg"+' >'>>
<<elseif $kate.agency == "mi6">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/london.jpg"+' >'>>
<<elseif $kate.agency == "asis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/canberra.jpg"+' >'>>
<<elseif $kate.agency == "csis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/ottawa.jpg"+' >'>>
<<elseif $kate.agency == "nzsis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/wellington.jpg"+' >'>>
<</if>>\
</a><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / APRIL 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / APRIL 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / APRIL 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / APRIL 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / APRIL 2018">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Ah, $kate.firstName." <<if $kate.agency == "cia">>Jack <<Colby>><<elseif $kate.agency == "mi6">>Sir James <<Greenwood>><<elseif $kate.agency == "asis">>Jim <<McKenzie>><<elseif $kate.agency == "csis">>Adam <<McKenzie>><<elseif $kate.agency == "nzsis">>Mark <<McKenzie>><<else>>ERROR IN KATE.AGENCY VAR<</if>> smiles paternally over his desk. "<<if $kate.agency == "cia">>CTC<<elseif $kate.agency == "mi6">>MID/OPS<<elseif $kate.agency == "asis">>the ops desk<<elseif $kate.agency == "csis">>ITC<<elseif $kate.agency == "nzsis">>the ops desk<<else>>ERROR IN KATE.AGENCY VAR<</if>><<if $kate.agency == "mi6">> wi<<else>>'<</if>>ll be pleased to have you back..."
And that's it: back to the desk job, and the mountain of reports. At least <<if $kate.surname != "Ryan">>Ryan<<else>>Bristow<</if>> finished //Spatial and Temporal Analysis of VBIED Incidents in Iraq, 2017-2018// while [[you were gone|DEBRIEF2-5020 Where were you?]].
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / 2018">>
<</if>>
<<removeJacket>>
<</silently>>\
<<header>>\
<<page>>\
You got called away for two months by a task force with a codename, and came back with a suntan. That gives you a certain cachet around the water coolers for a while.
But you can't talk about it. The tan fades, along with the extra attention, and life quickly goes back to normal. Reading reports, writing reports, meetings about [[reports|DEBRIEF2-5030 Reflection]].
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''APARTMENT''",
$header.line2 to "GEORGETOWN, VA / 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''APARTMENT''",
$header.line2 to "CLAPHAM / 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''APARTMENT''",
$header.line2 to "BELCO / 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''APARTMENT''",
$header.line2 to "ROCKCLIFFE / 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''APARTMENT''",
$header.line2 to "TE ARO / 2018">>
<</if>>
<<avatar-stripNaked>>
<<wear-trousers-darkBlueDenimSkinnyJeans>>
<<wear-top-whiteFlaredVestWithSpaghettiStraps>>
<</silently>>\
<<header>>\
<<page>>\
Back to long hours and late nights at the office, most days ending with wine on the couch.
In time your adventure in Bangkok slips into memory, something you [[don't often think about|DEBRIEF2-5040 Spicy fantasies]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<set $avatar.clothing.pushUnique("teenRom/50_katesBedsheets2")>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
...except <<if hasVisited("TNG-2521 Charlie Blue")>>those nights when you stay home, spray on a shitload of <span class="imageLink"><<link "Charlie Blue">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/charlieBlue.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and indulge<</if>> in some pretty [[spicy fantasies|DEBRIEF2-6000 Desk jockey ending]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-blackMiniPencil>>
<<wear-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves>>
<<if $kate.agency == "mi6" or $kate.agency == "csis">>
<<wear-hosiery-plainBlackHoldUpStockings>>
<</if>>
<<wear-shoes-blackPatentHeels>>
<<characterCreator-setSecurityPass>>
<<set $avatar.foreground.pushUnique("10_hipsterGlasses")>>
<<set _sexualPartners to []>>
<<if hasVisited("MALAY-89000 Max's balcony")>>
<<set _sexualPartners.push("Max")>>
<</if>>
<<set _sexualPartners.push("Connor", "Kriangsak")>>
<<if not hasVisited("GNO-155270 Zoe is the cavalry")>>
<<set _sexualPartners.push("Kob")>>
<</if>>
<<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>
<<set _sexualPartners.push("Cody")>>
<</if>>
<<if hasVisited("GNO-176000 Kate sleeps in Rick's room")>>
<<set _sexualPartners.push("Rick")>>
<</if>>
<<if hasVisited("TNG-3961.4 Back in 5")>>
<<set _sexualPartners.push("Bonaht")>>
<</if>>
<</silently>>\
<<page>>\
<<image "/ui/gameOver.jpg" 0 1000 238 0>>\
Your ending: //''Desk Jockey.''//
//Body count during operation: <<= _sexualPartners.length >> (_sexualPartners)
<small>DEVILFISH</small> was never apprehended. The Al-Ahmadi Network remains uncompromised by western intelligence.
After a brief adventure in the field, $kate.firstName $kate.surname returned to her desk job at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>>.//
<hr />
In a future version, this ending will be more playable and interactive! But for now, you've reached the end of the story.
<b>What now?</b>
We're currently working on the next episode. It will continue $kate.firstName's story.
In the meantime, you can:
<ul>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.11</a> (which is focused on $kate.firstName's youth and university years, before she joined <<if $kate.agency == "cia">>the <<else>><<= $kate.agency.toUpperCase()>><</if>>).</li>
<li>Play <a href="https://www.femaleagentgame.com/download/">version 1.6</a> (which uses the old engine).</li>
<li>Find out more about the game at our <a href="https://www.femaleagentgame.com/">website</a>.</li>
<li>Give us feedback and ideas on <a href="https://discord.gg/eeXEnBS4S8">Discord</a>.</li>
</ul>\
<b>Development is 100% funded by fans</b>
Writing, illustrating and coding the game takes many many hours! We wouldn't be able to do it without the support of our great fans on <a href="https://www.patreon.com/crushstation">Patreon</a> and <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>.
<<if setup.thisIsTheFreeEdition or $thisIsTheFreeEdition>>\
If you love the game and can afford $1 or more, please support us at <a href="https://www.patreon.com/crushstation">Patreon</a> or <a href="https://subscribestar.adult/femaleagent">Subscribestar</a>. You'll be able to download a supporter version with some extra features (like the largest bra size, and a very cheaty back button). More importantly, you'll be directly funding development of the game.
<b>Thanks for playing this episode of Female Agent!</b>
<<else>>\
Thank you humbly for making this game possible. I promise to always do my best. 😔
<b>And thanks for playing this episode of Female Agent!</b>
<</if>>\
$kate.firstName $kate.surname will always remember you.
– 🦀 <i>Crushstation, October 2023</i>
<small>//<<back "Back to game">>//</small>
<</page>><<silently>>
<</silently>>\
<a data-passage="MALAY-2000 Arrival in Malaysia">
<<= '<img src='+ $imagePath.base + "locationPhotos/malaysia/malaysiaTitleCard5.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''MANDARIN ORIENTAL HOTEL''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-trousers-darkBlueDenimBootcutJeans>>
<<wear-shirt-beigeSilkCollarlessBlouse>>
<<wear-boots-blackSuedeAnkleStillettosWithBuckles>>
<<wear-bigBlackSunglasses>>
<<wear-tanLeatherHandbag>>
<<set $avatar.background.pushUnique("agency/22_victorinoxLuggage-both")>>
<</silently>>\
<<header>>\
<<page>>\
Back at Faslane, with support from Langley, work continues on the mission prep. Forged documents and a bare-bones social media presence for your cover identity are being created; lines of secure comms are being set up; and your <<if $kate.agency == "cia" or $kate.agency == "csis">><div class="tooltip">SOF<span class="tooltiptext">Special Operations Forces: normally ex-Navy SEALs, Green Berets, British SAS, etc</span></div><<else>><div class="tooltip">SF<span class="tooltiptext">Special Forces: normally ex-SAS, US Navy SEALs and Green Berets, etc</span></div><</if>> backup is being briefed and organised.
<<image "/locationPhotos/malaysia/mandarinOrientalLobby.jpg" 75 1000 400 0>>\
You, however, have been flown first class to a five star hotel in Malaysia. You have three objectives while you're here:
<ul>
<li>Get a suntan (to support your cover story),</li>
<li>Acclimatise to a subtropical mission environment, and</li>
<li>Pick up a basic understanding of the Central Thai language.</li>
</ul>\
//[[Check in to the Mandarin Oriental.|MALAY-3000 Kate's room]]//
<</page>><<silently>>
<<set $header.line1 to "''ROOM 2512''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<remove-bigBlackSunglasses>>
<<set $avatar.foreground.pushUnique(("malaysia/60_sunglasses-bigShadesTuckedInShirt"))>>
<<set $avatar.background.delete("agency/22_victorinoxLuggage-both")>>
<</silently>>\
<<header>>\
<<page>>\
From the lobby right up to your room on the 25th floor, the style is stately elegance. The floors are polished marble, lighting is by massive chandeliers, and the decorations are an exotic mix of <<if $kate.agency != "mi6">>British <</if>>colonial Art Deco and local Asian ceramics.
<<image "/locationPhotos/malaysia/katesHotelRoom.jpg" 100 1000 450 0>>\
Your own room is light and spacious, with a big bed, a smart writing table with built-in chargers, and a comfy little lounge area offering a striking view of the Kuala Lumpur skyline.
You tip the bellboy, and [[get settled in|MALAY-4000 Kate's ensuite]].
<</page>><<silently>>
<<remove-tanLeatherHandbag>>
<<set $avatar.foreground.delete(("malaysia/60_sunglasses-bigShadesTuckedInShirt"))>>
<<if $kate.agency == "cia">>
<<set _anAgency to "a CIA">>
<<elseif $kate.agency == "mi6">>
<<set _anAgency to "an MI6">>
<<elseif $kate.agency == "asis">>
<<set _anAgency to "an ASIS">>
<<elseif $kate.agency == "csis">>
<<set _anAgency to "a CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _anAgency to "a NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
First things first: you turn off the aircon, and crack open every window. That's _anAgency life hack you remember from training; your first few days will suck, but you'll acclimatise much quicker.
Next you explore the rest of your suite. The stunning bathroom is floor-to-ceiling black and amber marble, with a tub and a walk-in rainshower. After your long flight, it looks very inviting.
<<image "/locationPhotos/malaysia/katesEnSuite.jpg" 0 1000 347 0>>\
//[[Kick off your boots.|MALAY-4100 Stripping off][$temp.playerDecision to "boots"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/katesEnSuite.jpg" 0 1000 347 0>>\
<<if $temp.playerDecision == "boots">>\
<<remove-boots-blackSuedeAnkleStillettosWithBuckles>>\
<<wear-hosiery-blackTrainerSocks>>\
You unzip and kick off your boots. Everything in the bathroom is now slightly taller.
<<elseif $temp.playerDecision == "shirt">>\
<<remove-shirt-beigeSilkCollarlessBlouse>>\
You unbutton and slip off your shirt.
<<elseif $temp.playerDecision == "jeans">>\
<<remove-trousers-darkBlueDenimBootcutJeans>>\
You unzip and wriggle out of your jeans.
<<elseif $temp.playerDecision == "socks">>\
<<remove-hosiery-blackTrainerSocks>>\
You peel off your socks and toss them aside. The marble floor is refreshingly cold underfoot.
<<elseif $temp.playerDecision == "bra">>\
<<remove-bra-whiteHalfCupCentralDart>>\
After a long flight, it feels great to get out of your bra.
<<elseif $temp.playerDecision == "knickers">>\
<<remove-knickers-whiteBrazilianCutWithLaceHem>>\
You slide off and step out of your <<knickers>>.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<if $kate.isWearing.includes("shirt")>>\
[[Take off your shirt.|MALAY-4100 Stripping off][$temp.playerDecision to "shirt"]]
<</if>>\
<<if $kate.isWearing.includes("trousers")>>\
[[Take off your jeans.|MALAY-4100 Stripping off][$temp.playerDecision to "jeans"]]
<</if>>\
<<if $kate.isWearing.includes("hosiery")>>\
[[Take off your socks.|MALAY-4100 Stripping off][$temp.playerDecision to "socks"]]
<</if>>\
<<if not $kate.isWearing.includes("shirt") and $kate.isWearing.includes("bra")>>\
[[Take off your bra.|MALAY-4100 Stripping off][$temp.playerDecision to "bra"]]
<</if>>\
<<if not $kate.isWearing.includes("trousers") and $kate.isWearing.includes("knickers")>>\
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
[[Take off your panties.|MALAY-4100 Stripping off][$temp.playerDecision to "knickers"]]
<<elseif $kate.agency == "mi6">>\
[[Take off your knickers.|MALAY-4100 Stripping off][$temp.playerDecision to "knickers"]]
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[Take off your undies.|MALAY-4100 Stripping off][$temp.playerDecision to "knickers"]]
<<else>>\
(ERROR IN KATE.AGENCY VAR)
<</if>>\
<</if>>\
<<if not $kate.isWearing.includesAny("shirt", "trousers", "hosiery", "boots", "bra", "knickers")>>\
//[[Take a shower.|MALAY-5000 Shower scene]]//
<</if>>\
<</page>><<silently>>
<<first>>
<<addNotification "Body customisation coming up" "This is a good place to save your game.">>
<</first>>
<<avatar-stripNaked>>
<<emote-eyes-closed>>
<<update-avatar-bikinilines>>
<<avatar-getWet>>
<</silently>>\
<<header>>\
<<page>>\
You pad barefoot into the shower and turn the knob to the left. Cool water rushes over you, washing away the sweat and grime of your travels.
The bathroom is stocked with Mandarin Oriental's own Natural Kan toiletries, including an amazing shower gel bursting with the vibrant scent of fresh basil.
After a very long flight, nothing feels quite so good as a [[very long shower|MALAY-6000 Body customisation]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<nobr>>
<table>
<tr>
<td>
<button onclick="openCity('Bikini')">Bikini Lines</button>
</td>
<td>
<button onclick="openCity('Piercings')">Piercings</button>
</td>
<td>
<button onclick="openCity('tattoos')">Tattoos</button>
</td>
</tr>
</table>
<div id="Bikini" class="city">
<div id="bikiniLines">
<<parlour-bikiniLines>>
</div>
</div>
<div id="Piercings" class="city" style="display:none">
<div id="wardrobeStore">
<<parlour-piercingParlour>>
</div>
</div>
<div id="tattoos" class="city" style="display:none">
<div id="wardrobeStore1">
<<parlour-tattooParlour>>
</div>
</div>
<<script>>
window.openCity = function(cityName) {
var i;
var x = document.getElementsByClassName("city");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(cityName).style.display = "block";
}
<</script>>
<</nobr>>
//[[Continue|MALAY-7000 A new woman]]//
<</page>><<silently>>
<<avatar-dryBody>>
<<wear-towel-whiteBathSheet>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You step out of the shower feeling like a new woman.
<<image "/locationPhotos/malaysia/klAtDusk.jpg" 50 1000 500 0>>\
Dusk is falling in Kuala Lumpur. The floor-to-ceiling windows in your room provide a spectacular view of the towering city skyline as the skyscrapers and highrises gradually light up [[all around you|MALAY-8000 Tourist attractions]].
<</page>><<silently>>
<<remove-towel-whiteBathSheet>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
This hotel's amazing. You plan to sunbathe and use the gym here every morning, then in the afternoons get out in the heat, walking and and seeing some attractions. That'll help you acclimatise, and also get you deeper into your backpacker cover identity.
Plus...there are just some cool things you want to check out while you have the chance. In the city itself you want to take in the view from the top of the <span class="imageLink"><<link "Menara KL Tower">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/menaraTower.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and go for a canopy walk through the <span class="imageLink"><<link "natural rainforest">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/klForestEcoPark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> at the heart of the city.
Dotted around the city are a host of unique attractions, including an old fort that's been taken over by <span class="imageLink"><<link "a tame monkey colony">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/monkeyHill.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and some mystical underground Hindu temples, the <span class="imageLink"><<link "Batu Caves">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/batuCaves2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<link "//This is //so// different from my desk job..." "MALAY-9000 Kate is enjoying her work">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
It's around 6 a.m. back in DC. On a normal Friday you'd soon be at your desk, working on some report or other. (On an //exciting// Friday, it'd be a report for a department head, instead of just a junior desk officer somewhere in State or <div class="tooltip">DOD<span class="tooltiptext">Department of Defense</span></div>.)
<<elseif $kate.agency == "mi6">>\
It's around midday back in London. On a normal Friday you'd be at your desk, working on some report or other. (On an //exciting// Friday, it'd be a report for a department head, instead of just a junior desk officer somewhere in the Foreign Office or <div class="tooltip">MOD<span class="tooltiptext">Ministry of Defence</span></div>.)
<<elseif $kate.agency == "asis">>\
It's around 9 p.m. back in Canberra. On a normal week you'd have been at your desk every day, working on some report or other. (On an //exciting// week, it'd be a report for a department head, instead of just a junior desk officer somewhere in <div class="tooltip">DFAT<span class="tooltiptext">Department of Foreign Affairs and Trade</span></div> or <div class="tooltip">DoD<span class="tooltiptext">Department of Defence</span></div>.)
<<elseif $kate.agency == "csis">>\
It's around 7 a.m. back in Ottawa. On a normal Friday you'd be at your desk, working on some report or other. (On an //exciting// Friday, it'd be a report for a department head, instead of just a junior desk officer somewhere in <div class="tooltip">GAC<span class="tooltiptext">Global Affairs Canada</span></div> or <div class="tooltip">DND<span class="tooltiptext">Department of National Defence</span></div>.)
<<elseif $kate.agency == "nzsis">>\
It's around midnight back in Wellington. On a normal week you'd have been at your desk every day, working on some report or other. (On an //exciting// week, it'd be a report for a department head, instead of just a junior desk officer somewhere in <div class="tooltip">MFAT<span class="tooltiptext">Ministry of Foreign Affairs and Trade</span></div> or <div class="tooltip">MOD<span class="tooltiptext">Ministry of Defence</span></div>.)
<</if>>\
And now here you are, in a luxury hotel in <<if $kate.agency == "cia" or $kate.agency == "csis">>Southeast<<else>>South East<</if>> Asia, working with <<if $kate.agency == "cia">>a secret task force<<else>>the CIA<</if>> on the trail of an [[international terrorist|MALAY-9100 Bond, Jane Bond]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
It's the first time your work's been anything like the movies. "Bond. //Ja<<if $kate.firstName == "Jayne">>y<</if>>ne// Bond," you tell the mirror<<if $kate.agency != "mi6">> in your best English accent<</if>>.
Your reflection stares back hard, then breaks into a [[big, excited smile|MALAY-10000 Dinner plans]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
/* Preload clothes for next scene */
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_blackLeggings.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_blackLeggings-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/20_top-vsHenleySleepTank-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/20_top-vsHenleySleepTank-rear.png">' >>
<</silently>>\
<<header>>\
<<page>>\
Despite the seriousness of your overall objectives, it's hard to look past the fact that these next few weeks or months //are going to be awesome.// You're determined not only to succeed, but also to soak up as much of this experience as you can.
After all, once your part in this is over, you'll most likely be going straight back to your desk.
But first...you're going to experience Malaysia while you're here. Starting with some food! You flip through the suite's welcome book, wondering which of the [[ten hotel restaurants|MALAY-11000 Title card]] to book a table in tonight...
<</page>><a data-passage="MALAY-12000 Next morning">
<<= '<img src='+ $imagePath.base + "locationPhotos/malaysia/malaysiaNextMorningTitleCard.jpg"+' >'>>
</a><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-leggings-blackCottonLeggings>>
<<wear-top-vsHenleySleepTank>>
<<wear-shoes-whiteAdidasTrainers>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-eyes-squint>>
<<set $header.line1 to "''MOSAIC RESTAURANT''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
/* Preload clothes for next scene */
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_bikiniBottoms-orangeTieSideBikiniBottoms.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_bikiniBottoms-orangeTieSideBikiniBottoms-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_bikiniTop-orangeHalterTieBikiniTop-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_bikiniTop-orangeHalterTieBikiniTop-rear.png">' >>
<</silently>>\
<<header>>\
<<page>>\
With the aircon off, sleep didn't come easy. Between the sweaty heat and the jet lag, you feel like you only just drifted off when the alarm clock woke you up.
You're tempted to order breakfast in bed...but decide you'd better get up. Dragging yourself down to one of the restaurants, you order extra coffee with your breakfast – <span class="imageLink"><<link "toast with coconut kaya jam, dipped in soft-boiled eggs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/kayaToast.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – and the mix of carbs, sugar, protein and caffeine perks you up enough to start the day.
Your cover requires a suntan. After breakfast you change into your bikini, squirt on some sunscreen, and head up to the [[rooftop pool|MALAY-13000 Hotel pool]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-hallesBikiniBottoms>>
<<wear-hallesBikiniTop>>
<<wear-bigBlackSunglasses>>
<<emote-calm>>
<<set $header.line1 to "''INFINITY POOL''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
/* Preload clothes for next scene */
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_bikiniTop-orangeHalterTieBikiniTop-undone-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/10_bikiniTop-orangeHalterTieBikiniTop-undone-rear.png">' >>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/infinityPool.jpg" 0 1000 417 0>>\
Perched on an outdoor sun trap four floors up, the infinity edge pool offers a stunning open air view of the city skyline and KLCC Park below. It's quiet, almost deserted: there are just three other guests up here when you arrive.
There's a couple in their 50s, in swimwear and wedding rings. The husband is reading a novel called //Flugangst 7A,// while his wife flips through //Frau Im Spiegel// magazine.
The other guest is a //strikingly// handsome white man in his late thirties, early forties maybe. It's hard to be sure because he's in great shape, lean, tall and muscular.
He has longish sideswept hair and a neat stubbly jawline, and is wearing pale blue trunks and mirrored Ray Bans. He glances up as you arrive at the pool, then goes back to checking his phone.
//[[Find a spot.|MALAY-14000 Sunlounger]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
You stretch out on a sunlounger and soak up the morning heat. Plugging in your headphones, you return to your Thai language lessons. Right now, you're just learning the basics: <div class="tooltip">//kho tot kha, khun chue arai?//<span class="tooltiptext">excuse me, what's your name?</span></div>
A waiter appears and offers refreshments, returning soon with a freshly made <span class="imageLink"><<link "mint lime iced tea">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/icedTea.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Every sip is ice cold and zestily delicious.
As work projects go...this one is off to a tolerable start.
//[[Tan your back.|MALAY-15000 Tanning your back]]//
<</page>><<silently>>
<<remove-hallesBikiniTop>>
<<wear-hallesBikiniTop-undone>>
<<showRear>>
<<first>>
<<addNotification "Turn around, bright eyes" "Use Turn Avatar in the top menu anytime you want.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You roll onto your front, untying your bikini top to let the sun shine on your neck. The heat soaks into your body, from your head to the soles of your feet.
<<if $kate.hairColour == "ginger">>\
It'd be easy to relax and drift off, but as a natural redhead your time in the sun has to be planned with military precision. After ten minutes, it's time to [[turn over|MALAY-16000 Kate turns over]].
<<else>>\
It's so relaxing that your tired mind is finding it hard to concentrate on the Thai lesson. You drift in and out of focus until it's time to [[turn over|MALAY-16000 Kate turns over]] again.
<</if>>\
<</page>><<silently>>
<<emote-eyes-calm>>
<<showFront>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
The pool area is still quiet and peaceful.
The German couple are reading. Handsome Guy has set down his phone, and is reclining on his sunlounger. His face is slightly angled towards you, but he could be asleep behind his mirrored sunglasses.
You have a decision to make. Are you going to [[sunbathe topless|MALAY-17000 Topless decision]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Going topless is mildly frowned on in Thailand, although lots of western girls still do it – tan lines won't really affect your cover either way. But you're about to go for a job in a place where the employee dress code is 'half naked'. Maybe you don't want pale boobs?
Sunbathing topless is technically illegal here in Malaysia, an Islamic country – although KL's hardly Tehran, and you doubt the rules apply at a private pool in a five star international hotel anyway. The very worst anyone is likely to do is politely ask madame to cover up.
There are three strangers here. And the waiter will probably come back at some point. //What will they think of me if I take off half of my bikini?// It could be embarrassing. Or maybe it will be good practice for Bangkok.
//[[Keep your top on.|MALAY-18000 Kate keeps her top on]]
[[Go topless.|MALAY-19000 Kate goes topless]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You decide to keep your boobs covered up for now. If the mission goes as planned, you'll be showing them off [[more than enough|MALAY-20000 Poolside]] in Bangkok.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are butterflies in your stomach as, casually as you can, you tug open the bow holding your bikini top together.
Handsome Man turns his head slightly towards you. Apparently he's not asleep, after all.
//[[Take it off.|MALAY-19100 Sunbathing topless]]//
<</page>><<silently>>
<<remove-hallesBikiniTop-undone>>
<</silently>>\
<<header>>\
<<page>>\
//Am I doing this? I'm doing this.//
Off comes your top, baring your <<if $kate.braSize == "large">>big round <</if>>breasts to heat, sunlight, and attention. You do your best to act casual, like sitting around in public wearing only one single scrap of bright orange spandex is totally normal for you. //Pretend you're French.//
The German woman ignores you. Her husband sneaks surreptitious glances at you over the top of his book whenever he thinks he can get away with it. Handsome Man's gaze is hidden behind his mirrored Ray Bans.
You don't want sunburned boobs, so you squirt some SPF <<if $kate.hairColour == "ginger">>50<<else>>30<</if>> onto your hands, and oil up your breasts carefully. <<if $kate.kinks.includes("exhibitionist")>>Your nipples feel stiff and sensitive in your palms.<</if>> The old German guy does his best [[not to stare|MALAY-20000 Poolside]] while you do this.
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
It feels like both men are pretending not to look at you. You pretend not to notice<<if $kate.kinks.includes("exhibitionist")>>, but it's honestly kind of a turn-on. You might need a little 'me time' when you get back to your room<</if>>.
The sun blazes down on your $kate.complexion skin. After <<if $kate.hairColour == "ginger">>ten<<else>>20<</if>> more minutes tanning your front, it's time to [[cool off in the pool|MALAY-21000 Cooling off]].
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<emote-eyes-calm>>
<<avatar-getWet>>
<<if $kate.isWearing.includes("bra")>>
<<remove-hallesBikiniTop-undone>>
<<wear-hallesBikiniTop>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/infinityPoolCloseUp.jpg" 100 1000 500 0>>\
You get up from your sunlounger, walk <<if not $kate.isWearing.includes("bra")>>topless <</if>>over to the infinity pool, and slip into the cool water. After baking in the sun, the pool feels incredibly refreshing.
You swim a few lengths for exercise, gliding gracefully through the clear water. Then Handsome Guy joins you in the pool, taking a standing dive in from the far end. It's impressive to watch: graceful, athletic.
He smiles and says, "Hey," as you swim past each other. His accent could be Scandinavian, could be Dutch. He has friendly grey eyes and a slightly wolfish grin.
//[[Ignore him.|MALAY-21000 First contact][$temp.playerDecision to "ignoreMax"]]
[[Smile back.|MALAY-21000 First contact][$temp.playerDecision to "smileBack"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "ignoreMax">>\
You ignore him and focus on your breaststroke. \
<<elseif $temp.playerDecision == "smileBack">>\
<<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
You smile back and keep swimming. \
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
A few circuits later, you clamber out of the pool and head back to [[your sunlounger|MALAY-22000 Meeting Max]].
<</page>><<silently>>
<<set $max to {},
$max.sexpertise to 1,
$max.stamina to 0,
$max.isWearing to []>>
<<wear-bigBlackSunglasses>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You slip your shades back on, and apply a fresh layer of sunscreen. You oil up your feet, your legs, your waist, your <<if $kate.isWearing.includes("bra")>>chest<<else>>breasts<</if>>, your arms...
You're contorting yourself to oil your back when a shadow looms over your sunlounger. You twist round to see Handsome Guy, dripping wet from the pool.
"Hey," he says again. He has a nice smile, and you realise it's his sharp canine teeth that brought a wolf to mind when you first saw it. "I'm Max, what's your name?"
<<link "$kate.firstName." "MALAY-23000 Kate introduces herself">><<set $max.knowsKatesRealName to true>><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<first>>
<<addNotification "Secondary Missions" "Interacting with some characters can start a Secondary Mission.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<<if $max.knowsKatesRealName>>\
"$kate.firstName," you reply<<if not $kate.isWearing.includes("bra")>>, resisting a strong urge to cover up your breasts<</if>>.
<<else>>\
"(TK Cover Firstname)," you reply. You're not undercover, yet, but you may as well get used to the new handle.
<</if>>\
"Hey <<if $max.knowsKatesRealName>>$kate.firstName<<else>>(TK COVERFIRSTNAME)<</if>>, you're missing a spot," he says. "Let me get it."
He reaches out for your bottle of sunscreen. He's wearing a diver's watch and a dulled silver wedding ring.
<<link "//[Starts a Secondary Mission]// Well...okay." "MALAY-25000 Take this bottle">><</link>>
[[Um, not sure...|MALAY-23100 Kate plays hard to get]]
<<link "//[Skips the Secondary Mission]// No thanks, please leave." "MALAY-24000 I'm fine">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..." you hesitate, not sure how to respond. "But I don't..."
He shoots you a serious look. "Don't worry," he says, "I'm a gentleman."
He really is very handsome. <<if $kate.kinks.includes("submissive")>>And bold. You kinda like that.<</if>>
<<link "//[Starts a Secondary Mission]// Well...okay." "MALAY-25000 Take this bottle">><</link>>
<<link "//[Skips the Secondary Mission]// No thanks, I'm fine." "MALAY-24000 I'm fine">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-23100 Kate plays hard to get")>>\
"I'm, uh...I'm fine, thanks. Really."
"You'll get sunburn," he warns.
"Thanks for being concerned. I've got this."
Handsome Guy smiles curtly, and heads back to his sunlounger. He leaves shortly afterwards, leaving you to sunbathe [[in peace|MALAY-412000 A week without Max]].
<<else>>\
"Uh...I'm fine, thanks," you reply. Your frosty tone and withering look let him know exactly how you feel about letting some stranger feel you up at a swimming pool.
"Okay," he shrugs, and slinks back to his sunlounger. He makes a show of checking his phone for the next few minutes, then packs up his stuff and leaves.
You get back to relaxing in the sun, without further interruption. Shutting down a cocky older guy like that felt pretty empowering, and it was probably good practice anyway: no doubt there'll be lots more sketchy married men [[where you're heading|MALAY-412000 A week without Max]].
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well...okay," you shrug. "This is weird, but...thanks."
You hand him your bottle of sunscreen, and twist around to give him access [[to your back|MALAY-26000 Max applies sunscreen]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"It's not weird. Having arms all the way round your back, that would be weird."
You hear him squirt sunscreen onto his hands, then a moment later feel them on your shoulders. His touch is strong and confident, his slick fingers moving casually.
"Woah," he mutters, thumbs pressing into your shoulder blades. "You're really tense."
[[Yeah, long flight.|MALAY-27000 Long flight]]
<</page>><<silently>>
<<if $kate.agency == "cia">>\
<<set _nationalityGuess to "the US">>
<<elseif $kate.agency == "mi6">>\
<<set _nationalityGuess to "England">>
<<elseif $kate.agency == "asis">>\
<<set _nationalityGuess to "Australia">>
<<elseif $kate.agency == "csis">>\
<<if $kate.ethnicity == "French Canadian">>
<<set _nationalityGuess to "France">>
<<else>>
<<set _nationalityGuess to "the US">>
<</if>>
<<elseif $kate.agency == "nzsis">>\
<<set _nationalityGuess to "Australia">>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
"Yeah...long flight," you tell him. His thumbs knead your shoulder muscles, digging little circles that are both painful and relaxing. You stretch out your neck and let out a gratified little murmur.
"From _nationalityGuess, right?" he asks.
<<if $kate.agency == "csis">>\
[[Canada, actually.|MALAY-28000 Kate guesses Max's nationality][$temp.playerDecision to "imCanadian"]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand, actually.|MALAY-28000 Kate guesses Max's nationality][$temp.playerDecision to "imAKiwi"]]
<<else>>\
[[Yeah. You Swedish?|MALAY-28000 Kate guesses Max's nationality][$temp.playerDecision to "swedish"]]
[[Yeah. You Danish?|MALAY-28000 Kate guesses Max's nationality][$temp.playerDecision to "danish"]]
[[Yeah. You Dutch?|MALAY-28000 Kate guesses Max's nationality][$temp.playerDecision to "dutch"]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "swedish">>\
"Yeah. You Swedish?" you guess.
"Jö!" He inhales the word, in the northern Swedish fashion. "You know your accents," he says approvingly.
"I guessed from the massage," you say, and he chuckles.
<<elseif $temp.playerDecision == "danish">>\
"Yeah. You Danish?" you guess.
"No. Next door. Sweden."
"Should've guessed from the massage," you say, and he chuckles.
<<elseif $temp.playerDecision == "dutch">>\
"Yeah. You Dutch?" you guess.
"No. Right continent, though. Sweden."
"I should've guessed from the massage," you say, and he chuckles.
<<elseif $temp.playerDecision == "imCanadian">>\
"Canada, actually," you reply.
"Ah, stupid of me. I should've sensed a fellow snow dweller. I'm Swedish."
"That explains the massage skills," you quip, and he chuckles.
<<elseif $temp.playerDecision == "imAKiwi">>\
"New Zealand, actually," you reply.
"Ah, of course. Sorry. I'm Swedish."
"That explains the massage skills," you quip, and he chuckles.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"So tense," he murmurs. Max squirts more sunscreen onto his palms then applies it to your body, his strong hands gliding confidently over the [[muscles in your back|MALAY-29000 Kate enjoys the massage]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His touch is casually possessive, like he's massaged your body a hundred times. <<if $kate.kinks.includes("submissive")>>Any qualms you felt about having a married man sensuously rub lotion over your back are drowned out by your excitement at having a man so confidently take care of you.<<else>>You're a bit uneasy, having a married man sensuously rubbing lotion over your back, but you admit it's quite exciting.<</if>>
It feels so intimate<<if $kate.kinks.includes("submissive")>>, so right<</if>>. Anyone watching would think you're a couple, even though you've only just met. <<if $kate.isWearing.includes("bra")>>When his hands slip and slide over your bikini strap, it's easy to imagine what it'd feel like if he undid it.<<else>>You find yourself imagining what it'd feel like if his hands roamed a little more.<</if>>
"So what brings you to Malaysia?" he asks, his tone casual as his hands move lower down your back.
[[Business.|MALAY-30000 Kate's here on business]]
[[Pleasure.|MALAY-30100 Kate's here on holiday]]
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are stiff. Your pussy is getting hot and wet.">>
<</first>>
<<if $kate.kinks.includesAll("exhibitionist", "masochist")>>
<<set _kateKink to either ("exhibitionist", "masochist")>>
<<elseif $kate.kinks.includes("exhibitionist")>>
<<set _kateKink to "exhibitionist">>
<<elseif $kate.kinks.includes("masochist")>>
<<set _kateKink to "masochist">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Work trip," you tell him truthfully, your voice casual.
"Oh cool, me too," he says. "You here with colleagues, or..."
This would be perfectly normal small talk if his slick hands weren't now roaming sensuously over your lower back, just above your butt.
His fingertips keep brushing the top of your heart-shaped ass, sliding over your bikini bottoms. <<if _kateKink == "exhibitionist">>It's so easy to imagine them tugging at the little bows that hold them together, loosening them, leaving you fully exposed.<<elseif _kateKink == "masochist">>It's so easy to imagine them slipping into the waistband and yanking them down.<<else>>It's so easy to imagine them tugging at the little bows that hold them together.<</if>>
[[I'm here alone.|MALAY-31000 I'm here alone]]
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your body's getting turned on by all the touching.">>
<</first>>
<<if $kate.kinks.includesAll("exhibitionist", "masochist")>>
<<set _kateKink to either ("exhibitionist", "masochist")>>
<<elseif $kate.kinks.includes("exhibitionist")>>
<<set _kateKink to "exhibitionist">>
<<elseif $kate.kinks.includes("masochist")>>
<<set _kateKink to "masochist">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"<<if $kate.agency == "cia" or $kate.agency == "csis">>Vacation<<else>>Holiday<</if>>," you tell him, your voice casual.
"Oh cool," he says. "It's a work trip for me. So you travelling with a friend, or..."
This would be perfectly normal small talk if his slick hands weren't roaming sensuously over your lower back, just above your butt.
His fingertips keep brushing the top of your heart-shaped ass, sliding over your bikini bottoms. <<if _kateKink == "exhibitionist">>It's so easy to imagine them slipping into the waistband and tugging them down, exposing you.<<elseif _kateKink == "masochist">>It's so easy to imagine them slipping into the waistband and yanking them down.<<else>>It's so easy to imagine them slipping into the waistband and tugging them down.<</if>>
[[I'm here alone.|MALAY-31000 I'm here alone]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm here alone," you tell him. You keep your tone matter-of-fact, even though your nipples are <<if $kate.isWearing.includes("bra")>>standing up like bullets under your thin bikini top<<else>>standing out like bullets<</if>>.
"Uh-huh, same for me. Well, I have to fly to Penang in a few hours," he says, "but I'm back Friday. We should go out, I know some cool places."
[[What's in Penang?|MALAY-32000 What's in Penang?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"What's in Penang?" you ask.
"Oh...Malaysian air force," Max replies. "That's my job, I'm helping their government buy fighter jets."
//Aaand that's that.//
Most girls would probably be impressed by a high-powered job like that; any inclinations //you// might have had towards a <<holiday>> romance vanish the moment you realise that this guy is a [[foreign defence contractor|MALAY-32100 Dealbreaker]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The hot stranger rubbing your back probably works for <div class="tooltip">SAAB<span class="tooltiptext">Sweden's largest defence company</span></div> – at quite a senior level, if the hotel he's staying in is anything to go by.
That means you'll have to write up this meeting in a contact report later – you could lose your job if you don't. And if you //were// going to have a Jane Bond-style fling while you're out here, it wouldn't be with someone you have to tell work about afterwards.
//Contact report. <<= $kate.agency.toUpperCase()>> officer $kate.firstName[0] reports having a fling with a defence contractor she met at a hotel...//Yeah. Not happening.
[[Sorry, can't make it.|MALAY-33000 No can do]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _yourWork to "the CIA">>
<<elseif $kate.agency == "mi6">>
<<set _yourWork to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _yourWork to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _yourWork to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _yourWork to "NZSIS">>
<</if>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry," you tell him, "I have plans on Friday."
He tries to set up a different date over the weekend, but you politely refuse. "Okay. Well...plans change. Take my number just in case."
You do take it – but mainly just for an excuse to ask his surname, to include in your contact report.
//Too bad,// you think as you watch this tall, handsome guy, who just walked right up and hit on you, pack up his stuff and leave. For a Jane Bond-style <<holiday>> fling, you could have done much worse.
But it's hardly the first time your work has interfered with having a love life.
//[[Go back to your sunbathing.|MALAY-34000 Contact report]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-shorts-darkGreyShortsWithBeltLoops>>
<<wear-top-blackRibbedButtonUpCroppedTShirt>>
<<set $header.line1 to "''ROOM 2512''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<if $kate.agency == "cia">>
<<set _yourAgency to "CIA",
_theGovernment to "the US Government",
_hq to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _yourAgency to "MI6",
_theGovernment to "Her Majesty's Government",
_hq to "Vauxhall Cross">>
<<elseif $kate.agency == "asis">>
<<set _yourAgency to "ASIS",
_theGovernment to "the Australian Government",
_hq to "the RG Casey Building">>
<<elseif $kate.agency == "csis">>
<<set _yourAgency to "CSIS",
_theGovernment to "the Canadian Government",
_hq to "NHQ">>
<<elseif $kate.agency == "nzsis">>
<<set _yourAgency to "SIS",
_theGovernment to "New Zealand's Government",
_hq to "Pipitea Plaza">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Later, back in your room, you write up a quick contact report on your encounter with Max Sandström. You leave out any mentions of bikinis and back massages – no need to set pulses racing //too// hard back at _hq – but permit yourself the humblebrag that, during a mission, '_yourAgency Officer <<= $kate.firstName[0]>>' was hit on by a senior European defence contractor.
You encrypt and upload the report to a secure server. A requirements officer somewhere will grade it, and forward it to any _yourAgency 'customers' who may find it useful.
Which is probably not a soul; you doubt many top minds in _theGovernment will be excited to learn that a Swedish defence executive is travelling to Penang for a week.
Still: you never know, and procedure is procedure. Report filed, you get back to your real mission: acclimatising in Malaysia. You very much doubt [[anything will come of your report|MALAY-35000 Title card]]...
<</page>><a data-passage="MALAY-36000 Called to the Embassy">
<<= '<img src='+ $imagePath.base + "locationPhotos/malaysia/malaysia2DaysLaterTitleCard2.jpg"+' >'>>
</a><<silently>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''US EMBASSY''",
_nationalEmbassy to "US Embassy">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''BRITISH HIGH COMMISSION''",
_nationalEmbassy to "British Embassy">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''AUSTRALIAN HIGH COMMISSION''",
_nationalEmbassy to "Australian Embassy">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''CANADIAN HIGH COMMISSION''",
_nationalEmbassy to "Canadian Embassy">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''NEW ZEALAND HIGH COMMISSION''",
_nationalEmbassy to "New Zealand Embassy">>
<</if>>
<<set $header.line2 to "KUALA LUMPUR / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-trousers-oliveGreenCapriCargoPants>>
<<wear-top-whiteFlaredVestWithSpaghettiStraps>>
<<wear-shoes-khakiFlatEspadrilles>>
<<wear-tanLeatherHandbag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
So it's a surprise when, a couple of days later, you're called into the _nationalEmbassy.
<<if $kate.agency == "cia">>\
<<image "/locationPhotos/malaysia/usEmbassy.jpg" 5 1000 300 0>>\
<<elseif $kate.agency == "mi6">>\
<<image "/locationPhotos/malaysia/britishEmbassy.jpg" 120 1000 550 0>>\
<<elseif $kate.agency == "asis">>\
<<image "/locationPhotos/malaysia/australianEmbassy.jpg" 120 1000 550 0>>\
<<elseif $kate.agency == "csis">>\
<<image "/locationPhotos/malaysia/canadianEmbassy.jpg" 250 1000 740 0>>\
<<elseif $kate.agency == "nzsis">>\
<<image "/locationPhotos/malaysia/nzEmbassy.jpg" 20 1000 400 0>>\
<</if>>\
You <<if $kate.agency == "cia">>line<<else>>queue<</if>> up with everybody else, and give a false name at the front desk.
The receptionist checks her notes, and has a security guard escort you to a [[side office|MALAY-36100 Meeting Wheeler]].
<</page>><<silently>>
<<remove-tanLeatherHandbag>>
<<remove-bigBlackSunglasses>>
<<set $avatar.foreground.pushUnique(("malaysia/60_sunglasses-bigShadesTuckedInShirt"))>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
Here you meet Gary <<Wheeler>>, the CIA Chief of Station here in Malaysia. Fiftysomething, slick and urbane, he fits easily into his diplomatic cover – the normal, acceptable, gentlemanly way of spying.
Like other senior officers you've met who worked in Moscow or Beijing, he's picked up the annoying habit of speaking very quietly, even when there's no possibility of eavesdroppers.
"Langley didn't tell me you were coming," he mumbles accusingly.
<<elseif $kate.agency == "mi6">>\
Here you meet Ges <<Wheeler>>, MI6's Head of Station here in Malaysia. Fiftysomething, well bred and slightly stuffy, he fits easily into his diplomatic cover – the normal, acceptable, gentlemanly way of spying.
Like other senior officers you've met who worked in Moscow or Beijing, he's picked up the annoying habit of speaking very quietly, even when there's no possibility of eavesdroppers.
"London didn't tell me you were coming here," he mumbles accusingly.
<<elseif $kate.agency == "asis">>\
Here you meet Ges <<Wheeler>>, ASIS's Head of Station here in Malaysia. Fiftysomething, well bred and slightly stuffy, he fits easily into his diplomatic cover – the normal, acceptable, gentlemanly way of spying.
Like other senior officers you've met who worked in China, he's picked up the annoying habit of speaking very quietly, even when there's no possibility of eavesdroppers.
"HQ didn't tell me you were coming here," he mumbles accusingly.
<<elseif $kate.agency == "csis">>\
Here you meet Gerard <<Wheeler>>, the CSIS Chief of Station here in Malaysia. Fiftysomething, slick and urbane, he fits easily into his diplomatic cover – the normal, acceptable, gentlemanly way of spying.
Like other senior officers you've met who worked in Moscow or Beijing, he's picked up the annoying habit of speaking very quietly, even when there's no possibility of eavesdroppers.
"HQ didn't tell me you were coming here," he mumbles accusingly.
<<elseif $kate.agency == "nzsis">>\
Here you meet Gus <<Wheeler>>, SIS's Head of Station here in Malaysia. Fiftysomething, well bred and slightly stuffy, he fits easily into his diplomatic cover – the normal, acceptable, gentlemanly way of spying.
Like other senior officers you've met who worked in China, he's picked up the annoying habit of speaking very quietly, even when there's no possibility of eavesdroppers.
"HQ didn't tell me you were coming here," he mumbles accusingly.
<</if>>\
[[They probably didn't know.|MALAY-37000 Down to business]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"They probably didn't know, sir," you shrug. "I'm seconded to a <div class="tooltip">CTF<span class="tooltiptext">Combined Task Force</span></div>."
"Hrmmm," he harrumphs, barely audible. "Anyway...this contact report was interesting."
[[Really?|MALAY-38000 How so]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Really?" you ask.
<<if $kate.agency == "cia">>\
"<div class="tooltip">RMAF<span class="tooltiptext">Royal Malaysian Air Force</span></div> is looking for a new fighter jet," <<Wheeler>> mutters. "Right now they're shopping for a replacement. <span class="imageLink"><<link "Super Hornet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/superHornet2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s a candidate, and so is SAAB's fighter, the <span class="imageLink"><<link "Gripen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/jas39.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
Ah: you can see where this is going. Sure, Sweden is an ally...but Boeing, an American firm, will make about $60M per unit if the Malaysians buy F/A-18F Super Hornets, not Gripens.
One of CIA's normal functions is industrial espionage. Anything the Agency does to help the Malaysians buy their weapons from Uncle Sam will be appreciated by <div class="tooltip">State<span class="tooltiptext">the State Department</span></div> and <div class="tooltip">DOD<span class="tooltiptext">the Department of Defense</span></div>.
[[Understood.|MALAY-39000 Got it][$temp.playerDecision to "gotIt"]]
[[What's this deal worth?|MALAY-39000 Got it][$temp.playerDecision to "howMuch"]]
<<elseif $kate.agency == "mi6">>\
"<div class="tooltip">RMAF<span class="tooltiptext">Royal Malaysian Air Force</span></div> is looking for a new fighter jet," <<Wheeler>> mutters. "<span class="imageLink"><<link "Eurofighter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/typhoon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s a candidate, and so is SAAB's fighter, the <span class="imageLink"><<link "Gripen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/jas39.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
Ah: you can see where this is going. Sure, Sweden is an ally...but a consortium led by British Aerospace will make about £75M per unit if the Malaysians buy Eurofighters, not Gripens.
One of MI6's normal functions is industrial espionage. Anything the service does to help the Malaysians buy British will be looked upon favourably by HM Treasury and the <div class="tooltip">MOD<span class="tooltiptext">Ministry of Defence</span></div> – especially if Brexit ends up going through somehow.
[[Understood.|MALAY-39000 Got it][$temp.playerDecision to "gotIt"]]
[[What's this deal worth?|MALAY-39000 Got it][$temp.playerDecision to "howMuch"]]
<<elseif $kate.agency == "asis">>\
"<div class="tooltip">RMAF<span class="tooltiptext">Royal Malaysian Air Force</span></div> is looking for a new fighter jet," <<Wheeler>> mutters. "US <span class="imageLink"><<link "Super Hornet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/superHornet2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s one candidate, <span class="imageLink"><<link "Eurofighter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/typhoon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s another, and so is SAAB's top fighter, the <span class="imageLink"><<link "Gripen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/jas39.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
[[What's that got to do with us?|MALAY-38100 So what?]]
<<elseif $kate.agency == "csis">>\
"<div class="tooltip">RMAF<span class="tooltiptext">Royal Malaysian Air Force</span></div> is looking for a new fighter jet," <<Wheeler>> mutters. "US <span class="imageLink"><<link "Super Hornet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/superHornet2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s one candidate, <span class="imageLink"><<link "Eurofighter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/typhoon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s another, and so is SAAB's top fighter, the <span class="imageLink"><<link "Gripen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/jas39.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
[[What's that got to do with us?|MALAY-38100 So what?]]
<<elseif $kate.agency == "nzsis">>\
"<div class="tooltip">RMAF<span class="tooltiptext">Royal Malaysian Air Force</span></div> is looking for a new fighter jet," <<Wheeler>> mutters. "US <span class="imageLink"><<link "Super Hornet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/superHornet2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s one candidate, <span class="imageLink"><<link "Eurofighter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/typhoon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s another, and so is SAAB's top fighter, the <span class="imageLink"><<link "Gripen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/jas39.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
[[What's that got to do with us?|MALAY-38100 So what?]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's that got to do with us?" you ask.
"Nothing directly," he replies, "but if we got eyes on the SAAB bid, we could share it with the <<if $kate.agency == "csis">>Americans<<else>>Yanks<</if>>. Or maybe the Brits," he adds as an afterthought.
Ah: of course. CIA (and, to a much lesser extent, MI6) are the senior partners in the Five Eyes alliance; delivering a juicy bit of industrial espionage would raise <<if $kate.agency == "nzsis">>SIS's<<else>><<= $kate.agency.toUpperCase()>>'s<</if>> stock for a while.
You can see why <<Wheeler>> jumped on this now. Few things seem to excite the big bosses more than getting attention from <div class="tooltip">Langley<span class="tooltiptext">CIA HQ</span></div>.
[[Understood.|MALAY-39000 Got it][$temp.playerDecision to "gotIt"]]
[[What's this deal worth?|MALAY-39000 Got it][$temp.playerDecision to "howMuch"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "gotIt">>\
"Understood," you say.
<<elseif $temp.playerDecision == "howMuch">>\
"How much is the deal worth overall?" you ask.
<<if $kate.agency == "cia">>\
"$2.4 billion, just for the airframes," he mumbles. "I'm told the Senator from Virginia's very keen on it going through."
That guy sits on the Foreign Relations Committee. Boosting CIA in his eyes will please people way above your – and <<Wheeler>>'s – pay grade.
"Understood."
<<elseif $kate.agency == "mi6">>\
"£1.7 billion, just for the airframes," mumbles <<Wheeler>>. "Whitehall's very keen on it going through."
"Understood."
<<else>>\
"Around $2.4 billion US for the planes," mumbles <<Wheeler>>.
You let out a low whistle. "Wow."
<</if>>\
<</if>>\
<<if $kate.agency == "cia">>\
"Getting eyes on the SAAB bid would help," he goes on. From his shirt pocket he produces a [[tiny electronic device|MALAY-40000 Hack drive]] you recognise from your training.
<<elseif $kate.agency == "mi6">>\
"Getting a peek at the SAAB bid might be helpful to our side," he goes on. From his shirt pocket he produces a [[tiny electronic device|MALAY-40000 Hack drive]] you recognise from your training.
<<elseif $kate.agency == "asis">>\
"Exactly. So..." From his shirt pocket he produces a [[tiny electronic device|MALAY-40000 Hack drive]] you recognise from your training.
<<elseif $kate.agency == "csis">>\
"Exactly. So..." From his shirt pocket he produces a [[tiny electronic device|MALAY-40000 Hack drive]] you recognise from your training.
<<elseif $kate.agency == "nzsis">>\
"Exactly. So..." From his shirt pocket he produces a [[tiny electronic device|MALAY-40000 Hack drive]] you recognise from your training.
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<<if $kate.agency == "cia">>
<<set _atRecruitHQ to "at the Farm">>
<<elseif $kate.agency == "mi6">>
<<set _atRecruitHQ to "at Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set _atRecruitHQ to "on Swan Island">>
<<elseif $kate.agency == "csis">>
<<set _atRecruitHQ to "at Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set _atRecruitHQ to "at Papakura Camp">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Skin-coloured and about the size of a fingernail, it's a hack drive for an iPhone. You plug it into the charging port for 25 seconds or so, and it installs a covert piece of spyware – no passcode required. You used them extensively during your training _atRecruitHQ, but haven't touched one since then.
"What do you think, $kate.surname," he asks quietly, "could you get close enough to deploy this?"
Huh. You wait forever for a field operation, then two come along at once. This one's just a quickie, but pulling it off would demonstrate nerve and sleight of hand. Success would look good on your record<<if $kate.agency == "cia">>...and could potentially help swell the nation's coffers by $2.4 billion<<elseif $kate.agency == "mi6">>...and could potentially swell the nation's coffers by £1.7 billion<<elseif $kate.agency == "asis">>...and could potentially win ASIS a 2.4 billion dollar favour from CIA<<elseif $kate.agency == "csis">>...and could potentially win CSIS a 2.4 billion dollar favour from CIA<<elseif $kate.agency == "nzsis">>...and could potentially win SIS a 2.4 billion dollar favour from CIA<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
[[I'll try.|MALAY-42000 Kate takes the hack drive]]
<<link "//[Cancels the Secondary Mission]// Sorry, sir, but no." "MALAY-41000 Mission abort">><</link>>
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You think it over, but can't see it ending well. "Sorry, sir," you shake your head. "I could probably arrange to meet him again, but I don't think I could get access to the phone."
<<Wheeler>>'s disappointed, but has to defer to your judgement as the officer who's actually met Max Sandström. A short while later you're quietly dismissed, and can get back to focusing on your [[real mission|MALAY-412000 A week without Max]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''KUALA LUMPUR''",
$header.line2 to "MALAYSIA / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-shoes-greyStrappyWedgeSandals>>
<<wear-dress-cobaltBlueButtonedMaxi>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
You cram in as much as you can for the rest of your week. You take in the history at <span class="imageLink"><<link "Sri Mahamariamman Temple">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/sriMahamariamman.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, sample some local flavour at the <span class="imageLink"><<link "Alor Street food stalls">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/streetFood.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and make some feathery friends at <span class="imageLink"><<link "Kuala Lumpur Bird Park">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/peacock.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
Your remaining time at the Mandarin Oriental is relaxing, but uneventful. By the [[last night of your stay|MALAY-440000 Get some sleep]], you're fully acclimatised and you've built up a gorgeous tan.
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I'll try," you say, reaching out for the gadget. <<Wheeler>> drops it [[into your palm|MALAY-43000 Kate baits the trap]], an inscrutable look on his face.
"Good," he says. "Do //not// get caught."
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''MANDARIN ORIENTAL HOTEL''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<<remove-shoes-khakiFlatEspadrilles>>
<<set $avatar.foreground.delete(("malaysia/60_sunglasses-bigShadesTuckedInShirt"))>>
<</silently>>\
<<header>>\
<<page>>\
Back in your hotel room, you send Max a text message.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderIOS"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">13:16</div><div class="h2"><b>Max Sandstrom</b></div></div>
<div class="date">\
Text Message
Today 13:11
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
Hey Max, this is <<if $max.knowsKatesRealName>>$kate.firstName<<else>>$kate.cover.firstname<</if>>. My Friday night just cleared up
</div>\
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
Greta. Dinner? I know a good place
</div>\
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
*great
</div>\
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
Sounds greta ;)
</div>\
</div>\
<div class="npc messages">\
<div class="messageIOS">\
:-P
</div>\
<div class="messageIOS last">\
Meet in the MO bar 6.30 pm
</div>\
<div class="messageIOS last">\
Bring hunger
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
Well, that's that; the bait's set. You feel a little thrill of excitement now the date's booked, but in the meantime you still have a job to do: [[suntan, acclimatisation, language lessons|MALAY-44000 Title card]].
<</page>><<page>>\
//[[FIVE RELAXING DAYS LATER...|MALAY-45000 Date night shopping spree]]//
<</page>><<silently>>
<<set $header.line1 to "''PAVILION MALL''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-shoes-greyStrappyWedgeSandals>>
<<wear-dress-cobaltBlueButtonedMaxi>>
<<wear-bigBlackSunglasses>>
<<wear-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
Your week goes by fast. By Friday you feel fully acclimatised, and you've also picked up basic conversational Thai //and// a gorgeous suntan.
<<image "/locationPhotos/malaysia/pavilionMall.jpg" 80 1000 490 0>>\
Tonight's the night of your date with Max, so you head to the Pavilion Mall to shop for some [[date clothes|MALAY-46000 Pavilion Mall]].
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Pavilion is KL's haute couture shopping Mecca. The 1.37 million-sqft white marble complex is like an ultramodern LED-lit Grecian temple...except the worship is reserved for 500 international fashion and make-up brands, not Zeus.
<<image "/locationPhotos/malaysia/louboutin.jpg" 60 1000 500 0>>\
Fashion shopping on expenses is a new, pleasant experience. You spend a very enjoyable few hours trying on expensive dresses and shoes in six shopping "zones", before heading [[back to the hotel|MALAY-47000 Back to the hotel]].
<</page>><<silently>>
<<set $header.line1 to "''MANDARIN ORIENTAL HOTEL''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-apMazzyPinkAndBlackSwimsuit>>
<<wear-bigBlackSunglasses>>
<<avatar-getWet>>
<</silently>>\
<<header>>\
<<page>>\
You drop your bags off in your room, then go for a long relaxing swim in the infinity pool.
<<image "/locationPhotos/malaysia/moPoolSunset.jpg" 20 1000 400 0>>\
The sky changes from blue to gold as late afternoon gives way to early evening. You head back up to your room, to [[get ready for your date with Max|MALAY-48000 Max date dressup]].
<</page>><<silently>>
<<set $header.line1 to "''ROOM 2512''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
You shower, shave and groom your body, and spritz on some perfume.
It's time to get glammed up for your date.
//[[Do your makeup.|MALAY-48010 Makeup]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You grab your makeup kit.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "MALAY-48020 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "MALAY-48020 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "MALAY-48040 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "MALAY-48030 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "MALAY-48050 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "MALAY-48090 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "MALAY-48030 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "MALAY-48020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "MALAY-48020 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "MALAY-48040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "MALAY-48050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeliner")>>\
If you're happy with your look, you can <<link "get dressed for the date" "MALAY-48100 Wardrobe">>
<<remove-bathRobe-whiteBathRobe>>
<</link>>.
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Underwear</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "MALAY-48120 Underwear">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Dresses</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="dress-container">\
<<include "MALAY-48130 Dresses">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "MALAY-48110 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "MALAY-48140 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackPatentHeels/20_shoes-blackPatentHeels")>>\
<<link "Black patent heels">>\
<<wear-shoes-blackPatentHeels>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black patent heels">>\
<<remove-shoes-blackPatentHeels>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_shoes-blackAndGreyTBarStrapStilettos")>>\
<<link "D&G black & grey t-strap stilettos">>\
<<wear-shoes-blackAndGreyTBarStrapStilettos>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// D&G black & grey t-strap stilettos">>\
<<remove-shoes-blackAndGreyTBarStrapStilettos>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_shoes-blackStrappyGladiatorStilettoSandals")>>\
<<link "Rene Caovilla black gladiator sandals">>\
<<avatar-clothing-removeConflict "shoes">>\
<<wear-shoes-blackStrappyGladiatorStilettoSandals>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rene Caovilla black gladiator sandals">>\
<<remove-shoes-blackStrappyGladiatorStilettoSandals>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_shoes-goldStrappyGladiatorStilettoSandals")>>\
<<link "Rene Caovilla gold gladiator sandals">>\
<<avatar-clothing-removeConflict "shoes">>\
<<wear-shoes-goldStrappyGladiatorStilettoSandals>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rene Caovilla gold gladiator sandals">>\
<<remove-shoes-goldStrappyGladiatorStilettoSandals>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_shoes-silverStrappyStilettoSandals")>>\
<<link "Rene Caovilla silver strappy sandals">>\
<<avatar-clothing-removeConflict "shoes">>\
<<wear-shoes-silverStrappyStilettoSandals>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rene Caovilla silver strappy sandals">>\
<<remove-shoes-silverStrappyStilettoSandals>>\
<<replace "#shoes-container">>\
<<include "MALAY-48110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.underwear.includes("clothing/underwear/whiteBrazilianCutPantiesWithLaceHem/30_pants-whiteBrazilianCutWithLaceHem")>>\
<<link "White lacy hem Brazilian <<knickers>>">>\
<<wear-knickers-whiteBrazilianCutWithLaceHem>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White lacy hem Brazilian <<knickers>>">>\
<<remove-knickers-whiteBrazilianCutWithLaceHem>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("malaysia/30_pants-blackLaceStringWithBlackCentralBow")>>\
<<link "Black lacy thong">>\
<<wear-knickers-blackLaceStringWithBlackCentralBow>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black lacy thong">>\
<<remove-knickers-blackLaceStringWithBlackCentralBow>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedMidiKnickers/30_pants-cherryRedMidiWithSplitSide")>>\
<<link "Cherry red midi <<knickers>>">>\
<<wear-knickers-cherryRedMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red midi <<knickers>>">>\
<<remove-knickers-cherryRedMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("malaysia/30_pants-nudeStringWithTwoBowsOnStraps")>>\
<<link "Nude thong">>\
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude thong">>\
<<remove-knickers-nudeStringWithTwoBowsOnStraps>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("malaysia/30_pants-palePinkNetAndRedVelvetMultiStrapThong")>>\
<<link "Red velvet strappy thong">>\
<<wear-knickers-palePinkNetAndRedVelvetMultiStrapThong>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red velvet strappy thong">>\
<<remove-knickers-palePinkNetAndRedVelvetMultiStrapThong>>\
<<replace "#underwear-container">>\
<<include "MALAY-48120 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("malaysia/30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear")>>\
<<link "Red off-the-shoulder fishtail gown">>\
<<avatar-clothing-removeConflict "dress">>\
<<wear-dress-cherryRedOffTheShoulderFishtailGown>>\
<<replace "#dress-container">>\
<<include "MALAY-48130 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red off-the-shoulder fishtail gown">>\
<<remove-dress-cherryRedOffTheShoulderFishtailGown>>\
<<replace "#dress-container">>\
<<include "MALAY-48130 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-rear")>>\
<<link "Black one shoulder cut out gown">>\
<<avatar-clothing-removeConflict "dress">>\
<<wear-dress-blackOneShoulderCutOutThighSlitGown>>\
<<replace "#dress-container">>\
<<include "MALAY-48130 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black one shoulder cut out gown">>\
<<remove-dress-blackOneShoulderCutOutThighSlitGown>>\
<<replace "#dress-container">>\
<<include "MALAY-48130 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>\
<<link "Wine multi strap gown">>\
<<avatar-clothing-removeConflict "dress">>\
<<wear-dress-wineMultiStrapGown>>\
<<replace "#dress-container">>\
<<include "MALAY-48130 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Wine multi strap gown">>\
<<remove-dress-wineMultiStrapGown>>\
<<replace "#dress-container">>\
<<include "MALAY-48130 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "MALAY-48140 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("dress", "shoes")>>\
If you're happy with your look, you can [[go meet Max in the bar|MALAY-49000 Hack drive storage]].
<</if>>\<<silently>>
<<set $temp.hackDriveLocation to "handbag">>
<</silently>>\
<<header>>\
<<page>>\
You check your reflection in the mirror one last time. You have butterflies in your stomach, but whether it's pre-date or pre-mission nerves, you're not sure.
You pop the hack drive into your <<handbag>> before you [[leave your room|MALAY-50000 Walk to meet Max]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/moCorridor.jpg" 200 1000 550 0>>\
You walk through the corridors of the Mandarin Oriental, your expensive dress <<if $avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>swishing sensuously around your hips<<else>>clinging sensuously to your body<</if>> as you move. <<if $kate.braSize == "large">>Without a bra, it feels like your breasts are jiggling with every step.<</if>>
<<link "//Take the <<lift>> down to the MO Bar.//" "MALAY-51000 MO Bar">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''MO BAR''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<set $kate.arousal to 0>>
<</silently>>\
<<header>>\
<<page>>\
Eighteen floors down from your room, you push open a faceted glass door and step into the MO Bar. The evening sun streams in through the floor-to-ceiling windows, lighting the lavish interior in golden rays.
An elderly Malaysian pianist in a white tux is playing a jazzy version of //Fly Me to the Moon.// The clicking of your heels on the marble floor adds a percussive accompaniment to your entrance.
<<image "/locationPhotos/malaysia/moBar.jpg" 200 1000 550 0>>\
Max is over at the bar, nose buried in his phone, so you cross the room to join him. A pair of overweight, middle-aged western businessmen openly check you out as you pass their table.
//[[Ignore them.|MALAY-52000 Meeting Max at the bar][$temp.playerDecision to "ignore"]]
[[Tease them.|MALAY-52000 Meeting Max at the bar][$temp.playerDecision to "tease"]]//
<</page>><<silently>>
<<if $kate.eyeColour == "blue">>
<<set _eyeDescription to "ocean blue">>
<<elseif $kate.eyeColour == "chestnut">>
<<set _eyeDescription to "chocolate brown">>
<<elseif $kate.eyeColour == "emerald">>
<<set _eyeDescription to "jade green">>
<<elseif $kate.eyeColour == "grey">>
<<set _eyeDescription to "cloud grey">>
<<elseif $kate.eyeColour == "hazelnut">>
<<set _eyeDescription to "honey brown">>
<<elseif $kate.eyeColour == "sapphire">>
<<set _eyeDescription to "pale blue">>
<<else>>
<<set _eyeDescription to "(ERROR IN EYEDESCRIPTION TEMP VAR)">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "ignore">>\
You breeze right past them, ignoring their hopeful attempt at eye contact, and head for the bar to join Max. \
<<elseif $temp.playerDecision == "tease">>\
<<silently>>
<<emote-mouth-smile>>
<</silently>>\
You meet the eyes of the older and fatter of the two men, treating him to a smile and a smouldering, _eyeDescription gaze as you pass. He stares up at you, transfixed, caught like a fish on a hook.
You breeze right by and head for the bar to join Max. \
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>> The bartender looks up as you approach, but Max is busy texting someone.
[[Sorry I'm late!|MALAY-53000 Kate announces herself][$temp.playerDecision to "sorryImLate"]]
[[If you're on Tinder I'll kill you.|MALAY-53000 Kate announces herself][$temp.playerDecision to "ifThatsTinder"]]
<</page>><<silently>>
<<set $max.innuendos to 0>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "sorryImLate">>\
<<silently>>
<<set $max.innuendos += 1>>\
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
"Sorry I'm late!" you say as you arrive at the bar.
"No problem, you can make it up to m-//whoa,"// he exclaims when he finally looks up from his phone. \
<<elseif $temp.playerDecision == "ifThatsTinder">>\
<<silently>>
<<emote-nose-wrinkle>>
<<emote-eyes-squint>>
<<emote-mouth-wideSmile>>
<</silently>>\
"If you're on Tinder I'll kill you," you threaten as you sidle up beside him at the bar.
"Hah! Sorry, just finishing som–//whoa,"// he exclaims when he finally looks up from his phone. \
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>> Setting it down on the bar, text message forgotten, his grey eyes sweep you up and down with [[obvious approval|MALAY-54000 Max looks good]]. "You look beautiful!"
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
He looks pretty good, too. His clothes are simple but well made: a pressed white shirt that flatters his lean strong upper body, without clinging to it; grey <<trousers>>; tan deck shoes; his diver's watch.
There are a few other couples dotted around the bar, western and Asian, but Max is easily the hottest guy here. He stands to greet you, presenting everyone in the bar with an eyeful of tall, ruggedly handsome Swedishness.
Leaning in, he plants a stubbly kiss on your cheek<<if $kate.braSize == "large">>, his pecs squashing briefly against your chest<</if>>. His hand lingers on your hip, a little longer and a little lower than just a friend would touch. Like a sensual little promise of where the night could lead, if you let it.
You catch a brief scent of some intriguing cologne, and then you're both [[settling into your barstools|MALAY-54100 A stiff alcoholic drink]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/moBarManager.jpg" 230 1000 550 0>>\
The wall behind the bar is a mosaic of tiles and little mirrors, glimmering in the golden sunset. You order a cocktail called Bitter & Smoke, mostly because it's served from a cool looking glass and metal flask.
While Max finishes texting his work, you take a long calming sip of your first alcoholic drink of the day. It's [[strong and cold and very good|MALAY-55000 Cocktails]], honey and ginseng laced with a bold tequila kick.
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _yourCountry to "the US">>
<<elseif $kate.agency == "mi6">>
<<set _yourCountry to "England">>
<<elseif $kate.agency == "asis">>
<<set _yourCountry to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _yourCountry to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCountry to "New Zealand">>
<<else>>
<<set _yourCountry to "ERROR IN YOURCOUNTRY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/bitterAndSmoke3.jpg" 50 1000 550 0>>\
You sip your Bitter & Smoke and chat with Max, enjoying the vibe of the cool, luxurious bar and the jazzy piano. He spins a funny story about his business trip to Penang, and asks you about your work<<if hasVisited("MALAY-30100 Kate's here on holiday")>> back in _yourCountry<</if>>. "What is it you do?"
//[[Lie.|MALAY-55100 Liar liar]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You're used to lying about your job to family and friends, so it's simple to deceive him into thinking you have a career in supply chain logistics.
The 'getting to know you' thing can be the most uncomfortable part of a date – especially because you always have to lie – but Max's good looks and laid back charm make it painless this time.
The conversation's fun and your stiff cocktail goes down fast and easy. Max signs for the bar bill, then you head down to street level to [[grab a taxi|MALAY-56000 Taxi ride]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''KUALA LUMPUR''",
$header.line2 to "MALAYSIA / APRIL 2018">>
<<if $kate.agency == "cia">>
<<set _anMI6 to "a CIA">>
<<elseif $kate.agency == "mi6">>
<<set _anMI6 to "an MI6">>
<<elseif $kate.agency == "asis">>
<<set _anMI6 to "an ASIS">>
<<elseif $kate.agency == "csis">>
<<set _anMI6 to "a CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _anMI6 to "an NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/klStreets.jpg" 50 1000 550 0>>\
KL is notorious for traffic. Your driver fights through brutally, bullying his way into tiny gaps, never yielding a single inch to help out a fellow road user.
While this drama plays out, you and Max make small talk on the backseat – still in the //getting to know you, where have you been// kind of stage. He avoids talking about the fact that he has a wife back in Sweden; you avoid talking about the fact that you have a high-tech hacking device in your <<handbag>>.
He mostly keeps eye contact, but occasionally gets distracted by your <<if $kate.braSize == "large">>chest<<else>>bare leg on the backseat<</if>>.
Traffic clears up once you make it onto the E23 expressway. The blazing sunset gives way to dusk during your [[short cruise downtown|MALAY-57000 1 Utama]].
<</page>><<silently>>
<<set $header.line1 to "''1 UTAMA BUILDING''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The taxi drops you off outside a tall office tower in the Petaling Jaya district. Max guides you inside, his hand on the small of your back. His touch is light, but it feels possessive and <<if $kate.kinks.includes("submissive")>>more than <</if>>a little sexy.
Inside is a standard corporate office lobby, complete with a distracted security guard on front desk.
You ride <<if $kate.agency == "cia" or $kate.agency == "csis">>an elevator<<else>>a lift<</if>> all the way up to the 26th floor, a button labelled //STRATOSPHERE.// Here a short, industrial staircase leads up to [[an amazing sight|MALAY-61000 The Roof]].
<</page>><<silently>>
<<emote-brows-raised>>
<<set $header.line1 to "''STRATOSPHERE''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/stratosphere.jpg" 110 1000 550 0>>\
The staircase leads out onto the roof. The grass helipad has been converted into a stunning open air restaurant, with a view out over the whole city.
The transformation from stark modern office to this feels almost magical. As you emerge you're met by a cool breeze, soft music, sounds of conversation and clinking cutlery, and sizzling smells of something charred and delicious.
Max is greeted by a portly maître d', beaming with delight. "Meester Max!" he enthuses, shaking your date's hand. "[[Welcome!|MALAY-62000 Seated]]"
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You're shown to your table by a lithe, petite waitress wearing very high heels and a very short black skirt. Miniskirts are noticeably on trend here in KL, but hers is so abbreviated it threatens a wardrobe malfunction with every step.
Even with that distraction, you feel many eyes on you as you're led to the table. You and Max make quite a striking couple; most diners glance up as the waitress parades you past them.
"Something to dreenk?" she asks once you're seated.
"Kir royale?" suggests Max. Soon you're sipping a <span class="imageLink"><<link "fruity champagne cocktail">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/kirRoyale.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and [[perusing the menu|MALAY-63000 The meal]] in the warm night air.
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/snackTrio.jpg" 300 1000 650 0>>\
You settle on the tasting menu for two. It's modern Malaysian, many small courses with a mix of Chinese, Indian and <<if $kate.agency == "cia" or $kate.agency == "csis">>Southeast<<else>>South East<</if>> Asian flavours playing vividly on your palate. The long procession of crunchy, spicy, tasty morsels is delicious.
You [[eat and talk|MALAY-63100 Eat and talk]], washing down the food with a really good bottle of chilled pink Chateau d'Esclans.
<</page>><<silently>>
<<emote-mouth-beam>>
<<emote-nose-wrinkle>>
<<if $kate.agency == "cia">>
<<set _yourAgency to "the CIA">>
<<elseif $kate.agency == "mi6">>
<<set _yourAgency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _yourAgency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _yourAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _yourAgency to "NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
For a woman in her twenties, you spend a lot of time talking with men in their forties - they're basically the default colleague in _yourAgency. But normally it's about deadly serious topics.
It feels like forever since you had a normal, light-hearted conversation with a guy. Even though you're working, you can feel your mood lifting and your voice becoming bubbly and expressive.
"Wow, you have to try this," Max says. With his chopsticks, he picks up a plump chunk of char-blackened fish from his plate.
[[Is that the eel?|MALAY-63200 Food play]]
<</page>><<silently>>
<<emote-brows-naughty>>
<<emote-nose-scrunch>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Is that the eel?" you ask.
"Mmhm," he nods. He holds his chopsticks up to your mouth – but pulls his hand back when you lean in to take a bite. Your look of mock reproach makes him laugh.
When he actually lets you //eat// the eel, it's amazing. Slightly curried and seared in some kind of intensely savoury black sauce, it's one of the tastiest things that's ever passed your lips.
[[We should get some more of those.|MALAY-64000 More eel]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<<if $kate.agency == "cia">>
<<set _theGovernment to "the US Government">>
<<elseif $kate.agency == "mi6">>
<<set _theGovernment to "Her Majesty's Government">>
<<elseif $kate.agency == "asis">>
<<set _theGovernment to "the Australian Government">>
<<elseif $kate.agency == "csis">>
<<set _theGovernment to "the Government of Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _theGovernment to "the New Zealand Government">>
<<else>>
<<set _theGovernment to "ERROR IN THEGOVERNMENT TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"We should get some more of those."
"Definitivt."
You eat and talk and drink wine, enjoying the seductive setting and his company. He's tall, very handsome, funny and easy to get on with; if this were a date and he were single, it'd be going //really// well.
But he isn't single...and you're here to carry out a task for _theGovernment. Max has set his phone down on the table. Tantalisingly, it's right there, within easy reach: but you haven't had anything like the thirty-second window you need to use the gadget.
//[[Create a distraction.|MALAY-65000 Thinking about a distraction]]
[[Wait for an opportunity.|MALAY-71000 Enjoying Max's company]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The rooftop restaurant is bustling now, with the waiters hurrying around carrying trays of food and drink.
Tijah, your waitress, is tiny and she's moving fast in high heels. You think you could trip her over when she's passing your table.
She'd go down on the cobbled path beside your table. (Maybe hard enough to hurt herself, if her instinct were to protect a tray piled with expensive food and alcohol, instead of dropping it and breaking her fall.)
That wouldn't be the nicest thing you've ever done to a civilian, but it's //possible,// and it'd cause a few seconds of chaos. Would it distract Max long enough for you to pull off the phone hack?
//[[Try to trip Tijah.|MALAY-66000 Tripping Tijah]]
[[Wait for a better opportunity.|MALAY-71000 Enjoying Max's company]]//
<</page>><<silently>>
<<set _npcD10 to random(1,10)>>
<<set _npcD10 -= 5>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 2>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
<<header>>\
<<page>>\
"...just melts in your mouth," Max is saying.
"Uh huh," you agree, shuffling subtly across to the edge of your seat. Under the table you hike up your dress a little, baring as much of your left leg as possible.
"We have this fish in Sweden called Surströmming," he chuckles. "Comes in a tin. And you're only allowed to open it outside, because..."
You've had one eye on Tijah for the last couple minutes. At the exact moment she clip clops past you with a big tray of food and drink, you shift your position – and stretch out a <<if $kate.isWearing.includes("stockings")>>slim, nylon-clad<<else>>glossy, high-heeled leg<</if>>, right into her path.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make an ''Attack roll.''
<<link "Roll">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Attack roll.'' You rolled: _kateD10+2 = <<= _kateD10 + 2>>. Tijah rolls <div class="tooltip">1d10-5<span class="tooltiptext">-4 no combat training, -1 high heels</span></div> to defend herself. Result..._npcD10
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
Your ankles lock, a jolt of sudden, unanticipated human contact – then Tijah finds herself suddenly, unanticipatedly [[airborne|MALAY-67000 Tijah's flight]].
<<else>>\
Your ankles lock, a jolt of sudden, unanticipated human contact. Tijah stumbles and, for a moment, seems certain to [[lose her footing|MALAY-70000 Tijah keeps her footing]]...
<</if>>\
<</replace>>
<</rollDice>>
<</link>> <div class="tooltip">1d10+2<span class="tooltiptext">+1 sneak attack, +1 size advantage</span></div> to trip the waitress. High rolls are harder to defend against.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
One second she's upright and striding fast on high heels, the next she trips over your leg and slams into the concrete path, going down with a loud //crash// of clanging cutlery and breaking glass.
There's a moment's hush across the rooftop, as a dozen conversations stop abruptly. Tijah lies there, stunned, sprawled out on her front. Her miniskirt is so short that everyone can see her golden-skinned butt, her modesty preserved only by a scrap of [[pink dental floss|MALAY-67001 Several things happen]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Several things happen all at once. An ironic cheer goes up from some of the diners; Tijah lets out a startled gasp from the ground; Max jumps up from the table, and hurries to her aid.
His phone's right there. Now's your chance.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $max.isHacked to true>>
Smoothly and fluidly, <<if $temp.hackDriveLocation == "handbag">>open your <<handbag>> and whip out the [[hack drive|MALAY-68000 Kate deploys the hack drive]]<<elseif $temp.hackDriveLocation == "bra">>whip the [[hack drive|MALAY-68000 Kate deploys the hack drive]] out from its hiding place in your bra<<elseif $temp.hackDriveLocation == "stockingTop">>you slide up your dress, and whip the [[hack drive|MALAY-68000 Kate deploys the hack drive]] out from your stocking top<</if>>.
<<else>>
A moment's hesitation while you glance around, making sure no eyes are on you. Satisfied it's clear, you <<if $temp.hackDriveLocation == "handbag">>open your <<handbag>> and whip out the [[hack drive|MALAY-68000 Kate deploys the hack drive]]<<elseif $temp.hackDriveLocation == "bra">>whip the [[hack drive|MALAY-68000 Kate deploys the hack drive]] out from its hiding place in your bra<<elseif $temp.hackDriveLocation == "stockingTop">>slide up your dress, and whip the [[hack drive|MALAY-68000 Kate deploys the hack drive]] out from your stocking top<</if>>.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div> to pull off the hack.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It vibrates once when you plug it into Max's phone. "You okay?" he's asking Tijah.
"Yeah, yeah, I fine, sorry," she insists, sounding shook up. Another male diner arrives, and they help her to her feet. //Damn it...//they're moving too fast, //way// too fast.
<<if $max.isHacked>>\
//[[Abort the hack.|MALAY-68100 Abort the hack]]
[[Hide the phone.|MALAY-68200 Hide the phone]]//
<<else>>\
Another second or two of unbearable tension, and your nerve snaps. You disconnect the hack drive and hide it in your hand.
//Just in time.// The maître d' arrives on the scene, and Max turns to look at you, [[almost catching you|MALAY-69000 Max returns to the table]] in the act.
<</if>>\
<</page>><<silently>>
<<set $max.isHacked to false>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Another second or two of unbearable tension, and your nerve snaps. You disconnect the hack drive and hide it in your hand.
//Just in time.// The maître d' arrives on the scene, and Max turns to look at you, [[almost catching you|MALAY-69000 Max returns to the table]] in the act.
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Instinctively, you grab his phone and move it into your lap. Better that it's //gone// than it's seen with a weird device sticking out of it.
//Just in time.// The maître d' arrives on the scene, and Max turns to look at you, [[almost catching you|MALAY-69000 Max returns to the table]] in the act.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Poor girl," Max says as he retakes his seat. Tijah tugs her hem back down as she and the maître d' jabber excitedly in Malay. Her knees are bleeding and there's broken glass everywhere.
<<if $max.isHacked>>\
"Yeah," you murmur sympathetically, although really all you're feeling is relief that you weren't just caught. In your lap, the hack drive vibrates twice, letting you know its work is done.
<span class="greenHighlighter">//Secondary mission complete.//</span>
You disconnect it, and start thinking about how to sneak the phone [[back into his possession|MALAY-71000 Enjoying Max's company]].
<<else>>\
"Yeah," you murmur sympathetically, although really all you're feeling is relief that you weren't just caught. You'll have to wait for [[another opportunity|MALAY-71000 Enjoying Max's company]].
<</if>>\
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
She staggers comically...then, improbably, wins her war with gravity. Straightening up on her heels, the tray still miraculously upright, she looks at the path behind her with confusion.
"You okay?" you ask innocently, your leg tucked under the table again.
"Yeah," she says, surprise in her voice. "I...must have trip."
You smile sympathetically, although really all you're feeling is frustration at her unexpected display of agility. You might not get [[another opportunity|MALAY-71000 Enjoying Max's company]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-67000 Tijah's flight")>>\
The mess is cleared away and your meal resumes. Tijah sports <<if $kate.agency == "cia" or $kate.agency == "csis">>band-aids<<else>>sticking plasters<</if>> on her knees when she brings out the next local delicacy, <span class="imageLink"><<link "crunchy pork toast drizzled with chilli mayo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/porkToast.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Max orders a second bottle of wine.<<if $max.isHacked>>
He notices his phone's missing: then finds it under his side of the table, where you surreptitiously kicked it to. "<div class="tooltip">Skit<span class="tooltiptext">Shit</span></div>," he murmurs, checking the case for damage.<</if>>
<<else>>\
<<if not hasVisited("MALAY-66000 Tripping Tijah")>>You decide against it. <</if>>Your meal continues, <<if not hasVisited("MALAY-65000 Thinking about a distraction")>>your waitress <</if>>Tijah bringing out a course of <span class="imageLink"><<link "crunchy pork toast drizzled with chilli mayo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/porkToast.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Max orders a second bottle of wine.
<</if>>\
The more you drink, the more you relax and enjoy the date. It's too bad tonight can't go anywhere: he's married, and <<if $max.isHacked>>you just hacked his phone<<else>>you're here to hack his phone<</if>> for industrial espionage. The fact you're actually connecting is ironic.
More and more, your job's constant demands for secrecy and security are cutting off your personal life. It's like a constant barrier between you and the normal world, stopping you from opening up to people and forming any [[real, lasting relationships|MALAY-72000 In the moment]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Any time somebody tries to penetrate your barriers of vagueness and misdirection, you're instantly suspicious – //why's he so interested? Could he be an enemy agent? Internal security? Or – most humiliating of all – a fucking// <div class="tooltip">Romeo<span class="tooltiptext">agents who seduce vulnerable women for espionage. Russian & Chinese Romeos actively target western female civil servants.</span></div>?
The truth is, your job can be isolating, and you feel lonely sometimes. Being on a date with a guy you have actual chemistry with feels very nice, unique: just [[bittersweet|MALAY-73000 Flirty undertones]] that nothing can come of it.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "The flirty, romantic vibe is turning you on. You wonder what kissing him would feel like.">>
<<set $kate.arousal to 1>>
<</first>>
<<if $avatar.clothing.includes("malaysia/30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear")>>
<<set _slinky to "slinky red">>
<<elseif $avatar.clothing.includes("malaysia/30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-rear")>>
<<set _slinky to "slinky black">>
<<elseif $avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>
<<set _slinky to "slinky">>
<<else>>
<<set _slinky to "ERROR IN SLINKY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
For his part, Max is having fun, oblivious to your inner turmoil. There's an intimacy building up naturally between you; little subtle things in the way he looks at you and talks to you. It feels almost like you're already lovers.
Sharing food and wine in this seductive place is probably helping. Maybe your <<link "_slinky dress" "MALAY-74000 Dessert">><</link>> is, too.
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _yourCommsAgency to "NSA",
_commsAgencyDescription to "National Security Agency">>
<<elseif $kate.agency == "mi6">>
<<set _yourCommsAgency to "GCHQ",
_commsAgencyDescription to "Government Communications Headquarters">>
<<elseif $kate.agency == "asis">>
<<set _yourCommsAgency to "ASD",
_commsAgencyDescription to "Australian Signals Directorate">>
<<elseif $kate.agency == "csis">>
<<set _yourCommsAgency to "CSEC",
_commsAgencyDescription to "Communications Security Establishment">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCommsAgency to "GCSB",
_commsAgencyDescription to "Government Communications Security Bureau">>
<<else>>
<<set _yourCommsAgency to "ERROR IN YOURCOMMSAGENCY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
A thousand small dishes later you're full, but you manage to force down a slice of <span class="imageLink"><<link "chocolate tea mousse cake">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/malaysia/teaMousseCake.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> for <<if $kate.agency == "mi6">>pudding<<else>>dessert<</if>>, while Max savours a brandy.
"I //love// cheat days," he says, patting his tummy and leaning back in his chair. You let out a little groan of stuffed satisfaction in reply. That was a hell of a meal.
<<image "/locationPhotos/malaysia/stratosphereChillout.jpg" 100 1000 500 0>>\
<<if $max.isHacked>>\
Dinner's complete, and so is your mission; his phone's probably already trickling data to <<if _yourCommsAgency[0] == "A" or _yourCommsAgency[0] == "N">>an<<else>>a<</if>> <div class="tooltip">_yourCommsAgency<span class="tooltiptext">_commsAgencyDescription</span></div> server for <<Wheeler>> to review tomorrow. All you need to do now is end the night in a way that doesn't arouse Max's suspicion.
<</if>>\
Across the helipad is a [[chillout area|MALAY-75000 Walk to chillout area]] with wicker couches to lounge in after dinner.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Max walks you over there, with his hand on your back the whole way. Like when he walked you into the restaurant, his touch is light, but it feels sexy and loaded with anticipation. <<if $kate.kinks.includes("submissive")>>There's something hot and intimate about letting him steer you around...like you're letting him decide what to do with your body.<<else>>There's something hot and intimate about letting him guide you like this.<</if>>
Sitting side by side in one of the wicker couches, the conversation falls away and you just //look// at him for a moment: the grey eyes, the wolfish grin. His bone structure is so pleasing to look at...broad and masculine, yet somehow also delicately sculpted. Yeah, that's the word...sculpted.
It occurs to you that you're slightly drunk. And that Max is gazing deeply into your eyes, uncharacteristically quiet.
You share a long, intense moment of deep, probing eye contact. Then he leans in to kiss you.
//[[Make out with him.|MALAY-80000 Max first kiss]]
[[Turn away.|MALAY-76000 Kate shuts Max down]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
You instinctively turn away. Max kisses empty air, then pulls back, looking abashed.
"Whoa. Sorry. Misread some signals there."
Tijah arrives with drinks on the house. "<div class="tooltip">Tack så mycket<span class="tooltiptext">Thank you very much</span></div>," he tells her. "And the bill, please," he adds, in a tone that says he wants it [[as soon as possible|MALAY-77000 Max loses interest]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
His vibe changes markedly after that: friendly, but distant. Amicable, with a slice of //fuck you.// <<if not $max.isHacked>>You doubt you're going to get a<<if hasVisited("MALAY-66000 Tripping Tijah")>>nother<</if>> shot at his phone, now. He's gone from keen on you, to keen on getting rid of you.<</if>>
<<if $max.isHacked>>\
Still...you did what you came out to do, and he seems none the wiser. At least one of you had a successful evening – and, wow, dinner was obscenely good. You'll have to eat only salad for the rest of the weekend just to make up for it.
<</if>>\
You ride back to the hotel making only polite conversation. Max pays the driver, and wishes you [[goodnight|MALAY-78000 Lobby goodnight]] when you get to the lobby.
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks for a nice evening," you tell him.
"My pleasure." That wolfish grin one last time. "Goodnight, <<if $max.knowsKatesRealName>>$kate.firstName<<else>>(TK COVERFIRSTNAME)<</if>>."
//[[Go to your room.|MALAY-79000 Kate returns to her room alone]]//
<</page>><<silently>>
<<set $header.line1 to "''ROOM 2512''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<emote-calm>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
Back in your room, you kick off your heels and open up Signal, a secure messaging app, on your phone.
<<if $max.isHacked>>\
//All done, please check server,// you message <<Wheeler>>.
<<else>>\
//Not possible,// you message <<Wheeler>>.
<</if>>\
No reply: the old boy's probably asleep. Oh well, he can read the <<if $max.isHacked>>good<<else>>bad<</if>> news in the morning. <<if $max.isHacked>>This should look good on your record.<<else>>You did your best.<</if>>
//[[Time to get some sleep.|MALAY-79100 Ready for bed]]//
<</page>><<silently>>
<<avatar-clothing-removeConflict dress>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your dress and hang it up.
It's late and you should get some sleep...but glamming yourself up and being wined and dined has left you feeling tense and sexually frustrated.
//[[Masturbate.|MALAY-79200 Kate jills off]]//
<</page>><<silently>>
<<set _sexualFantasy to $kate.kinks.random()>>
<<set $avatar.foreground.pushUnique("teenRom/50_katesBedsheets")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You slip under the sheets for a quick, uncomplicated //menage a moi.// Your pussy's wet and ready, responsive to your touch.
Your mind goes back to your date, somewhere else in the hotel: you wonder if he's doing the same thing, lying in bed and touching himself to the memory of you. You can't deny that you looked hot in that dress.
Your thoughts drift to an idle fantasy about messaging him right now. You imagine sending him a text that just says //2512//...your [[room number|MALAY-79300 Max's imaginary visit]].
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
In your fantasy you leave your door unlocked and just wait...and then Max comes in. No conversation, just his hands and his mouth on your body, then his hard cock slipping inside you and thrusting, over and over again, until you...until you...
Jolts of pleasure shoot through your body as you reach orgasm, a crescendo of satisfaction and release.
"Fuuck," you groan out loud, to no one in particular. //God, I needed that.// You lie there a while, feeling blissed out and ravished afterwards.
Eventually, feeling calmer, you grab a shower and [[get some sleep|MALAY-440000 Get some sleep]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy is wet.">>
<</first>>
<<set $kate.arousal += 1>>
<</silently>>\
<<header>>\
<<page>>\
Your lips meet...then you're kissing. It's intense, passionate, urgent, his stubble prickling your soft skin and your tongues tussling, tangling, intimately exploring each other's body.
A familiar, tingly tension rushes up in your stomach while you make out with him, right there in the restaurant<<if $kate.kinks.includes("exhibitionist")>>, in plain view<</if>>. \
<<if $max.isHacked>>\
//Mission's done, $kate.firstName,// you remind yourself. //So why am I still doing this?//
<<else>>\
If you're just doing this to distract him from his phone...your body didn't get the memo.
<</if>>\
When you finally come up for air your nipples are hard and there's a [[hot slippery wetness|MALAY-81000 Check please]] between your legs.
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
Tijah arrives, with drinks on the house for both of you. "<div class="tooltip">Tack så mycket<span class="tooltiptext">Thank you very much</span></div>," he tells her. "And the bill, please," he adds, in the air of a man who would like it [[as soon as possible|MALAY-82000 Taxi backseat]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''KUALA LUMPUR''",
$header.line2 to "MALAYSIA / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You ride the <<lift>> down to street level with another couple. But as soon as you're alone in the backseat of a taxi, Max practically pounces on you, eager to [[pick up where you left off|MALAY-83000 Steamy taxi ride]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/klNight.jpg" 120 1000 500 0>>\
The traffic's clear now, so it's a short ride uptown to the hotel. You hardly notice because you're locked in a steamy makeout session with Max on the backseat.
He kisses you hungrily. His hand starts on your knee, then moves up your bare thigh, slipping up under the slit in your dress...
<<link "//Just make out.//" "MALAY-83100 Backseat makeout">><</link>>
<<if $kate.kinks.includesAny("exhibitionist", "submissive")>>\
<span class="greyedOut">//[Exhibitionist or Submissive]//</span> <<link "//Spread your legs.//" "MALAY-83200 Taxi fingerbang">><</link>>
<<else>>\
<span class="greyedOut">//[Exhibitionist or Submissive]// Spread your legs.</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Under your dress, his hand roams over your thigh and up around the curve of your hip while he kisses you. <<if not $kate.isWearing.includes("knickers")>>You're pretty sure he's figured out that you're not wearing any <<knickers>>.<<else>>From time to time his hand makes it all the way up to the waistband of your <<= $knickers.description.random()>>.<</if>>
Each time you glance up front, you make eye contact with the taxi driver in his rearview mirror. It's a miracle you make it back to the [[Mandarin Oriental|MALAY-84000 Hotel lobby]] in one piece.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "You're wet and turned on.">>
<<set $kate.arousal += 1>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.kinks.includes("submissive")>>You react on instinct, obligingly spreading your legs apart for him on the backseat.<<else>>Instinctively, in the heat of the moment, you spread your legs apart on the backseat.<</if>>
<<if $kate.isWearing.includes("knickers")>>\
Max doesn't hesitate, going straight for the hot, wet scrap of $knickers.material between your legs. He strokes your pussy through your <<= $knickers.description.random()>>, then casually tugs it aside. The naked touch makes you murmur and bite his lip.
<<else>>\
Max doesn't hesitate, going straight for the hot, wet crotch, slipping between your naked lips. The touch makes you murmur and bite his lip.
<</if>>\
Each time you glance up front, you make eye contact with the taxi driver in his rearview mirror, <<if $kate.kinks.includes("exhibitionist")>>making sure he gets a good view of you getting<<else>>watching you get kissed and<</if>> fingered on his backseat. It's a miracle you make it back to the [[Mandarin Oriental|MALAY-84000 Hotel lobby]] in one piece.
<</page>><<silently>>
<<emote-calm>>
<<if not hasVisited("MALAY-83200 Taxi fingerbang")>>
<<first>>
<<addNotification "A little drunk" "Three cocktails and a bottle of Chateau D'Esclans may be affecting your judgement at this point.">>
<</first>>
<</if>>
<<set $header.line1 to "''MANDARIN ORIENTAL HOTEL''",
$header.line2 to "KUALA LUMPUR / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-83200 Taxi fingerbang")>>\
Your heels click loudly on the marble floor to announce your return. Max steers you to the front desk with one hand on your ass.
"Champagne in my room, please," Max tells the pretty night receptionist. "2907."
She offers him a room service menu, which he scans quickly. "This one. Perrier Jouët." He pronounces it correctly, with the hard 't': //perrier zhou-ette.//
"Very good, sir. I'll have it sent up right away."
"<div class="tooltip">Tack så mycket.<span class="tooltiptext">Thank you very much.</span></div>" He shoots her his wolfish, charming smile – which seems to make her night – then walks you to the <<lift>>s.
Deep down...you knew you'd go up to his room after dinner. You try to figure out when you decided that – at the restaurant? When you met at the bar? Or earlier – when you were getting ready, when you were shopping for a dress?
//It's happening.// You feel both nervous and excited as you wait for the <<lift>> [[to arrive|MALAY-87000 Lift journey]].
<<else>>\
Your heels click loudly on the marble floor to announce your return. "Want to come up to my room?" Max asks. "Have a nightcap?"
<<if $max.isHacked>>\
Your mission's complete - there's no need to go up to his room. Well...it could be argued that doing so would show //real// commitment to your cover. But there's no way in hell <<Wheeler>> would expect you to do that. Your report won't even mention the fact that you let Max //kiss// you, let alone anything else.
But he's hot and you're tempted.
<<else>>\
If you go up to his room, it's for sex, no doubt about it. That wouldn't be highly professional...in fact, it'd practically make you a <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage. Normal for Jane Bonds in Russia, China and Israel; but frowned upon by <<if $kate.agency == "cia">>the <</if>><<= $kate.agency.toUpperCase()>>.</span></div>.
But he's hot and you're tempted. And it might give you a<<if hasVisited("MALAY-66000 Tripping Tijah")>>nother<</if>> shot at his phone. You wouldn't have to tell <<Wheeler>> exactly how you did it.
<</if>>\
[[Sure, let's keep going.|MALAY-86000 Kate agrees to go to Max's room]]
<<if $max.isHacked>>\
<<link "//[Finish the date]// Sorry, I have an early flight." "MALAY-85000 Early flight">><</link>>
<<else>>\
<<link "//[Abort the Secondary Mission]// Sorry, I have an early flight." "MALAY-85000 Early flight">><</link>>
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Ah, sorry," you tell him. "I've got an early flight. Tonight was nice, though."
"Oh!" Clearly not the answer he was expecting. "Well...that's too bad. Maybe...just a quick drink?"
"Sorry."
Max tries to talk you round...but <<if $max.isHacked>>you've already completed your mission<<else>>you didn't join <<if $kate.agency == "cia">>the <</if>><<= $kate.agency.toUpperCase()>> to end up a honeypot<</if>>. You say goodnight to him, and go back to [[your room|MALAY-79000 Kate returns to her room alone]] alone.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," you smile, "let's keep going." //What the hell.//
"Can we have champagne in my room, please?" Max asks the pretty night receptionist. "2907."
She offers him a room service menu, which he scans quickly. "This one. Perrier Jouët." He pronounces it correctly, with the hard 't': //perrier zhou-ette.//
"Very good, sir. I'll have it sent up right away."
"<div class="tooltip">Tack så mycket.<span class="tooltiptext">Thank you very much.</span></div>" He shoots her his wolfish, charming smile – which seems to make her night – then walks you to the <<lift>>s.
//God, we're really doing this,// you think, holding his hand as you wait for the <<lift>> [[to arrive|MALAY-87000 Lift journey]]. You wonder what it's going to feel like. You're nervous and excited at the same time.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The <<lift>> stops a few times for other passengers: a room service waiter, a lone fat Asian man, and a middle-aged white couple returning from dinner at one of the hotel's many restaurants.
Everyone rides in polite silence, unaware that Max's hand is fondling your ass through your dress the whole time.
You go past your floor without stopping, and step out with Max [[on the 29th|MALAY-88000 29th floor]].
<</page>><<silently>>
<<set $header.line1 to "''MAX\'S SUITE''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You stroll through an empty hotel corridor, Max's hand on your ass, until you arrive at room 2907. He lets go of your butt to swipe his keycard in the lock.
<<image "/locationPhotos/malaysia/maxsRoom.jpg" 120 1000 500 0>>\
Inside, his suite is like yours, but a bit bigger, decorated in cool grey instead of earth tones. You spot a few signs of his occupation: a notepad on the desk, some books in Swedish, a water bottle and a phone charger cable sat beside the alarm clock on the nightstand.
[[Oh, you have a balcony!|MALAY-89000 Max's balcony]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, you have a balcony!"
"You don't? Check it out."
He rolls open the door and gestures for you to [[step outside|MALAY-90000 Balcony view]].
<</page>><<silently>>
<<set $header.line1 to "''29TH FLOOR BALCONY''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<showRear>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/petronasTowersAtNight.jpg" 10 1000 550 0>>\
You step out onto the balcony and back into the night. A warm breeze carries up the smells and sounds of the city streets from far below. Nearby, the Petronas Towers are lit up like rocket ships, ready to blast off into the darkness.
Max comes out behind you. Before you can take in any more of the view, his hands grasp your hips and spin you around.
//[[Make out.|MALAY-91000 Balcony kiss]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
Max kisses you, urgent and intense, pushing you back until your bum is pressed up against the railing.
His hands find your <<if $kate.braSize == "small">>small <</if>>breasts, kneading them through your slinky dress, feeling the way they shift in his <<if $kate.braSize == "small">>palms<<else>>grasp<</if>> without a bra. Your nipples feel stiff and sensitive, ready to be handled.
//[[Kiss back demurely.|MALAY-92000 Balcony demure makeout]]
[[Kiss back passionately.|MALAY-93000 Balcony passionate makeout]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With your bum pressed up against the balcony rail, you make out with Max Sandström, softly kissing him back while he <<if $kate.braSize == "small">>gropes and fondles your small breasts, feeling their softness<<elseif $kate.braSize == "medium">>gropes and squeezes your firm breasts, feeling how they move<<elseif $kate.braSize == "large">>gropes and squeezes your big tits, feeling their size and weight<</if>> without a bra.
Anticipation stirs in his <<trousers>>, pressing against your belly as you kiss. His hands roam around your body to find <<if $avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>the tie at the back of your dress, tugging it loose<<elseif $avatar.clothing.includes("30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear")>>the <<zip>> at the back of your dress, tugging it down<<else>>the <<zip>> at the back of your dress, tugging it down<</if>>...
//[[Unbutton his shirt.|MALAY-94000 Partially un dressed][$temp.playerDecision to "stripMax"]]
[[Help him undress you.|MALAY-94000 Partially un dressed][$temp.playerDecision to "stripYourself"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With your bum squashed up against the balcony rail, you make out with Max Sandström, kissing him back fiercely while he <<if $kate.braSize == "small">>gropes and fondles your small breasts, feeling their softness<<elseif $kate.braSize == "medium">>gropes and squeezes your firm breasts, feeling how they move<<elseif $kate.braSize == "large">>gropes and squeezes your big tits, feeling their size and weight<</if>> without a bra.
You pull him into you, fondling his strong back and shoulder muscles while you kiss. They feel like big hard slabs of raw masculinity through his soft linen shirt.
Anticipation stirs in his <<trousers>>, pressing against your belly as you kiss. His hands roam over your body to <<if $avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>the tie at the back of your dress, tugging it loose<<elseif $avatar.clothing.includes("malaysia/30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear")>>the <<zip>> at the back of your dress, tugging it down<<else>>the <<zip>> at the back of your dress, tugging it down<</if>>...
//[[Unbutton his shirt.|MALAY-94000 Partially un dressed][$temp.playerDecision to "stripMax"]]
[[Help him undress you.|MALAY-94000 Partially un dressed][$temp.playerDecision to "stripYourself"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "stripMax">>\
<<emote-eyes-calm>>\
<<set $max.isWearing.push("unbuttonedShirt")>>\
You unfasten his shirt, button by button revealing the lean, muscular body you remember from the pool.
<<elseif $temp.playerDecision == "stripYourself">>\
You instinctively assist, moving your body to help him get you out of your dress.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<if $temp.playerDecision == "stripMax">>Meanwhile, Max<<elseif $temp.playerDecision == "stripYourself">>With your help, he<<else>>(ERROR IN TEMP.PLAYERDECISION VAR)<</if>> confidently peels you out of your date dress, [[right there on the balcony|MALAY-95000 Un dressed]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<if $avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>
<<set $temp.kateWasWearing to "wineMultiStrapGown">>
<<elseif $avatar.clothing.includes("malaysia/30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear")>>
<<set $temp.kateWasWearing to "cherryRedFishtailGown">>
<<elseif $avatar.clothing.includes("malaysia/30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-rear")>>
<<set $temp.kateWasWearing to "blackCutOutGown">>
<</if>>
<<avatar-clothing-removeConflict "dress">>
<</silently>>\
<<header>>\
<<page>>\
A tug here, a pull there...and your expensive designer dress is sliding down to your knees. You step out of it, resting a hand on his solid shoulder to steady yourself. He tosses the dress aside like it's a rag.
"Fuck," he murmurs<<if $kate.braSize == "large">> when your big breasts are freed, cupping them greedily, feeling their weight in his hands<</if>>.
You glance around nervously, feeling very exposed in the night air. The neighbouring balconies are clear, but there are literally hundreds of windows in the high-rises across the street. Anyone could be watching right now, getting an eyeful of the <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>> <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Aussie<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> girl on the hotel balcony.
[[Let's go inside.|MALAY-97000 Balcony fingerbang]]
<<if $kate.kinks.includes("exhibitionist")>>\
//<span class="greyedOut">[Exhibitionist]</span> [[Give Max a blowjob.|MALAY-99000 Balcony BJ]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Give Max a blowjob.//</span>
<</if>>
<</page>><<silently>>
<<avatar-clothing-removeConflict "bra">>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
Reaching behind your back, he undoes your bra almost before you know what he's doing – one moment you're wearing it, the next he's tossing it onto the sunlounger along with your dress. //(TK if the hack drive is in her bra, we need to mention it here - maybe variation where she panics because she realises what's about to be revealed. Brief contest in which she manages to palm the drive, but not keep her bra.)//
<<if $kate.braSize == "large">>\
"<div class="tooltip">Herregod<span class="tooltiptext">Oh my god</span></div>," he murmurs when your big breasts are freed, cupping them greedily, feeling their weight in his hands.
<</if>>\
You glance around nervously, feeling very exposed in the night air. The neighbouring balconies are clear, but there are literally hundreds of windows in the high-rises across the street. Anyone could be watching right now, getting an eyeful of the <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>> <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> girl on the hotel balcony.
[[Let's go inside.|MALAY-97000 Balcony fingerbang]]
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Give Max a blow job.|MALAY-99000 Balcony BJ]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Give Max a blow job.//</span>
<</if>>
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Let's go inside," you say.
"Later," Max murmurs, pulling you back in for another kiss. One hand closes on a handful of your hair, tilting your head back, exposing your neck.
His other hand slips between your legs, <<if $kate.isWearing.includes("knickers")>>inside your <<= $knickers.description.random()>>, <</if>>\
<<if hasVisited("MALAY-83200 Taxi fingerbang")>>\
getting reacquainted with your pussy. He sensually teases your clit while kissing and nibbling your neck like a [[stubbly Swedish vampire|MALAY-98000 Good with his hands]].
<<else>>\
<<if $kate.isWearing.includes("knickers")>>\
only your <<= $knickers.description.random()>> between him and your hot slick wetness. After hours of anticipation, his touch on your wet entrance sends a thrill up your body that makes you gasp.
His finger caresses your pussy through the soaked scrap of $knickers.material, sensually teasing your clit while he kisses and nibbles your neck like a [[stubbly Swedish vampire|MALAY-98000 Good with his hands]].
<<else>>\
finding the hot slick wetness there. After hours of anticipation, his touch on your wet entrance sends a thrill up your body that makes you gasp.
His finger slips between your lips, sensually fondling your bare clit while he kisses and nibbles your neck like a [[stubbly Swedish vampire|MALAY-98000 Good with his hands]].
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-sexy>>
<<first>>
<<addNotification "Arousal +1" "You're soaking wet and totally ready for sex.">>
<<set $kate.arousal to 1>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
He's //really// good with his hands. Your breath comes out in low, encouraging murmurs as he explores your body, his finger sensuously stroking your <<if not $kate.isWearing.includes("knickers")>>bare, wet pussy<<else>>wet pussy through a <<if $knickers.material == "lace">>delicate scrap of lace<<else>>flimsy scrap of fabric<</if>><</if>>.
While he fondles your clit, his wolfy mouth works over your upper body – kissing your neck, licking and sucking your stiff nipples, kissing you hard, his tongue roughly invading your mouth. His grip in your hair means you couldn't break away even if you wanted to.
It feels so good. Then, from inside the suite, there's a [[tap at the door|MALAY-130000 Room service]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's a total turn-on. You feel an urge to give them [[something else to look at|MALAY-100000 Kate goes down]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Slowly, sensuously, you sink down to a squat, balanced on your heels. Traffic noise drifts up from far below. Looking up at Max, you gaze up into his pretty grey eyes as you unbuckle his belt and unfasten his <<trousers>>.
You tug them down just a little, so they ride low on his hips, revealing a pair of clingy blue boxers. He looks down at you, a mix of tension and anticipation on his handsome face.
//[[Take out his dick.|MALAY-110000 Cock out on the balcony]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Some gentle rummaging inside the clingy material of his boxers, and then you're touching Max's cock, drawing it out into the night air. It's big and stiff, thick and meaty in your hand.
//[[Take it in your mouth.|MALAY-120000 In Kate's mouth]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 0>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
One last moment of eye contact...then you close your eyes and guide his cock inside your soft, wet mouth.
It tastes musky – sweaty, kinda, but not in a bad way. Fresh sweat.
His hard penis fills your mouth. Balanced precariously on your heels, rocking gently back and forth, you get to work on pleasuring it with your lips and tongue.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''BJ check.'' \
<<link "Roll">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if _kateD10 + 0 gte 6>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: _kateD10+0 = <<= _kateD10 + 0>>. <<if _skillCheckSucceeded>>//BJ quality: excellent.//<<else>>//BJ quality: normal.//<</if>>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-mouth-blowjob>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
<<set $max.stamina -= 1>>\
Doing this out on the balcony is a //serious// turn on. Literally dozens of people could be watching you right now, crouching on the balcony, <<if $kate.isWearing.includes("knickers")>>topless<<else>>nude<</if>> in high heels, with a dick in your mouth.
<span class="yellowHighlighter">Max sexual stamina -1.</span>
You can feel his erection getting stiffer and more sensitive in your mouth as you suck and slurp rhythmically on it. "Fan," breathes Max, his hand pressing on the back of your head. "<div class="tooltip">Jävlar<span class="tooltiptext">Fucking hell</span></div>! You're good at that."
You're just getting into your stride when, from inside the suite, there's a [[tap at the door|MALAY-130000 Room service]].
<<else>>\
Doing this out on the balcony is a //serious// turn on. Literally dozens of people could be watching you right now, crouching on the balcony, <<if $kate.isWearing.includes("knickers")>>topless<<else>>nude<</if>> in high heels, with a dick in your mouth.
Max's hand rests proprietally on the top of your head, forcing you to take him deeper into your mouth, the tip stretching right back in your throat. It makes you gag a little but Max doesn't care.
You're just getting used to the sensation when, from inside the suite, there's a [[tap at the door|MALAY-130000 Room service]].
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> <div class="tooltip">1D10+0<span class="tooltiptext">Sexpert skill +0</span></div> to determine the quality of your BJ. (6 or better = excellent.)
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Helvete<span class="tooltiptext">Hell</span></div>," he murmurs, <<if hasVisited("MALAY-97000 Balcony fingerbang")>>breaking off the clinch<<else>>as your mouth slips off his cock with a little wet //pop//<</if>>. "Room service."
<<if hasVisited("MALAY-99000 Balcony BJ")>>You grin as you straighten up, wiping your lips, leaning back against the railing to show off the <<if $kate.isWearing.includes("knickers")>>half-<</if>>naked curves he has to walk away from.<<else>>You grin and lean back against the railing, subtly arching your back to show off the <<if $kate.isWearing.includes("knickers")>>half-<</if>>naked curves he has to walk away from.<</if>>
[[You gonna answer it?|MALAY-140000 Gonna answer it?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Gonna answer it?" you ask.
<<if hasVisited("MALAY-99000 Balcony BJ")>>\
He's tucking his erection back into his boxers when an idea occurs to him. "You go," he says.
<<elseif $max.isWearing.includes("unbuttonedShirt")>>\
He's fastening up his shirt when an idea occurs to him. "You go," he says.
<<else>>\
He half-turns to leave, then an idea occurs to him. "You go," he says.
<</if>>\
[[Me? Like this?|MALAY-150000 Moi?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Me?" you ask. "Like //this?"// You shrug and splay your hands in a pose that manages to showcase both how crazy you think that idea is, and how hot you look <<if $kate.isWearing.includes("knickers")>>half-naked in heels<<else>>wearing nothing but high heels<</if>>.
"Fuck, yes!" Max enthuses. "Exactly like that."
[[No way.|MALAY-160000 No way]]
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"No way," you laugh.
"Oh, jä, yes way," he insists. "C'mon. It'd be //sexy."//
<<if $kate.kinks.includesAny("exhibitionist", "submissive")>>\
//[Exhibitionist or Submissive] [[Would it turn you on?|MALAY-161000 Are you a candaulist?]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist or Submissive]// Would it turn you on?</span>
<</if>>\
[[Not happening.|MALAY-162000 Not happening]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Would it turn you on?"
"Definitivt," he nods eagerly. "Of course."
[[Well...okay then.|MALAY-210000 Kate gets the door]]
[[Too bad. Not happening.|MALAY-162000 Not happening]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-rogerMoore>>
<<emote-nose-scrunch>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-161000 Are you a candaulist?")>>\
"Too bad," you smile sweetly. "I'm not doing it."
<<else>>\
"No way," you shake your head. "Not happening."
<</if>>\
There's another polite tap at the door. "Okay. <div class="tooltip">Glöm det<span class="tooltiptext">Never mind</span></div>," Max shrugs. "Wait right there."
//[[Wait on the balcony.|MALAY-170000 Kate waits on the balcony]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Adjusting his <<trousers>>, Max heads back inside the suite, leaving you alone with the night air and the traffic noise.
You can easily see the door from here, and the LED lights inside the suite light up the balcony through the floor-to-ceiling windows. You're going to be on display when Max opens the door.
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">//[Non Exhibitionist] Put your dress back on.//</span>
<span class="greyedOut">//[Non Exhibitionist] Turn your back.//</span>
//[Exhibitionist] [[Pose nonchalantly.|MALAY-200000 Nonchalant pose]]//
<<else>>\
//[Non Exhibitionist] [[Put your dress back on.|MALAY-180000 Re dressed]]//
//[Non Exhibitionist] [[Turn your back.|MALAY-190000 Turn your back]]//
<span class="greyedOut">//[Exhibitionist] Pose nonchalantly.//</span>
<</if>>\
<</page>><<silently>>
<<if $temp.kateWasWearing == "wineMultiStrapGown">>
<<wear-dress-wineMultiStrapGown>>
<<elseif $temp.kateWasWearing == "cherryRedFishtailGown">>
<<wear-dress-cherryRedOffTheShoulderFishtailGown>>
<<elseif $temp.kateWasWearing == "blackCutOutGown">>
<<wear-dress-blackOneShoulderCutOutThighSlitGown>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You pick up your dress from the sunlounger, and step back into it while Max [[goes to the door|MALAY-181000 Room service guy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Max opens the door to a hotel waiter, who wheels a polished silver drinks trolley into the room. He's a burly, potato-faced local you've seen around the hotel a few times in the past week, and he nods courteously when he notices you out on the balcony. "Good evening, madame."
You watch the little serving ritual from outside in the night: presenting the champagne bottle for Max to inspect, expertly popping it open, then leaving with a signed bill. "Goodnight, madame."
After seeing him out, Max comes back out onto the balcony, carrying two glasses of sparkling fizz. "You're way too dressed," he says, as you take a sip.
//[Get naked]// [[Only you get to see this.|MALAY-182000 Only you]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Only you get to see this." You place your glass down and reach for <<if $avatar.clothing.includes("malaysia/30_dress-wineMultiStrapGown-barefoot-rear")>>the tie at the back of your dress, tugging it loose<<elseif $avatar.clothing.includes("malaysia/30_dress-cherryRedOffTheShoulderFishtailGown-barefoot-rear")>>the <<zip>> at the back of your dress, tugging it down<<elseif $avatar.clothing.includes("malaysia/30_dress-blackOneShoulderCutOutThighSlitGown-barefoot-rear")>>the <<zip>> at the back of your dress, tugging it down<</if>>.
Max sips his drink and watches while you [[strip off on the balcony|MALAY-183000 Balcony strip]].
<</page>><<silently>>
<<avatar-clothing-removeConflict "dress">>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("knickers")>>\
You step out of your dress, and toss it onto the sunlounger. Max's eyes drink in your half-naked form.
<<if $knickers.type == "thong">>\
//[[Take off your thong.|MALAY-183100 Knickers off]]//
<<else>>\
<<link "//Take off your <<knickers>>.//" "MALAY-183100 Knickers off">><</link>>
<</if>>\
<<else>>\
You step out of your dress, and toss it aside, reacquanting Max – and maybe half the neighbourhood – with [[your naked form|MALAY-184000 Balcony stripped]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
While Max – and maybe half the neighbourhood – watches, you peel down your <<= $knickers.description.random()>>, <<if $kate.bikiniLine == "hollywood">>revealing your shaved pussy<<else>>baring your <<if $kate.bikiniLine == "landingStrip" or $kate.bikiniLine == "brazilian">>skinny bikini line<<elseif $kate.bikiniLine == "georgeW">>bush<<else>>neatly trimmed bikini line<</if>><</if>>.
<<if $kate.hairColour == "ginger" and $kate.bikiniLine != "hollywood">>\
"Natural redhead," \
<<elseif $kate.hairColour == "blonde" and $kate.bikiniLine != "hollywood">>\
"Natural blonde," \
<<else>>\
"Nice," \
<</if>> Max murmurs approvingly.
<<if $knickers.type == "thong">>\
//[[Toss your thong aside.|MALAY-184000 Balcony stripped]]//
<<else>>\
<<link "//Toss your <<knickers>> aside.//" "MALAY-184000 Balcony stripped">><</link>>
<</if>>\
<<removeKnickers>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Only I get to see this?" Max pulls you in close. "Don't forget [[the neighbours|MALAY-184100 Neighbourhood watch]]."
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
He turns you by the hips so you're facing the rows and rows of windows in the highrises across the street. Gently but firmly, he pushes you down so you're bending over the balcony rail.
<<if $kate.isWearing.includes("knickers")>>\
His fingers curl [[inside the waistband|MALAY-260000 Knickers off]] of your <<knickers>>.
<<else>>\
[[Wait, have you got a condom?|MALAY-270000 Condom request]]
//[[Grip the rail.|MALAY-290000 Balcony penetration]]//
<</if>>\
<</page>><<silently>>
<<showRear>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You turn and lean against the railing. Inside the suite you hear the door open, and male voices in conversation: Max and a melodic-sounding Malaysian man.
They draw closer, then the Malaysian voice stops short – presumably having just noticed the <<if $kate.isWearing.includes("knickers")>>half-<</if>>naked female guest out on the balcony.
"Hey, everything okay?" asks Max casually.
"Ah...yes sir. [[Of course|MALAY-191000 Of course sir]], sir."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You just gaze out into the night, the warm air caressing your body, listening to the sounds of traffic from far below. Facing out from the room means that you're showing off your body to anyone across the street, of course, but at least you don't have to look them in the eye.
Behind you, the men chat, small talk about Penang where the room service waiter hails from. You can't tell if they're stealing discreet glances at you, or openly staring at your naked back and <<if $kate.isWearing.includes("knickers")>>half-covered <</if>>butt.
You hear the pop of a champagne cork, the rattle of the bottle sliding back into an ice bucket, and the sounds of Max [[seeing the waiter out|MALAY-206000 Balcony redux]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The prospect's quite erotic. You lean back against the railing, back slightly arched, hip tilted, aiming for a pose that looks both flattering and casual.
Inside, Max opens the door to a room service waiter – a burly, potato-faced local you've seen around the hotel a few times this week. Both men walk into the suite, the waiter wheeling in a polished silver drinks trolley.
He makes it right into the middle of the room before noticing you. His eyes pop wide at the sight of a <<if $kate.isWearing.includes("knickers")>>half-<</if>>naked female guest out on the balcony.
//[[Gaze back coolly.|MALAY-201000 Kate plays it cool]]
[[Smile and say hi.|MALAY-202000 Kate talks to the waiter][$temp.playerDecision to "hiThere"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shoot back your coolest, most nonchalant gaze.
"Hey, everything okay?" asks Max.
"Ah...yes sir. Of course, sir. Um..." he gathers his composure, and offers you a polite bob of his head. "Good evening, madame."
[[Uh, hi there!|MALAY-202000 Kate talks to the waiter][$temp.playerDecision to "hiThere"]]
[[Sorry...this was his idea.|MALAY-202000 Kate talks to the waiter][$temp.playerDecision to "blameMax"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "hiThere">>\
<<silently>>
<<avatar-expr-eyebrows-worried>>
<<avatar-expr-mouth-smile>>
<</silently>>\
An embarrassed, disarming grin breaks out over your face. "Hi there," you say.
"Hi," he murmurs back. His eyes roam all over your body, drinking in every detail.
<<elseif $temp.playerDecision == "blameMax">>\
<<silently>>
<<avatar-expr-eyebrows-frown>>
<</silently>>\
"Sorry," you say, pointing an accusing finger at Max. "His idea."
"Don't listen to her," scoffs Max. "She's loving this."
"Er...yessir." The waiter's eyes roam all over your body, drinking in every detail.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"You wanna come in here and say hi?" asks Max.
[[I'm fine out here.|MALAY-203000 I'm fine out here]]
[[Okay.|MALAY-204000 The spy who came in from the balcony]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine out here, Max," you tell him.
He smiles and shrugs to the waiter. "Okay. Madame stays on the balcony. So...what have you brought us?"
"Ah...Perrier Jouët, sir. Grand Brut..."
You watch from the balcony as the waiter pops open a bottle of champagne and fills two flutes. It takes him a little while, because he keeps stealing glances at you.
Eventually, Max signs the bill. "Thank you sir," the waiter says, "thank you madame. Goodnight madame. Goodnight." His eyes are locked on your body as Max gently [[closes the door|MALAY-206000 Balcony redux]] on him, like he's trying to remember every detail.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<set $header.line1 to "''MAX\'S SUITE''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The pair watch raptly as you step inside the suite and walk up to them. "Hi," you say<<if $temp.playerDecision == "hiThere">> again<</if>>.
He licks his lips nervously. "Madame."
"So," asks Max, "what have you brought us?"
"Ah. Perrier Jouët, sir." He lifts the bottle from an ice bucket to present the label. "Grand Brut."
He shows the label to you both. Max nods sagely, you with [[all the dignity|MALAY-205000 Uncorking]] a <<if $kate.isWearing.includes("knickers")>>topless<<else>>nude<</if>> woman can muster.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The waiter busies himself serving the champagne. You stand by and watch politely as he works, fumbling with the wire cork cage because he's paying more attention to your body than the task at hand.
This scene would be perfectly normal if you weren't <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>>, in heels, in a room with two fully dressed men. //This is what it's going to be like in Bangkok,// you realise. A [[weird mix|MALAY-205100 Premature uncorkulation]] of empowerment and vulnerability.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The waiter stares at your body like he's memorising every single detail...your bare breasts and your <<if $kate.piercings.includes("nipplesSilverBarbells")>>pierced, <</if>>stiff nipples, <<if $kate.tattoos.length gt 1>>your tattoos<<elseif $kate.tattoos.length == 1>>your tattoo<<elseif $kate.piercings.includes("navelSilverBarbell")>>your belly button piercing<<else>>your slender frame<</if>>, <<if $kate.isWearing.includes("knickers")>>the <<= $knickers.description.random()>> he'd like to peel down<<else>>your <<if $kate.bikiniLine == "hollywood">>bare, shaved pussy<<else>>neatly trimmed bush<</if>><</if>>.
The champagne cork suddenly pops, a little quicker than he'd expected. Creamy white fizz seeps out from the finish, trickling down over his hand. He looks at Max, abashed. "Sorry sir."
Max waves it off, and his eyes drift back to your body. His tongue flickers nervously across his plump lips. "Will there be anything else, sir?" he asks, staring directly at your tits.
"No, that's all," replies Max. He signs the bill and sees the man out; you take your glass of champagne back out [[onto the balcony|MALAY-206000 Balcony redux]].
<</page>><<silently>>
<<set $header.line1 to "''29TH FLOOR BALCONY''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
Max strides out onto the balcony full of purpose. "That was //fucking// hot." He grabs you by the hips and pulls you in for a kiss, fast and urgent.
A short, intense makeout – then he [[twists you around|MALAY-206100 Bend over Kate]] so you're facing the rows and rows of windows in the highrises across the street.
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Gently but firmly, he pushes you down so you're bending over the balcony rail.
<<if $kate.isWearing.includes("knickers")>>\
His fingers curl [[inside the waistband|MALAY-260000 Knickers off]] of your <<= $knickers.description.random()>>.
<<else>>\
[[Wait, have you got a condom?|MALAY-270000 Condom request]]
//[[Grip the rail.|MALAY-290000 Balcony penetration]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-nose-scrunch>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Well..." you shrug. "Okay then." <<if $kate.kinks.includes("submissive")>>You find it hard to resist him.<</if>>
//"Hot,"// he enthuses. Just then, the polite knock repeats itself.
Max nods his head towards the door.
//[[Go answer it.|MALAY-220000 Kate returns inside]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." You shoot him a look, then take a deep breath and go for it.
He slaps your ass as you move past him and [[back into the suite|MALAY-230000 Mirror mirror]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''MAX\'S SUITE''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
As you cross the suite you catch your reflection in a big wall mirror. You look reassuringly hot <<if $kate.isWearing.includes("knickers")>>half-<</if>>naked – all the exercise in the past couple weeks has paid off.
Butterflies pick up in your stomach anyway as you approach the door. You've got no idea who's on the other side, or how they'll react.
//[[Look through the peephole.|MALAY-231000 Peephole]]
[[Open the door a crack.|MALAY-232000 Peek out]]//
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Open the door casually.|MALAY-240000 Reveal][$temp.playerDecision to "openCasually"]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Open the door casually.//</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You peep through the spyhole. Outside is a room service waiter – a burly, potato-faced local you've seen around the hotel a few times this week.
He's waiting with a brightly polished silver drinks trolley.
//[[Open the door a crack.|MALAY-232000 Peek out]]//
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Open the door casually.|MALAY-240000 Reveal][$temp.playerDecision to "openCasually"]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Open the door casually.//</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-231000 Peephole")>>\
You open the door a crack, and peep out. The waiter smiles pleasantly. "Room service, madame."
<<else>>\
You open the door a crack, and peep out. Outside is a room service waiter – a burly, potato-faced local you've seen around the hotel a few times this week.
He smiles at you pleasantly. "Room service, madame."
<</if>>\
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Open the door casually.|MALAY-240000 Reveal][$temp.playerDecision to "openCasually"]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Open the door casually.//</span>
<</if>>\
//[[Take a deep breath and open the door.|MALAY-240000 Reveal][$temp.playerDecision to "openNervously"]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "openCasually">>\
You open the door confidently, a neutral look on your face, as though answering a door <<if $kate.isWearing.includes("knickers")>>in your <<knickers>><<else>>buck naked<</if>> were the most normal thing in the world. "Oh hi," you say casually. "Can you–"
<<elseif $temp.playerDecision == "openNervously">>\
"Hi." You smile nervously, take a deep breath...and open the door.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
His eyes pop wide when he sees you. He takes an involuntary step back, bumping into the drinks trolley and rattling the ice bucket.
[[Whoa, careful!|MALAY-241000 Introductions][$temp.playerDecision to "careful"]]
[[I'm sorry, I didn't mean to embarrass you.|MALAY-241000 Introductions][$temp.playerDecision to "sorry"]]
[[This is humiliating.|MALAY-241000 Introductions][$temp.playerDecision to "humiliated"]]
[[Hahaha!|MALAY-241000 Introductions][$temp.playerDecision to "hahaha"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "careful">>\
<<silently>>
<<emote-brows-raised>>
<</silently>>\
"Whoa, careful there!" You reach out instinctively to help him balance, but the waiter doesn't take it.
<<elseif $temp.playerDecision == "sorry">>\
<<silently>>
<<emote-brows-worried>>
<</silently>>\
"I'm sorry," you say, "I didn't mean to embarrass you!"
<<elseif $temp.playerDecision == "humiliated">>\
<<silently>>
<<emote-brows-attentive>>
<</silently>>\
"This is //so// humiliating," you grumble, <<if $kate.kinks.includes("submissive")>>pretending that it's not turning you on.<<else>>to no one in particular.<</if>>
<<elseif $temp.playerDecision == "hahaha">>\
<<silently>>
<<emote-brows-raised>>
<<emote-mouth-wideSmile>>
<</silently>>\
"I'm sorry." You can't help but laugh at his startled reaction.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
He straightens up, glances up and down the corridor, then back to you. "You're– his voice runs dry and he has to lick his lips and swallow before he can speak. "You...your room service, madame."
//[[Show him in.|MALAY-242000 Come in]]//
<</page>><<silently>>
<<emote-calm>>
<<if $temp.playerDecision == "hahaha">>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You beckon him inside. He wheels the drinks trolley in behind you.
You lead him into the big open-plan suite, Max watching from out on the balcony. The waiter nods to him respectfully, then parks the trolley in the middle of the room.
He lifts the champagne from the ice bucket, showing you the label. "Madame. Perrier Jouët, Grand Brut," he announces, pronouncing it wrong, //zhou-ay.// It's an ordinary, non-vintage champagne, the kind you'd find in a <<if $kate.agency == "cia" or $kate.agency == "csis">>grocery store<<else>>supermarket<</if>>.
[[Thank you.|MALAY-243000 Opening ritual][$temp.playerDecision to "thankYou"]]
[[Lovely!|MALAY-243000 Opening ritual][$temp.playerDecision to "lovely"]]
//[[Nod sagely.|MALAY-243000 Opening ritual][$temp.playerDecision to "nod"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "thankYou">>\
<<silently>>
<<emote-mouth-oh>>
<</silently>>\
"Thank you." You nod with all the dignity a <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>> woman in high heels can muster.
<<elseif $temp.playerDecision == "lovely">>\
<<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
"Lovely!" You smile ingratiatingly, hoping this isn't too excruciating for him. You feel like you might be blushing.
<<elseif $temp.playerDecision == "nod">>\
You nod your acceptance, with all the dignity a <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>> woman in high heels can muster.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
The waiter busies himself serving the champagne. You stand by and watch politely as he works, fumbling with the wire cork cage because he's paying more attention to your body than the task at hand.
This scene would be perfectly normal if you weren't <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>>, in heels, being gazed at by two fully dressed men. //This is what it's going to be like in Bangkok,// you realise. A [[weird mix|MALAY-243100 Popping the cork]] of empowerment and vulnerability.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.kinks.includes("exhibitionist")>>The waiter stares<<else>>Your cheeks redden as the waiter stares<</if>> at your body<<if not $kate.kinks.includes("exhibitionist")>>,<</if>> like he's memorising every single detail...your bare breasts and your <<if $kate.piercings.includes("nipplesSilverBarbells")>>pierced, <</if>>stiff nipples, <<if $kate.tattoos.length gt 1>>your tattoos<<elseif $kate.tattoos.length == 1>>your tattoo<<elseif $kate.piercings.includes("navelSilverBarbell")>>your belly button piercing<<else>>your slender frame<</if>>, <<if $kate.isWearing.includes("knickers")>>the <<= $knickers.description.random()>> he'd like to peel down<<else>>your <<if $kate.bikiniLine == "hollywood">>bare, shaved pussy<<else>>neatly trimmed bush<</if>><</if>>.
The champagne cork suddenly pops, a little quicker than he'd expected. Creamy white fizz seeps out from the finish, trickling down over his hand. He looks at you, abashed. "Sorry madame."
Momentary eye contact, but then his gaze is caught by the gravitational pull of your body again. His tongue flickers nervously across his plump lips. "Will there be anything else?" he asks, staring directly at your tits.
[[No thanks.|MALAY-244000 Settling the bill]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<<if $kate.agency == "cia">>
<<set _priceInRealMoney to "$130">>
<<elseif $kate.agency == "mi6">>
<<set _priceInRealMoney to "£100">>
<<elseif $kate.agency == "asis">>
<<set _priceInRealMoney to "$170">>
<<elseif $kate.agency == "csis">>
<<set _priceInRealMoney to "$160">>
<<elseif $kate.agency == "nzsis">>
<<set _priceInRealMoney to "$180">>
<<else>>
<<set _priceInRealMoney to "ERROR IN PRICEINREALMONEY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "mi6">>"No, thank you."<<else>>"No thanks."<</if>>
He nods slowly and passes you the bill and a pen. It comes to RM550: about _priceInRealMoney. Service is not included.
//[[No tip.|MALAY-245000 Just the tip][$temp.playerDecision to "noTip"]]
[[Normal tip.|MALAY-245000 Just the tip][$temp.playerDecision to "normalTip"]]
[[Big tip.|MALAY-245000 Just the tip][$temp.playerDecision to "bigTip"]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<if $kate.agency == "cia">>
<<set _priceInRealMoney to "$65">>
<<elseif $kate.agency == "mi6">>
<<set _priceInRealMoney to "£50">>
<<elseif $kate.agency == "asis">>
<<set _priceInRealMoney to "$85">>
<<elseif $kate.agency == "csis">>
<<set _priceInRealMoney to "$80">>
<<elseif $kate.agency == "nzsis">>
<<set _priceInRealMoney to "$90">>
<<else>>
<<set _priceInRealMoney to "ERROR IN PRICEINREALMONEY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "noTip">>\
Seeing you <<if $kate.isWearing.includes("knickers")>>topless<<else>>naked<</if>> was enough of a tip. He stares at your body while you scrawl <<if $max.knowsKatesRealName>>a signature<<else>>a signature for "TK Kate cover firstname"<</if>> on the bill.
<<elseif $temp.playerDecision == "normalTip">>\
You write out a 10% tip. He stares at your body while you scrawl <<if $max.knowsKatesRealName>>a signature<<else>>a signature for "TK Kate cover firstname"<</if>> on the bill.
<<elseif $temp.playerDecision == "bigTip">>\
You write out a 50% tip. He stares at your body while you scrawl <<if $max.knowsKatesRealName>>a signature<<else>>a signature for "TK Kate cover firstname"<</if>> on the bill. You don't even think he noticed that you tipped him _priceInRealMoney – oh well, he'll have a nice surprise later.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Goodnight, madame," he says as you see him to the door. "Goodnight." He's staring at your <<if $kate.isWearing.includes("knickers")>>breasts<<else>>crotch<</if>> when you gently close the door on him.
You head back into the room, scoop up the ice bucket and glasses, and carry them [[out onto the balcony|MALAY-250000 Max reaction]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<<set $header.line1 to "''29TH FLOOR BALCONY''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Well, let's hope he's not calling the co–"
You're interrupted by Max practically [[pouncing on you|MALAY-251000 Max kiss]] the moment you step back out into the night air.
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
He pulls you into a kiss, fierce and urgent, his tongue ravishing your mouth, one hand gripping your hair and one on your <<if $kate.braSize == "large">>breasts<<else>>ass<</if>>.
The bulge in his trousers grinds into your belly. The ice in the bucket jingles as he [[moves you around|MALAY-252000 Balcony fuck setup]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A short, intense makeout, during which you're relieved of the ice bucket and the champagne flutes, and manoeuvred back over to the railing.
Max [[twists you around|MALAY-25300 Twisted]] so you're facing the rows and rows of windows in the highrises across the street.
<</page>><<silently>>
<<showRear>>
<<emote-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
With a firm hand, he pushes you down so you're bending over the balcony rail.
<<if $kate.isWearing.includes("knickers")>>\
His fingers curl [[inside the waistband|MALAY-260000 Knickers off]] of your <<= $knickers.description.random()>>.
<<else>>\
[[Wait, have you got a condom?|MALAY-270000 Condom request]]
//[[Grip the rail.|MALAY-290000 Balcony penetration]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He peels $knickers.pronoun down, quick and unceremonious, just stripping $knickers.pronoun off you so you're ready for sex.
You step out of $knickers.pronoun and he tosses $knickers.pronoun aside onto the sunlounger.
[[Wait, have you got a condom?|MALAY-270000 Condom request]]
//[[Grip the rail.|MALAY-290000 Balcony penetration]]//
<<removeKnickers>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Wait," you say, straightening up a little. "Have you got a condo–"
He pushes you firmly back down into position. "Shhh."
[[Condom, Max!|MALAY-280000 Kate insists on protection]]
//[[Be shushed.|MALAY-290000 Balcony penetration]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.kinks.includes("submissive")>>\
It takes some effort not to simply do as you're told, but you manage to plead "Please, Max, condom..."
<<else>>\
"Condom, Max!" you insist.
<</if>>\
"I'll pull out," he promises.
[[Condom or I'm leaving.|MALAY-281000 Condom or I'm gone]]
//[[Reluctantly let him fuck you without protection.|MALAY-290000 Balcony penetration]]//
<</page>><<silently>>
<<set $max.isWearing to ["condom"]>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.kinks.includes("submissive")>>\
"Please Max, use a condom, or I can't go through with this."
<<else>>\
"Condom or I'm leaving," you threaten.
<</if>>\
"Fine, fine." He fumbles around to find a condom, mumbling unhappily to himself in Swedish. You watch over your shoulder as he rolls the latex sheath onto his dick, an unhappy frown letting you know how he feels about this imposition.
<span class="yellowHighlighter">//Condom applied. -1 Sensation, Max +1 Sexual Stamina.//</span>
He moves in close behind you, pushing you [[back down into position|MALAY-290000 Balcony penetration]] with a firm little shove.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<if ndef $max.isWearing>>
<<set $max.isWearing to []>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $max.isWearing.includes("condom")>>\
You grip the railing as Max moves in close behind you. One of his hands is on your <<if $kate.isWearing.includes("suspenderBelt")>>TK suspender/garter belt<<else>>hip<</if>>, the other guiding his erection into your body.
The head slips between your wet lips, an exciting little tingle of contact with his dick encased in thin latex. Then his big, stiff cock's sliding all the way inside you. "Oh yah, good girl."
"Fuck," you exclaim in a quivery little gasp as you're slowly [[filled up|MALAY-300000 Doggy style fuck]], right there on the balcony.
<<elseif hasVisited("MALAY-280000 Kate insists on protection")>>\
<<set $kate.arousal += 1>>\
"But..." you protest weakly. He ignores you, one hand on your <<if $kate.isWearing.includes("suspenderBelt")>>TK suspender/garter belt<<else>>hip<</if>>, the other guiding his naked erection into your body.
The head slips between your wet lips, an exciting little tingle of skin-on-skin contact. Then his big, stiff cock's sliding all the way inside you, bareback. "Oh yah, good girl."
You let out a quivery little gasp as you're slowly [[filled up|MALAY-300000 Doggy style fuck]], right there on the balcony.
<<elseif hasVisited("MALAY-270000 Condom request")>>\
<<set $kate.arousal += 1>>\
<<if $kate.kinks.includes("submissive")>>You feel mildly shocked – you're not sure a man has shushed you since you were a little girl. But you feel a little tingle in your groin as you obediently shut up.<<else>>Feeling mildly shocked – you're not sure a man has shushed you since you were a little girl – you do, nevertheless, stop talking.<</if>>
"Good girl." One of his hands is resting lightly on your <<if $kate.isWearing.includes("suspenderBelt")>>TK suspender/garter belt<<else>>hip<</if>>, the other pats your rump approvingly...then moves onto his bare naked erection, guiding it into your body.
The head slips between your wet lips, an exciting little tingle of skin-on-skin contact. Then his big, stiff cock's sliding all the way inside you...bareback. "Oh yah, good girl."
"Fuck," you exclaim in a quivery little gasp as you're slowly [[filled up|MALAY-300000 Doggy style fuck]], right there on the balcony.
<<else>>\
<<set $kate.arousal += 1>>\
You curl your hands around the railing as he steps in close behind you, one hand resting lightly atop your <<if $kate.isWearing.includes("suspenderBelt")>>TK suspender/garter belt<<else>>hip<</if>>, the other guiding his erect cock into you.
The head slips between your wet lips, an exciting little tingle of skin-on-skin contact. Then his big, stiff cock's sliding all the way inside you, bareback. "Oh yah, good girl."
You let out a quivery little gasp as you're slowly [[filled up|MALAY-300000 Doggy style fuck]], right there on the balcony.
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<<if $kate.agency == "cia">>
<<set _nationell to "amerikan",
_national to "American">>
<<elseif $kate.agency == "mi6">>
<<set _nationell to "engelska",
_national to "English">>
<<elseif $kate.agency == "asis">>
<<set _nationell to "australisk",
_national to "Australian">>
<<elseif $kate.agency == "csis">>
<<set _nationell to "kanadensisk",
_national to "Canadian">>
<<elseif $kate.agency == "nzsis">>
<<set _nationell to "australisk",
_national to "Australian">>
<<else>>
<<set _nationell to "ERROR IN NATIONELL TEMP VAR",
_national to "ERROR IN NATIONAL TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
With his hands on your hips, Max is fucking you – gentle, experimental thrusts that quickly build up to a brisk, satisfying pace.
Your earlier fantasies about being a femme fatale superspy didn't involve being bent over a balcony railing and fucked in front of half the street, but now it's happening you don't want it to stop.
Max's hard, <<if $max.isWearing.includes("condom")>>latex clad<<else>>naked<</if>> shaft thrusts inside you rhythmically, his balls gently thwapping against your clit. They feel slightly prickly, like he shaved them recently, and the sensation makes you gasp and murmur.
"Oh fuck, Gud," Max breathes approvingly. "<div class="tooltip">Din lilla _nationell hora<span class="tooltiptext">You little _national whore</span></div>." You don't speak Swedish but it might mean something like //good girl// – it's the same encouraging tone grown ups used to use when you behaved well.
But then...like you're a bad girl...he [[smacks your ass|MALAY-310000 Sex noises]].
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<<if $kate.agency == "cia">>
<<set _nationell to "Amerikan",
_national to "American">>
<<elseif $kate.agency == "mi6">>
<<set _nationell to "Engelsk",
_national to "English">>
<<elseif $kate.agency == "asis">>
<<set _nationell to "Australisk",
_national to "Australian">>
<<elseif $kate.agency == "csis">>
<<set _nationell to "Kanadensisk",
_national to "Canadian">>
<<elseif $kate.agency == "nzsis">>
<<set _nationell to "Australisk",
_national to "Australian">>
<<else>>
<<set _nationell to "ERROR IN NATIONELL TEMP VAR",
_national to "ERROR IN NATIONAL TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
He pulls your head up by a handful of your hair, making you arch your back and look straight into the windows across the street.
With a hand in your hair and a hand on your hip, Max builds up the pace. Your butt slaps into his groin over and over, his stiff thrusting cock and the prickly //thwap-thwap-thwap// of his balls building up a steady, insistent rhythm of orgasmic tension inside you.
As your pleasure builds, you find your voice, revealing to Max your nature as a //lilla _nationell hora// who's...
[[...demure in bed.|MALAY-320000 Kate finds her voice][$kate.isNoisyInBed to false]]
[[...vocal in bed.|MALAY-320000 Kate finds her voice][$kate.isNoisyInBed to true]]
<</page>><<silently>>
/* npc sexual stamina check TK update this later to reflect arousal, stamina, condom modifiers */
<<set _npcD10 to random(1,10)>> /* npc rolls a d10 */
<<set _npcModifiers to 0>>
<<if $max.isWearing.includes("condom")>>
<<set _npcModifiers += 1>>
<</if>>
<<if $kate.isNoisyInBed>>
<<set $max.stamina -= 1>>
<</if>>
<<set _npcModifiers += $max.stamina>>
<<set _npcModifiers += $max.sexpertise>>
<<set _npcModifiers += $kate.arousal>>
<<if _npcD10 + _npcModifiers gte 6>> /* npc succeeded the performance roll */
<<set _npcIsGoodInBed to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isNoisyInBed>>\
You try to keep the noise down, but it's hard to be reserved when your date is pulling your hair and fucking you hard from behind. You can't stop crying out but you throw a hand over your mouth to muffle yourself, not wanting to bring Max's neighbours out to their balconies.
<span class="greenHighlighter">Max ''loved'' that.</span> <span class="greyHighlighter">Max -1 sexual stamina</span>
<<else>>\
For the next few minutes you try to keep the noise down, demurely expressing yourself in soft gasps and encouraging murmurs while your date pulls your hair and fucks you hard from behind.
<</if>>\
His big, Swedish cock thrusts hard inside you. <<if $kate.braSize == "small">>Your nipples are stiff, your heart is pounding.<<elseif $kate.braSize == "medium">>Your boobs jiggle beneath you, nipples stiff, heart pounding.<<elseif $kate.braSize == "large">>Your big tits jiggle beneath you, nipples stiff, heart pounding.<<else>>(ERROR IN KATE.BRASIZE VAR)<</if>> It feels amazing. If he keeps this up, you're gonna...you're gonna...
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>\
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''Sexual stamina check.'' Max rolls <div class="tooltip">1D10<<if _npcModifiers gte 0>>+<</if>>_npcModifiers<span class="tooltiptext">Max Sexpertise (+1) + Max Stamina (<<if $max.stamina gte 0>>+<</if>>$max.stamina) + $kate.firstName Arousal (<<if $kate.arousal gte 0>>+<</if>>$kate.arousal)<<if $max.isWearing.includes("condom")>> + Condom modifier (+1)<</if>> = _npcModifiers</span></div> to delay orgasm.
Target: 6. Result.......<<= _npcD10 + _npcModifiers >>. \
<<if _npcIsGoodInBed>>\
[[Success.|MALAY-330000 Kate orgasm]]
<<else>>\
[[Failure.|MALAY-340000 Max ND]]
<</if>>\
</div>\
</td>\
</tr>\
</table>\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
/* toss a coin to see if Max came. if we restore the lifepath this should be a Kate Sexpertise roll, but without it why bother, all Kates are mechanically the same now :-( */
<<set _coin to either("heads", "tails")>>
<</silently>>\
<<header>>\
<<page>>\
You can't hold it back. You grip the railing white knuckle tight as an orgasm rushes up inside you.
<<if $kate.isNoisyInBed>>\
"Oh god! Oh fuck-oh //fuck!"// Your <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Aussie<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> accent peals out into the night as \
<<else>>\
"Mmm//mph!"// You throw a hand over your mouth to stifle your cries as \
<</if>> spasms of fulfillment rip through you, your back arched, your pussy pulsing on his hard thrusting shaft as you come.
<<if _coin == "heads">>\
A rush of sensual euphoria washes through your whole body. When it subsides and your senses return, you're surprised to feel Max pulling out of you. Twisting round, you realise that he came, too: <<if $max.isWearing.includes("condom")>>the tip of the condom bulges with his sperm.<<else>>sperm trickles from the tip of his cock, and you realise that the wetness in your pussy isn't all yours.<</if>>
[[Wow, that was great.|MALAY-350000 That was great]]
<<else>>\
A rush of sensual euphoria washes through your whole body. Gradually it subsides, and your senses return. Max's cock is still rock hard and it's still [[inside you|MALAY-331000 Max's turn]].
<</if>>\
<</page>><<silently>>
<<set $avatar.blink to true>>
<<avatar-expr-removeEyelid-closed>>
<<avatar-expr-eyebrows-raised>>
<<avatar-expr-eyes-normal>>
<<avatar-expr-mouth-sexy>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
With your orgasm crossed off the to-do list, Max grabs hold of your hips and starts fucking you again, pushing and pulling you back and forth on his cock.
His movements feel different, more precise – shallow strokes instead of deep ones, just rocking your pussy backwards and forwards on the tip of his dick. It's less like sex, more like he's using you to masturbate. "Såja..." he murmurs throatily. "Såja, just like that..."
//Crack.// He slaps your ass. //Crack. Crack.//
<<if $kate.kinks.includes("masochist")>>\
You murmur approvingly, enjoying the [[sharp sting|MALAY-332000 Max spanking orgasm]].
<<else>>\
It stings, but it's also kind of invigorating, and smacking your ass seems to [[reenergise Max|MALAY-332000 Max spanking orgasm]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He starts fucking you with renewed vigour, fast little thrusts in your pussy, stingy little slaps raining down on your tight <<if $kate.agency == "cia" or $kate.agency == "csis">>butt<<else>>bum<</if>>.
It's a first date...and you're being fucked and spanked over a balcony, in public. But it doesn't last long. Behind you, Max's rhythmic grunts turn into jagged breaths and little moans. His fingertips [[dig into your hips|MALAY-333000 Internal orgasm]] tight. "<div class="tooltip">Jävla hel<span class="tooltiptext">Fucking hell</span></div>..." he groans.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Max moans as <<if $max.isWearing.includes("condom")>>he fills the condom<<else>>his cock twitches and squirts<</if>> inside you. You ride him for a few more strokes, gradually slowing to a halt.
He pulls out, leaving <<if $max.isWearing.includes("condom")>>you feeling suddenly empty<<else>>your pussy flooded with his cum<</if>>.
[[Wow, that was great.|MALAY-350000 That was great]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Behind you, Max's rhythmic grunts turn into jagged breaths and little moans. "Åh...oh...//<div class="tooltip">skit<span class="tooltiptext">shit</span></div>..."// His fingertips dig into your hips tight. "<div class="tooltip">Jävla hel<span class="tooltiptext">Fucking hell</span></div>..." he groans.
//[[Did he just...|MALAY-341000 Max ND confirmation]]//
<</page>><<silently>>
<<showFront>>
<<emote-calm>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
You twist round, surprised, as his thrusting slows and stops. "Ah shit...sorry," he says.
Max pulls out of you, <<if $max.isWearing.includes("condom")>>the tip of the condom bulging with his sperm.<<else>>sperm trickling from the tip of his cock, and you realise that the wetness in your pussy isn't all yours.<</if>>
[[It's okay.|MALAY-342000 Kate ND reaction][$temp.playerDecision to "itsOk"]]
[[Um...seriously?|MALAY-342000 Kate ND reaction][$temp.playerDecision to "seriously"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "itsOk">>\
"Oh! Um, it's okay," you tell him. //Fuck, I was getting close.//
<<elseif $temp.playerDecision == "seriously">>\
"Um...seriously?" //Fuck, I was getting close.//
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Sorry." He grins sheepishly. "This doesn't normally happen to me." He looks around the street. "Let's go inside, I'll make it up to you."
[[Okay.|MALAY-343000 Max makes a promise][$temp.playerDecision to "okay"]]
[[You better.|MALAY-343000 Max makes a promise][$temp.playerDecision to "youBetter"]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-naughty>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "okay">>\
"Okay," you smile.
<<elseif $temp.playerDecision == "youBetter">>\
"You better," you grin.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
With that, your quicky on the balcony is over. You head back into the suite, <<if $max.isWearing.includes("condom")>>a sheepish Swede in tow.<<else>>conscious that the shot of cum he deposited in your pussy is going to trickle down your thighs soon.<</if>>
[[Be right back.|MALAY-360000 Bathroom break]]
<</page>><<silently>>
<<showFront>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-brows-raised>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
With that...your quicky on the balcony's over. "Wow," you breathe as you straighten up, feeling a little flustered. "That was great."
"Jä. Sheesh. You <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> girls sure know how to thank a guy for dinner."
[[Hey!|MALAY-351000 Let's go inside][$temp.playerDecision to "hey"]]
//[[Laugh.|MALAY-351000 Let's go inside][$temp.playerDecision to "haha"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "hey">>\
<<silently>>
<<emote-brows-naughty>>
<</silently>>\
"Hey!" you object. He laughs when you thwack him on the arm.
<<elseif $temp.playerDecision == "haha">>\
<<silently>>
<<emote-mouth-smirk>>
<</silently>>\
You giggle good-naturedly.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Come on," he says, "let's go inside." He pretends to be addressing the neighbours. "Show's over, everyone."
You head back into the suite, <<if $max.isWearing.includes("condom")>>a sexually satisfied Swede in tow.<<else>>conscious that the shot of cum he deposited in your pussy is going to trickle down your thighs soon.<</if>>
[[Be right back.|MALAY-360000 Bathroom break]]
<</page>><<silently>>
<<emote-calm>>
<<if not hasVisited("MALAY-340000 Max ND")>>
<<emote-chest-flush>>
<<emote-cheeks-blush>>
<</if>>
<<emote-mouth-oh>>
<<set $header.line1 to "''MAX\'S SUITE''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Be right back," you tell him, and head to his bathroom to freshen up.
<<image "/locationPhotos/malaysia/maxBathroom.jpg" 120 1000 500 0>>\
//Clonk, clonk, clonk// go your heels on the amber marble floor. Your reflection in the mirror has a sexy, just-been-fucked look.
//[[Freshen up.|MALAY-361000 Freshen up]]//
<</page>><<silently>>
<<emote-calm>>
<<if not hasVisited("MALAY-340000 Max ND")>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $max.isWearing.includes("condom")>>\
You fix your hair and freshen up.
<<else>>\
You use a wad of <<if $kate.agency == "mi6">>loo<<else>>toilet<</if>> paper to mop up Max's cum, and flush it away.
<</if>>\
//[[Return to the suite.|MALAY-370000 Return to the suite]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $max.isHacked>>\
Max is sitting on his bed, playing with his phone. "Hey sexy," he smiles up as you approach.
[[Ready for Round 2?|MALAY-420000 Ready for Round 2?]]
<<else>>\
"My turn." Max heads into the en suite now you've vacated it.
You wander over to the bed to sit down and kick off your heels – //and see his phone.// It's right there on the nightstand, plugged into the charger!
//[[Get the hack drive.|MALAY-380000 Retrieving the hack drive]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<if not hasVisited("MALAY-340000 Max ND")>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
//Thirty seconds! Where's my bag? Fuck!//
You spot it and grab it, popping it open and fumbling inside for the hack drive.
//Got it!//
//[[Hack Max's phone.|MALAY-381000 Fitting the hack drive]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
You hop onto the bed and crawl quickly over to Max's side.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $max.isHacked to true>>
In one quick fluid move you tug out the charger cable, and plug in the hack drive. It [[vibrates once|MALAY-382000 Hacking in progress]] to indicate it's working...
<<else>>
You yank out the charger cable, and plug in the hack drive. It [[vibrates once|MALAY-382000 Hacking in progress]] to indicate it's working...
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div> to pull off the hack.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
//C'mon, c'mon...//
You stare down at the little device, willing it to work faster. There's no indication it's doing anything, but you know from training you just need to wait.
//Oh god come on...//
You never had a training situation quite like this...naked on your knees and elbows on some guy's bed, ears straining for a warning of his return. He's just next door...fucking come //on!//
//[[Wait for the hack drive...|MALAY-383000 Toilet flush]]//
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _yourCommsAgency to "NSA",
_commsAgencyDescription to "National Security Agency">>
<<elseif $kate.agency == "mi6">>
<<set _yourCommsAgency to "GCHQ",
_commsAgencyDescription to "Government Communications Headquarters">>
<<elseif $kate.agency == "asis">>
<<set _yourCommsAgency to "ASD",
_commsAgencyDescription to "Australian Signals Directorate">>
<<elseif $kate.agency == "csis">>
<<set _yourCommsAgency to "CSEC",
_commsAgencyDescription to "Communications Security Establishment">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCommsAgency to "GCSB",
_commsAgencyDescription to "Government Communications Security Bureau">>
<<else>>
<<set _yourCommsAgency to "ERROR IN YOURCOMMSAGENCY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The <<if $kate.agency == "mi6">>loo<<else>>toilet<</if>> flushes next door. You must only have moments left. //Why is this taking so fucking long?//
Then...//finally...//the hack drive vibrates twice. That's it; the phone will automatically back itself up to <<if _yourCommsAgency[0] == "A" or _yourCommsAgency[0] == "N">>an<<else>>a<</if>> <div class="tooltip">_yourCommsAgency<span class="tooltiptext">_commsAgencyDescription</span></div> server over the next few hours. The job <<Wheeler>> gave you is done.
<span class="greenHighlighter">//Secondary mission complete.//</span>
<<if $max.isHacked>>\
//[[Put everything back in place.|MALAY-384000 Which way up]]
<<else>>\
//[[Put everything back in place.|MALAY-390000 Caught!]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You switch the hack drive for the charger cable, and...realise you don't remember if the phone was face up or face down when you picked it up. //Shit,// that's an amateur mistake! The booze must be slowing you down...what should you do?
//[[Put it back, screen side up.|MALAY-385000 Mission complete][$temp.playerDecision to "faceUp"]]
[[Put it back, screen side down.|MALAY-385000 Mission complete][$temp.playerDecision to "faceDown"]]
[[Try to remember which way up it was.|MALAY-390000 Caught!]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Indecision can be worse than making the wrong decision. You set the phone down, screen side <<if $temp.playerDecision == "faceUp">>up<<else>>down<</if>>, and [[scamper back to your side of the bed|MALAY-385100 Looking innocent]].
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
//Just in time.// Max steps out of the bathroom just as you're popping the hack drive back into your <<handbag>>.
"Hey sexy," he grins. You smile up innocently.
[[Ready for Round 2?|MALAY-420000 Ready for Round 2?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-384000 Which way up")>>\
//''Think,'' $kate.firstName.// It was face up; you're pretty sure it was face up. You set it down the correct way and...
<<else>>\
You unplug the hack drive and palm it. //Fuck...//the charger cable went down the side of the nightstand. It takes just a second for you to lean down and retrieve it. You plug it in and...
<</if>>\
"What are you doing with my phone?"
//[[Whirl around.|MALAY-400000 What are you doing with my phone?]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You spin around and your stomach lurches. Max is back in the room, staring at you with a furrowed brow.
"Hmm?" you ask innocently.
"What are you doing with my phone?" he repeats. All of a sudden his height and strength aren't sexy at all. They're frightening, and they're between you and the exit.
Naked, caught in the act, you feel absurdly vulnerable.
"Oh, I was just..." //Fuck fuck fuck. This had better be good.//
[[...checking the time.|MALAY-401000 Innocent excuse]]
[[...taking a selfie for you.|MALAY-410000 Taking a selfie]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"...checking the time," you say brightly.
"There's a clock right there." Max points to the alarm clock. "Seriously...what's going on?"
//[[Throw out an aggressive counteraccusation.|MALAY-402000 Counteraccusation]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-rogerMoore>>
<<emote-mouth-upset>>
<</silently>>\
<<header>>\
<<page>>\
"Fine!" you snap. "I was just checking to see if your //wife// had texted! Remember her?"
"Huh?" he looks genuinely confused. "What...why would...huh?"
"Don't you even give a //shit// about what we just did?" You jump off the bed and storm out to the balcony for your dress...the hack drive concealed in your hand.
[[Tonight was a big mistake!|MALAY-403000 Big mistake]]
<</page>><<silently>>
<<emote-brows-frown>>
<</silently>>\
<<header>>\
<<page>>\
"I shouldn't have come back here with you, Max," you cry, with all the anger you can muster. "This was a big mistake!"
"<<if $max.knowsKatesRealName>>$kate.firstName<<else>>(TK COVERFIRSTNAME)<</if>>," he says, following you out onto the balcony, "you're freaking out, calm dow–"
[[DON'T tell me to calm down!|MALAY-404000 Don't tell me to calm down]]
<</page>><<silently>>
<<emote-mouth-open>>
<<if $temp.kateWasWearing == "wineMultiStrapGown">>
<<wear-dress-wineMultiStrapGown>>
<<elseif $temp.kateWasWearing == "cherryRedFishtailGown">>
<<wear-dress-cherryRedOffTheShoulderFishtailGown>>
<<elseif $temp.kateWasWearing == "blackCutOutGown">>
<<wear-dress-blackOneShoulderCutOutThighSlitGown>>
<</if>>
<<set $header.line1 to "''29TH FLOOR BALCONY''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
"DON'T tell me to calm down!" you shriek. "Go to hell!"
You push past him and storm out of the room, leaving a very confused one night stand behind you as you march down the empty hotel corridor, as fast as your heels will carry you.
//[[Fuck...gotta get away!|MALAY-405000 Messy]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-pout>>
<<set $header.line1 to "''CORRIDORS''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You scuttle for the staircase instead of the <<lift>>, not wanting to risk him coming out after you and finding you in the hallway.
You rush down two flights of stairs as fast as you can. You don't //think// you're being followed. //Fuck...did I just get away with it?//
Your heart's pounding. It's not until you get back inside your room and close the door tight that you're able to breathe [[a big sigh of relief|MALAY-406000 Post mission reflection]].
<</page>><<silently>>
<<set $header.line1 to "''ROOM 2512''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<if $kate.agency == "cia">>
<<set _yourCommsAgency to "NSA",
_commsAgencyDescription to "National Security Agency">>
<<elseif $kate.agency == "mi6">>
<<set _yourCommsAgency to "GCHQ",
_commsAgencyDescription to "Government Communications Headquarters">>
<<elseif $kate.agency == "asis">>
<<set _yourCommsAgency to "ASD",
_commsAgencyDescription to "Australian Signals Directorate">>
<<elseif $kate.agency == "csis">>
<<set _yourCommsAgency to "CSEC",
_commsAgencyDescription to "Communications Security Establishment">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCommsAgency to "GCSB",
_commsAgencyDescription to "Government Communications Security Bureau">>
<<else>>
<<set _yourCommsAgency to "ERROR IN YOURCOMMSAGENCY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
That was messy...very messy. Your psycho chick act threw him off balance enough for you to get out of there – but he might still be suspicious about what you were doing with his phone, especially if he thinks this through later and puts two and two together.
If he reports the event to his company, they'll have him switch the phone off until they can examine it. And the data transfer to <div class="tooltip">_yourCommsAgency<span class="tooltiptext">_commsAgencyDescription</span></div> is pretty slow: in the end, your hack might turn out to be short-lived, or incomplete.
But still...you did it. And you got out in one piece. Now you just need to make sure you don't bump into Max again before you [[check out in the morning|MALAY-440000 Get some sleep]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"...taking a selfie!" you venture.
"Seriously? Like //that?"//
[[Uh huh.|MALAY-411000 Max approves]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Uh huh." You smile brightly.
<span class="greenHighlighter">Max ''loved'' that.</span>
"<div class="tooltip">Jävla hel<span class="tooltiptext">Fucking hell</span></div>..." he murmurs. "That's //hot."// He approaches eagerly, and scoops up his phone. "Let's do a couple," he says, holding it up at a high angle above you. "Smile..."
[[Wait, not my face.|MALAY-412000 Modelling for Max][$temp.playerDecision to "notMyFace"]]
//[[Smile for the camera.|MALAY-412000 Modelling for Max][$temp.playerDecision to "smile"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "notMyFace">>\
<<silently>>
<<emote-mouth-sexy>>
<</silently>>\
"Wait, not my fa-"
The shutter sound clicks and the flash goes off right in your eyes. //Too slow.// "Sorry, I'll delete that one later."
He angles the phone down and snaps a few shots of him pawing and fondling your boobs with his free hand. //Click, flash! Click, flash! Click, flash!//
"Oh jä, this is //hot,"// he murmurs. Looks like your little ruse worked. The camera and his hand move down your body to your crotch, a fingertip slipping between your labia. //Click, flash!//
//[[Spread your legs.|MALAY-412100 Legs spread]]//
<<elseif $temp.playerDecision == "smile">>\
<<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-eyes-squint>>
<</silently>>\
You smile sexily up into his phone. //Click, flash! Click, flash! Click, flash!// You pose sexily on the edge of the bed, sucking in your stomach and arching your back for the most flattering poses.
"Oh jä, this is //hot,"// he murmurs. Looks like your ruse worked. //Men!// "Turn around, let me get your ass."
//[[Turn around for the ass shot.|MALAY-413000 Ass shot]]//
<<else>>\
(FATAL ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You spread apart your legs so he can get better access. //Click, flash! Click, flash! Click, flash!// Holding his phone up to your crotch, he snaps a series of shots of his forefinger slipping back and forth in your pussy.
Then he adds another finger. You gasp and contort your face as two big masculine fingers sink deeply up inside you, right up to the knuckles. //Click, flash! Click, flash! Click, flash!//
//[[Get fingered and photo'd.|MALAY-412200 Fingerbang photoshoot]]//
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _yourCommsAgency to "NSA",
_commsAgencyDescription to "National Security Agency">>
<<elseif $kate.agency == "mi6">>
<<set _yourCommsAgency to "GCHQ",
_commsAgencyDescription to "Government Communications Headquarters">>
<<elseif $kate.agency == "asis">>
<<set _yourCommsAgency to "ASD",
_commsAgencyDescription to "Australian Signals Directorate">>
<<elseif $kate.agency == "csis">>
<<set _yourCommsAgency to "CSEC",
_commsAgencyDescription to "Communications Security Establishment">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCommsAgency to "GCSB",
_commsAgencyDescription to "Government Communications Security Bureau">>
<<else>>
<<set _yourCommsAgency to "ERROR IN YOURCOMMSAGENCY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You lie back on the bed, legs apart, propped up on your elbows while Max finger fucks you with one hand and takes close-ups with the other. It feels pretty good, if a little detached and gynecological – this is definitely a "guy sex" thing, but it's not terrible, and from the intense look on his face he's loving it.
At least you distracted him from the...//oh my god that phone is hacked.// Every photo he's taking is being uploaded to <div class="tooltip">_yourCommsAgency<span class="tooltiptext">_commsAgencyDescription</span></div> as part of the payload. //Click, flash! Click, flash! Click, flash!//
//[[Oh fuck!|MALAY-412300 Oh fuck]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
You always check the photos on a hacked phone, always. They're an excellent source of intel on a subject – where he's been, who he was with...what she looks like with her legs spread apart, being fingerfucked after a first date. //Oh fuck!// <<Wheeler>> will definitely see this. Even if Max hadn't caught that shot of your face, it's obviously you.
"Oh jä, you like that, huh?" Mistaking the sudden tension in your body as a sign that your orgasm's near, Max tosses the phone aside, and casually climbs onto the bed between your legs. His cock's out and back at full attention. He thrusts it back inside you, <<if $max.isWearing.includes("condom")>>not bothering with a condom this time. You're so stunned you barely notice.<<else>>penetrating you completely<</if>>. "Oh jä," he gasps breathily. "<div class="tooltip">Lilla slyna<span class="tooltiptext">Little slut</span></div>."
//[[Oh my god.|MALAY-412400 Passive fuck]]//
<</page>><<silently>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Max fucks you hard for the next couple of minutes. You just lie there passively, your mind racing while you try to work out how damaging this will be. <<Wheeler>> will definitely see the photos, and there's no way of knowing how he'll react.
Maybe he'll cover it up for you...or maybe he'll report it. //Oh my god.// The thought of being called into <<if $kate.agency == "cia">>Jack <<Colby>>'s<<elseif $kate.agency == "mi6">>Sir James <<Greenwood>>'s<<elseif $kate.agency == "asis">>Jim <<McKenzie>>'s<<elseif $kate.agency == "csis">>Adam <<McKenzie>>'s<<elseif $kate.agency == "nzsis">>Mark <<McKenzie>>'s<<else>>ERROR IN KATE.AGENCY VAR<</if>> office to explain your nudes is a vivid mental image that...
Your orgasm hits you out of nowhere, Max's thrusting cock suddenly making you [[cry out noisily|MALAY-412500 Post orgasmic chill]] in a shocking rush of emotional and physical intensity.
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Where the hell did that come from?// You feel dazed and <<if $kate.agency == "cia" or $kate.agency == "csis">>disoriented<<else>>disorientated<</if>>.
Max comes in you a second time, shortly afterwards, and you end up sprawled side-by-side on the bed, fingers entwined – you naked, his clothes in disarray.
"That was fucking //intense,"// he finally murmurs. He leans in and kisses your cheek. "Wow. You are something else in bed, you know that?"
[[Thanks.|MALAY-412600 U ok hun?][$temp.playerDecision to "thanks"]]
[[You too.|MALAY-412600 U ok hun?][$temp.playerDecision to "youToo"]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "thanks">>\
"Thanks," you murmur absently.
<<elseif $temp.playerDecision == "youToo">>\
"You too," you murmur absently.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"You okay?" he asks.
"Yeah!" you smile at him, forcing yourself back into the moment. "Sorry. Just a little woah."
"Heh, I know what you mean," he grins, even though you didn't really know what you meant. "That was incredible. Oh man, it's [[too bad|MALAY-430000 Post orgasmic chill]] you're flying out tomorrow..."
<</page>><<silently>>
<<showRear>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You obediently shift around on the bed, posing on all fours with your ass up to the camera. "Like this?"
"Fuck, jä." //Click, flash! Click, flash! Click, flash!// "Now stay like that, but turn round. Crawl round."
//[[Follow the directions.|MALAY-412600 It won't suck itself]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You turn around on the bed so you're on all fours and facing him. //Click, flash!// Right in your face. Then his free hand unzips his <<trousers>>, and brings his half-erect cock out, inches from your mouth.
//[[Suck it.|MALAY-412700 BJ photoshoot]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You close your eyes and <<if hasVisited("MALAY-99000 Balcony BJ")>>take his cock back into your mouth<<else>>take his cock in your mouth for the first time<</if>>. It's soft and squidgy at first, and slips out of your mouth a couple of times; Max just shoves it back in, and soon you feel it [[stiffening up against your lips and tongue|MALAY-412800 BJ photoshoot 2]].
<</page>><<silently>>
<<emote-mouth-blowjob>>
<<if $kate.agency == "cia">>
<<set _yourCommsAgency to "NSA",
_commsAgencyDescription to "National Security Agency">>
<<elseif $kate.agency == "mi6">>
<<set _yourCommsAgency to "GCHQ",
_commsAgencyDescription to "Government Communications Headquarters">>
<<elseif $kate.agency == "asis">>
<<set _yourCommsAgency to "ASD",
_commsAgencyDescription to "Australian Signals Directorate">>
<<elseif $kate.agency == "csis">>
<<set _yourCommsAgency to "CSEC",
_commsAgencyDescription to "Communications Security Establishment">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCommsAgency to "GCSB",
_commsAgencyDescription to "Government Communications Security Bureau">>
<<else>>
<<set _yourCommsAgency to "ERROR IN YOURCOMMSAGENCY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The shutter sound click on his phone punctuates the soft, sensual slurping and sucking noises of the blowjob Max is capturing.
Soon he's fully hard again, and you're ready to...//oh my god that phone is hacked.// Every photo he's taking is being uploaded to <div class="tooltip">_yourCommsAgency<span class="tooltiptext">_commsAgencyDescription</span></div> as part of the payload. //Click, flash! Click, flash! Click, flash!//
//[[Oh fuck!|MALAY-412900 Oh fuck]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
You always check the photos on a hacked phone, always. They're an excellent source of intel on a subject – where he's been, who he was with...what she looks like on all fours sucking cock after a first date. //Oh fuck!// <<Wheeler>> will definitely see this.
"That was hot." Taking your shocked pause as a sign the blowjob's over, Max tosses the phone aside, and climbs onto the bed, manoeuvring around behind you. He casually slides his erection back inside you, <<if $max.isWearing.includes("condom")>>not bothering with a condom this time. You're so stunned you barely notice.<<else>>penetrating you completely<</if>>. "Oh jä," he gasps breathily, his hands gripping your hips. "<div class="tooltip">Lilla slyna<span class="tooltiptext">Little slut</span></div>."
//[[Oh my god.|MALAY-413000 Passive doggystyle]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-pout>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Max fucks you hard, doggystyle, for the next couple of minutes. You just take it passively, your mind racing while you try to work out how damaging this will be. <<Wheeler>> will definitely see the photos, and there's no way of knowing how he'll react.
Maybe he'll cover it up for you...or maybe he'll report it. //Oh my god.// The thought of being hauled into <<if $kate.agency == "cia">>Jack <<Colby>>'s<<elseif $kate.agency == "mi6">>Sir James <<Greenwood>>'s<<elseif $kate.agency == "asis">>Jim <<McKenzie>>'s<<elseif $kate.agency == "csis">>Adam <<McKenzie>>'s<<elseif $kate.agency == "nzsis">>Mark <<McKenzie>>'s<<else>>ERROR IN KATE.AGENCY VAR<</if>> office to explain your nudes is a vivid mental image that...
Your orgasm hits you out of nowhere, Max's thrusting cock suddenly making you [[cry out noisily|MALAY-412500 Post orgasmic chill]] in a shocking rush of emotional and physical intensity.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Ready for Round 2?" you ask.
"In a minute!" he laughs. "I'm not twenty anymore."
[[Hm, maybe I can help...|MALAY-421000 Gentle persuasion]]
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Hm, maybe I can help..."
On the bed you peel Max out of his clothes. His dick is at rest...but it slowly stirs back to life in your mouth.
After a few minutes of your patient and gentle ministrations, his cock is ready to go again...not quite the diamond cutter it was on the balcony, but you're proud of [[coaxing it back to hardness|MALAY-422000 Round 2]] anyway.
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
When he's hard you have sex with him again, this time in the comfort of an actual bed. Indoors feels much more private, even though the lights are on and the floor-to-ceiling windows are just a few feet away. If anyone really was watching you from across the street, the show's not necessarily over.
<<if not hasVisited("MALAY-340000 Max ND")>>\
It's a gentler affair than it was on the balcony, less fast and passionate, but more [[sensual and intimate|MALAY-430000 Post orgasmic chill]] because of that.
<<else>>\
It's a gentler affair than it was on the balcony, less fast and passionate, but more sensual and intimate because of that. This time, he's able to last long enough to [[make you come|MALAY-430000 Post orgasmic chill]].
<</if>>\
<</page>><<silently>>
<<removeShoes>>
<<emote-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
You lie around with Max for a while longer, drinking the champagne and chilling out in relaxed post-coital intimacy. He invites you to stay the night, but you tell him you can't – you've got an early flight tomorrow.
Of course, he assumes you're going home, but in reality you're flying on to Bangkok. You gather your things and take a quick walk of shame [[down to your room|MALAY-440000 Get some sleep]].
<</page>><<silently>>
<<set $header.line1 to "''ROOM 2512''",
$header.line2 to "MANDARIN ORIENTAL / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-top-vsHenleySleepTank>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("MALAY-412000 A week without Max")>>\
Knowing this will be your last night in a 5 star hotel bed for a while, you get an early night to make the most of it. Your [[flight to Thailand|MALAY-441000 Next morning]] is tomorrow.
<<else>>\
//What a night.// <<if hasVisited("MALAY-412000 Modelling for Max")>>You can't worry about the photos thing now, you'll just have to deal with the fallout when it comes. <</if>>You manage to grab a few hours sleep before [[your flight tomorrow|MALAY-441000 Next morning]].
<</if>>\
<</page>><<page>>\
//[[NEXT MORNING...|MALAY-442000 Leaving Malaysia]]//
<</page>><<silently>>
<<set $header.line1 to "''KUALA LUMPUR INT\'L AIRPORT (KUL)''",
$header.line2 to "MALAYSIA / APRIL 2018">>
<<if $kate.agency == "cia">>
<<set _atRecruitHQ to "at the Farm">>
<<elseif $kate.agency == "mi6">>
<<set _atRecruitHQ to "at Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set _atRecruitHQ to "on Swan Island">>
<<elseif $kate.agency == "csis">>
<<set _atRecruitHQ to "at Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set _atRecruitHQ to "at Papakura Camp">>
<</if>>
<<if $kate.agency == "cia">>
<<set _yourCommsAgency to "NSA",
_commsAgencyDescription to "National Security Agency">>
<<elseif $kate.agency == "mi6">>
<<set _yourCommsAgency to "GCHQ",
_commsAgencyDescription to "Government Communications Headquarters">>
<<elseif $kate.agency == "asis">>
<<set _yourCommsAgency to "ASD",
_commsAgencyDescription to "Australian Signals Directorate">>
<<elseif $kate.agency == "csis">>
<<set _yourCommsAgency to "CSEC",
_commsAgencyDescription to "Communications Security Establishment">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCommsAgency to "GCSB",
_commsAgencyDescription to "Government Communications Security Bureau">>
<<else>>
<<set _yourCommsAgency to "ERROR IN YOURCOMMSAGENCY TEMP VAR">>
<</if>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-shorts-blackDenimDaisyDukes>>
<<wear-top-rustVNeckShortCrinkleSleevedTop>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-bigBlackSunglasses>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $avatar.background.pushUnique("agency/20_airportLoungeWindow-both")>>
<<set $avatar.background.pushUnique("malaysia/22_greenBackpackOnGround-both")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/klAirport.jpg" 100 1000 550 0>>\
Next morning, you check out of the Mandarin Oriental, and get a taxi to the airport.
<<if hasVisited("MALAY-412000 A week without Max")>>\
It's been a packed, but relaxing week: you feel ready for the mission ahead.
<<elseif hasVisited("MALAY-79000 Kate returns to her room alone") and not $max.isHacked>>\
It's too bad your mission for <<Wheeler>> didn't work out. But at least you had a memorable last night in Malaysia. Now it's time to focus on the mission ahead.
<<elseif hasVisited("MALAY-405000 Messy")>>\
It's a relief to slip out of the hotel without seeing Max again. You're worried that the hack won't last long, but at least you did it. Now it's time to focus on the mission ahead.
<<elseif hasVisited("MALAY-79000 Kate returns to her room alone") and $max.isHacked>>\
<<set $kate.hackedMaxsPhone to true>>\
You feel like you did a stellar job for <<Wheeler>>. Hacking Max's phone right there at the table took improvisation and daring; you think your instructors back _atRecruitHQ would be proud of you.
<<elseif hasVisited("MALAY-385000 Mission complete")>>\
<<set $kate.hackedMaxsPhone to true>>\
Last night was pretty wild. <<Wheeler>> probably wouldn't approve of how far you went with Max; but you successfully hacked SAAB, and that's pretty badass. That thirty seconds on Max's bed, waiting for the hack drive, was flat out nervewracking; too bad you can't tell anyone about it.
<<elseif hasVisited("MALAY-410000 Taking a selfie")>>\
<<set $kate.hackedMaxsPhone to true>>\
Last night got very messy. You successfully hacked Max's phone – but Wheeler's definitely going to see about twenty photos of you, naked and <<if hasVisited("MALAY-412200 Fingerbang photoshoot")>>getting fingered<<else>>sucking cock<</if>>, when he checks the product. All you can hope is that he'll be discreet.
<<elseif hasVisited("MALAY-401000 Innocent excuse")>>\
<<set $kate.hackedMaxsPhone to true>>\
Last night got messy. You have a feeling that the hack might not last long – but hopefully there's something in there that Wheeler will find useful.
<<elseif $max.isHacked>>\
<<set $kate.hackedMaxsPhone to true>>\
Last night was pretty wild. Hacking Max's phone right there at the table took improvisation and daring; you think your instructors back _atRecruitHQ would be proud of you.
They probably wouldn't approve of you then going on to have //sex// with the target...but it's not like it interfered with the mission.
<<else>>\
You're worried about what happened last night: you just don't know how to deal with the fact that there are now some pretty explicit nudes of you floating around Malaysia Station and <div class="tooltip">_yourCommsAgency<span class="tooltiptext">_commsAgencyDescription</span></div>. Is it possible nothing will come of it?
<</if>>\
<<if hasVisited("MALAY-412000 Modelling for Max")>>It's making you sick to think about. Anyway, your<<else>>Your<</if>> acclimatisation phase is done. <<if hasVisited("MALAY-412000 Modelling for Max")>>At least that went well; in<<else>>In<</if>> the last seven days you transformed yourself from a desk jockey with a computer screen tan, to a [[bronzed backpacking babe|MALAY-442000 Now boarding]] who won't wilt in the heat.
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<set $avatar.background.delete("agency/20_airportLoungeWindow-both")>>
<<set $avatar.background.delete("malaysia/22_greenBackpackOnGround-both")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/malaysia/thairAirwaysPlane.jpg" 180 1000 500 0>>\
You board a Thai Airways Boeing 787 Dreamliner, settling into an economy class seat between two middle-aged Asian men.
As the plane taxis on the runway, you feel a sense of trepidation, and excitment. Bangkok is just [[two hours|WELBANG-1000 Title card]] away...
<</page>><<silently>>
<<set $inverness to {}>>
<<set $header.line1 to "''A96 HIGHWAY''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<<if $kate.agency == "cia">>
<<set _aForeignGirl to "an American girl",
_nationality to "American">>
<<elseif $kate.agency == "mi6">>
<<set _aForeignGirl to "an English girl",
_nationality to "English">>
<<elseif $kate.agency == "asis">>
<<set _aForeignGirl to "an Aussie girl",
_nationality to "Aussie">>
<<elseif $kate.agency == "csis">>
<<set _aForeignGirl to "a Canadian girl",
_nationality to "Canadian">>
<<elseif $kate.agency == "nzsis">>
<<set _aForeignGirl to "a Kiwi",
_nationality to "Kiwi">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The safehouse is in Inverness, the nearest city. It's about a 45-minute drive on a long country highway; miles and miles of farmers' fields rolling past on both sides.
Sometimes traffic builds up behind a slow-moving <<if $kate.agency == "cia" or $kate.agency == "csis">>truck<<else>>lorry<</if>> or tractor, but the BMW's noisy, powerful engine lets you slip past quickly and easily. This car handles like a dream.
The journey gives you some time to think through your <div class="tooltip">snap cover<span class="tooltiptext">A spy's cover story, invented at short notice</span></div> for later – who are you going to be tonight, and what's _aForeignGirl doing on her own in Inverness anyway?
<<link "I'm here on business." "BARNONE-1100 Sales rep">><</link>>
<<link "I'm a tourist, visiting Loch Ness." "BARNONE-1200 Tourist">><</link>>
<<link "I'm a corporate flight attendant, on a stopover." "BARNONE-1300 Flight attendant">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Business travel's a straightforward cover. It gives you a good reason to be in a bar on your own, with no friends, like a total loser.
//Hey, I have friends outside work,// you remind yourself. It's just you haven't seen them in a while, that's all.
//Focus, $kate.firstName.// You think through some things you need to support the snap cover – maybe some different clothes from the ones you packed. Also you should research what industries are big here, and...
<<include "BARNONE-1400 Blue lights">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Tourist is a simple cover; easy to pull off and easy to explain. It also gives you a good reason to be in a bar on your own, with no friends, like a total loser.
//Hey, I have friends outside work,// you remind yourself. It's just you haven't seen them in a while, that's all.
//Focus, $kate.firstName.// You don't need much to support this snap cover, but it might be nice to pick up some different clothes – the casual clothes you packed are pretty utilitarian. Also...
<<include "BARNONE-1400 Blue lights">>
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _aForeignGirl to "an American girl">>
<<elseif $kate.agency == "mi6">>
<<set _aForeignGirl to "an English girl">>
<<elseif $kate.agency == "asis">>
<<set _aForeignGirl to "an Aussie girl">>
<<elseif $kate.agency == "csis">>
<<set _aForeignGirl to "a Canadian girl">>
<<elseif $kate.agency == "nzsis">>
<<set _aForeignGirl to "a Kiwi">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You've seen signs for an airport – //hmmm.// Corporate flight attendant?
That's a straightforward snap cover, and a neat, intuitive explanation for why _aForeignGirl is on her own in Scotland.
You just need to research the airport enough to to bluff about where you flew in from, and...
<<include "BARNONE-1400 Blue lights">>
<</page>><<silently>>
/* This passage has no UI widgets because it is <<included>> in the previous 3 passages */
<</silently>>\
Blue lights appear in your rear-view mirror. You glance at the dash: 110mph. //Shit.// That'd be an immediate <<if $kate.agency == "mi6">>ban<<else>>driving ban in the UK<</if>>, if you weren't on official business.
<<if $kate.agency == "mi6">>\
<<link "//[MI6 officer] Pull over and show your warrant card.//" "BARNONE-1700 Licence to speed">><</link>>
<<else>>\
<span class="greyedOut">//[MI6 officer] Pull over and show your warrant card.//</span>
<</if>>\
//[[Call the task force and get them to sort it out.|BARNONE-1500 Top cover]]<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your phone's in a cradle on the dash. You sweep through your contacts, and tap a number <<Olivia>> gave you before you left. On the car speakers, your music dies, replaced by a ring tone.
It rings once, then a male American answers. "Hello, switchboard."
"Lima 9 on open," you say. You slowed down to avoid freaking out the cops; their car looms in your rear-view mirror. The driver is white and square-jawed, his partner is a bearded Sikh in a badged turban.
"Yeah, go ahead, Lima 9."
[[I've picked up some cops, can you wave them off?|BARNONE-1600 Wave off the cops]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm in a white BMW driving west on the A96, uhhh...just past a town called Nairn. I've picked up local police, can you wave them off?"
"Affirmative, Lima 9, no problem. Just keep driving."
"Thanks." You kill the call; your music kicks back in. The cop car stays with you for about another minute...then switches off its blue lights, and drops back.
That was satisfying. You smile as you floor the <<if $kate.agency == "cia" or $kate.agency == "csis">>gas<<else>>accelerator<</if>>, pushing the car back up to [[full power|BARNONE-1900 Safehouse arrival]] with a high heel.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You slow down and pull onto the hard shoulder. The police car pulls in behind you. There are two male officers in the car, one white and square-jawed, the other a bearded Sikh in a badged turban.
You wait while they check your licence plate with their HQ. Passing lorries rock your car as they zoom past.
Eventually the square-jawed cop gets out, puts on his peaked cap, and walks over to you. You wind down your window as he approaches.
He peers in sternly<<if $kate.braSize == "large">>, glancing fleetingly at your face before noticing your chest<</if>>. "Do ye know how fast ye were going, miss?" he intones<<if $kate.braSize == "large">>, eyes fixed on your body<</if>>.
//[[Show your MI6 warrant card.|BARNONE-1800 Licence to speed II]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass him your MI6 warrant card in reply. It's not exactly a licence to kill...but it //does// permit you to break the national speed limit in the course of your duties.
He takes it, startled<<if $kate.braSize == "large">>, suddenly interested in your face again<</if>>. "Ummm...hold on a wee second there, please, marm." He steps away from the car and speaks into his personal radio, reading details from your warrant card to his HQ.
A few moments later, he reappears at your window and returns your card. "Sorry, marm," he says, wearing an abashed expression<<if $kate.braSize == "large">>, and making respectful eye contact this time<</if>>. "We didnay know who ye are. Yer free te crack on."
You put your warrant card back in your purse, and tuck your purse back into your handbag<<if hasVisited("AGENCY-6000 Armoury")>>, next to the loaded pistol<</if>>. You pull out onto the A96; in a few moments you're [[racing west|BARNONE-1900 Safehouse arrival]] again.
<</page>><<silently>>
<<set $header.line1 to "''INVERNESS''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/inverness.jpg" 150 1000 500 0>>\
Inverness is a tiny port city, built where the River Ness meets the North Sea. With a population of just 60,000, it boasts a few cultural attractions that attract tourists: there's a castle and a cathedral here, and Loch Ness is just a few miles to the south.
You navigate through the streets of a generic <<if $kate.agency == "mi6">>UK<<else>>British<</if>> town centre, keeping an eye out for landmarks – oh, there's Bar None, where you'll be going later. It looks like a normal, somewhat classy bar, the kind of place that attracts a white collar crowd.
A short way further, in a quiet side street, you park up outside your [[safehouse|BARNONE-2000 Safehouse interior]].
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE \"HOTEL 1\"''",
$header.line2 to "INVERNESS / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/safehouseHotel1.jpg" 150 1000 500 0>>\
Inside it's a bright and airy 1-bedroom <<if $kate.agency == "cia" or $kate.agency == "csis">>apartment<<else>>flat<</if>>, decorated in a modern, minimalist style. To all appearances, it's a standard Airbnb: the difference being, of course, that this whole place is wired up with hidden surveillance cams.
From your training, you can guess where they probably are: hidden in plug sockets and smoke detectors, concealed inside mirrors and electrical gear. There's no way to tell without taking things apart...and it doesn't matter anyway.
//[[Get settled in.|BARNONE-2050 Unpacking]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You bring in your bags, unpack some things, make yourself a cup of <<if $kate.agency == "cia" or $kate.agency == "csis">>coffee<<else>>tea<</if>>.
All the while, you're conscious that someone might be watching you. It's impossible to totally relax, even though it isn't the first time you've worked in a high surveillance environment, and you're not doing anything especially interesting.
Relaxing enough to actually //have sex with someone// is going to be an issue. If you're going to get through this...you'll probably need to get a little drunk.
That's a problem for later; right now, you want to execute an idea you had on the way here. Clark and <<Olivia>> are in their forties; hanging around in a bar is probably how //they// meet people. But you're a millennial: you can be a little more proactive.
//[[Set up a Tinder profile.|BARNONE-2100 Tinder]]//
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _flagEmoji to "🇺🇸">>
<<elseif $kate.agency == "mi6">>
<<set _flagEmoji to "🏴">>
<<elseif $kate.agency == "asis">>
<<set _flagEmoji to "🇦🇺">>
<<elseif $kate.agency == "csis">>
<<set _flagEmoji to "🇨🇦">>
<<elseif $kate.agency == "nzsis">>
<<set _flagEmoji to "🇳🇿">>
<</if>>
<<if hasVisited("BARNONE-1100 Sales rep")>>
<<set _tinderBio to "Working in Inverness">>
<<elseif hasVisited("BARNONE-1200 Tourist")>>
<<set _tinderBio to "Here to hunt the Loch Ness Monster 🐉">>
<<elseif hasVisited("BARNONE-1300 Flight attendant")>>
<<set _tinderBio to "Flight crew ✈️ Long layover">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Sipping your <<if $kate.agency == "cia" or $kate.agency == "csis">>coffee<<else>>tea<</if>>, you download Tinder to your phone, and set up a new account.
It just takes a couple of minutes – all you need is a burner email and a couple of selfies, and you're back on the market. You pick the same flattering selfies you used last time you experimented with Tinder, a few months ago.
//''$kate.firstName'' $kate.age, less than a kilometre away
_flagEmoji _tinderBio //
Sitting at the kitchen table, you drink your <<if $kate.agency == "cia" or $kate.agency == "csis">>coffee<<else>>tea<</if>> and [[swipe through guys|BARNONE-2200 Swiping through guys]], swiping left on the plain, the young and the weird; right on the tall, the handsome and the funloving.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Swipe. //IT'S A MATCH!//
Swipe. //IT'S A MATCH!//
Swipe. //IT'S A MATCH!//
By the time you've finished your <<if $kate.agency == "cia" or $kate.agency == "csis">>coffee<<else>>tea<</if>>, you have a dozen matches and nearly a hundred likes.
Only three of your matches have messaged you. You've never understood why so many guys match with you then don't send a message, but that seems to be the way it works.
//[[Head out for supplies.|BARNONE-2300 Shopping trip]]//
<</page>><<silently>>
<<set $header.line1 to "''EASTGATE SHOPPING CENTRE''",
$header.line2 to "INVERNESS / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
On your way through town, you spotted a big shopping <<if $kate.agency == "cia" or $kate.agency == "csis">>mall<<else>>centre<</if>>. You lock up the safehouse and drive over.
<<image "/locationPhotos/uk/eastgate.jpg" 75 1000 383 0>>\
It's not very often you have time to kill on a weekday, so you take your time browsing the shops here. It's nice milling around a shopping centre without the crowds, kind of peaceful.
You pick up some supplies, check out various fashion and accessories stores, and browse languidly through the clothing and cosmetics departments in the three-storey Debenhams department store. You buy some things that you think will look good on you and support your snap cover, making sure to get receipts for everything so you can claim it on expenses.
By the time you stop for lunch in the food court, the three guys you're messaging on Tinder have turned into a dozen.
None have exactly swiped you off your feet, so you take this chance to add more to the mix. For the next ten minutes you sit with a Subway in one hand and your phone in the other, swiping right on guys. //IT'S A MATCH! IT'S A MATCH! IT'S A MATCH!//
//[[Back to the safehouse.|BARNONE-2400 Kate ups her Tinder game]]//
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE \"HOTEL 1\"''",
$header.line2 to "INVERNESS / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
Back at the safehouse, you throw yourself seriously into Tinder, matching and flirting and filtering.
The problem - as you know from experience, and one of the reasons you keep deleting Tinder – is that matching with someone on a screen doesn't guarantee there'll be chemistry in person. At least half the guys you met up with were as good-looking, witty and smart as they seemed online...but in person you just didn't click.
"Lack of chemistry" isn't going to be a good reason to end the date tonight. Honestly, knowing in advance that you're going to have sex with whoever you choose is adding a certain frisson to the process – swiping through guy after guy and picturing //fucking// them not //dating// them is kind of a turn-on.
But you still want to [[choose carefully|BARNONE-2500 Kate picks her date]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
By late afternoon you've narrowed it down to X potential matches.
//''Kieran'' 29, 2 kilometres away
TK Kieran's bio //
TK Kate's assessment of Kieran. //[[Date Kieran tonight.|BARNONE-2610 Kieran]]//
//''Joe'' 35, 4 kilometres away
TK Joe's bio //
TK Kate's assessment of Joe. //[[Date Joe tonight.|BARNONE-2620 Joe]]//
//''Cameron'' 31, 3 kilometres away
TK Cameron's bio //
TK Kate's assessment of Cameron. //[[Date Cameron tonight.|BARNONE-2630 Cameron]]//
<</page>><<silently>>
<<set $inverness.partner to {},
$inverness.partner.name to "Kieran">>
<</silently>>\
<<header>>\
<<page>>\
TK description of $kate.firstName setting up the date with Kieran.
<<include "BARNONE-2700 Better start getting ready">>
<</page>><<silently>>
<<set $inverness.partner to {},
$inverness.partner.name to "Joe">>
<</silently>>\
<<header>>\
<<page>>\
TK description of $kate.firstName setting up the date with Joe.
<<include "BARNONE-2700 Better start getting ready">>
<</page>><<silently>>
<<set $inverness.partner to {},
$inverness.partner.name to "Cameron">>
<</silently>>\
<<header>>\
<<page>>\
TK description of $kate.firstName setting up the date with Cameron.
<<include "BARNONE-2700 Better start getting ready">>
<</page>><<silently>>
/* This passage has no UI widgets because it is <<included>> in the previous 3 passages */
<</silently>>\
//Well...that's that.// Your date's set up...this is really happening.
You'd better start [[getting ready|BARNONE-2800 Bathroom]] soon.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/hotel1Bathroom.jpg" 100 1000 500 0>>\
The bathroom's clean, bright, modern...and 99% likely to be rigged with surveillance cameras.
Standing in front of the sink, you gaze at your reflection in the mirror, wondering if anybody's watching you right now.
<<if $kate.kinks.includes("exhibitionist")>>Maybe it's because you've been thinking about sex all day, but the thought of your new colleagues tuning into the surveillance feed just to watch you strip is getting you a little aroused. You take your time undressing, playing it nonchalant.<<else>>You swallow your misgivings and strip down; tonight you'll be doing even more on camera, and with a total stranger.<</if>>
TK $kate.firstName strips her clothing off, one piece at a time, until she's totally [[naked|BARNONE-2900 Shower scene]].
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
//TK Kate will have wet hair in this scene//
You pad barefoot into the shower, luxuriating for a [[long time|BARNONE-3000 Body customisation]] under the hot, steamy spray.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK Body customisation page. This is where the player can add tattoos, piercings, bikini line styles, and six-pack abs.
When they're happy with $kate.firstName's appearance they can [[continue|BARNONE-3100 Dressup]].
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<</silently>>\
<<header>>\
<<page>>\
//TK $kate.firstName will be wrapped in a towel//
After your long shower, it's time to get dressed up for your date with $inverness.partner.name.
TK dress-up scene where the player picks $kate.firstName's clothing, accessories and makeup.
Once they're happy with her appearance (and she's wearing enough clothes) they can <<link "//meet $inverness.partner.name at Bar None//" "BARNONE-3200 Arrival at Bar None">><</link>>.
<</page>><<silently>>
<<avatar-stripNaked>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-redCowlHalterNeckMini-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<set $header.line1 to "''BAR NONE''",
$header.line2 to "INVERNESS / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
(TK if $kate.firstName was issued a handgun, insert a prior scene of her stashing it)
It's less than a ten-minute walk from the safehouse to Bar None. Pushing open a heavy swing door, you walk in and look around.
TK initial description of Bar None. There's no sign of $inverness.partner.name yet.
//[[Get a drink at the bar.|BARNONE-3300 The bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
END OF CONTENT 31 MAR
<</page>><<silently>>
<<set $header.line1 to "''A82 HIGHWAY''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<<set $corinthian to {}>>
<</silently>>\
<<header>>\
<<page>>\
Forty minutes later you're blasting south in a sporty white BMW hatchback, heading for the safehouse.
<<image "/locationPhotos/uk/a82Road.jpg" 150 1000 408 0>>\
Just past Faslane is a hippy peace camp. You catch a glimpse of some brightly-painted caravans peeping out through the trees, then you're out on a long country highway; low wooded hills on the left, Gare Loch stretching for miles on your right.
//[[Floor it.|CORINTH-2000 Snap cover choice]]//
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _aForeignGirl to "an American girl">>
<<elseif $kate.agency == "mi6">>
<<set _aForeignGirl to "an English girl">>
<<elseif $kate.agency == "asis">>
<<set _aForeignGirl to "an Aussie girl">>
<<elseif $kate.agency == "csis">>
<<set _aForeignGirl to "a Canadian girl">>
<<elseif $kate.agency == "nzsis">>
<<set _aForeignGirl to "a Kiwi girl">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It's about an hour's drive...so you've got plenty of time to think as the miles roll by. One thing you need is a <div class="tooltip">snap cover<span class="tooltiptext">A spy's cover story, invented at short notice</span></div> for later – what's _aForeignGirl doing on her own in a bar in Glasgow?
<<link "Businesswoman on a trip." "CORINTH-2100 Businesswoman snap cover">><</link>>
<<link "I'm a tourist." "CORINTH-2200 Tourist snap cover">><</link>>
<<link "Flight attendant on a stopover." "CORINTH-2300 Flight attendant snap cover">><</link>>
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _recruitHQ to "the Farm">>
<<elseif $kate.agency == "mi6">>
<<set _recruitHQ to "Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set _recruitHQ to "Swan Island">>
<<elseif $kate.agency == "csis">>
<<set _recruitHQ to "Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set _recruitHQ to "Papakura">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Business travel's a straightforward cover. It's also a good reason for a girl to be alone in a bar, with no friends, like a total loser.
//Hey, I have friends outside work!// you remind yourself. It's just you haven't seen them in a while, that's all.
You'll need to do a little research on what industries are big in Glasgow – just enough to bluff your case if you need to. And also probably pick up some going out clothes – most of what you packed is utilitarian.
"I'm here on business," you practice saying it out loud, "I'm here for a work thing." For the [[next few miles|CORINTH-3000 Blue lights]] you get used to just verbalising your cover story – at _recruitHQ, they taught you that lies are more convincing when you're not saying the words out loud for the very first time. "Yeah, I have to travel for my job a lot..."
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _recruitHQ to "the Farm">>
<<elseif $kate.agency == "mi6">>
<<set _recruitHQ to "Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set _recruitHQ to "Swan Island">>
<<elseif $kate.agency == "csis">>
<<set _recruitHQ to "Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set _recruitHQ to "Papakura">>
<</if>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _holiday to "vacation">>
<<else>>
<<set _holiday to "holiday">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Tourism's a good reason for anybody to be anywhere. It's also a good reason for a girl to be alone in a bar, with no friends, like a total loser.
//Hey, I have friends outside work!// you remind yourself. It's just you haven't seen them in a while, that's all.
You'll need to do a little research on what attractions are in and around Glasgow – just enough to bluff your case if you need to. And also probably pick up some going out clothes – most of what you packed is utilitarian.
"I'm here for a _holiday," you practice saying it out loud, "I'm on a mini-_holiday." For the [[next few miles|CORINTH-3000 Blue lights]] you get used to just verbalising your cover story – at _recruitHQ, they taught you that lies are more convincing when you're not saying the words out loud for the very first time. "Yeah, just needed a break..."
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _nationality to "American">>
<<elseif $kate.agency == "mi6">>
<<set _nationality to "English">>
<<elseif $kate.agency == "asis">>
<<set _nationality to "Aussie">>
<<elseif $kate.agency == "csis">>
<<set _nationality to "Canadian">>
<<elseif $kate.agency == "nzsis">>
<<set _nationality to "Kiwi">>
<</if>>
<<if $kate.agency == "cia">>
<<set _recruitHQ to "the Farm">>
<<elseif $kate.agency == "mi6">>
<<set _recruitHQ to "Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set _recruitHQ to "Swan Island">>
<<elseif $kate.agency == "csis">>
<<set _recruitHQ to "Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set _recruitHQ to "Papakura">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
There's an airport there: flight attendant's a neat and intuitive explanation for your _nationality accent. It's also a good reason for a girl to be alone in a bar, with no friends, like a total loser.
//Hey, I have friends outside work!// you remind yourself. It's just you haven't seen them in a while, that's all.
You'll need to do a little research on the airport – just enough to bluff your case if you need to. And also probably pick up some going out clothes – most of what you packed is utilitarian.
"I'm a flight attendant," you practice saying it out loud, "I'm flight crew." For the [[next few miles|CORINTH-3000 Blue lights]] you get used to just verbalising your cover story – at _recruitHQ, they taught you that lies are more convincing when you're not saying the words out loud for the very first time. "Yeah, I enjoy the travel..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Blue lights appear in your rear-view mirror. You glance down at the dash: 110mph. //Shit.// That'd be an immediate <<if $kate.agency == "mi6">>ban<<else>>driving ban in the UK<</if>>, if you weren't on official business.
<<if $kate.agency == "mi6">>\
<<link "//[MI6 officer] Pull over and show your warrant card.//" "CORINTH-3300 Licence to speed">><</link>>
<<else>>\
<span class="greyedOut">//[MI6 officer] Pull over and show your warrant card.//</span>
<</if>>\
//[[Call NORTHWOOD and get them to sort it out.|CORINTH-3100 Top cover]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You slow down a little so the cops don't freak out. While they catch up, you scroll through your contacts and tap //<<OLIVIA>>.//
"Hey," she answers. "What's up?"
[[Can you wave off some cops for me?|CORINTH-3200 Olivia waves off the cops]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm driving, I've picked up some cops," you explain. Their car looms in your rear-view mirror; the driver is white and square-jawed, his partner is a bearded Sikh in a badged turban. "Can you wave them off for me?"
"Yeah, can you see a plate number?"
"Sierra Foxtrot Zero Seven, Charlie Hotel Zulu," you read.
"No problem," <<Olivia>> says. "Just keep going."
The cop car stays behind you for about another minute...then switches off its blue lights, and drops back.
//That was satisfying.// There's a smile on your face as you floor the <<if $kate.agency == "cia" or $kate.agency == "csis">>gas<<else>>accelerator<</if>>, pushing the car back up to [[full power|CORINTH-4000 Safehouse arrival]] with a high heel.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You slow down and pull onto the hard shoulder. The police car pulls in behind you. There are two male officers in the car, one white and square-jawed, the other a bearded Sikh in a badged turban.
You wait while they check your licence plate with their HQ. Passing lorries rock your car as they zoom past.
Eventually the square-jawed cop gets out, puts on his peaked cap, and walks over to you. You wind down your window as he approaches.
He peers in sternly<<if $kate.braSize == "large">>, glancing fleetingly at your face before noticing your chest<</if>>. "Do ye know how fast ye were going, miss?" he intones<<if $kate.braSize == "large">>, eyes fixed on your body<</if>>.
//[[Show your MI6 warrant card.|CORINTH-3400 Licence to speed II]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass him your MI6 warrant card in reply. It's not exactly a licence to kill...but it //does// permit you to break the national speed limit in the course of your duties.
He takes it, startled<<if $kate.braSize == "large">>, suddenly interested in your face again<</if>>. "Ummm...hold on a wee second there, please, marm." He steps away from the car and speaks into his personal radio, reading details from your warrant card to his HQ.
A few moments later, he reappears at your window and returns your card. "Sorry, marm," he says, wearing an abashed expression<<if $kate.braSize == "large">>, and making respectful eye contact this time<</if>>. "We didnay know who ye are. Yer free te crack on."
You put your warrant card back in your purse, and tuck your purse back into your handbag. You pull out onto the A82; in a few moments you're [[racing south|CORINTH-4000 Safehouse arrival]] again.
<</page>><<silently>>
<<set $header.line1 to "''GLASGOW''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
Beautiful countryside gives way to Glasgow's outskirts. You cruise through miles and miles of dreary <<if $kate.agency != "mi6">>British <</if>>suburbia, until you arrive in the bustling city centre.
<<image "/locationPhotos/uk/glasgowStreets.jpg" 75 1000 408 0>>\
You navigate a bizarre configuration of one-way streets to get to the safehouse. Along the way, you pass Corinthian – the bar Clark and <<Olivia>> want you to be at tonight. The buildings here are all either old and gorgeous or old and ugly; Corinthian's one of the gorgeous ones, with tall columns and classy signage.
The safehouse is only a few blocks further on. There's street parking [[right outside|CORINTH-5000 Safehouse interior]].
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE \"HOTEL 1\"''",
$header.line2 to "GLASGOW / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/safehouseHotel1.jpg" 150 1000 500 0>>\
Inside it's a bright and airy 1-bedroom <<if $kate.agency == "cia" or $kate.agency == "csis">>apartment<<else>>flat<</if>>, decorated in a modern, minimalist style. To all appearances, it's a standard Airbnb: the difference being, of course, that this whole place is wired up with hidden surveillance cams.
From your training, you can guess where they probably are: hidden in plug sockets and smoke detectors, concealed inside mirrors and electrical gear. There's no way to tell unless you start taking things apart with a screwdriver...and it doesn't matter anyway.
//[[Get settled in.|CORINTH-6000 Unpacking]]//
<</page>><<silently>>
<<remove-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves>>
<<remove-shoes-blackPatentHeels>>
<</silently>>\
<<header>>\
<<page>>\
You bring in your bags, unpack some things, make yourself a cup of <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>>.
All the while, you're conscious that someone might already be watching you...even though you're not doing anything especially interesting yet. It's impossible to totally relax, even though it isn't the first time you've worked in a high surveillance environment.
Relaxing enough to actually //have sex with someone// is going to be an issue. If you're going to get through this...you might need to get a little drunk.
That's a problem for later; right now, you want to execute an idea you had on the way here. Clark and <<Olivia>> are in their forties; hanging around in a bar is probably how //they're// used to meeting people. But they're practically boomers: you can take a more high-tech approach.
//[[Set up a Tinder profile.|CORINTH-7000 Tinder]]//
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _flagEmoji to "🇺🇸">>
<<elseif $kate.agency == "mi6">>
<<set _flagEmoji to "🏴">>
<<elseif $kate.agency == "asis">>
<<set _flagEmoji to "🇦🇺">>
<<elseif $kate.agency == "csis">>
<<set _flagEmoji to "🇨🇦">>
<<elseif $kate.agency == "nzsis">>
<<set _flagEmoji to "🇳🇿">>
<</if>>
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>
<<set _tinderBio to "Working in Glasgow for a week">>
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>
<<set _tinderBio to "Here to hunt the Loch Ness Monster 🐉">>
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>
<<set _tinderBio to "Flight crew ✈️">>
<<else>>
<<set _tinderBio to "ERROR IN TINDERBIO TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Sipping your <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>>, you download Tinder to your phone – again – and set up a new account.
It just takes a couple of minutes – all you need is a burner email and a couple of flattering selfies, and you're back on the market, ready to be swiped off your feet.
//''$kate.firstName'' $kate.age, less than a kilometre away
_flagEmoji _tinderBio //
Sitting at the kitchen table, you drink your <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>> and [[swipe through men's selfies|CORINTH-8000 Swiping through guys]], swiping left on the plain, the young and the weird; right on the tall, the handsome and the funloving.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Swipe. //IT'S A MATCH!//
Swipe. //IT'S A MATCH!//
Swipe. //IT'S A MATCH!//
By the time you've finished your <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>>, you have a dozen matches and nearly a hundred likes.
Only three matches have messaged you. You've never understood why so many guys match with you then don't send a message, but that seems to be the way it works.
//[[Head out for supplies.|CORINTH-8100 Shopping trip]]//
<</page>><<silently>>
<<set $header.line1 to "''GLASGOW CITY CENTRE''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
Glasgow's got plenty of retail. You head out to grab some essential supplies, and look for some going out clothes and makeup for later.
<<image "/locationPhotos/uk/glasgowShops.jpg" 150 1000 500 0>>\
However you feel about the mission tonight, shopping in daylight on a Thursday makes a nice change from being at your desk. Especially as you can claim it all back on expenses later. //Wow, what a gorgeous top!//
All the while, you keep one eye on Tinder. By the time you stop in a Wagamama to grab a late lunch, the three guys you're messaging on Tinder have turned into a dozen.
You're not crazy about any of them so far, so you take this chance to add fresh blood to the mix. For the next ten minutes you sit with chopsticks in one hand and your phone in the other, swiping right on guys. //IT'S A MATCH! IT'S A MATCH! IT'S A MATCH!//
//[[Back to the safehouse.|CORINTH-8200 Kate ups her Tinder game]]//
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE \"HOTEL 1\"''",
$header.line2 to "GLASGOW / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
Back at the safehouse, you throw yourself seriously into Tinder, matching and flirting and filtering.
The problem - as you know from experience, and one of the reasons you keep deleting Tinder – is that matching with someone on a screen doesn't guarantee there'll be chemistry in person.
At least half the guys you met up with were just as good-looking, witty and smart as they seemed online...but in person you just [[didn't click|CORINTH-8300 First date fuck]].
<</page>><<silently>>
<<set $kate.arousal to 0>>
<</silently>>\
<<header>>\
<<page>>\
However..."lack of chemistry" won't be a good reason for ending the date at first base tonight.
Honestly, planning in advance to have sex with whoever you choose is adding a certain frisson to the process – swiping through man after man and picturing //fucking// them, not //meeting// them, is a low-key turn-on.
But it's also adding more stress to the selection process, because you're not just picking someone to go for a coffee with. It's important to [[choose carefully|CORINTH-9000 Kate picks her date]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
By late afternoon you've narrowed it down to X potential matches.
//''Alec'' 34, 4 kilometres away
TK Alec's bio //
A tall, handsome architect. He's English, working in Glasgow on a project (something to do with a shopping mall). He claims to be single, which you doubt, given how good-looking, charming and solvent he appears to be. In messages he's educated and flirty, no txtspk with this guy. //[[Date Alec tonight.|CORINTH-10000 Alec]]//
//''Cameron'' 29, 3 kilometres away
TK Cameron's bio //
TK Kate's assessment of Cameron. //(Date Cameron tonight link)//
<</page>><<silently>>
<<set $corinthian to {}>> /* tk delete this later, it's for testing */
<<set $corinthian.partner to {},
$corinthian.partner.name to "Alec",
$corinthian.partner.confidence to 0,
$corinthian.partner.stamina to 0>>
<</silently>>\
<<header>>\
<<page>>\
TK description of $kate.firstName setting up the date with Alec.
<<include "CORINTH-11000 Better start getting ready">>
<</page>><<silently>>
<<set $corinthian.partner to {},
$corinthian.partner.name to "Cameron">>
<</silently>>\
<<header>>\
<<page>>\
TK description of $kate.firstName setting up the date with Cameron.
<<include "CORINTH-11000 Better start getting ready">>
<</page>><<silently>>
/* This passage has no UI widgets because it is <<included>> in the previous passages */
<</silently>>\
//Well...that's that.// Your date's set up...this is really happening.
You'd better start [[getting ready|CORINTH-12000 Bathroom]] soon.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/hotel1Bathroom.jpg" 100 1000 500 0>>\
The bathroom's clean, bright, modern...and 99% likely to be rigged with surveillance cameras.
Standing in front of the sink, you gaze at your reflection in the mirror, wondering if anybody's watching you right now.
<<if $kate.kinks.includes("exhibitionist")>>\
<<set $kate.arousal += 1>>\
Maybe it's because you've been thinking about sex all day, but the thought of your new colleagues tuning into the surveillance feed just to watch you strip is getting you a little aroused. You take your time undressing, playing it nonchalant.
<<else>>\
You swallow your misgivings and strip down; tonight you'll be doing even more on camera, and with a total stranger.
<</if>>\
<span id="undressID">
<<avatar-undressScene "Next." "CORINTH-13000 Shower scene">>
</span>
<</page>><<silently>>
<<set $avatar.blink to false>>
<<avatar-expr-eyelid-closed>>
<<update-avatar-bikinilines>>
<</silently>>\
<<header>>\
<<page>>\
//TK Kate will have wet hair in this scene//
You pad barefoot into the shower, luxuriating for a [[long time|CORINTH-14000 Body customisation]] under the hot, steamy spray.
<</page>><<silently>>
<<set $avatar.blink to true>>
<</silently>>\
<<header>>\
<<page>>\
TK Body customisation page. This is where the player can add tattoos, piercings, bikini line styles, and six-pack abs.
<div id="bikiniLines">\
<<parlour-bikiniLines>>
</div>
<div id="wardrobeStore">
<<parlour-piercingParlour>>
</div>
<div id="wardrobeStore1">
<<parlour-tattooParlour>>
</div>
[[continue|CORINTH-15000 Dressup]].
<</page>><<silently>>
<<wear-towel-whiteBathSheet>>
<</silently>>\
<<header>>\
<<page>>\
//TK $kate.firstName will be wrapped in a towel//
After your long shower, it's time to get dressed up for your date with $corinthian.partner.name.
<<link "Remove towel" "CORINTH-15001 Dressup">><<remove-towel-whiteBathSheet>> <<set $temp.menu to "Bra">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After your long shower, it's time to get dressed up for your date with $corinthian.partner.name.
<span id="dressup">\
<<corinth-dressup>>
</span>\
<</page>><<silently>>
<<avatar-stripNaked>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniPants-blackLaceStringSidedPants")>>
<<set $avatar.underwear.pushUnique("uni/30_ukUniBra-blackLace-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniDress-redCowlHalterNeckMini-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<set $header.line1 to "''CORINTHIAN BAR''",
$header.line2 to "GLASGOW / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
It's less than a ten-minute walk from the safehouse to Corinthian. Pushing open a heavy swing door, you walk in and look around.
TK initial description of Corinthian. There's no sign of $corinthian.partner.name yet.
//[[Get a drink at the bar.|CORINTH-17000 The bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You queue up at the bar, and get served by a (TK description of a young, handsome bartender. Way too young for her, but cute dimples). "What can Ah get yew?"
[[White wine.|CORINTH-17100 Kate orders a drink][$corinthian.kateDrink to "whiteWine"]]
[[Red wine.|CORINTH-17100 Kate orders a drink][$corinthian.kateDrink to "redWine"]]
[[Gin and Tonic.|CORINTH-17100 Kate orders a drink][$corinthian.kateDrink to "ginAndTonic"]]
[[Jack and Coke.|CORINTH-17100 Kate orders a drink][$corinthian.kateDrink to "jackAndCoke"]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _kateNationality to "You American">>
<<elseif $kate.agency == "mi6">>
<<set _kateNationality to "You English">>
<<elseif $kate.agency == "asis">>
<<set _kateNationality to "Aussie or Kiwi">>
<<elseif $kate.agency == "csis">>
<<set _kateNationality to "You American">>
<<elseif $kate.agency == "nzsis">>
<<set _kateNationality to "Aussie or Kiwi">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.kateDrink == "whiteWine">>\
"White wine, please." A vision of what you'll have to do when you get back to the safehouse flits into your mind. "Make it a large one."
<<elseif $corinthian.kateDrink == "redWine">>\
"Red wine, please." A vision of what you'll have to do when you get back to the safehouse flits into your mind. "Make it a large one."
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
"G&T, please." A vision of what you'll have to do when you get back to the safehouse flits into your mind. "Make it a double."
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
"Jack and Coke, please." A vision of what you'll have to do when you get back to the safehouse flits into your mind. "Make it a double."
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
"Aye. _kateNationality?" he asks, as he busies himself making your drink.
<<if $kate.agency == "cia">>\
"Yeah," you smile.
"Cool," he says. \
<<elseif $kate.agency == "mi6">>\
"Don't hold it against me," you smile.
"Wouldnay dream of it," he chuckles. \
<<elseif $kate.agency == "asis">>\
"Aussie," you smile.
"Ah, cool. That's what I would've guessed," he assures you. \
<<elseif $kate.agency == "csis">>\
"Canadian," you smile.
"Ah, sorry," he chuckles. \
<<elseif $kate.agency == "nzsis">>\
"Kiwi," you smile.
"Ah, cool. That's what I would've guessed," he assures you. \
<</if>>\
"You in Glasgow long?"
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
[[No, just a work trip.|CORINTH-17200 Flirty bartender]]
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
<<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _holiday to "vacation">>
<<else>>
<<set _holiday to "holiday">>
<</if>>
<</silently>>\
<<link "No, just a _holiday." "CORINTH-17200 Flirty bartender">><<set $temp.kateChoice to "holiday">><</link>>
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
[[Just a stopover, I'm flight crew.|CORINTH-17200 Flirty bartender]]
<<else>>\
(ERROR IN HASVISITED VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
"Just a few days," you tell him, practising your snap cover. "Work trip."
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
<<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _holiday to "vacation">>
<<else>>
<<set _holiday to "holiday">>
<</if>>
<</silently>>\
"Just a few days," you tell him, practising your snap cover. "Mini _holiday."
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
"Just a stopover," you tell him, practising your snap cover. "I'm flight crew."
<<else>>\
(ERROR IN HASVISITED VAR)
<</if>>\
"Ah, cool," he replies, passing you \
<<if $corinthian.kateDrink == "whiteWine">>\
a chilled white wine in a glass the size of a small fishbowl. \
<<elseif $corinthian.kateDrink == "redWine">>\
a deep red wine in a glass the size of a small fishbowl. \
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
a tall G&T on the rocks. \
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
a tall Jack & Coke on the rocks. \
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
"Well, dinnay work too hard."
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
"Well, give my regards to the monster if ye see him."
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
"Well, enjoy yer downtime."
<<else>>\
(ERROR IN HASVISITED VAR)
<</if>>\
"Thanks." You pay for your drink, and find a place to <<link "wait for $corinthian.partner.name" "CORINTH-18000 Date arrives">><</link>>.
<</page>><<silently>>
<<if $corinthian.kateDrink == "whiteWine">>\
<<set _yourDrink to "wine">>
<<elseif $corinthian.kateDrink == "redWine">>\
<<set _yourDrink to "wine">>
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
<<set _yourDrink to "gin">>
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
<<set _yourDrink to "bourbon">>
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<if $corinthian.partner.name == "Alec">>
<<set _dateDescription to "tall, handsome Englishman",
_little to "little">>
<<else>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You sit alone at a table for the next ten minutes or so, mistaking every man who slows down near your table for $corinthian.partner.name, and feeling the normal pre-date jitters. //What if he doesn't look anything like his photos? What if // I //don't look anything like my photos? What if we don't hit it off? What if everybody here realises I'm on a Tinder date? Is he even going to show?//
You sip _yourDrink and pretend to be busy on your phone while you wait. Your glass is nearly empty when $corinthian.partner.name finally arrives. "$kate.firstName!" smiles the _dateDescription who arrives at your table. "Sorry I'm a _little bit late."
[[Hi!|CORINTH-19000 First contact][$temp.kateChoice to "hi"]]
[[No problem!|CORINTH-19000 First contact][$temp.kateChoice to "noProblem"]]
<</page>><<silently>>
<<set _npcInitiativeRoll to random(1,10)>>
<<set _kateInitiativeRoll to random(1,10)>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "hi">>\
"Hi!" \
<<elseif $temp.kateChoice == "noProblem">>\
"No problem!" \
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
you smile, standing up to greet him. There's that awkward, first contact moment when you're not sure how to greet each other – handshake, hug, kiss?
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Background ''Initiative check.'' $corinthian.partner.name rolled..._npcInitiativeRoll. $kate.firstName rolled..._kateInitiativeRoll<<if $kate.kinks.includes("submissive")>><<set _kateInitiativeRoll -= 2>> (-2 //Submissive// penalty, result: _kateInitiativeRoll).<</if>> <<if _npcInitiativeRoll == _kateInitiativeRoll>><<set _coinToss to either("heads", "tails")>>Tossing a coin...<<if _coinToss == "heads">>$corinthian.partner.name wins.<<else>>You win!<<set _kateWonTheInitiative to true>><</if>><<elseif _npcInitiativeRoll gt _kateInitiativeRoll>>$corinthian.partner.name wins.<<else>>You win!<<set _kateWonTheInitiative to true>><</if>>
</td>
</tr>
</table>
<</nobr>></div>
<<if _kateWonTheInitiative>>\
//[[Shake his hand.|CORINTH-19100 Kate handshake]]
[[Greet him with a hug.|CORINTH-19200 Kate hug]]
[[Greet him with a kiss on the cheek.|CORINTH-19300 Kate kiss]]
[[Let him take the lead.|CORINTH-19400 Kate cedes initiative]]//
<<else>>\
<<if $corinthian.partner.name == "Alec">>\
<<silently>>
<<set _npcDiceRoll to random(1,10)>>
<<set _npcDiceModifier += $kate.arousal>>
<<set _taskDifficulty to 6>>
<<if _npcDiceRoll gte _taskDifficulty>>
<<set _npcWasSuccessful to true>>
<<set $corinthian.partner.confidence += 1>>\
<</if>>
<</silently>>\
<<if _npcWasSuccessful>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''passed'' a flirtation check. $kate.firstName Attraction +1.
</td>
</tr>
</table>
<</nobr>></div>
He spreads his arms and pulls you into a hug. It's brief and intimate and he ends it with a peck on your cheek. He smells of shampoo and good <<if $kate.agency == "cia" or $kate.agency == "csis">>cologne<<else>>aftershave<</if>>.
"You look just like your photos," he says when you break apart. "Can I get you a drink?"
<<if $corinthian.kateDrink == "whiteWine">>\
[[Sure, a white wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
<<elseif $corinthian.kateDrink == "redWine">>\
[[Sure, a red wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
[[Could I have another G&T?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "ginAndTonic"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
[[Could I have another Jack and Coke?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "jackAndCoke"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<else>>\
<<set $kate.arousal -= 1>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''failed'' a flirtation check. $kate.firstName Attraction -1.
</td>
</tr>
</table>
<</nobr>></div>
He spreads his arms and pulls you into a hug. Being hugged by someone you've got no connection with feels a little awkward, but at least it's over quickly.
"You look just like your photos," he says after he lets you go. "Can I get you a drink?"
<<if $corinthian.kateDrink == "whiteWine">>\
[[Sure, a white wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
<<elseif $corinthian.kateDrink == "redWine">>\
[[Sure, a red wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
[[Could I have another G&T?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "ginAndTonic"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
[[Could I have another Jack and Coke?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "jackAndCoke"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<</if>>\
<<else>>\
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
You reach out a hand, and get a warm smile and a firm handshake in return. "You look just like your photos," he says. "Can I get you a drink?"
<<if $corinthian.kateDrink == "whiteWine">>\
[[Sure, a white wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
<<elseif $corinthian.kateDrink == "redWine">>\
[[Sure, a red wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
[[Could I have another G&T?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "ginAndTonic"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
[[Could I have another Jack and Coke?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "jackAndCoke"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<else>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
<<set $corinthian.partner.confidence += 1>>\
You hold open your arms, inviting a hug. Alec leans in close, giving your waist a friendly squeeze. He smells of shampoo and good <<if $kate.agency == "cia" or $kate.agency == "csis">>cologne<<else>>aftershave<</if>>.
<span class="greenHighlighter">//Alec ''liked'' that.//</span>
"You look just like your photos," he says when you break apart. "Can I get you a drink?"
<<if $corinthian.kateDrink == "whiteWine">>\
[[Sure, a white wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
<<elseif $corinthian.kateDrink == "redWine">>\
[[Sure, a red wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
[[Could I have another G&T?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "ginAndTonic"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
[[Could I have another Jack and Coke?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "jackAndCoke"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<else>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
<<set $corinthian.partner.confidence += 1>>\
You step in close and give him a quick peck on the cheek, stretching up on your toes to reach him. He smells of shampoo and good <<if $kate.agency == "cia" or $kate.agency == "csis">>cologne<<else>>aftershave<</if>>.
<span class="greenHighlighter">//Alec ''liked'' that.//</span>
"You look just like your photos," he smiles. "Can I get you a drink?"
<<if $corinthian.kateDrink == "whiteWine">>\
[[Sure, a white wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
<<elseif $corinthian.kateDrink == "redWine">>\
[[Sure, a red wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
[[Could I have another G&T?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "ginAndTonic"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
[[Could I have another Jack and Coke?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "jackAndCoke"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<else>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
<<silently>>
<<set _npcDiceRoll to random(1,10)>>
<<set _npcDiceModifier to 0>>
<<set _taskDifficulty to 6>>
<<if _npcDiceRoll gte _taskDifficulty>>
<<set _npcWasSuccessful to true>>
<<set $corinthian.partner.confidence += 1>>\
<</if>>
<</silently>>\
<<if _npcWasSuccessful>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''passed'' a flirtation check.
</td>
</tr>
</table>
<</nobr>></div>
He spreads his arms and pulls you into a hug. It's brief and intimate and he ends it with a peck on your cheek. He smells of shampoo and good <<if $kate.agency == "cia" or $kate.agency == "csis">>cologne<<else>>aftershave<</if>>.
"You look just like your photos," he says when you break apart. "Can I get you a drink?"
<<else>>\
<<set $kate.arousal -= 1>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''failed'' a flirtation check. $kate.firstName Attraction -1.
</td>
</tr>
</table>
<</nobr>></div>
He spreads his arms and pulls you into a hug. Being hugged by someone you've got no connection with feels a little awkward, but at least it's over quickly.
"You look just like your photos," he says after he lets you go. "Can I get you a drink?"
<</if>>\
<<if $corinthian.kateDrink == "whiteWine">>\
[[Sure, a white wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
<<elseif $corinthian.kateDrink == "redWine">>\
[[Sure, a red wine please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
[[Could I have another G&T?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "ginAndTonic"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
[[Could I have another Jack and Coke?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "jackAndCoke"]]
[[Yeah, glass of white please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "whiteWine"]]
[[Yeah, glass of red please?|CORINTH-20000 Date goes to the bar][$corinthian.kateDrink to "redWine"]]
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
<<else>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.kateDrink == "whiteWine">>\
"Uh, sure!" you say, looking at your near-empty glass and remembering what you've got to do later. "White wine, please?"
<<elseif $corinthian.kateDrink == "redWine">>\
"Uh, sure!" you say, looking at your near-empty glass and remembering what you've got to do later. "Red wine, please?"
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
"Uh, sure!" you say, looking at your near-empty glass and remembering what you've got to do later. "Gin and Tonic, please?"
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
"Uh, sure!" you say, looking at your near-empty glass and remembering what you've got to do later. "Jack and Coke, please?"
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
You finish what's left of your drink while you wait for $corinthian.partner.name to get served at the bar. After a few minutes he returns, with \
<<if $corinthian.partner.name == "Alec">>\
<<if $corinthian.kateDrink == "whiteWine">>\
two big fishbowl glasses of wine, one white, one red.
<<elseif $corinthian.kateDrink == "redWine">>\
two big fishbowl glasses of red wine.
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
your G&T and a big glass of red for himself.
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
your Jack and Coke and a big glass of red for himself.
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
"Cheers," he smiles.
[[Cheers!|CORINTH-21000 Getting to know you]]
<</if>>\
<</page>><<silently>>
<<set _npcD10 to random(1,10)>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
<<silently>>
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
<<set _katesSnapCoverDetails to "here for work as well?">>
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
<<set _katesSnapCoverDetails to "here on holiday?">>
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
<<set _katesSnapCoverDetails to "a flight attendant?">>
<<else>>\
<<set _katesSnapCoverDetails to "(ERROR IN KATESSNAPCOVERDETAILS TEMP VAR)">>
<</if>>\
<</silently>>\
"Cheers!" You clink your glass to his, then take a big gulp of \
<<if $corinthian.kateDrink == "whiteWine">>\
chilled white wine. \
<<elseif $corinthian.kateDrink == "redWine">>\
smooth red wine. \
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
crisp G&T. \
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
Jack Daniels. \
<<else>>\
(ERROR IN CORINTHIAN.KATEDRINK VAR)
<</if>>\
You're feeling nervous, but not for the usual first date reasons.
"So, you're _katesSnapCoverDetails" he asks. The pair of you sit and talk a while, chatting and getting to know one another above the buzzy hubbub of a busy city bar.
Like most men on dates, Alec talks a lot. But at least he's intelligent and educated, and his life is actually quite interesting...what he reveals of it, anyway.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''Detect Deception check.'' $corinthian.partner.name rolled..._npcD10.
<<link "Roll _npcD10 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Detect Deception check.'' Target: _npcD10. Result: _kateD10+1 = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
//[[Get to know Alec.|CORINTH-22000 The conversation stage][$temp.skillCheckSucceeded to true]]
<<else>>\
//[[Get to know Alec.|CORINTH-22000 The conversation stage][$temp.skillCheckSucceeded to false]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with 1d10+1 (//Trained Observer// skill bonus) to succeed.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<<else>>\
(ERROR IN CORINTHIAN.PARTNER.NAME VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
<<if $temp.skillCheckSucceeded>>\
He claims to be single, which you seriously doubt. He's //very// charming – so much so that you're pretty sure the flattery is practised.
You wonder how many other girls have heard the exact same compliments about their "obvious intelligence" and how they're different from all the other girls on Tinder. It's easy to imagine a less cynical girl being swept off her feet by a handsome older man, admiring her for her mind.
<<else>>\
He claims to be single – which you have your doubts about – but he's //definitely// very charming.
He says what intrigued him the most about you was your obvious intelligence: so many girls on Tinder can't string a sentence together or can't get a subtle joke, but messaging you made him really want to get to know you.
<</if>>\
"So how come you're single?" he asks.
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
//[[Tell him your busy corporate career makes it hard to find time for a relationship.|CORINTH-23000 Kate also lies]]//
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
<<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _holiday to "vacation">>
<<else>>
<<set _holiday to "holiday">>
<</if>>
<</silently>>\
<<link "//Tell him you're on a mini-_holiday to get over a breakup.//" "CORINTH-23000 Kate also lies">><</link>>
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
//[[Tell him your career as a flight attendant makes it hard to hold down a relationship at home.|CORINTH-23000 Kate also lies]]//
<<else>>\
(ERROR IN HASVISITED VAR)
<</if>>\
<<else>>\
(ERROR IN CORINTHIAN.PARTNER.NAME VAR)
<</if>>\
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _recruitHQ to "the Farm">>
<<elseif $kate.agency == "mi6">>
<<set _recruitHQ to "Fort Monckton">>
<<elseif $kate.agency == "asis">>
<<set _recruitHQ to "Swan Island">>
<<elseif $kate.agency == "csis">>
<<set _recruitHQ to "Dwyer Hill">>
<<elseif $kate.agency == "nzsis">>
<<set _recruitHQ to "Papakura">>
<</if>>
<<if $corinthian.kateDrink == "whiteWine">>\
<<set _alcohol to "wine">>
<<elseif $corinthian.kateDrink == "redWine">>\
<<set _alcohol to "wine">>
<<elseif $corinthian.kateDrink == "ginAndTonic">>\
<<set _alcohol to "gin">>
<<elseif $corinthian.kateDrink == "jackAndCoke">>\
<<set _alcohol to "bourbon">>
<<else>>\
<<set _alcohol to "(ERROR IN CORINTHIAN.KATEDRINK VAR)">>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
<<silently>>
<<set _npcDiceRoll to random(1,10)>>
<<if not $temp.skillCheckSucceeded>>
/* give Alec a +1 bonus for successfully flattering Kate */
<<set _npcDiceRoll += 1>>
<</if>>
<<set _npcDiceRoll += $kate.arousal>>
<<set _npcDiceRoll += $corinthian.partner.confidence>>
<<set _taskDifficulty to 6>>
<<if _npcDiceRoll gte _taskDifficulty>>
<<set _npcWasSuccessful to true>>
<</if>>
<</silently>>\
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
You paint a picture of yourself as a hyper-busy twentysomething corporate professional, throwing herself into her career instead of making time for a relationship. //The best lies are only five degrees away from the truth,// an instructor at _recruitHQ once told you. This lie feels textbook.
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
<<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _holiday to "vacation">>
<<else>>
<<set _holiday to "holiday">>
<</if>>
<</silently>>\
You grab the opportunity to use a new element in your snap cover to reinforce something the target already "knows" about you – in this case, tying in your _holiday here with a story about getting over a breakup.
//Still got it,// you think, as you watch him buy deeper into your cover. It's been a while since you did a field exercise, but you think if your instructors from _recruitHQ could see you right now, they'd be proud.
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
It's always good when you can use things the target already "knows" about you to answer questions about your snap cover. //People don't reject their own ideas,// an instructor at _recruitHQ once told you. //Make use of that.//
"All the travel," you tell him, "I'm in a different city most weekends. I love it, but not many guys would put up with it." It's been a while since you did a field exercise, but you think if that instructor could see you now, he'd be pleased.
<<else>>\
(ERROR IN HASVISITED VAR)
<</if>>\
<<if _npcWasSuccessful>>\
<<set $corinthian.partner.hasChemistry to true>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''passed'' a chemistry check.
</td>
</tr>
</table>
<</nobr>></div>
You're feeling comfortable in your cover role. And with $corinthian.partner.name – for a Tinder date, it's actually going pretty well. He's tall, he's confident, he's quite interesting to talk to, and he's clearly into you...you could see yourself going home with this guy.
The _alcohol may possibly be helping.
<<else>>\
<<set $kate.arousal -= 1>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''failed'' a chemistry check. $kate.firstName -1 Attraction.
</td>
</tr>
</table>
<</nobr>></div>
The conversation shifts back to Alec. The more he talks, the more you realise that you're not feeling a strong attraction – like so many Tinder dates you've been on in the past, a guy who looks good on screen just isn't setting off sparks when you meet in real life.
Normally, that wouldn't be a problem...the date would end with an awkward goodbye kiss, and you'd go back to your <<if $kate.agency == "cia" or $kate.agency == "csis">>apartment<<else>>flat<</if>> for Netflix, no chill.
If you're going to actually go home with this guy tonight instead...you're going to need more _alcohol.
<</if>>\
//[[Order more drinks.|CORINTH-24000 Second visit to the bar]]//
<<else>>\
(ERROR IN CORINTHIAN.PARTNER.NAME VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.name == "Alec">>\
You head back to the bar. After a short wait, you're served by the same barman from earlier. "Tinder date?" he asks while he's making the drinks.
[[How did you know?|CORINTH-24100 Tinder health check][$temp.kateChoice to "howDidYouKnow"]]
[[You're watching me pretty closely.|CORINTH-24100 Tinder health check][$temp.kateChoice to "youreObservant"]]
<<else>>\
(ERROR IN CORINTHIAN.PARTNER.NAME VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "howDidYouKnow">>\
"How'd you know that?" you ask.
"We see a lot of 'em," he smiles. "Sometimes when it's noh as busy as now, we have a wee bet on how it's going. How's yours working out?"
<<elseif $temp.kateChoice == "youreObservant">>\
"You're watching me pretty closely," you observe.
"Hard not to," he grins good-naturedly. "So, how's Mr Tinder working out?"
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
<<if $corinthian.partner.hasChemistry>>\
[[Pretty good.|CORINTH-24200 Kate rates her date][$temp.kateChoice to "prettyGood"]]
[[I'm keeping my options open.|CORINTH-24200 Kate rates her date][$temp.kateChoice to "optionsOpen"]]
[[You're too young for me.|CORINTH-24200 Kate rates her date][$temp.kateChoice to "youreTooYoung"]]
<<else>>\
[[Not great.|CORINTH-24200 Kate rates her date][$temp.kateChoice to "notGreat"]]
[[I hate Tinder.|CORINTH-24200 Kate rates her date][$temp.kateChoice to "iHateTinder"]]
[[You're too young for me.|CORINTH-24200 Kate rates her date][$temp.kateChoice to "youreTooYoung"]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "prettyGood">>\
"Pretty good so far," you reply.
"Och. Well that's nice," he says, without feeling. "Jest send me a signal if ye need a rescue. Wiggle yer eyebrows at me or something."
[[Thanks for the drinks.|CORINTH-25000 Kate returns to her date][$temp.kateChoice to "thanksForTheDrinks"]]
<<link "//[Wiggle your brows]// Like this?" "CORINTH-25000 Kate returns to her date">><<set $temp.kateChoice to "wiggleBrows">><</link>>
<<elseif $temp.kateChoice == "optionsOpen">>\
"I'm keeping my options open," you tell him.
"Aye! Sensible. Well, jest send me a signal if ye need a rescue. Wiggle yer eyebrows at me or something."
[[Thanks for the drinks.|CORINTH-25000 Kate returns to her date][$temp.kateChoice to "thanksForTheDrinks"]]
<<link "//[Wiggle your brows]// Like this?" "CORINTH-25000 Kate returns to her date">><<set $temp.kateChoice to "wiggleBrows">><</link>>
<<elseif $temp.kateChoice == "youreTooYoung">>\
"You're too young for me," you tell him as you scoop up the drinks.
"Ah'm twenty-four," he insists, "Ah've just got a young face."
[[Right. And I'm the Queen of Jupiter.|CORINTH-25000 Kate returns to her date][$temp.kateChoice to "queenOfJupiter"]]
[[Thanks for the drinks.|CORINTH-25000 Kate returns to her date][$temp.kateChoice to "thanksForTheDrinks"]]
<<elseif $temp.kateChoice == "notGreat">>\
"Not great," you admit.
"Aye, thought as much," he nods. "Well, jest send me a signal if ye need a rescue. Wiggle yer eyebrows at me or something."
[[Thanks for the drinks.|CORINTH-25000 Kate returns to her date][$temp.kateChoice to "thanksForTheDrinks"]]
<<link "//[Wiggle your brows]// Like this?" "CORINTH-25000 Kate returns to her date">><<set $temp.kateChoice to "wiggleBrows">><</link>>
<<elseif $temp.kateChoice == "iHateTinder">>\
"I hate Tinder," you pout.
He chuckles and lines up two shot glasses, pouring dark liquor into both of them. "On the house," he says, lifting one in a toast. "Fuck Tinder."
[[Fuck Tinder.|CORINTH-25000 Kate returns to her date][$temp.kateChoice to "fuckTinder"]]
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "thanksForTheDrinks">>\
"Got it. Thanks for the drinks."
<<elseif $temp.kateChoice == "wiggleBrows">>\
"You mean like this?" You wiggle your eyebrows like a crazy person and he laughs out loud.
"Yer cool," he tells you. "Enjoy the drinks."
<<elseif $temp.kateChoice == "queenOfJupiter">>\
"Uh huh. And I'm the Queen of Jupiter."
"Yer Majesty! It's an honour." You smirk at the kid, despite yourself.
<<elseif $temp.kateChoice == "fuckTinder">>\
"Fuck Tinder." You knock back a shot of something fiery, sweet and strong. "Thanks."
"Come back when ye need a top up," he offers.
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
You walk back to the table, and give $corinthian.partner.name his drink. "Where were we?" he asks.
[[You were telling me about...|CORINTH-26000 Date progress]]
<</page>><<silently>>
<<if $corinthian.kateDrink == "whiteWine">>
<<set _alcohol to "Wine">>
<<elseif $corinthian.kateDrink == "redWine">>
<<set _alcohol to "Wine">>
<<elseif $corinthian.kateDrink == "ginAndTonic">>
<<set _alcohol to "Strong drinks">>
<<elseif $corinthian.kateDrink == "jackAndCoke">>
<<set _alcohol to "Strong drinks">>
<<else>>
<<set _alcohol to "(ERROR IN CORINTHIAN.KATEDRINK VAR)">>
<</if>>\
<<if $corinthian.partner.name == "Alec">>\
<<set _partnerDescription to "a tall, handsome architect">>
<<else>>\
<<set _partnerDescription to "(ERROR IN CORINTHIAN.PARTNER.NAME VAR)">>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
<<if $corinthian.partner.hasChemistry>>\
_alcohol, good conversation, and lots of attention from _partnerDescription: you've had worse late nights at work. Some time and several drinks later, you and $corinthian.partner.name are relaxed, laughing and talking like you've known each other a long time.
It's a big relief you feel so comfortable with him. It's going to make the next part of the mission a lot easier.
<<if $corinthian.partner.name == "Alec">>\
"You hungry?" he asks, when your glasses are both empty. "There's this little place that does great pizza. We could grab a slice to go – you said your place is close, right?"
[[Sounds good.|CORINTH-27000 Leaving Corinthian][$temp.kateChoice to "walkMeHomeAlec"]]
<<else>>\
(ERROR IN CORINTHIAN.PARTNER.NAME VAR)
<</if>>\
<<else>>\
TK bad tinder date, Kate not feeling the chemistry.
kate trying to fake flirty and interested anyway.
high points are going to the bar.
back to partner. if this were a normal tinder date, you'd have bailed two hours and four drinks ago.
//[[(Drunk) Go home with him anyway.|CORINTH-28000 Go home with him anyway]]
[[Ditch him and hit on the kid behind the bar instead.|CORINTH-29000 Kate switches target]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "walkMeHomeAlec">>\
"Okay," you reply, "sounds cool." <<if hasVisited("CORINTH-28000 Go home with him anyway")>>Although you're not crazy about Alec, you<<else>>You<</if>> haven't eaten since your late lunch – a slice of pizza actually sounds //great.//
You put on your jacket and leave with Alec, his hand on the small of your back, gently but possessively guiding you to the door. You share one last glance with the young bartender before stepping out into the cold Glasgow night.
<<image "/locationPhotos/uk/3amPizza.jpg" 150 664 275 0>>\
"This way." Alec takes you to a little pizza place, tucked down a side alley. He picks up two big slices of late night pizza and a bottle of wine to take back to [[the safehouse|SHALEC-1000 Back at the safehouse]].
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK Kate inner monologue about deciding to go home with $corinthian.partner.name anyway. I'll be doing the same in Bangkok, may as well get used to it.
"So there's this pizza place around the corner," Alec is saying. "We could get a slice, go back to yours?"
[[Sounds great.|CORINTH-27000 Leaving Corinthian][$temp.kateChoice to "walkMeHomeAlec"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK you're getting way more sparks off the bartender than your actual date. There's no way you'd normally be interested in a young guy like that – you're not even sure you'd believe he's 18 if he weren't working behind a bar – but he's really confident and funny. (There's also something hot about how openly he's hitting on you, he's really into you, you like that.)
Your main concern is that whomever's watching you on surveillance cam tonight is going to think you're a cradle snatcher, but //fuck it,// if you're going to be watched having sex tonight it may as well be with someone you're attracted to, whatever his age.
You make sure you catch the barman's eye when you <<link "leave with $corinthian.partner.name" "CORINTH-30000 Kate ditches her Tinder">><</link>>. He shoots you a rueful smile as you walk away.
<</page>><<silently>>
<<set $header.line1 to "''INGRAM STREET''",
$header.line2 to "GLASGOW / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
TK Outside, Kate gets rid of her date. "You walking this way? Oh, I'm the //other// way..." etc.
You walk a lap of the block, taking in the sights of late night Glasgow, before returning to [[Corinthian|CORINTH-31000 Return to Corinthian]].
<</page>><<silently>>
<<set $header.line1 to "''CORINTHIAN BAR''",
$header.line2 to "GLASGOW / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
TK You push open the door and head inside.
You queue up at the bar. The bartender makes a beeline for you when you appear, a big surprised grin on his face.
[[Kate has a line of dialogue reflecting their earlier encounter i.e. "Twenty-four, huh?" "Two shots of Fuck Tinder please" etc|CORINTH-32000 Waiting for the bartender]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK interaction with Kate and the bartender
He's working, so you prop up the bar and hang out with him in brief snatches between customers.
At about 2240 new bartenders appear and start taking over – the shift who'll run the bar until closing time. Your guy is in his coat and around your side of the bar at light speed.
His little rucksack clinks when he shakes it. "Ah've liberated some supplies," he stage whispers. "C'mon, let's blow this wee joint."
//[[Go home with the bartender.|SHROBBIE-1000 Back at the safehouse]]//
<</page>><<silently>>
<<emote-mouth-open>>
<<set $avatar.foreground.pushUnique("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-open")>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "niceToMeetU">>\
"Nice to meet you, Clark!" you shout back.
"Likewise. Let's [[get inside|FASLANE-1100 JTF building]] before we freeze our asses off."
<<elseif $temp.kateChoice == "whyAmIHere">>\
"Thanks!" you shout back. "What am I doing here?"
"Let's [[get inside|FASLANE-1100 JTF building]] and I'll tell you."
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.foreground.delete("/113Expressions/50_mouth-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-open")>>
<</silently>>\
<<header>>\
<<page>>\
He walks you over to a two-storey building nearby. Back when you were a civilian, you'd have seen an office; now you notice the green tint of EM shielding on the windows, and the bristling array of comm dishes and masts on the roof. This is some kind of secure headquarters.
Military bases have signs everywhere. This building purportedly houses the blandly named 'Force Survey Research Unit'...presumably a cover name for Combined Task Force <small>NEPTUNE.</small>
//A codename for a codename. What am I getting myself into?//
Clark swipes his ID card through a reader, and [[holds open the door|FASLANE-2000 JTF HQ security post]].
<</page>><<silently>>
<<set $header.line1 to "''TASK FORCE NEPTUNE''",
$header.line2 to "FASLANE / MARCH 2018">>
<<if $kate.agency == "cia">>
<<set _agency to "OGA",
_explanation to '"Other Government Agency"'>>
<<elseif $kate.agency == "mi6">>
<<set _agency to "OGD",
_explanation to '"Other Government Department"'>>
<<elseif $kate.agency == "asis">>
<<set _agency to "OGD",
_explanation to '"Other Government Department"'>>
<<elseif $kate.agency == "csis">>
<<set _agency to "OGD",
_explanation to '"Other Government Department"'>>
<<elseif $kate.agency == "nzsis">>
<<set _agency to "OGD",
_explanation to '"Other Government Department"'>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You step out of the windy cold into a small, spartan security room. It's manned by a sour-faced <<if $kate.agency == "mi6">><div class="tooltip">MOD<span class="tooltiptext">Ministry of Defence</span></div><<else>>British<</if>> security guard in a plain black uniform, armed with a handgun.
He has you sign your name and agency into the visitor book, which you do as //<<= $kate.firstName[0].toUpperCase()>> <<= $kate.surname.toUpperCase()>>, <div class="tooltip">_agency<span class="tooltiptext">_explanation</span></div>//. You have to surrender your phone, and let him rummage through your <<handbag>>.
Once you're through security, Clark swipes you through a second door into [[the facility proper|FASLANE-3000 Ops room corridor]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You know what we do here, right?" Clark asks, leading you through a corridor to a door marked <small>//OPERATIONS//.</small> Below that is a sign:
<div style="text-align: center;">\
<small>//''COMSEC WARNING''
NO CLASSIFIED INFORMATION TO BE DISCUSSED WITHIN 2 METRES OF A LIVE HEADSET.
THIS IS A TEMPEST CONFIGURATION CONTROL AREA.//</small>
</div>\
Once you accidentally took your phone into a meeting in a part of <<if $kate.agency == "cia">>the Pentagon<<elseif $kate.agency == "mi6">>Whitehall<<elseif $kate.agency == "asis">>Parliament House<<elseif $kate.agency == "csis">>the Parliament Buildings<<elseif $kate.agency == "nzsis">>the Beehive<<else>>ERROR IN KATE.AGENCY VAR<</if>> that was a <small>TEMPEST</small> area. Everyone got annoyed at you for setting off the alarms.
Clark unlocks the door with a swipe of his keycard. "Here's where we [[look for the bad guys|FASLANE-4000 Ops room]]," he explains.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/opsCentre2.jpg" 150 1000 560 0>>\
The door opens into an ops centre. There's a calm, low murmur of activity, a dozen or so analysts working on screens and talking on headsets. Most of the accents you hear are American.
You've heard of <<if $kate.agency == "cia">>secret<<else>>CIA<</if>> bases like this before – funded out of a black budget, and tucked away in a friendly nation to avoid oversight. This is your first time inside one.
"<div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> supplies the target list," Clark murmurs. "Our role is hunting 'em down. Once we find someone on the list, we task <div class="tooltip">SOF<span class="tooltiptext">Special Operations Forces</span></div> if they're needed alive. Or a drone if not."
"Right." You gaze at the analysts for a few seconds, watching them work. A few are women, but it's mainly men, and you're the youngest in here by far. Everyone else is more like Clark's age.
"C'mon," he says. "I'll fill you in on what [[we're looking for|FASLANE-5000 Olivia]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He walks you through the ops centre. A few analysts glance up as you pass, but Clark doesn't make any introductions. You carry yourself as confidently as you can, hoping they don't mistake you for a new secretary or something.
Clark leads you to a door marked with a handwritten sign:
<div style="text-align: center;">\
<small>//M5
NO ENTRY. KNOCK AND WAIT//</small>
</div>\
But he does neither. Inside you meet another CIA officer: a tall, rail-thin Asian-American woman named <<Olivia>>. Aged around forty, she'd be pretty if not for the flinty, aggressive hardness that animates her facial features.
"$kate.firstName, hi." Her handshake is brief and professional.
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[G'day.|FASLANE-6000 Olivia introduction][$temp.playerDecision to "gday"]]
<<else>>\
[[Hi.|FASLANE-6000 Olivia introduction][$temp.playerDecision to "hi"]]
<</if>>\
[[Pleased to meet you.|FASLANE-6000 Olivia introduction][$temp.playerDecision to "pleasedToMeetYou"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "gday">>\
"G'day."
<<elseif $temp.playerDecision == "hi">>\
"Hi."
<<elseif $temp.playerDecision == "pleasedToMeetYou">>\
<<emote-nose-wrinkle>>\
<<emote-mouth-smile>>\
"Pleased to meet you."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Need to read you into another compartment before we start," she says. //Secrets within secrets.// You take a quick [[glance around her office|FASLANE-7000 A wall of Kates]] while she finds the paperwork.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
It's a normal office, except for the telltale signs it's being used by intelligence officers – two phones on each desk (one normal, one secure), a TV screen on the wall for quickly tuning into the news, various <<if $kate.agency == "cia" or $kate.agency == "csis">>trash<<else>>waste<</if>> bags with arcane markings like //BURN,// //DEST/DEG// and //TOP SECRET PULP.//
Up on a whiteboard, a set of passport photos are arranged. You count photos of...13 women. All around your age, makeup free, expressions neutral, hair cut short or scraped into buns and ponytails.
Professional twentysomethings, posing for their work ID mugshots. Yours is one of them. //<<= $kate.firstName[0].toUpperCase()>><<= $kate.surname[0].toUpperCase()>> (<<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>NZSIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>)// is written beneath in a neat, feminine hand.
"Here we go," says <<Olivia>>, passing you another [[access control form|FASLANE-8000 Read in]] to sign.
<</page>><<silently>>
<<remove-tanLeatherHandbag>>
<</silently>>\
<<header>>\
<<page>>\
You sign the document, and it gets filed away. "Okay...$kate.firstName $kate.surname," says Clark, sprawling back in his office chair. "What can you tell us about the Al-Ahmadi Network?"
[[Secret terror finance network, based out of Kuwait.|FASLANE-9000 Al-Ahmadi Network][$temp.kateChoice to "secretNetwork"]]
[[It funnels oil money to Jihadist terror groups.|FASLANE-9000 Al-Ahmadi Network][$temp.kateChoice to "oilMoney"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "secretNetwork">>\
//Easy start.// "That's a financing network," you answer confidently. "Very secretive. Based out of Kuwait."
<<elseif $temp.kateChoice == "oilMoney">>\
//Easy start.// "It's a financing network," you answer confidently. "It funnels oil money out to Jihadist terror groups."
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
"Bingo. So you probably know leads on Al-Ahmadi are rare like rocking horse shit?"
You nod. Not exactly how you'd have put it in a report, but yeah: Al-Ahmadi's tradecraft is very good. So good, in fact, most analysts suspect it gets training and support from an unknown <div class="tooltip">HIS<span class="tooltiptext">Hostile Intelligence Service</span></div>. It definitely has top cover from hardliners in the Kuwaiti government.
"Well...we've [[picked something up|FASLANE-10000 DEVILFISH]]," says Clark.
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
<<Olivia>> wakes her laptop. An artist's impression of a Middle Eastern male appears on the office TV screen.
<<image "/locationPhotos/uk/devilfishReloaded.jpg" 30 1000 557 0>>\
"This guy is codenamed <small>DEVILFISH,"</small> she says. "We don't know his real name, or even his nationality, but he's been on our <div class="tooltip">HVT<span class="tooltiptext">High Value Target</span></div> list for some time."
[[Who is he?|FASLANE-11000 Who is the DEVILFISH]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
"Who is he?" you ask, staring at his face on the screen.
<<image "/locationPhotos/uk/devilfishReloaded.jpg" 30 1000 557 0>>\
"Kind of a broker for Al-Ahmadi," Clark answers. "He meets the terror cells, reports back what they need, hooks them up with a <div class="tooltip">hawala<span class="tooltiptext">an informal, unregulated international cash banking network</span></div> banker if they get the green light."
"Textbook <div class="tooltip">connector<span class="tooltiptext">person with many contacts inside a target group. Priority targets for kill or capture</span></div>," says <<Olivia>>. "Juicy target for us."
"Yeah," agrees Clark. "Lot of people want a little talk with this guy."
[[Got it.|FASLANE-12000 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it."
"So..." <<Olivia>> goes on. "Little while ago, <div class="tooltip">ASD<span class="tooltiptext">Australian Signals Directorate</span></div> gets lucky with an intercept. A guy we think is <small>DEVILFISH</small> sets up a meet with a senior guy in <div class="tooltip">Abu Sayyaf<span class="tooltiptext">Islamic terror group; has carried out bombings, beheadings and kidnappings in the Phillippines since 1989</span></div>.
"We couldn't track the meet – but we did get the location <small>DEVILFISH</small> made the call from."
[[What location?|FASLANE-13000 What location]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.firstName != "Olivia">>
<<set _liv to "Liv">>
<<else>>
<<set _liv to "Mandy">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What location?" you ask.
"Bangkok," she replies. "Radius of a few blocks. So the <<if $kate.agency == "asis">><div class="tooltip">Brits<span class="tooltiptext">MI6</span></div><<else>><div class="tooltip">Aussies<span class="tooltiptext">Australian Secret Intelligence Service</span></div><</if>> lent us a guy, and he managed to narrow it down to a certain club. He assesses <small>DEVILFISH</small> will return there in future." She shrugs. "Apparently he likes this club."
"We wanna have a grab team in place next time he swings by, obviously," says Clark. "Problem we got – and this is why you're here – is a //very// complex intel picture in the club itself. _liv?"
<<Olivia>> taps a key, and the slide on screen changes to a photo of a [[lurid neon sign|FASLANE-14000 The Hard Cock Cafe]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Club's in a red light district," says <<Olivia>>. She wrinkles her nose in distaste. "It's called...//The Hard Cock Cafe."//
<<image "/locationPhotos/uk/hardCockCafeNeonSign.jpg" 50 1000 615 0>>\
You stare at the sign for a moment. The phallic guitar, blasting white musical notes all over a neon blonde's face, might just be the [[tackiest thing you've ever seen|FASLANE-15000 HCC briefing]].
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"It's a strip club with a bar and a brothel," <<Olivia>> explains. "The gimmick is it hires western girls...it's where tourists go to have sex with a broke backpacker, instead of a local Thai girl."
"Our <<if $kate.agency == "asis">>Brit<<else>>Aussie<</if>> on the ground was developing an agent," says Clark, "one of the girls who worked there. Turns out this place is neck-deep in Thai <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div>, plus there are links to local high officials we're not clear on."
<<link "//Was// developing her? What happened?" "FASLANE-16000 What happened to FALLOUT?">><</link>>
<</page>><<silently>>
<<emote-brows-rogerMoore>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//"Was// developing her?"
"Yeah, we lost contact," Clark frowns. "Most likely <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div> got suspicious – so she's probably dead. We pulled out the <<if $kate.agency == "asis">>Brit<<else>>Aussie<</if>> in case she burned him. So," he shrugs, "we need a fresh officer to illuminate this place. Grab team can't go in blind."
"We send in another male officer, he has to be a customer," says <<Olivia>>. "Limited insight, plus he'll stick out like a sore thumb if he spends too much time there. But this place //hires// white backpackers your age."
You look at her, alarmed.
<<link "Wait...you want me to go undercover //in a brothel?//" "FASLANE-17000 Undercover in a brothel?">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wait," you say, startled. "You want me to go undercover in a //brothel?"//
"Yep," Clark nods.
//"Kinda,"// <<Olivia>> clarifies. "So...some girls there are hookers. But some are just barmaids – they work topless, but they don't have sex, they just serve drinks. That's what we want you to go for."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
[[Me, a topless bartender? Seriously?|FASLANE-19000 Topless bartender?]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _hq to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _hq to "London">>
<<elseif $kate.agency == "asis">>
<<set _hq to "Canberra">>
<<elseif $kate.agency == "csis">>
<<set _hq to "Ottawa">>
<<elseif $kate.agency == "nzsis">>
<<set _hq to "Wellington">>
<</if>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This is outrageous," you protest. "I'm an //intelligence officer,// I'm not...taking my clothes off in some seedy bar."
"There's our answer," <<Olivia>> says with a shrug.
"Yep," says Clark, standing up. "Thanks for coming, $kate.firstName. We'll get you read out of the op, you can fly back either tonight or tomorrow."
"Mhmm. Nice meeting you," <<Olivia>> says dismissively. Her eyes are already looking past you to the board of ID photos on the wall, their set of [[other potential agents|country-select]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry, a...topless barmaid?" Instinctively you pull your jacket tighter around your <<if $kate.braSize == "small">>small bust<<elseif $kate.braSize == "medium">>chest<<elseif $kate.braSize == "large">>ample bust<</if>>. //What the hell?// "Seriously?"
"You'd have full access to the site," <<Olivia>> points out. "You could shine a light on the whole place – layout, patterns, who's who."
"The clearer the intel picture, more likely the grab team is to get in and out with <small>DEVILFISH</small> and no casualties," says Clark.
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
[[But I've never done anything like that before.|FASLANE-19001 Never done anything like it]]
[[How would I even get the job?|FASLANE-19003 How would I get the job?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But...I've never done anything like that before."
"You had a bar job, right?" asks <<Olivia>>. "After <<university>>?"
[[Yeah, but not topless.|FASLANE-19002 Not that kind of bar]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes but...not //that// kind of bar."
"You've got bar experience." <<Olivia>> shrugs. "You'd figure the rest out."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[Can't we just recruit another hooker?|FASLANE-19005 Talent spotting?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How would I even //get// that job?" you ask.
"Pose as a backpacker. Walk in, ask if they're hiring," shrugs Clark.
[[What if they're not?|FASLANE-19004 What if they're not?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What if they're not?"
"If they're not, they're not. We'll have to try something else."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[Can't we just recruit another hooker?|FASLANE-19005 Talent spotting?]]
[[What would this do to my career?|FASLANE-19006 What would this do to my career?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Couldn't we just...recruit another hooker?"
"Maybe," nods Clark. "<div class="tooltip">Talent spotting<span class="tooltiptext">Identifying potential agents</span></div> would be part of your mission."
"And they'll probably open up quicker to a female colleague than some random guy in the bar," adds <<Olivia>>.
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[What...exactly is the mission?|FASLANE-19007 What exactly is the mission?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"If I said yes to this," you venture, "what would that do to my career?"
"We're not HR reps," cautions Clark. "But good things, I guess? Not many young officers have a <div class="tooltip">NOC<span class="tooltiptext">Non Official Cover: a posting in a hostile environment, without diplomatic immunity</span></div> mission on their service record."
"All the details stay <div class="tooltip">compartmentalised<span class="tooltiptext">never shared outside the mission team, regardless of security clearance</span></div>," adds <<Olivia>>. "You don't have to worry about office gossip when you get back."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[What...exactly is the mission?|FASLANE-19007 What exactly is the mission?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What...exactly is the mission?"
"Infiltrate and illuminate," says Clark.
"Build up a clear intel picture of this club," says <<Olivia>>. "Then we move forward based on that."
"Maybe you stay in place and guide the grab team when they go in," Clark says. "Maybe Langley buys the club and we turn the whole place into a trap for <small>DEVILFISH</small>. We need eyes in there, right now we're flying blind."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[And...it's just going topless?|FASLANE-19008 It's just going topless?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"And...it's just going topless? Nothing else?"
"Yeah," nods Clark. "The barmaids seem to be separate from the hookers."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[What are the risks?|FASLANE-19009 Risks?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are the risks?"
"Main adversary at this stage is Thai <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div>," says Clark.
"They're not affiliated with Al-Ahmadi," says <<Olivia>>. "Probably don't even know they exist. But they're ruthless, they'll kill anyone they think is an informant."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[I'm not afraid of some Thai thugs.|FASLANE-19010 Not afraid]]
[[What backup would I have?|FASLANE-19011 Backup]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not afraid of some lowlife thugs."
"Be careful," frowns <<Olivia>>. "We've already lost an agent."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What backup would I have?"
"Standard <<if $kate.agency == "cia">>Agency<<else>>CIA<</if>> support in the field," says Clark. "Unlimited mission budget, but careful how you use it. You wanna seem broke enough to need a job in the club."
"Plus armed backup nearby," adds <<Olivia>>. "At least one guy, ex-special ops, more when we're getting ready to grab <small>DEVILFISH</small>. You'll have a way of calling 'em in if you need 'em."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. This is not for me." "FASLANE-32000 Kate refuses">><</link>>
[[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not sure I can do that."
"Sure you can," <<Olivia>> says. "It's just acting a role."
"You'll have full <<if $kate.agency == "cia">>Agency<<else>>CIA<</if>> support," promises Clark. "Budget, equipment, armed backup on standby in case you need it."
<<include "FASLANE-19060 Briefing Q&A">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"What...exactly is the mission?" you ask tentatively.
"Infiltrate and illuminate," says Clark.
"Build up a full intel picture of this brothel," says <<Olivia>>. "Layout, patterns, who's who, what goes on behind the scenes."
"We only get one shot at //DEVILFISH,"// adds Clark. "The more intel you pick up, the more likely it is that op goes right."
<<include "FASLANE-19060 Briefing Q&A">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"If I do it...if we catch DEVILFISH," you venture. "What's the impact of that?"
"Hard to say," shrugs Clark. "Worst case, he's removed, that disrupts Al-Ahmadi for a while. Probably planned attacks get delayed, maybe some terror cells wither without funds."
"Best case is we get him to talk," says <<Olivia>>. "Who knows what that could lead us to."
"Remember...that's how we caught <div class="tooltip">OBL<span class="tooltiptext">Osama bin Laden</span></div>, tracking a courier," says Clark.
<<include "FASLANE-19060 Briefing Q&A">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Isn't there some other way?" you ask. "Can't we just...recruit another hooker?"
"Maybe," Clark shrugs, "but we don't know who. <div class="tooltip">Talent spotting<span class="tooltiptext">Identifying potential agents</span></div> would be part of your mission."
"We need eyes in there before we make a move like that," says <<Olivia>>. "Only question is, which side of the bar do we want them."
<<include "FASLANE-19060 Briefing Q&A">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"If I say yes...what happens to my career?"
"Good things," shrugs Clark. "You'd have a <div class="tooltip">NOC<span class="tooltiptext">Non Official Cover: a posting in a hostile environment, without diplomatic immunity</span></div> undercover mission under your belt, aged $kate.age. That's pretty rare."
"We'd keep all the details compartmentalised inside the Task Force," adds <<Olivia>>. "No gossip to worry about back in <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>."
"And no<<if $kate.agency != "cia">>, uh..." Clark snaps his fingers as he gropes for the name of the body overseeing <<if $kate.agency == "mi6">>British<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>New Zealand's<<else>>ERROR IN KATE.AGENCY VAR<</if>> foreign intelligence operations. "<<if $kate.agency == "mi6">>...Joint Intelligence Committee<<elseif $kate.agency == "asis">>...Intelligence & Security Committee<<elseif $kate.agency == "csis">>...Security Intelligence Review Committee<<elseif $kate.agency == "nzsis">>...Inspector General's Office<<else>>ERROR IN KATE.AGENCY VAR<</if>><<else>> Senate Select Committee<</if>> sticking their nose in later<<if $kate.agency == "cia">>," says Clark. "<<else>>. <</if>>Task Forces like this get set up to avoid that."
"If I were your age, I'd jump at it," <<Olivia>> says. "Definitely."
<<include "FASLANE-19060 Briefing Q&A">>
<</page>><span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19020 What exactly is the mission")>>\
<<set _disableWhatsTheMission to true>>\
[[What...exactly is the mission?|FASLANE-19020 What exactly is the mission]]
<<elseif not hasVisited("FASLANE-19030 What's the impact?")>>\
<<set _disableWhatsTheImpact to true>>\
[[What's the impact of capturing DEVILFISH?|FASLANE-19030 What's the impact?]]
<<elseif not hasVisited("FASLANE-19040 Isn't there some other way?")>>\
<<set _disableSomeOtherWay to true>>\
[[Can't we just recruit another hooker?|FASLANE-19040 Isn't there some other way?]]
<<elseif not hasVisited("FASLANE-19050 What about my career?")>>\
<<set _disableWhatAboutMyCareer to true>>\
[[What about my career?|FASLANE-19050 What about my career?]]
<</if>>\
<<if not hasVisited("FASLANE-19020 What exactly is the mission") and not _disableWhatsTheMission>>\
[[What...exactly is the mission?|FASLANE-19020 What exactly is the mission]]
<<elseif not hasVisited("FASLANE-19030 What's the impact?") and not _disableWhatsTheImpact>>\
[[What's the impact of capturing DEVILFISH?|FASLANE-19030 What's the impact?]]
<<elseif not hasVisited("FASLANE-19040 Isn't there some other way?") and not _disableSomeOtherWay>>\
[[Can't we just recruit another hooker?|FASLANE-19040 Isn't there some other way?]]
<<elseif not hasVisited("FASLANE-19050 What about my career?") and not _disableWhatAboutMyCareer>>\
[[What about my career?|FASLANE-19050 What about my career?]]
<<else>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</if>>\<<silently>>
<<if lastVisited("FASLANE-19000 Topless bartender?") is 1>>
<<emote-brows-raised>>
<<elseif lastVisited("FASLANE-19000 Topless bartender?") is 2>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<else>>
<<emote-brows-attentive>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Can't we just...recruit another hooker?" you ask.
"Maybe," Clark shrugs, "but we don't know who. <div class="tooltip">Talent spotting<span class="tooltiptext">Identifying potential agents</span></div> would be part of your mission."
"We need an officer in there," says <<Olivia>>. "Only question is, which side of the bar."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19900 Another agent?")>>\
[[Can't we just recruit another hooker?|FASLANE-19900 Another agent?]]
<</if>>\
<<if not hasVisited("FASLANE-20000 Mission briefing?")>>\
[[What is the mission exactly?|FASLANE-20000 Mission briefing?]]
<</if>>\
<<if not hasVisited("FASLANE-22000 How do I get hired?")>>\
[[How do I get hired?|FASLANE-22000 How do I get hired?]]
<</if>>\
<<if not hasVisited("FASLANE-25000 Risk assessment")>>\
[[What are the risks?|FASLANE-25000 Risk assessment]]
<</if>>\
<<if not hasVisited("FASLANE-21000 Support?")>>\
[[What support would I have?|FASLANE-21000 Support?]]
<</if>>\
<<if not hasVisited("FASLANE-24000 Career impact")>>\
[[If I say yes, what does this do to my career?|FASLANE-24000 Career impact]]
<</if>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<if lastVisited("FASLANE-19000 Topless bartender?") is 1>>
<<emote-brows-raised>>
<<elseif lastVisited("FASLANE-19000 Topless bartender?") is 2>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<else>>
<<emote-brows-attentive>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What is the mission exactly?" you ask.
"Infiltrate and illuminate," says Clark.
"Build up a full intel picture of the Hard Cock Cafe," says <<Olivia>>. "Layout, patterns, who's who."
"We only get one shot at //DEVILFISH,"// adds Clark. "The less surprises on the ground, the better."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19900 Another agent?")>>\
[[Can't we just recruit another hooker?|FASLANE-19900 Another agent?]]
<</if>>\
<<if not hasVisited("FASLANE-20000 Mission briefing?")>>\
[[What is the mission exactly?|FASLANE-20000 Mission briefing?]]
<</if>>\
<<if not hasVisited("FASLANE-22000 How do I get hired?")>>\
[[How do I get hired?|FASLANE-22000 How do I get hired?]]
<</if>>\
<<if not hasVisited("FASLANE-25000 Risk assessment")>>\
[[What are the risks?|FASLANE-25000 Risk assessment]]
<</if>>\
<<if not hasVisited("FASLANE-21000 Support?")>>\
[[What support would I have?|FASLANE-21000 Support?]]
<</if>>\
<<if not hasVisited("FASLANE-24000 Career impact")>>\
[[If I say yes, what does this do to my career?|FASLANE-24000 Career impact]]
<</if>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<if lastVisited("FASLANE-19000 Topless bartender?") is 1>>
<<emote-brows-raised>>
<<elseif lastVisited("FASLANE-19000 Topless bartender?") is 2>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<else>>
<<emote-brows-attentive>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What support would I have?"
"Standard agency support in the field," says Clark. "Unlimited mission budget."
"Plus armed backup nearby," adds <<Olivia>>. "At least one guy, ex-<div class="tooltip">SOF<span class="tooltiptext">Special Operations Forces</span></div>, more when we're getting ready to grab DEVILFISH. You'll have a way of calling 'em in if you need 'em."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19900 Another agent?")>>\
[[Can't we just recruit another hooker?|FASLANE-19900 Another agent?]]
<</if>>\
<<if not hasVisited("FASLANE-20000 Mission briefing?")>>\
[[What is the mission exactly?|FASLANE-20000 Mission briefing?]]
<</if>>\
<<if not hasVisited("FASLANE-22000 How do I get hired?")>>\
[[How do I get hired?|FASLANE-22000 How do I get hired?]]
<</if>>\
<<if not hasVisited("FASLANE-25000 Risk assessment")>>\
[[What are the risks?|FASLANE-25000 Risk assessment]]
<</if>>\
<<if not hasVisited("FASLANE-21000 Support?")>>\
[[What support would I have?|FASLANE-21000 Support?]]
<</if>>\
<<if not hasVisited("FASLANE-24000 Career impact")>>\
[[If I say yes, what does this do to my career?|FASLANE-24000 Career impact]]
<</if>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<if lastVisited("FASLANE-19000 Topless bartender?") is 1>>
<<emote-brows-raised>>
<<elseif lastVisited("FASLANE-19000 Topless bartender?") is 2>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<else>>
<<emote-brows-attentive>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"How would I get hired?" you ask.
"Go in posing as a backpacker," says Clark. "Ask for a job."
"If they turn you down, we'll need to come up with something more subtle," says <<Olivia>>. "But the direct route will save a lot of time if it works."
"It'll work," says Clark.
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19900 Another agent?")>>\
[[Can't we just recruit another hooker?|FASLANE-19900 Another agent?]]
<</if>>\
<<if not hasVisited("FASLANE-20000 Mission briefing?")>>\
[[What is the mission exactly?|FASLANE-20000 Mission briefing?]]
<</if>>\
<<if not hasVisited("FASLANE-22000 How do I get hired?")>>\
[[How do I get hired?|FASLANE-22000 How do I get hired?]]
<</if>>\
<<if not hasVisited("FASLANE-25000 Risk assessment")>>\
[[What are the risks?|FASLANE-25000 Risk assessment]]
<</if>>\
<<if not hasVisited("FASLANE-21000 Support?")>>\
[[What support would I have?|FASLANE-21000 Support?]]
<</if>>\
<<if not hasVisited("FASLANE-24000 Career impact")>>\
[[If I say yes, what does this do to my career?|FASLANE-24000 Career impact]]
<</if>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<if $kate.agency == "cia">>\
<<set _oversight to "a Senate Select Committee",
_yourAgency to "Langley">>
<<elseif $kate.agency == "mi6">>\
<<set _oversight to "a Joint Intelligence Committee",
_yourAgency to "MI6">>
<<elseif $kate.agency == "asis">>\
<<set _oversight to "an Intelligence & Security Committee",
_yourAgency to "ASIS">>
<<elseif $kate.agency == "csis">>\
<<set _oversight to "a Security Intelligence Review Committee",
_yourAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>\
<<set _oversight to "an Inspector General",
_yourAgency to "NZSIS">>
<</if>>\
<<if lastVisited("FASLANE-19000 Topless bartender?") is 1>>
<<emote-brows-raised>>
<<elseif lastVisited("FASLANE-19000 Topless bartender?") is 2>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<else>>
<<emote-brows-attentive>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"If I say yes, what happens to my career?"
"You'll have a <div class="tooltip">NOC<span class="tooltiptext">Non-Official Cover</span></div> job under your belt," shrugs Clark. "Not many officers in their twenties can say that."
"Hardly anyone will know the details," adds <<Olivia>>, "so don't worry about office gossip when you get back. Everything here's compartmentalised, and we don't have _oversight to worry about."
"Maybe you can stay on here after," says Clark, "help with the follow-up. //Maybe.// You're pretty green, but if you do a solid job..."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19900 Another agent?")>>\
[[Can't we just recruit another hooker?|FASLANE-19900 Another agent?]]
<</if>>\
<<if not hasVisited("FASLANE-20000 Mission briefing?")>>\
[[What is the mission exactly?|FASLANE-20000 Mission briefing?]]
<</if>>\
<<if not hasVisited("FASLANE-22000 How do I get hired?")>>\
[[How do I get hired?|FASLANE-22000 How do I get hired?]]
<</if>>\
<<if not hasVisited("FASLANE-25000 Risk assessment")>>\
[[What are the risks?|FASLANE-25000 Risk assessment]]
<</if>>\
<<if not hasVisited("FASLANE-21000 Support?")>>\
[[What support would I have?|FASLANE-21000 Support?]]
<</if>>\
<<if not hasVisited("FASLANE-24000 Career impact")>>\
[[If I say yes, what does this do to my career?|FASLANE-24000 Career impact]]
<</if>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<if lastVisited("FASLANE-19000 Topless bartender?") is 1>>
<<emote-brows-raised>>
<<elseif lastVisited("FASLANE-19000 Topless bartender?") is 2>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<else>>
<<emote-brows-attentive>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What are the risks?" you ask.
"Main adversary at this stage is local <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div>," says Clark.
"They're not affiliated with Al-Ahmadi," says <<Olivia>>. "Probably don't even know they exist. But they're ruthless, they'll kill anyone they think is an informant."
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Outrageous. No way." "FASLANE-18000 Kate walks out">><</link>>
<<if not hasVisited("FASLANE-19900 Another agent?")>>\
[[Can't we just recruit another hooker?|FASLANE-19900 Another agent?]]
<</if>>\
<<if not hasVisited("FASLANE-20000 Mission briefing?")>>\
[[What is the mission exactly?|FASLANE-20000 Mission briefing?]]
<</if>>\
<<if not hasVisited("FASLANE-22000 How do I get hired?")>>\
[[How do I get hired?|FASLANE-22000 How do I get hired?]]
<</if>>\
<<if not hasVisited("FASLANE-25000 Risk assessment")>>\
[[What are the risks?|FASLANE-25000 Risk assessment]]
<</if>>\
<<if not hasVisited("FASLANE-21000 Support?")>>\
[[What support would I have?|FASLANE-21000 Support?]]
<</if>>\
<<if not hasVisited("FASLANE-24000 Career impact")>>\
[[If I say yes, what does this do to my career?|FASLANE-24000 Career impact]]
<</if>>\
<span class="greyedOut">//[No more questions]//</span> [[I need a minute to think about it.|FASLANE-27000 Not what I was expecting]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Wow. Okay." You run a hand through your hair as you take all this in. "Not what I was expecting. I need a minute."
"Sure." <<Olivia>> smiles sympathetically. "I'll let you out, you can get some fresh air, think it over."
"Don't freeze your ass off," says Clark.
//[[Head outside and think.|FASLANE-29000 Loch view]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Is that okay?"
"Sure," she replies, rising to her feet. "I'll let you out, you can get some fresh air while you think."
"Don't freeze your ass off," says Clark.
//[[Head outside and think.|FASLANE-29000 Loch view]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''FASLANE NAVAL BASE''",
$header.line2 to "SCOTLAND / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<Olivia>> lets you out of the building, letting you wander...and think.
Outside it's bright, windy and cold. Over on the landing pad, the heli that brought you in is now hooked up to a camouflaged fuel truck.
This part of Faslane is quiet. You walk up to the edge of the loch and gaze out at a US Navy destroyer, gliding across the cold water, sleek and powerful. //CIA aren't the only US force with an interest in this place.//
Noises drift over from the main part of the base: engines, voices, the clanging and drilling of industrial work.
<<image "/locationPhotos/uk/destroyerOnLoch.jpg" 45 1000 400 0>>\
//[[Think it over.|FASLANE-30000 Pros and cons]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Well.// Whatever shape you imagined your first field undercover posting would take...taking your clothes off in some seedy foreign bar was not it.
You've worked hard and made sacrifices to be taken seriously in a male-dominated profession. You don't even wear lipstick or short skirts to the office, because you never want to be mistaken for one of the secretaries.
It feels like agreeing to this mission could undermine [[all of that|FASLANE-30100 But still...]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
On the other hand...it's just going topless, right? And opportunities to work in the field with a task force like this don't come around often, especially this early in an intelligence career.
Despite the indignity, it's hard to say no. Especially because if you do, you know the next girl from that whiteboard will be flown in tomorrow. Who'll probably leap at the chance to take off her bra, if that gets her into the field.
//What the hell am I going to do.//
Your <<if $kate.hairStyle != "short">>hair blows and your <</if>>clothes ripple in the bracing, salty wind. After a few minutes, you head [[back inside|FASLANE-31000 Kate's verdict]], confident you've reached a decision.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''TASK FORCE NEPTUNE''",
$header.line2 to "FASLANE / MARCH 2018">>
<<if $kate.agency == "cia">>
<<set _myAgency to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _myAgency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _myAgency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _myAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _myAgency to "NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Clark and <<Olivia>> look up expectantly as you return to their office.
<span class="greyedOut">//[Refuse the mission]//</span> <<link "Sorry. It's not for me." "FASLANE-32000 Kate refuses">><</link>>
[[I'll do it.|FASLANE-36000 Kate volunteers]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FASLANE-33000 Kate sets a condition")>>\
"Then it's no deal," you say.
<<else>>\
"I'm sorry," you shake your head. "This is not for me."
<</if>>\
"No problem," says <<Olivia>>. "Thanks for coming, anyway."
"Yeah," says Clark, standing up. "Nice meeting you, $kate.firstName. Give us a few minutes, and we'll let you know if we can fly you back tonight or tomorrow."
And that's it...a meeting you'll remember for the rest of your life. From time to time you wonder about Clark and <<Olivia>>, and [[who they found|country-select]] to volunteer...
<</page>><<silently>>
<<emote-brows-naughty>>
<<emote-mouth-oh>>
<<if $kate.agency == "cia">>
<<set _myAgency to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _myAgency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _myAgency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _myAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _myAgency to "NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I'll do it if I can have a say on who at _myAgency gets read in."
<<Olivia>> looks to Clark, who shakes his head.
"Sorry," he says, "I get why you're asking, but we don't know who we'll need to bring in later. That's not possible."
"I guess what we can say is we'll keep the access list as tight as possible," offers <<Olivia>>. "No unnecessary eyes."
That's true of //all// ops, really...but she's giving you a way to climb down without losing face.
<<link "//[Play hardball]// Then it's no deal." "FASLANE-32000 Kate refuses">><</link>>
[[Okay, that'll have to be good enough.|FASLANE-34000 Kate backs down]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<<if $kate.firstName != "Olivia">>
<<set _liv to "Liv">>
<<else>>
<<set _liv to "Mandy">>
<</if>>
<<if $kate.agency == "cia">>
<<set _katesAgency to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _katesAgency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _katesAgency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _katesAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _katesAgency to "NZSIS">>
<</if>>
<<set $kate.cover.firstname to $kate.firstName>>
<<cover-setKnownAs>>
<<cover-setCoverSurName>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you say, "that'll have to be good enough. I'll do it."
"Good call," nods Clark.
"Excellent. Welcome to the team," smiles <<Olivia>>.
"Okay, _liv, I'll call _katesAgency and tell 'em we're keeping $kate.firstName. You wanna [[get her oriented|FASLANE-37000 Kate orientation]]?"
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-eyes-squint>>
<<emote-mouth-oh>>
<<if $kate.agency == "cia">>
<<set _myAgency to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _myAgency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _myAgency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _myAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _myAgency to "NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"If I say yes..." you offer guardedly, "what happens next?"
"A few days here with us on mission prep," says <<Olivia>>. "Then we'll send you somewhere in the region for a week or so to acclimatise and pick up a tan."
"Then it's on to Bangkok," says Clark. "Pose as a broke backpacker, and get a job at the Hard Cock Cafe."
<<link "//[Refuse the mission]// Sorry. It's not for me." "FASLANE-32000 Kate refuses">><</link>>
[[Okay, I'll do it.|FASLANE-36000 Kate volunteers]]
<<link "I'll do it, //if// I can have a say on who at _myAgency gets read in." "FASLANE-33000 Kate sets a condition"]]>><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<if $kate.firstName != "Olivia">>
<<set _liv to "Liv">>
<<else>>
<<set _liv to "Mandy">>
<</if>>
<<if $kate.agency == "cia">>
<<set _katesAgency to "Langley">>
<<elseif $kate.agency == "mi6">>
<<set _katesAgency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _katesAgency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _katesAgency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _katesAgency to "NZSIS">>
<</if>>
<<set $kate.cover.firstname to $kate.firstName>>
<<cover-setKnownAs>>
<<cover-setCoverSurName>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you tell them. "If it really will help catch an <div class="tooltip">HVT<span class="tooltiptext">High Value Target</span></div>...I'll do it."
"Good call," nods Clark.
"Yeah," smiles <<Olivia>>. "Welcome to the Task Force."
"Okay, _liv, I'll call _katesAgency and tell 'em we're keeping $kate.firstName. You wanna [[get her oriented|FASLANE-37000 Kate orientation]]?"
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," <<Olivia>> replies. "We'll start work on your <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div> today, but first let me show you round this place. You'll be based here at Faslane [[for the next few days...|FASLANE-39100 Title card]]"
/* cover stuff "I'll give you the grand tour shortly, $kate.firstName, but let's start with the basics. We need to set you up with a cover identity..."
UNDERCOVER DETAILS FORM (TK)
Choose a codename and cover identity for the mission
<span id="coverNames">
<<cover-names>>
</span>
When the details are set, the player can [[continue|FASLANE-38000 Grand tour]]. */\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Great," says <<Olivia>>. "We'll start work on your <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div> today, but first let me show you round this place. You'll be based here at Faslane [[for the next few days...|FASLANE-39100 Title card]]"
<</page>><<silently>>
<<first>>
<<addNotification "Green links" "Click them for a surveillance photo!">>
<</first>>
<<set $header.line1 to "''FASLANE NAVAL BASE''",
$header.line2 to "SCOTLAND / APRIL 2018">>
<<remove-jacket-tanTwinButtonSuitJacketWithRolledUpSleeves>>
<<emote-calm>>
/* Preload clothes for next scene */
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/bootcutBlueJeans/30_trousers-darkBlueDenimBootcutJeans-highHeels.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/bootcutBlueJeans/30_trousers-darkBlueDenimBootcutJeans-highHeels-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/30_shirt-beigeSilkCollarlessFittedBlouseWithFoldedSleeves-' + $kate.braSize + '.png">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/30_shirt-beigeSilkCollarlessFittedBlouseWithFoldedSleeves-rear.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/shoes/15_shoes-blackSuedeAnklePlatformHeels">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/shoes/15_shoes-blackSuedeAnklePlatformHeels-rear">' >>
<<= '<img src="' + $imagePath.avatar + '/malaysia/60_sunglasses-blackLensesWithBlackFrameOversized">' >>
<</silently>>\
<<header>>\
<<page>>\
The next few days go by in a blur of intense mission prep.
You work closely with Clark and <<Olivia>>: building and memorising your cover, poring over the plans and mission reports, and learning about the <span class="imageLink"><<link "Thai organised crime gangs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/uk/redWa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> that control the red light districts in Bangkok.
They'll be the main threat in the field, not Al-Ahmadi, so it's critical they never suspect that you're more than you're [[pretending to be|FASLANE-40000 Welcome to the Faslane]].
<</page>><<silently>>
<</silently>>\
<a data-passage="FASLANE-39000 Training montage">
<<= '<img src='+ $imagePath.base + "locationPhotos/uk/faslaneTitleCard2.jpg"+' >'>>
</a><<silently>>
/* Preload clothes for next scene */
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/bootcutBlueJeans/30_trousers-darkBlueDenimBootcutJeans-barefoot.png">' >>
<<= '<img src="' + $imagePath.avatar + '/clothing/trousers/bootcutBlueJeans/30_trousers-darkBlueDenimBootcutJeans-barefoot-rear.png">' >>
<</silently>>\
<<header>>\
<<page>>\
Faslane feels like a small town. Around 7,000 people, military and civilian, work here: from sailors, Royal Marines and armed police to nurses, chefs and gardeners.
<<image "/locationPhotos/uk/faslaneLongshot.jpg" 323 1000 500 0>>\
There are offices, accommodation blocks, shops, a dining hall and a couple of bars. Groups of young people move around with the usual banter and laughter.
If not for the military uniforms and high security, you could be on an [[out-of-town university campus|FASLANE-41000 Sports complex]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's not exactly glamorous – the architecture is functional at best. But every now and then, between the office blocks and hangars, you get a glimpse of the hills and the loch beyond. Or a navy destroyer.
<<image "/locationPhotos/uk/faslaneShips.jpg" 80 1000 430 0>>\
Everyone here is playing some role – big or small – in protecting Britain and its allies against foreign adversaries. Very conscious that //your// role involves trying to get a ludicrous job prancing around half-naked in a seedy foreign bar, you spend an hour every day in the big sports complex.
It's like a normal civilian gym, except that almost all of the users, male and female, are toned to within an inch of their lives. Each day as you sweat, you spot very few spare tyres amid the muscles and Lycra.
//[[Work on your body and the mission...|FASLANE-42000 Title card]]//
<</page>><<page>>\
//[[A WEEK LATER...|MALAY-1000 Title card]]//
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE \"HOTEL 1\"''",
$header.line2 to "GLASGOW / MARCH 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>Your slice was okay (considering you're not in New York).<<else>>Your slice was pretty good.<</if>> Eating takeout pizza in someone else's <<apartment>>, drinking wine from <<if $kate.agency == "cia" or $kate.agency == "csis">>a liquor store<<elseif $kate.agency == "mi6">>an off licence<<else>>a bottle shop<</if>>, brings back memories of your <<if $kate.agency == "cia" or $kate.agency == "csis">>college<<else>>university<</if>> days.
<<if $kate.braSize == "large">>\
<<silently>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F">>
<<else>>
(ERROR IN KATE.AGENCY VAR)
<</if>>
<</silently>>\
"You have got //amazing// boobs," Alec says, eyeing them appraisingly. "How big are they?"
<<link "_kateBraSize." "SHALEC-1100 Kate reveals her bra size">><<set $temp.kateChoice to "label">><</link>>
[[Pretty big!|SHALEC-1100 Kate reveals her bra size][$temp.kateChoice to "prettyBig"]]
<<else>>\
"I //miss// uni," Alec says, with real feeling. "Everything was simpler. And just //fun// all the time." He grins at some memory. "Study in the days, everybody getting wild and hooking up and there were no big dramas about it. Same for you, right?"
[[Yeah, those days were fun.|SHALEC-2000 Uni was greta]]
[[Not really, I was a good girl.|SHALEC-3000 I was a good girl]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "label">>\
<<silently>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F">>
<<else>>
(ERROR IN KATE.AGENCY VAR)
<</if>>
<</silently>>\
"_kateBraSize," you tell him. <<if $kate.agency != "mi6">>"I don't know if the sizes are different here."<</if>>
"Wow," he murmurs, shuffling closer on the couch. "Do they ever give you backache? Are they heavy?"
<<elseif $temp.kateChoice == "prettyBig">>\
"Pretty big!"
"I'll say," he murmurs, shuffling closer on the couch. "Do they ever give you backache? Are they heavy?"
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
"Yeah, kinda," you shrug. "But you get used to it."
"Mmm. I bet. Can I...?" he reaches up to your chest, cupping a breast softly. You tense up at first, inhibited by the thought that you're being touched up on camera...then force yourself [[to relax|SHALEC-1200 Alec fondles Kate's tits]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Wow," he murmurs, shifting your breast gently, feeling the weight. "Yeah, these are heavy."
Alec takes his time experimenting with their weight, squeezing and shifting them (TK through your dress) in turn, his free hand playing with your hair.
He paws you confidently, playing with your body, showing no sense of propriety. It's one part annoying to two parts hot. Your nipples are becoming stiff and sensitive when he [[leans in for the kiss|SHALEC-7000 First kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Those days were fun," you smile, remembering some of the crazy things you used to get up to with your friends.
"This one girl I knew," Alec says, "English student, very clever, very pretty. Jumped into bed with me and a friend after a party. It was so hot but it was also no big deal, you know? Everyone was just experimenting." He tops up your wine glass. "What's something wild you did?"
"Uhh..." you're aware that a surveillance team will be listening in to your answer, but if you say something true you can always claim later that you made it up on the spot.
[[...my boyfriend and I used to have sex when his roomie was "asleep".|SHALEC-4000 Party sex]]
[[...I did some nude modelling for the Art Department.|SHALEC-5000 Women & Their Bodies]]
[[...I had kind of an affair with a professor.|SHALEC-6000 Hot Prof]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hmm, not really," you reply. "I was more of a good girl."
"Well, I don't believe //that,"// chuckles Alec, topping up your wine. (TK - esc thinks he should subtly mock Kate here.) "And the good girls are normally the worst, anyway. I bet you did //something// wild."
"Wellll..." you're aware that a surveillance team will be listening in to your answer, but if you say something true you can always claim later that you made it up on the spot.
[[...my boyfriend and I used to have sex when his roomie was "asleep".|SHALEC-4000 Party sex]]
[[...I did some nude modelling for the Art Department.|SHALEC-5000 Women & Their Bodies]]
[[...I had kind of an affair with a professor.|SHALEC-6000 Hot Prof]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"...in my <<if $kate.agency == "cia" or $kate.agency == "csis">>junior<<else>>third<</if>> year my boyfriend shared a room with this guy Rob." You sip your wine; Alec is listening intently. "So we'd normally go back to my room for privacy, but a few times we ended up having sex while Rob was 'sleeping'."
"He was faking it?"
"Yeah." You remember occasionally hearing quiet rustling sounds from Rob's side of the room after all the action had died down.
"Oh, that's hot," murmurs Alec, approvingly. "Did it turn you on?"
[[Yeah, kinda.|SHALEC-4100 Yeah kinda]]
[[I think my boyfriend liked showing me off.|SHALEC-4200 My BF liked it]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you muse. "It was kind of a turn on to have an audience."
The moment you say it, you realise the surveillance team probably think you're talking about them. //Oh shi–//but before you can say anything else, Alec shuffles up beside you on the couch.
"That is so hot," he murmurs, leaning in for a [[first kiss|SHALEC-7000 First kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I think my boyfriend was more into it," you say. "Like I was trying to be quiet, and he was being as noisy as possible? I think he liked showing me off."
Alec shuffles up close on the couch. "That is so hot," he murmurs, leaning in for a [[first kiss|SHALEC-7000 First kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"...I did some nude modelling for the Art Department," you tell him.
"Seriously?"
"Yeah, it was for an exhibition about women's bodies. A friend got me to volunteer for it."
"What did you have to do?" Alec is listening intently.
"It was pretty cool actually. They had this classroom set up like a photo studio, and I had an appointment, and I went there, and took off my clothes and they..." you shrug. "Took some photos."
"Wow. Was that a turn-on?"
[[Yeah, but I had to pretend it wasn't.|SHALEC-5100 Yes but I played it cool]]
[[I think the hottest thing was actually the exhibition.|SHALEC-5200 The exhibition was hotter]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you admit, "but I had to play it cool. Afterwards they got me to write down my feelings, so they could go on display in the exhibition."
"What did you write?"
You shrug. "Something about feeling empowered."
"How did you really feel?"
"Turned on."
Alec shuffles up close on the couch. "That is so hot," he murmurs, leaning in for a [[first kiss|SHALEC-7000 First kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I think the hottest thing was the exhibition itself," you say. "That was a few weeks after. I went for the launch party and it was really weird. All my friends were there, and faculty, and there was this...big naked photo of me on the wall."
"That sounds //hot."//
"Yeah...but strange. Like, have you ever wondered if someone is imagining you naked? But all they have to do is glance up and...there you are."
You shrug. Alec shuffles up close on the couch. //"Wish// I'd been there," he murmurs, leaning in for a [[first kiss|SHALEC-7000 First kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"...I had kind of a thing with one of my professors. Not for the grades," you add quickly. "I'm not //that// much of a cliché."
"Oh, wow," he nods. "You hear about things like that, but..." he shrugs. "How old was he?"
"Mid-thirties?" you shrug. "My friends all called him Hot Prof."
"And you were..."
"21."
"Fuck." Alec moves in close on the couch. <<if hasVisited("SHALEC-3000 I was a good girl")>>"I knew you were a bad girl,"<<else>>"You're so //hot,"//<</if>> he murmurs, leaning in for a [[first kiss|SHALEC-7000 First kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "large">>\
Your lips meet, then his tongue slips into your mouth, his hand pawing your boob. It's hard to relax when you know this is all being recorded [[on camera|SHALEC-8000 Kate kisses back]].
<<else>>\
He kisses you deeply. You tense up at first, inhibited by the thought that you're kissing a stranger on camera.
You suppress a brief, instinctive urge to push him away...then force yourself to relax and [[kiss him back|SHALEC-8000 Kate kisses back]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Despite the weirdness of the situation, you feel a familiar, fluttery tension building up in your body while you make out – a rising excitement that makes your skin tingle and your stomach knot.
<<if $kate.braSize == "large">>\
Both his hands move onto your breasts – squeezing them, feeling how they move (TK in your bra/without a bra), toying with your stiff nipples through the (TK fabric of your dress).
<<else>>\
Alec's hands are exploring your body – your thigh first, then roaming up over a hip, gliding up and settling on <<if $kate.braSize == "small">>a small, pert breast, feeling the softness,<<elseif $kate.braSize == "medium">>a firm, springy breast, feeling how it moves<<elseif $kate.braSize == "large">>a round, heavy breast, feeling the weight<</if>> (TK through your clothes), toying with a stiffening nipple.
<</if>>\
Your groin feels hot and slippery when Alec [[breaks off the kiss|SHALEC-9000 Alec strips Kate]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK Here we will have a strip sequence where Alec peels Kate's clothing off her, one piece at a time. Vibe: dominant, no consultation, just Alec unwrapping her until her tits and pussy are bare.
Through this scene Alec will react to her body as its exposed (e.g. comment on tattoos/piercings/underwear, lick and suck her nipples when they're bared, etc). Kate will be able to strip Alec or help him get things off her. She'll also have inner monologues about the fact this is all on camera and what the surveillance team are seeing.
When Kate is naked enough to have sex (i.e. when her knickers come off), the player can <<link "continue" "SHALEC-10000 BJ">>
<<avatar-setNakedAvatarAdult braless>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</link>> to the next scene.
<</page>><<silently>>
<<avatar-stripNaked braless>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</silently>>\
<<header>>\
<<page>>\
TK Alec gets his cock out (you must vary this text depending on how naked Kate got him in the last scene). TK describe his cock (Americans especially might notice it's uncircumcised, unlike what she's used to).
He curls a hand behind your head, tugging your face towards his crotch.
//[[Suck his cock.|SHALEC-11000 Kate sucks Alec]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
You lean forward over the edge of the couch, letting Alec pull your head down towards his hard cock. You lick and part your lips, and then it slips between them, filling up your mouth, the tip tangy on your tongue.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''BJ check.''
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''BJ check.'' Target: 6. Result: _kateD10+1 = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
//[[Suck Alec's cock.|SHALEC-11100 Sucking cock][$temp.skillCheckSucceeded to true]]
<<else>>\
//[[Suck Alec's cock.|SHALEC-11100 Sucking cock][$temp.skillCheckSucceeded to false]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with 1d10+1 (//Sexpert// skill bonus) to give really good head.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
/* roll d10 + sexpertise (diff 6) to see if this turns kate on */
<<set _kateD10 to random(1,10)>>
<<set _kateD10 += 1>> /* tk later replace this with her sexpert level */
<<if $kate.kinks.includes("masochist")>>
<<set _kateD10 += 1>>
<</if>>
<<if $kate.kinks.includes("submissive")>>
<<set _kateD10 += 1>>
<</if>>
<<set _kateD10 += $kate.arousal>>
<<if _kateD10 gte 6>>
<<set _kateIsTurnedOn to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
With his hand on the back of your head, Alec controls the pace. For the next few minutes the <<apartment>> is quiet, except for the soft slurping sounds of your mouth and Alec's quiet, contented murmurs.
It's objectifying. The way he keeps pushing your head makes you feel more like a sex toy than a sex partner.
But having him so obviously in control is also kind of forgiving. Surely no one on the surveillance team can be in any doubt that you're just a passive participant in this moment.
<<if $temp.skillCheckSucceeded>>\
<<set $corinthian.partner.stamina -= 1>>\
His cock makes you gag when it thrusts into the back of your throat, but you just relax and let it happen, breathing deeply through your nose when you can. "Oh, fuck yeah," he murmurs gutturally. "Oh fuck. Oh yeah." You can feel his dick straining and stiffening inside your mouth.
<span class="greyHighlighter">//Alec -1 Sexual Stamina.//</span>
<<else>>\
His cock makes you gag when it pokes the back of your throat. You have to keep breaking off to suck in a breath. Each time Alec lets you get in a gasp, then pushes his dick back into your mouth immediately.
<</if>>\
<<if _kateIsTurnedOn>>\
Being manhandled like this is kind of a turn-on. While Alec makes use of your mouth, your pussy's getting hotter and wetter. The couch is probably going to need a wipe when [[you're done|SHALEC-12000 Wetness test]].
<span class="greyHighlighter">//$kate.firstName +1 Sexual Arousal.//</span>
<<else>>\
It's a relief when after a couple of minutes he [[pulls out|SHALEC-12000 Wetness test]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His dick slips out of your mouth with a little //pop.// He reaches between your legs, slides a finger between your slippery lips.
Alec gives your clit a cursory, quick stroke – just enough to check you're wet – then pulls your legs apart.
[[Wait, have you got a condom?|SHALEC-11000 Condom request]]
//[[Don't bother with protection.|SHALEC-12000 Penetration]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Wait," you say, "have you got a condom?"
"I'll pull out," he replies dismissively.
[[But...|SHALEC-11300 Kate gives up on the condom]]
<<link "//[Close your legs]// Condom or this stops right here." "SHALEC-11100 Condom negotiation">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Alec's //between// your legs, so you can't just close them, but you draw your knees up to your chest, your shins resting defensively against his belly. "Condom," you insist, "or this stops right here."
"C'monnn," Alec whines. He reaches down to your knees, trying to tug them apart. "I said I'll pull out."
[[Alec! Condom!|SHALEC-11200 Kate insists on protection]]
//[[Let him have his way.|SHALEC-11300 Kate gives up on the condom]]//
<</page>><<silently>>
<<set $corinthian.partner.condomColour to either("minty green", "baby blue", "canary yellow", "peach pink")>>
<</silently>>\
<<header>>\
<<page>>\
"Alec! Condom!"
"Fine, fine." He fumbles around in his pocket to find a condom. You watch him roll a $corinthian.partner.condomColour latex sheath onto his dick, an unhappy frown letting you know how he feels about this imposition.
<span class="greyHighlighter">//Condom applied. -1 Sensation, Alec +1 Sexual Stamina.//</span>
He moves back into position, his fingers pushing your knees apart.
//[[Spread your legs.|SHALEC-12000 Penetration]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("SHALEC-11100 Condom negotiation")>>\
You sigh unhappily, but let him push your legs apart.
He grins as he gets [[into position|SHALEC-12000 Penetration]]. "I'll pull out," he insists.
<<else>>\
"But..."
Alec just ignores your weak protests. "I'll pull out," he tells you as he gets [[into position|SHALEC-12000 Penetration]].
<</if>>\
<</page>><<silently>>
/* alex sexual performance check */
<<set _alecD10 to random(1,10)>> /* alec rolls a d10 */
<<set _alecD10 += $kate.arousal>> /* add kate's arousal/attraction level */
<<if def $corinthian.partner.condomColour>> /* alec is wearing a condom, so debuff his performance by 10% */
<<set _alecD10 -= 1>>
<</if>>
<<if _alecD10 gte 6>> /* alec succeeded the performance roll */
<<set $corinthian.partner.isGoodInBed to true>>
<<else>>
<<set $corinthian.partner.isGoodInBed to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You can't help but picture what they're seeing on the surveillance feed: their new young <<= $kate.agency.toUpperCase()>> colleague, on a couch wearing (TK describe clothing, e.g. "nothing but thigh high boots" "nothing but jewellery" etc), her legs splayed apart for some guy she just met in a bar.
The tip of Alec's cock pushes inside you<<if ndef $corinthian.partner.condomColour>>, unprotected<</if>>. But you're not even looking at him – your eyes are fixed up on a smoke detector on the ceiling. //Natural place for a covert <div class="tooltip">PTZ<span class="tooltiptext">Surveillance cam with pan, tilt, zoom capability</span></div>,// says the work part of your brain.
You wonder how many eyes are staring back at you right now, how many people tuned in to check you can do this.
Alec, oblivious, thrusts fully up inside you, making you gasp as he \
<<if $corinthian.partner.isGoodInBed>>\
[[fills you up|SHALEC-14000 Hot sex]] \
<<else>>\
[[fills you up|SHALEC-13000 Mechanical sex]] \
<</if>>\
suddenly.
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _yourCountry to "the USA">>
<<elseif $kate.agency == "mi6">>
<<set _yourCountry to "England">>
<<elseif $kate.agency == "asis">>
<<set _yourCountry to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _yourCountry to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCountry to "New Zealand">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Alec's cock thrusts up and down inside you, hard and fast, his fingertips digging into your (TK if wearing stockings/thigh boots: naked) thighs to control your movements. "Oh yeah," he pants, "fuck!"
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''failed'' a Sexual Performance check.
</td>
</tr>
</table>
<</nobr>></div>
You murmur back positively – but you're not enjoying yourself nearly as much as he is. You can't stop thinking about the surveillance team – what they're seeing, what they might be thinking. When you stepped out of the heli and shook hands with Clark this morning...you had no idea your day was going to end like //this.//
All afternoon you've been picturing yourself as a femme fatale superspy, a modern day Mata Hari...but right now it feels like you're just being fucked on a couch by your Tinder date, while a bunch of your superior officers watch on cam. Is this even intelligence work?
"Mm, yeah," moans Alec. "You're so tight."
//[[Pretend to be into it.|SHALEC-13100 Vinegar strokes][$temp.kateChoice to "fakeIt"]]//
<<link "//Lie back and think of _yourCountry.//" "SHALEC-13100 Vinegar strokes">><<set $temp.kateChoice to "takeIt">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
(TK Optionally feed back on Kate's fake it/take it choice, but this might work better without that)
Mercifully, Alec doesn't last very long. He shifts his weight so he can play with your breasts while he fucks you, squeezing and tugging your nipples in rhythm with his thrusts.
Soon you sense a change in his rhythm, a new tension in his body. "Oh fuck yeah, I'm gonna come," he murmurs, his mouth close to your ear. "Face or tits?"
"Huh?"
"Face or tits?" he repeats, fast and urgent.
[[Uh...|SHALEC-13200 Kate objects][$temp.kateChoice to "uh"]]
[[Don't you da-|SHALEC-13200 Kate objects][$temp.kateChoice to "dontYouDa"]]
[[Face.|SHALEC-13300 Kate gets a facial][$temp.kateChoice to "face"]]
[[Tits.|SHALEC-13400 Kate gets a tit shot][$temp.kateChoice to "tits"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "uh">>\
<<set _alecDecision to either("face", "tits")>>\
"Uh..."
<<elseif $temp.kateChoice == "dontYouDa">>\
<<set _alecDecision to "tits">>\
"Don't you da–"
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
<<if _alecDecision == "face">>\
He pulls out of you suddenly, [[grabbing his cock|SHALEC-13300 Kate gets a facial]] in one hand.
<<else>>\
He pulls out of you suddenly, [[grabbing his cock|SHALEC-13400 Kate gets a tit shot]] in one hand.
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "face">>\
"Uh...face," you reply after a moment's hesitation.
He pulls out of you suddenly. Pumping his cock in one hand, he clambers up onto the couch so he can aim it straight at your face.
<<else>>\
Pumping his cock with one hand, he clambers up onto the couch so he can aim it straight at your face.
<</if>>\
<<if def $corinthian.partner.condomColour>>\
He whips off the condom and tosses it at you. The used condom hits your chest, and his cum squirts right into your face.
<<else>>\
A few frantic strokes later, you flinch as he unloads his cum all over your face.
<</if>>\
"Ohhh yeah," he groans as he unloads. When he's finished he looks down at you, cheeks flushed, wearing a satisfied grin.
"Thanks," he says simply, then starts getting dressed.
//That's it, then, I guess.//
//[[Clean yourself up.|SHALEC-16100 Kate cleans herself up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "tits">>\
"Uh...tits," you reply after a moment's hesitation.
He pulls out of you suddenly. Pumping his cock in one hand, he aims it at your body.
<<else>>\
Pumping his cock with one hand, he aims it at your body.
<</if>>\
<<if def $corinthian.partner.condomColour>>\
He whips off the condom and tosses it at you. The used condom hits your chest, followed almost immediately by a big load of sticky cum.
<<else>>\
A few frantic strokes later, you flinch as he unloads his sticky cum all over your chest.
<</if>>\
"Ohhh yeah," he groans as he unloads. When he's finished he looks down at you, cheeks flushed, wearing a satisfied grin.
"Thanks," he says simply, then starts getting dressed.
//That's it, then, I guess.//
//[[Clean yourself up.|SHALEC-16100 Kate cleans herself up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Alec's cock pumps up and down inside you, hard and fast, his fingertips digging into your (TK if wearing stockings/thigh boots: naked) thighs to control your movements. "Oh yeah," he pants, "fuck!"
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''passed'' a Sexual Performance check.
</td>
</tr>
</table>
<</nobr>></div>
You've been anticipating sex //all day.// Now it's finally happening, the sensations are almost overwhelming. His stiff cock pistons urgently inside you, every thrust flooding your body with hot tingly waves of pleasure.
A very intimate, girlish moan escapes your lips – and your mind's immediately back on the surveillance feed. It suddenly feels like you're baring more than just your body to whoever's watching. Watching you have sex is one thing, but do you really want to show your new colleagues what happens when you //come?//
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Definitely.|SHALEC-14100 Kate shows off]]
<<if $kate.arousal gt 10>>\
<span class="greyedOut">//[Too Aroused] Try to control yourself.//</span>
<<else>>\
[[Try to control yourself.|SHALEC-14200 Kate acts demure]]
<</if>>\
<<else>>\
<span class="greyedOut">//[Exhibitionist] Definitely.//</span>
[[Try to control yourself.|SHALEC-14200 Kate acts demure]]
<</if>>
<</page>><<silently>>
/* alec sexual stamina check */
<<set _alecD10 to random(1,10)>> /* alec rolls a d10 */
<<set _alecD10 += $kate.arousal>> /* add kate's arousal/attraction level because the more turned on she is, the more likely she is to come */
<<set _alecD10 += 1>> /* kate is actively trying to orgasm which makes it more likely */
<<if def $corinthian.partner.condomColour>> /* alec is wearing a condom, so increase his stamina by 10% */
<<set _alecD10 += 1>>
<</if>>
<<if ndef $corinthian.partner.stamina>> /* TK delete this later, it's just here for testing because crush didn't set this variable during this test run */
<<set $corinthian.partner.stamina to 0>>
<</if>>
<<set _alecD10 += $corinthian.partner.stamina>> /* modify by alec's sexual stamina stat */
<<if _alecD10 gte 6>> /* alec succeeded the stamina roll */
<<set $corinthian.partner.madeKateCome to true>>
<<else>>
<<set $corinthian.partner.madeKateCome to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Right now, in the heat of the moment, you can't think of anything hotter or more authentic than exactly that. It's almost like you don't have a choice; as soon as you pictured it in your head, you knew you'd do it.
A strange little self-destructive thrill runs through you, familiar even though you've only ever felt it a couple of times before. Now it's no longer enough for the surveillance team to see you get fucked on camera. They have to see you get //fucked.//
A wave of sexual aggressiveness builds up inside you as you let yourself relax and get into the moment. You wrap your legs instinctively around Alec's waist, pulling him into you deeper and harder. Your gasps turn into noisy, expressive moans.
"Oh //fuck// yeah," cries Alec, loving this.
<<if $corinthian.partner.madeKateCome>>\
//[[Try to orgasm.|SHALEC-15000 Kate orgasm]]//
<<else>>\
//[[Try to orgasm.|SHALEC-15100 Alec ND]]//
<</if>>\
<</page>><<silently>>
/* alec sexual stamina check */
<<set _alecD10 to random(1,10)>> /* alec rolls a d10 */
<<set _alecD10 += $kate.arousal>> /* add kate's arousal/attraction level because the more turned on she is, the more likely she is to come */
<<set _alecD10 -= 1>> /* kate is actively trying not to orgasm which makes it less likely */
<<if def $corinthian.partner.condomColour>> /* alec is wearing a condom, so increase his stamina by 10% */
<<set _alecD10 += 1>>
<</if>>
<<if ndef $corinthian.partner.stamina>> /* TK delete this later, it's just here for testing because crush didn't set this variable during this test run */
<<set $corinthian.partner.stamina to 0>>
<</if>>
<<set _alecD10 += $corinthian.partner.stamina>> /* modify by alec's sexual stamina stat */
<<if _alecD10 gte 6>> /* alec succeeded the stamina roll */
<<set $corinthian.partner.madeKateCome to true>>
<<else>>
<<set $corinthian.partner.madeKateCome to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It feels good, but the though of opening yourself up //that// much to your new colleagues is suddenly embarrassing. They're already seeing enough of you, right?
It's impossible not to picture yourself from their perspective. This will be the first look some of them will be getting of you – on your back, legs spread, Alec's cock sliding back and forth in your slippery pussy, you \
<<if $corinthian.partner.madeKateCome>>\
[[trying to keep your composure|SHALEC-15000 Kate orgasm]] \
<<else>>\
[[trying to keep your composure|SHALEC-13100 Vinegar strokes]] \
<</if>>\
while his pubic bone bumps rhythmically against your clit.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Alec shifts his weight so he can play with your breasts while he fucks you, flicking and tugging your nipples in rhythm with his thrusts.
His voice is low and breathy in your ear, masculine little grunts <<if hasVisited("SHALEC-14100 Kate shows off")>>that you know you're drowning out with your own noisy, enthusiastic cries and gasps<<else>>mingling in with your own demure little gasps and murmurs<</if>>.
Every thrust and flick and pinch adds to the irresistable tension building up inside you. <<if not hasVisited("SHALEC-14100 Kate shows off")>>You can't hold it back. <</if>>It feels so good, if he keeps this up you're gonna...you're gonna...
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''passed'' a Sexual Stamina check.
</td>
</tr>
</table>
<</nobr>></div>
<<if hasVisited("SHALEC-14100 Kate shows off")>>\
//Oh fuck it's happening.// You cry out, loud and expressive, as your orgasm builds up and [[rocks through you|SHALEC-15300 Alec's turn]].
<<else>>\
//Oh fuck it's happening.// You bite your lip and try to stifle a flurry of surprised, feminine little gasps as your orgasm builds up and [[rocks through you|SHALEC-15300 Alec's turn]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Alec shifts his weight so he can play with your breasts while he fucks you, flicking and tugging your nipples in rhythm with his thrusts.
His voice is low and breathy in your ear, masculine little grunts <<if hasVisited("SHALEC-14100 Kate shows off")>>that you know you're drowning out with your own noisy, enthusiastic cries and gasps<<else>>mingling in with your own demure little gasps and murmurs<</if>>.
Every thrust and flick and pinch adds to the irresistable tension building up inside you. <<if not hasVisited("SHALEC-14100 Kate shows off")>>You can't hold it back. <</if>>It feels so good, if he keeps this up you're gonna...you're gonna...
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Alec ''failed'' a Sexual Stamina check.
</td>
</tr>
</table>
<</nobr>></div>
"Unhhhh!" Alec groans noisily in your ear. He grabs your breasts, thrusts in you a few final times...and then pulls out.
<<if def $corinthian.partner.condomColour>>\
The tip of the $corinthian.partner.condomColour condom bulges with his sperm. He peels it off and tosses it carelessly onto the couch beside you. It hits the leather with a soft //splat.//
He looks down at you for a moment, flushed and satisfied. Then, wordlessly, he picks up his boxer shorts and starts getting dressed.
//Guess that's that.//
//[[Get cleaned up.|SHALEC-16100 Kate cleans herself up]]//
<<else>>\
A trail of his hot seed trickles out of you.
[[Fuck, did you come in me?|SHALEC-15200 Creampied][$temp.kateChoice to "protest"]]
//[[Stay silent.|SHALEC-15200 Creampied][$temp.kateChoice to "acceptIt"]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.kateChoice == "protest">>\
"Fuck, did you just come in me?"
"Sorry," he replies carelessly, slipping back into his boxer shorts.
"You said you were gonna pull out."
"Whatever."
//[[Clean yourself up.|SHALEC-16100 Kate cleans herself up]]//
<<elseif $temp.kateChoice == "acceptIt">>\
<<else>>\
(ERROR IN TEMP.KATECHOICE VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("SHALEC-14100 Kate shows off")>>\
That intense urge to show yourself off disappears as soon as you come, replaced by a sense of embarrassed awareness – //what did I just do on surveillance?//
<<else>>\
Your thoughts return to normal as your orgasm ebbs away, replaced with a prickly sense of embarrassment – //will they be able to tell I just came on camera?//
<</if>>\
Oblivious, Alec thrusts urgently inside you. "Oh fuck yeah, I'm gonna come," he murmurs, his mouth close to your ear. "Face or tits?"
"Huh?"
"Face or tits?" he repeats, fast and urgent.
[[Uh...|SHALEC-13200 Kate objects][$temp.kateChoice to "uh"]]
[[Don't you da-|SHALEC-13200 Kate objects][$temp.kateChoice to "dontYouDa"]]
[[Face.|SHALEC-13300 Kate gets a facial][$temp.kateChoice to "face"]]
[[Tits.|SHALEC-13400 Kate gets a tit shot][$temp.kateChoice to "tits"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Alec leaves while you're in the bathroom – you hear the front door open and close while you're <<if hasVisited("SHALEC-15100 Alec ND")>>in there.<<else>>cleaning his cum <<if hasVisited("SHALEC-15200 Creampied")>>out of your body<<else>>(TK from the cumshot location)<</if>> with baby wipes.<</if>>
It's late, but you feel like you need a shower before you can go to bed. (TK if Kate is still wearing clothes she takes them off, e.g. "You unzip your boots/peel off your stockings and ") [[run a hot shower|SHALEC-17000 Kate shower scene]].
<</page>><<silently>>
<<avatar-stripNaked barefoot braless>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
You take your second long shower of the day, cleansing your body after the thing with Alec. You did it, you accomplished the mission – although right now, you're not sure how you feel about that.
Are the surveillance team still watching? Or did they tune out after the sex, as fast as Alec did? Maybe they're watching to make sure you don't break down in tears right now.
You keep your face totally neutral. If they want to know how you're feeling, they'll have to ask [[in the debrief|SHALEC-17100 Kate contemplates the debrief]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
END OF CONTENT. Thanks for playing this version, in the next version $kate.firstName will be debriefed on tonight's mission and continue her training in Scotland.
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE \"HOTEL 1\"''",
$header.line2 to "GLASGOW / MARCH 2018">>
<<set $corinthian.partner to {},
$corinthian.partner.name to "Robbie",
$corinthian.partner.confidence to 0,
$corinthian.partner.stamina to 0>>
<<set $kate.arousal to 0>>
<</silently>>\
<<header>>\
<<page>>\
You take Robbie back to the safehouse. There, on the red leather couch, you sit and talk and drink bottles of beer out of his rucksack.
You're not //that// much older than him, <<if $kate.age gt 24>>not really, <</if>>but it still feels kind of weird to be alone and flirting with an 18-year old. The only reason you're sure he //is// 18 is because he was serving behind the bar. God knows [[how this looks|SHROBBIE-1100 Lull in the conversation]] on surveillance.
<</page>><<silently>>
<<if hasVisited("CORINTH-2100 Businesswoman snap cover")>>\
<<set _yourCoverStory to "your high-powered job and how it feels to travel all the time">>
<<elseif hasVisited("CORINTH-2200 Tourist snap cover")>>\
<<if $kate.agency == "cia">>
<<set _yourCoverStory to "your life in the US and why you came on vacation">>
<<elseif $kate.agency == "mi6">>
<<set _yourCoverStory to "your life in England and why you came on holiday">>
<<elseif $kate.agency == "asis">>
<<set _yourCoverStory to "your life in Australia and why you came on holiday">>
<<elseif $kate.agency == "csis">>
<<set _yourCoverStory to "your life in Canada and why you came on vacation">>
<<elseif $kate.agency == "nzsis">>
<<set _yourCoverStory to "your life in New Zealand and why you came on holiday">>
<<else>>
<<set _yourCoverStory to "(ERROR IN YOURCOVERSTORY TEMP VAR)">>
<</if>>
<<elseif hasVisited("CORINTH-2300 Flight attendant snap cover")>>\
<<set _yourCoverStory to "your life as a flight attendant and how it feels to be in a different city every weekend">>
<<else>>\
<<set _yourCoverStory to "(ERROR IN YOURCOVERSTORY TEMP VAR)">>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
At least he's emotionally mature. He asked about _yourCoverStory, and told you funny stories about Tinder disasters he's witnessed play out since he started working as a bartender. You do actually find him funny and attractive, despite the age difference.
After a couple of beers each, you're sitting close together on the couch. He finishes an anecdote about a bar regular known as "Drunk Jesus" to the staff, and the conversation falls into a natural lull.
//[[Kiss him.|SHROBBIE-2000 Couch makeout]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You lean in, impulsively, and plant a kiss on his lips. Close in, he smells of beer. //His skin's so smooth.//
Robbie stares at you for a moment. Then he sets down his beer and clambers onto your side of the couch, up close and in your space, his hand on your cheek as he leans in and [[kisses you back|SHROBBIE-2100 Robbie kisses Kate]].
<</page>><<silently>>
<<set _npcInitiativeRoll to random(1,10)>>
<<set _kateInitiativeRoll to random(1,10)>>
<<set $kate.arousal += 1>>
<</silently>>\
<<header>>\
<<page>>\
Your first kiss turns into a long, steamy makeout session on the red couch.
He's a good kisser and you drank quite a lot tonight. From time to time it's possible to forget this is all happening on camera.
Despite the weirdness of the situation, you feel a familiar, fluttery tension building up in your body while you make out – a rising excitement that makes your skin tingle and your stomach knot.
Your nipples are stiff and your groin feels hot and slippery when Robbie comes up for air.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Background ''Initiative check.'' Robbie rolled..._npcInitiativeRoll. $kate.firstName rolled..._kateInitiativeRoll<<if $kate.kinks.includes("submissive")>><<set _kateInitiativeRoll -= 2>> (-2 //Submissive// penalty, result: _kateInitiativeRoll).<</if>> <<if _npcInitiativeRoll == _kateInitiativeRoll>><<set _coinToss to either("heads", "tails")>>Tossing a coin...<<if _coinToss == "heads">>Robbie wins.<<else>>You win!<<set _kateWonTheInitiative to true>><</if>><<elseif _npcInitiativeRoll gt _kateInitiativeRoll>>Robbie wins.<<else>>You win!<<set _kateWonTheInitiative to true>><</if>>
</td>
</tr>
</table>
<</nobr>></div>
<<if _kateWonTheInitiative>>\
//[[Get naked.|SHROBBIE-7000 Kate & Robbie get naked]]
[[Go down on him.|SHROBBIE-8000 Kate goes down on Robbie]]//
<<else>>\
He grins and [[moves back in close|SHROBBIE-2200 Makeout round 2]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His kisses are urgent, passionate, his tongue diving and darting in your mouth.
His fingers stroke your thigh, feeling (TK your firm, slender leg through whatever Kate is wearing), then – gently but insistently – (TK slide under your skirt/fumble inside the waistband of your trousers/etc), driving towards your crotch.
//[[Open your legs for him.|SHROBBIE-3000 Fingered on the couch]]//
<</page>><<silently>>
/* robbie sexual performance check */
<<set _robbieD10 to random(1,10)>> /* robbie rolls a d10 */
<<set _robbieD10 += $kate.arousal>> /* add kate's arousal/attraction level */
<<if _robbieD10 gte 6>> /* robbie succeeded the performance roll */
<<set $corinthian.partner.isGoodWithHisHands to true>>
<<else>>
<<set $corinthian.partner.isGoodWithHisHands to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You part your legs a little, wordlessly giving Robbie access to your crotch. His slim fingers (TK describe what Robbie finds – either underwear that he touches, or Kate's bare pussy).
(TK if Kate is wearing knickers, he fondles her through them for a line, then slides his fingers inside them.)
<<if $corinthian.partner.isGoodWithHisHands>>\
His middle finger slips gently between your lips, finding the [[slick wet heat|SHROBBIE-5000 Magic touch]] there.
<<else>>\
His middle finger slides eagerly between your lips, finding the [[slick wet heat|SHROBBIE-4000 Fumble on the couch]] there.
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Robbie ''failed'' a Foreplay check. //$kate.firstName arousal: no change.//
</td>
</tr>
</table>
<</nobr>></div>
You let out a guttural little murmur as a fingertip enters you. First to the knuckle, then with a stretch of his wrist, Robbie's whole finger thrusts up into you.
Right there on the couch. Right there on camera. You can't stop imagining what this looks like.
Oblivious, Robbie kisses you hungrily. His tongue darts in your mouth while his [[finger gyrates|SHROBBIE-6000 Robbie's hand gets tired]] deep inside your body.
<</page>><<silently>>
<<set $kate.arousal += 1>>
<</silently>>\
<<header>>\
<<page>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Robbie ''passed'' a Foreplay check. //$kate.firstName arousal: +1.//
</td>
</tr>
</table>
<</nobr>></div>
His fingertip finds your clit, slipping onto the stiff little nub and fondling it softly.
It's stiff and responsive and eager to be touched. Every caress sends an intoxicating little throb of pleasure fluttering through you. Soon you realise you're gripping his arms tightly, your breath escaping in tense little gasps between kisses.
//[[Remember you're on camera.|SHROBBIE-5100 Discreet Kate]]//
<<if $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Relax and enjoy it.|SHROBBIE-5200 Expressive Kate]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Relax and enjoy it.//</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With an effort, you get yourself back under control. You're baring enough of yourself to the Combined Task Force tonight; you don't need them to see you getting off because some 18-year old kid has got a hand (TK down your trousers/in your knickers/up your dress/etc).
It feels good but you limit yourself to sensual kisses and the occasional soft, encouraging sigh.
That works until you relax, and Robbie chooses that exact moment to sink his finger all the way into you, penetrating you deeply with one sudden, easy push. You can't control the [[intimate, feminine whimper|SHROBBIE-6000 Robbie's hand gets tired]] that escapes your lips.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it.// You're really turned on now, and suddenly whether or not the surveillance team think you're a good girl seems less important than connecting authentically with Robbie.
"Mmh, yeah," you murmur, finding your voice. TK Kate puts on an expressive, noisy show for the surveillance team.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("SHROBBIE-4000 Fumble on the couch")>>\
All day you've been picturing yourself as a femme fatale superspy...but right now it just feels like you're making out with and getting fingered by a teenager you just met, while a bunch of your senior officers watch on cam. Is this even intelligence work?
After a while Robbie breaks off, his hand slipping (TK out of your trousers/out of your knickers/out from under your skirt). He smiles at you, while subtly rotating a sore wrist. His middle finger is slick and glistening.
<<else>>\
<<if hasVisited("SHROBBIE-5200 Expressive Kate")>>\
His finger's in you, all the way up to the knuckle. You grip his shoulders and cry out as it gyrates deep inside you, the circular movements sending little blasts of hot pleasure through your groin. //Fuck, if he keeps this going...//
Suddenly he breaks off, his hand slipping (TK out of your trousers/out of your knickers/out from under your skirt). He smiles at you, while subtly rotating a sore wrist. His middle finger is slick and glistening.
<<else>>\
His finger's in you, all the way up to the knuckle. You grip his shoulders and try not to cry out as it gyrates deep inside you, the circular movements sending little blasts of hot pleasure through your groin. //Fuck, if he keeps this going...//
Suddenly he breaks off, his hand slipping (TK out of your trousers/out of your knickers/out from under your skirt). He smiles at you, while subtly rotating a sore wrist. His middle finger is slick and glistening.
<</if>>\
<</if>>\
//[[Lead him to the bedroom.|SHROBBIE-11000 Let's go to bed]]
[[Have sex with him right here.|]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK Here we will have a strip sequence where Kate and Robbie peel their clothes off, one piece at a time. Vibe: quick, urgent, Kate aware she's baring herself on camera.
Through this scene Robbie may react to her body as its exposed (e.g. comment on tattoos/piercings/underwear, lick and suck her nipples when they're bared, etc). Kate will be able to strip Alec or help him get things off her. She'll also have inner monologues about the fact this is all on camera and what the surveillance team are seeing.
When Kate is naked enough to have sex (i.e. when her knickers come off), the scene ends noting Robbie's stiff eager prick, and Kate can <<link "suck it" "SHROBBIE-8000 Kate goes down on Robbie">>
<<avatar-setNakedAvatarAdult braless>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("SHROBBIE-7000 Kate & Robbie get naked")>>\
You smile and slither down onto your knees between his legs. His cock points straight up at the ceiling, probably directly aiming at the <div class="tooltip">PTZ<span class="tooltiptext">Surveillance cam with pan, tilt, zoom capability</span></div> hidden in the smoke detector.
<<else>>\
You slither down onto your knees between his legs. He murmurs approvingly as you massage his stiff cock through the crotch of his jeans.
You smile up at him, then unbutton his jeans. Reaching into the waistband you tug them down to his knees. His cock is a tentpole in his clingy, brightly patterned boxer shorts.
You tug them down too. His cock springs loose, pointing straight up at the smoke detector in the ceiling, like an accusing finger pointing out the <div class="tooltip">PTZ<span class="tooltiptext">Surveillance cam with pan, tilt, zoom capability</span></div> that's probably hiding inside it.
<</if>>\
You curl your fingers around the shaft of his dick, and – pushing down one last moment of apprehension – [[guide it into your mouth|SHROBBIE-8100 Kate sucks Robbie]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
Your mouth sinks down on his cock. It's long and slim, like the rest of him<<if $kate.agency == "cia">>, and uncircumcised<</if>>. His pubes are neatly manscaped.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''BJ check.''
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''BJ check.'' Target: 6. Result: _kateD10+1 = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//BJ Quality: outstanding.//<<else>>//BJ Quality: average.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
//[[Suck Robbie's cock.|SHROBBIE-10000 Great BJ]]
<<else>>\
//[[Suck Robbie's cock.|SHROBBIE-9000 OK BJ]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with 1d10+1 (//Sexpert// skill bonus) to give really good head.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His dick's already hard, so this is just about foreplay. Your <<if $kate.mouthShape == "thin">>thin<<else>>pouty<</if>> lips slip up and down on his hard shaft, your mouth gently bobbing up and down in his lap.
"Mmh, yeah," he murmurs. For the next few minutes the <<apartment>> is quiet, except for the soft slurping sounds of your mouth and Robbie's quiet, contented muttering.
He's got no idea he's under surveillance, but you can't stop thinking about it. All day you've been picturing yourself as a femme fatale superspy...but now here you are, sucking off a Scottish teenager you just met tonight, while a bunch of your senior officers watch on cam. Is this even intelligence work?
Well...it's too late to back out now. After one last stroke from your lips, you come up for air with a little wet //pop.// "That was great," Robbie tells you encouragingly.
//[[Lead him to the bedroom.|SHROBBIE-11000 Let's go to bed]]
[[Have sex with him right here.|]]//
<</page>><<silently>>
<<set _chosenKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
He's rock hard in your mouth, stiff and responsive. "Oh, yeah," he murmurs, his voice thick with sensual pleasure. "Oh, wow, $kate.firstName..."
<<if $kate.hairStyle == "short">>\
His hand rests on your head as your mouth bobs gently up and down on his cock. \
<<else>>\
Your hair falls in front of your face as your mouth bobs gently up and down on his cock. His hand sweeps it away, holding it clear so he can look at you. \
<</if>> From time to time you glance up at him, enjoying the look of intense concentration on his boyish, handsome face.
<<set $kate.arousal += 1>>\
<span class="greyHighlighter">//$kate.firstName +1 Sexual Arousal.//</span>
Sucking //his// cock is turning //you// on. <<if _chosenKink == "exhibitionist">>Maybe it's the cameras<<elseif _chosenKink == "submissive">>Maybe it's being on your knees<<elseif _chosenKink == "masochist">>Maybe it's kneeling on a hard floor<<else>>(ERROR IN CHOSENKINK TEMP VAR)<</if>>, maybe it's how much he's obviously loving it, but the harder your mouth works, the hotter and wetter your pussy feels.
<<set $corinthian.partner.stamina -= 1>>\
<span class="greyHighlighter">//Robbie -1 Sexual Stamina.//</span>
After a couple of minutes you suddenly realise the erection straining in your soft mouth is in serious danger of erupting without warning. After one last sensual stroke with your mouth, you reluctantly come up for air, your lips slipping off his dick with a little wet //smack.//
"Fuck me," he croaks to himself.
//[[Lead him to the bedroom.|SHROBBIE-11000 Let's go to bed]]
[[Have sex with him right here.|]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("SHROBBIE-6000 Robbie's hand gets tired")>>\
"C'mon," you tell him, "let's go to bed."
<<elseif hasVisited("SHROBBIE-9000 OK BJ")>>\
"C'mon," you tell him, "let's go to bed."
<<elseif hasVisited("SHROBBIE-10000 Great BJ")>>\
"I was about to," you quip. "C'mon."
<<else>>\
(ERROR IN HASVISITED VAR)
<</if>>\
<<if hasVisited("SHROBBIE-8000 Kate goes down on Robbie")>>\
He pulls his jeans back up for the short walk [[to the bedroom|SHROBBIE-11100 The bedroom]]. (TK something about Kate's clothes – feeling naked if she is, else heels clicking on the hardwood floor, bare/stockinged feet padding on the hardwood floor, etc)
<<else>>\
You get up off the couch and lead him [[to the bedroom|SHROBBIE-11100 The bedroom]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/uk/safehouseBed.jpg" 150 1000 500 0>>\
<<if hasVisited("SHROBBIE-7000 Kate & Robbie get naked")>>\
You kiss again by the bedside, one of Robbie's hands cupping your breast, the other on your ass.
TK Kate peels off what's left of Robbie's clothes during the makeout, and then she can <<link "get into bed with Robbie" "SHROBBIE-11200 Kate gets in bed with Robbie">><</link>>
<<else>>\
TK Here we will have a strip sequence where Kate and Robbie peel their clothes off, one piece at a time. Vibe: quick, urgent, Kate aware she's baring herself on camera. Robbie eager to fuck her.
When Kate is naked enough to have sex (i.e. when her knickers come off), Kate can <<link "get into bed with Robbie" "SHROBBIE-11200 Kate gets in bed with Robbie">>
<<avatar-setNakedAvatarAdult braless>>
<<set $avatar.clothing.pushUnique("uni/10_ukUniNecklace-blackThreeStrandBootlaceChoker")>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</link>>.
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You climb into bed with Robbie, kissing him softly while his hands roam over your naked body, cupping your breasts and your butt.
[[Have you got a condom?|SHROBBIE-12000 Condom request]]
//[[Don't bother with protection.|SHROBBIE-13000 Point of no return]]//
<</page>><<silently>>
<<set $corinthian.partner.isWearingCondom to true>>
<</silently>>\
<<header>>\
<<page>>\
"Have you got a condom?" you ask between kisses.
"Aye." Robbie gets one from his wallet, and soon his long slim cock is covered in a neon pink latex sheath.
<span class="greyHighlighter">//Condom applied. -1 Sensation, Robbie +1 Sexual Stamina.//</span>
Well...[[this is it.|SHROBBIE-13000 Point of no return]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _recruitHQ to "the Farm",
_agency to "the CIA">>
<<elseif $kate.agency == "mi6">>
<<set _recruitHQ to "Fort Monckton",
_agency to "MI6">>
<<elseif $kate.agency == "asis">>
<<set _recruitHQ to "Swan Island",
_agency to "ASIS">>
<<elseif $kate.agency == "csis">>
<<set _recruitHQ to "Dwyer Hill",
_agency to "CSIS">>
<<elseif $kate.agency == "nzsis">>
<<set _recruitHQ to "Papakura Camp",
_agency to "NZSIS">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("SHROBBIE-12000 Condom request")>>\
Well...this is it.
<</if>>\
For 12 months at _recruitHQ, _agency tested your ability to do all kinds of "morally flexible" things: lying to people, spying on them, persuading them to betray their friends and employers.
In a way, this moment feels just like another recruit exercise...only instead of proving you can trick someone out of their drivers licence, you've got to prove you can seduce a stranger. Like...//really// seduce him.
//[[I can do this.|SHROBBIE-14000 Penetration]]//
<</page>><<silently>>
/* robbie sexual performance check */
<<set _robbieD10 to random(1,10)>> /* robbie rolls a d10 */
<<set _robbieD10 += $kate.arousal>> /* add kate's arousal/attraction level */
<<if def $corinthian.partner.condomColour>> /* robbie is wearing a condom, so debuff his performance by 10% */
<<set _robbieD10 -= 1>>
<</if>>
<<set _robbbieD10 -= 1>> /* robbie has a thin cock, so debuff his performance by 10% */
<<if _robbieD10 gte 6>> /* robbie succeeded the performance roll */
<<set $corinthian.partner.isGoodInBed to true>>
<<else>>
<<set $corinthian.partner.isGoodInBed to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
//I can do this,// you think as you climb on top of Robbie, straddling his slim hips. //I can do this.//
The tip of his cock nudges your wet pussy, sending a little anticipatory jolt running through you. You reach down between your legs, curl your fingers around his stiff, <<if $corinthian.partner.isWearingCondom>>latex-encased<<else>>naked<</if>> cock, and guide the tip inside you.
"Fuuuck," grunts Robbie as you slowly sink down on his long, slim shaft. He looks up at you, a happy, intimate grin on his face.
You wonder how many eyes are on the pair of you right now, how many people just watched him slide up into you.
<<if $corinthian.partner.isGoodInBed>>\
//[[Ride him.|SHROBBIE-15000 Hot sex]]//
<<else>>\
//[[Ride him.|]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Gently at first, tentatively, you lift your hips up and down, riding him, getting used to the feeling of his stiff cock inside you.
"Mmh, fuck, yeah," he grunts, reaching up to <<if $kate.braSize == "small">>fondle your breasts<<elseif $kate.braSize == "medium">>cup and fondle your breasts<<elseif $kate.braSize == "large">>cup and fondle your heavy breasts<<else>>(ERROR IN KATE.BRASIZE VAR)<</if>>. "You're gorgeous, $kate.firstName."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Robbie ''passed'' a Sexual Performance check.
</td>
</tr>
</table>
<</nobr>></div>
You've been anticipating sex //all day.// Now it's finally happening, the sensations are almost overwhelming. Soon you're moving at a steady, rhythmic pace, Robbie's hips bucking underneath you, his thrusting cock driving hot tingly waves of pleasure through your body. His fingers tweak and tug your hard nipples at the same time.
"Jesus..." murmurs Robbie, "...fuck...oh Jesus..."
Your nerves are tingling and you're short of breath. A very intimate, girlish moan escapes your lips – and your mind's immediately back on the surveillance feed. It suddenly feels like you're baring more than just your body to whoever's watching.
<<if not $kate.kinks.includes("exhibitionist")>>\
//[Exhibitionist] [[Try to orgasm.|SHROBBIE-16000 Kate goes for it]]
<<else>>\
<span class="greyedOut">//[Exhibitionist] Try to orgasm.//</span>
<</if>>\
//[[Try to control yourself.|]]//
<</page>><<silently>>
/* robbie sexual stamina check */
<<set _robbieD10 to random(1,10)>> /* robbie rolls a d10 */
<<set _robbieD10 += $kate.arousal>> /* add kate's arousal/attraction level because the more turned on she is, the more likely she is to come */
<<set _robbieD10 += 1>> /* kate is actively trying to orgasm which makes it more likely */
<<if $corinthian.partner.isWearingCondom>> /* robbie is wearing a condom, so increase his stamina by 10% */
<<set _robbieD10 += 1>>
<</if>>
<<set _robbieD10 += $corinthian.partner.stamina>> /* modify by robbie's sexual stamina stat */
<<if _robbieD10 gte 6>> /* robbie succeeded the stamina roll */
<<set $corinthian.partner.madeKateCome to true>>
<<else>>
<<set $corinthian.partner.madeKateCome to false>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
A wave of sexual aggressiveness builds up inside you as you let yourself relax and get into the moment. You flick your hips faster and harder as you instinctively rush towards your orgasm, your gasps turning into noisy, expressive moans.
"Oh //fuck// yeah," cries Robbie, loving this, his cock rocking and thrusting hard inside you.
<<if $corinthian.partner.madeKateCome>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Robbie ''passed'' a Sexual Stamina check.
</td>
</tr>
</table>
<</nobr>></div>
//Oh fuck it's happening.// You can't hold it back. You cry out, loud and expressive, as your orgasm builds up and [[rocks through you|SHALEC-15300 Alec's turn]].
<<else>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
Robbie ''failed'' a Sexual Stamina check.
</td>
</tr>
</table>
<</nobr>></div>
His fingers tweak and flick your stiff nipples. If he keeps this up, you're gonna...you're gonna...
He suddenly whimpers. You're not sure because he's still thrusting hard inside you but did he just...
"Shit," he says, slowing to a halt. "Sorry."
<</if>>\
<</page>><<nobr>>
<div class="five-eyes">
Formed in 1956 – but so secret its existence was denied until 2010 - FIVE EYES is an intelligence alliance between the US, the UK, Australia, Canada and New Zealand.
</div>
<h2>
You’ll control an intelligence officer from a FIVE EYES member state:
</h2>
/* Move this to a more global initialization routine */
<div id="agency-list">
<<agency-list>>
</div>
<footer id="page-footer" class="buttons">
<<button "Next" character-creator>><<characterCreator-randomiseKate>> <<characterCreator-updateAvatar>><<story-setKateName>><</button>>
</footer>
<</nobr>><<silently>>
<<first>>
<<addNotification "Supersize me!" "Change avatar size in the Settings top menu.">>
<</first>>
<</silently>>\
<div id="characterCreatorBraSize">
<<character-creator>>
</div><<nobr>>
<<silently>>
<<set _selectedKink to 'exhibitionist' >>
/* PRELOAD EMOTES */
/* Start by using the absurd workaround to get Kate's hair colour */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
/* Preload emotions for this Kate */
/* Brows */
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-attentive.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-calm.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-frown.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-naughty.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-raised.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-rogerMoore.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Brows/60_brows-' + _hairColour + '-worried.png">' >>
/* Eyes */
<<= '<img src="' + $imagePath.avatar + '/113Expressions/40_eyeShape-' + $kate.complexion + '-' + $kate.eyeShape + '-big.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_eyeColour-' + $kate.eyeColour + '-' + $kate.eyeShape + '-big.png">' >>
/* Mouths */
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-beam.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-oh.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-open.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-pout.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-sad.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-sexy.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-smile.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-smirk.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-upset.png">' >>
<<= '<img src="' + $imagePath.avatar + '/113Expressions/50_mouth-' + $kate.complexion + '-' + $kate.mouthShape + '-wideSmile.png">' >>
<</silently>>
<<kinks-select>>
<</nobr>><<silently>>
/* Summary - Kate serves a pinchy regular */
<<emote-calm>>
<<unset $serviceWithASmile>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' Another one of the regulars, a Midwest American named <span class="imageLink"><<link "Mark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, appears at the bar.
Every night you get a few pinchers, but Mark's the worst – he's got fists like bunches of bananas, and he thinks giving women nipple cripples is hilarious.
Roxy always leaves him to you.
<<link "//Leave him to $emilia.firstName.//" "BML-105 Leave it to Emilia">><</link>>
<span class="greyedOut">//[Smile]//</span> [[What can I get you?|BML-110 On the rail][$serviceWithASmile to true]]
[[What can I get you?|BML-110 On the rail]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Blissfully unaware of what's about to happen, <span class="imageLink"><<link "Emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> steps up on the footrail and leans over the bar.
<span class="imageLink"><<link "Mark's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> big meaty hands cup her breasts and – yep. You can't hear anything over the loud music, but you see $emilia.firstName wince in sharp pain.
<span class="greenHighlighter">Mark ''liked'' that.</span> <span class="redHighlighter">$emilia.firstName ''disliked'' that.</span>
Smirking at the look on her face, Mark holds her there for a moment, then lets her go.
$emilia.firstName looks pissed off, but ends up doing what you normally have to do – <<link "serve him a drink, with sore nipples">>
<<goto $encounterExit>>
<</link>>.
<</page>><<silently>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-open>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $serviceWithASmile>>\
Forcing a smile, you hook a high heel into the footrail and step up, leaning out across the bar.
<<else>>\
You hook a high heel into the footrail and step up, leaning out across the bar.
<</if>>\
"What can I get–"
Big hands cup your breasts. Chunky fingers and thumbs grasp your nipples. Intense pain shoots through your breasts as <span class="imageLink"><<link "Mark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clamps them tight and [[twists|BML-115 Ow fuck]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Even though you knew it was coming, your breath catches in your throat. <span class="imageLink"><<link "Mark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sniggers at the hurt look on your face. Then he lets you go.
"Hong Thong and coke," he shouts.
[[Dick.|BML-117 Dick]]
[[Coming up.|BML-120 Hong Thong][$kateSays to "Coming up"]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Dick."
<span class="imageLink"><<link "Mark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just grins wider. "Can't take a little joke?"
[[Whatever.|BML-120 Hong Thong][$kateSays to "Whatever"]]
[[It's not funny.|BML-118 Not funny]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not funny."
<span class="imageLink"><<link "Mark's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smile falters for a second, but then he shrugs. "Oh, come on, I'm just having some fun. You know you like it."
[[Whatever.|BML-120 Hong Thong][$kateSays to "Whatever"]]
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("BML-117 Dick")>>//Ow, fuck.// <</if>>"$kateSays." You slither down from the bar and reach up for a squirt of Hong Thong, //the premium spirits blended by a number of raw materials well accepted internationally.//
The blood rushing back into your nipples makes them feel hot and sore.
//[[Mix in the Coke.|BML-125 And Coke]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/sodaGun.jpg" 50 1000 500 0>>\
You grab the soda gun, squirt in some fizzy black Coke, and slide it over the bar to <span class="imageLink"><<link "Mark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
Anger simmers in your belly. Something about the smug smirk on his face makes you want to break his fucking fingers the next time he touches you.
But you know you won't. Instead you take a deep breath and [[force a smile|BML-130 Enjoy]].
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Enjoy." Your voice drips with sarcasm, but <span class="imageLink"><<link "Mark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/thePincher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just grins and takes a sip, oblivious to the turmoil he caused in your mind.
//[[Asshole.|BML-135 Asshole]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
//Asshole.// You turn around and <<link "ring up the cash">>
<<goto $encounterExit>>
<</link>> for his drink.
<</page>><<silently>>
/* Summary - A regular tells Kate she should work upstairs */
<<emote-calm>>
<<unset $serviceWithASmile>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' One of the regulars at the bar has an empty glass. <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is a stocky, middle-aged British expat who retired to Thailand a few years ago; you don't know much about him, except that he's divorced.
//[[Get up on the rail and serve David.|BML-205 Tits]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You hook a heel into the rail and step up. <span class="imageLink"><<link "David's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand comes up and cups your breast as you lean across the bar.
[[Another Chang?|BML-210 What can I get you][$kateSays to "Another Chang"]]
[[What can I get you?|BML-210 What can I get you][$kateSays to "What can I get you"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays?" you ask, <<if $kate.hairStyle == "short">>tilting your ear<<else>>tucking your hair behind your ear<</if>> to hear his reply.
"Fuckin' hell $kate.stripperName." <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cups both your breasts, feeling your stiff nipples in his palms. "You could make so much more upstairs."
[[Never gonna happen.|BML-215 Never gonna happen]]
[[People keep telling me that.|BML-220 People keep telling me that]]
[[You never know, maybe one day I'll surprise you.|BML-225 Maybe one day]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Never gonna happen," you promise.
"Never say never." <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives your hard nipples a little pinch, then realises you've got other customers. "Yeah, another Chang please."
[[Coming up.|BML-235 Coming up]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"People keep telling me that," you shout.
<span class="greenHighlighter">David ''liked'' that.</span>
"And they're //right.// Think about it." <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives your hard nipples a little pinch, then realises you've got other customers. "Yeah, another Chang please."
[[Coming up.|BML-235 Coming up]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"You never know," you shout. "Maybe one day I'll surprise you."
<span class="greenHighlighter">David ''loved'' that.</span>
"Fuuuck." <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> practically groans in your ear. "Yes please."
[[You want a drink or what?|BML-230 You want a drink or what]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"You want a drink or what?"
"Huh? Oh...yeah." <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives your hard nipples a little pinch. "Fuck. I mean...Chang please."
[[Coming up.|BML-235 Coming up]]
<</page>><<silently>>
<<emote-calm>>
<<unset $serviceWithASmile>>
<</silently>>\
<<header>>\
<<page>>\
"Coming up."
You slither out of his grasp, set up a clean glass, and click on the tap marked ''CHANG ช้าง.''
Cold Thai lager fills the glass, and flecks spatter your naked body when you click off the tap.
<span class="greyedOut">//[Smile]//</span> [[Enjoy.|BML-240 Enjoy][$serviceWithASmile to true]]
[[Enjoy.|BML-240 Enjoy]]
<</page>><<silently>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-open>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Enjoy."
"Thanks $kate.stripperName." <span class="imageLink"><<link "David">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/davidBritExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pays up, and you move on to the <<link "next customer">>
<<goto $encounterExit>>
<</link>>.
<</page>><<silently>>
/* Summary - two expats tell Kate to cheer up and smile */
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' A wave of heat rolls up from the dishwasher.
You reach down to grab the tray – always aware that everything you do is being watched. You know a dozen men are staring at your naked butt as you lean forward over the dishwasher.
//[[Pick up the tray.|BMQ-105 Tray out]]//
<</page>><<silently>>
<<showFront>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Unaroused.* Unconcerned with sex, externally focused, uninfluenced by male interest.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Aroused.* Positively triggered by sexual content, increased awareness of male interest, small lapses into sexual imaginings.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Seeking sexual content, high awareness of male interest, actively fantasising, loss of focus, energised.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* Sexually focused, receptive and open, lowered inhibitions, inwardly focused, suggestible.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<if $kate.arousal lt 7>>
<<set $kate.arousal += 1>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
All eyes are on you when you turn around. Men you don't know staring at your breasts and all the bare skin you've got on display, watching your body stretch as you reach for the shelves over the bar.
After the hot rush of air from the dishwasher, the cool aircon makes your nipples stiffen.
Well. You //tell// yourself it's the aircon, anyway.
//[[Put the glasses away.|BMQ-110 Glasses away]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One by one, you slide away the hot empty glasses for later.
As you're finishing up, two more <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> men arrive at the bar. Thirtysomethings with touristy t-shirts, cargo shorts and arm tattoos.
[[Hi, what can I get you?|BMQ-115 What can I get you]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Hi, what can I get you?"
"Smile'd be nice."
"Yeah. Cheer up, love, it might never happen."
//[[Put on a smile.|BMQ-120 Smile policed]]//
[[I'll smile when I can get out of these heels.|BMQ-145 Out of these heels]]
[[Sorry, we're fresh out of fake smiles.|BMQ-155 Fresh out]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Therrre you go, much better."
"You're much prettier when you smile."
"How much are beers here, love?"
[[Chang's ฿150.|BMQ-125 Changs]]
<</page>><<silently>>
<<if hasVisited("BMQ-120 Smile policed")>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Chang's <div class="tooltip">150<span class="tooltiptext"><<if $kate.agency == "cia">>$4.50<<elseif $kate.agency == "mi6">>£3<<elseif $kate.agency == "asis">>$6<<elseif $kate.agency == "csis">>$6<<elseif $kate.agency == "nzsis">>$6<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
"Sweet. Two Changs."
You pour their beers, spattering your body with tiny cold flecks when you click off the taps. One of them gives you [[three red banknotes|BMQ-130 Cashing up]].
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You get $emilia.firstName to help you [[cash up|BMQ-135 What's your name]] – she needs all the practice she can get.
<</page>><<silently>>
<<showFront>>
<<if hasVisited("BMQ-120 Smile policed")>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks darlin'. What's your name?"
<<link "$kate.stripperName." "BMQ-140 Bond, Jane Bond">><</link>>
<</page>><<silently>>
<<if hasVisited("BMQ-120 Smile policed")>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName."
"And..."
"$emilia.stripperName," $emilia.firstName chimes in<<if hasVisited("BMQ-120 Smile policed")>>, smiling prettily.
"Awww. Cute girls."
"Can't decide which one I want more."
"Turn around, show us your bums?"
$emilia.firstName glances to you, not sure what to do.
[[Maybe later.|BMQ-141 Maybe later]]
//[[Turn around.|BMQ-160 Turn around]]//<<else>>, smiling prettily.
"Therrre, see? Little smile doesn't hurt, does it."
"Miserable bitch."
You let the insult roll off you...fuck these guys, they're not the Smile Police.
<<link "//Get back to work.//">>
<<goto $encounterExit>>
<</link>><</if>>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe later."
"Yeah," $emilia.firstName says, "ask us after we've had a few shots."
Seemingly happy with that, the guys <<link "turn their attention to their beers">>
<<goto $encounterExit>>
<</link>>.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll smile when I can get out of these heels."
The <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> grunts dismissively. "Rather get you out of those knickers, love."
"Yeah," his mate agrees. "Take 'em off, make everyone smile."
//[[Put on a smile.|BMQ-120 Smile policed]]//
[[What would you like to drink?|BMQ-150 Maybe later][$kateSays to "What would you like to drink?"]]
[[Maybe later, what can I get you?|BMQ-150 Maybe later][$kateSays to "Maybe later. What can I get you?"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"How much are beers here?"
[[Chang's ฿150.|BMQ-125 Changs]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry. We're fresh out of fake smiles."
"Awww, don't be like that."
"Give us a little smile, it won't hurt ya."
//[[Put on a smile.|BMQ-120 Smile policed]]//
[[What would you like to drink?|BMQ-150 Maybe later][$kateSays to "What would you like to drink?"]]
[[Maybe later, what can I get you?|BMQ-150 Maybe later][$kateSays to "Maybe later. What can I get you?"]]
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn around to show off your bare back and butt. $emilia.firstName joins in a second later.
"Fuuuck. Can't choose."
"Maybe both?"
//[[End the competition.|BMQ-165 That's enough]]
[[Twerk your butt.|BMQ-170 Wiggle wiggle]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//Ohhh-kay, that's enough.// You turn back to the bar, and $emilia.firstName does the same. "Have a nice night, guys."
"Thanks, $kate.stripperName."
<<link "//Get back to work.//">>
<<goto $encounterExit>>
<</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Some instinct makes you show off with a few quick hip thrusts. You feel like you meant it as a playful display – some kind of acknowledgement of how absurd the situation is – but the dozen or so guys at the bar don't seem to have grasped that.
//"Whoaaa!// Fuuuck!"
"Dirty bitch!"
"She loves it!"
//[[End the competition.|BMQ-165 That's enough]]//
<</page>><<silently>>
/* Summary – a regular is having a rough day */
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' One of your regulars arrives at the bar: an Irish expat named <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
He slinks in, his usual swagger replaced with slumped shoulders and a distant look.
<span class="greyedOut">//[Smile]//</span> [[Hey Dec.|BMQ-205 Hey Dec][$serviceWithASmile to true]]
[[Hey Dec.|BMQ-205 Hey Dec]]
<</page>><<silently>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Hey Dec."
"Hey." <span class="imageLink"><<link "Declan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes flicker briefly down your body, then back. "Um, Chang please, $kate.stripperName."
//[[Pour him a beer.|BMQ-210 Pouring a pint]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You grab a clean glass and pour him a cold pint of Chang.
Other men at the bar watch with half-interest as the glass fills with amber liquid, framed by your nearly naked body.
[[฿150 please, Dec.|BMQ-210 Pay up you Irish fuck]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You slide it across the bar. "<div class="tooltip">150<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$4.50<<elseif $kate.agency == "mi6">>£3<<elseif $kate.agency == "asis">>$6<<elseif $kate.agency == "csis">>$6<<elseif $kate.agency == "nzsis">>$6<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> please, Dec."
"Thanks. Hey, get yourself a shot." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands over some red and blue banknotes; you ring them up in the till, and pour yourself a squirt of tequila.
[[What are we drinking to?|BMQ-215 What are we drinking to]]
[[What's up? You don't seem normal.|BMQ-225 Please tell me your problems][$kateSays to "What's wrong? You seem..."]]
[[Rough day?|BMQ-225 Please tell me your problems][$kateSays to "Rough day?"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are we drinking to?"
"Ummm..." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> thinks for a second, then raises his glass. "Life's a bitch."
[[Life's a bitch.|BMQ-220 Life's a bitch]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smirk>>
<<first>>
<<addNotification "Drunkenness +1" "*Buzzed.* The drink is taking the edge off.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Life's a bitch."
"Bottoms up, doll." You clink your glass to <span class="imageLink"><<link "Declan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and knock down a shot of clear, fiery tequila.
<<link "//Serve somebody else.//">>
<<goto $encounterExit>>
<</link>>
[[Rough day?|BMQ-225 Please tell me your problems][$kateSays to "Rough day?"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("BMQ-215 What are we drinking to")>>\
You clink your glass to his, and knock down a shot of clear, fiery tequila.
<</if>>\
"$kateSays"
"No, no, I'm foyne, just, ommm..." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes his head. "Y'know. Some family stuff."
[[Okay, I won't pry.|BMQ-230 The spy won't pry]]
[[If you want to vent, I'll listen.|BMQ-235 Kate is a good listener]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay. I won't pry."
"Thanks $kate.stripperName. Hey, you've been out here, what..."
<span class="greyedOut">//[Cover story]//</span> [[Ten months.|BMQ-240 Ten months]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well..." you shrug. "If you ever need to vent or something, I'll listen."
"You're a doll." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "But I'm fine, really. I mean...how long you been out here?"
<span class="greyedOut">//[Cover story]//</span> [[Ten months.|BMQ-240 Ten months]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"In Thailand?" you shrug. "Ten months?"
"Noice." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles wistfully. "Ma and da not hassling you to come home yet, I take it?"
[[Who?|BMQ-255 Who?]]
[[No, we keep in touch on Skype.|BMQ-265 I Skype ma and da][$kateSays to "No, we Skype a lot though."]]
[[We're not close.|BMQ-260 Distant parents][$kateSays to "You shake your head. \"We're not exactly close."]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah." You glance down at your bare chest. "Tell me about it."
"Yeah, that's fair. Still. Must beat going home, right?"
[[Right.|BMQ-250 Exactly, commander][$kateSays to "Right."]]
[[Exactly.|BMQ-250 Exactly, commander][$kateSays to "Exactly."]]
[[I'm reserving judgement.|BMQ-250 Exactly, commander][$kateSays to "Not sure yet."]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
<<if $kateSays == "Not sure yet.">>"Ah, you're fitting in fine." <</if>><span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes a sip of his beer. "Ma and da not hassling you to come home yet?"
[[Who?|BMQ-255 Who?]]
[[No, we keep in touch on Skype.|BMQ-265 I Skype ma and da][$kateSays to "No, we Skype a lot though."]]
[[We're not close.|BMQ-260 Distant parents][$kateSays to "You shake your head. \"We're not exactly close."]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Who?"
"Your //ma// and //da,"// <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> repeats, raising his voice over the old rock music. "Your parents."
[[No, we keep in touch on Skype.|BMQ-265 I Skype ma and da][$kateSays to "Oh. No, but we Skype a lot."]]
[[We're not close.|BMQ-260 Distant parents][$kateSays to "\"Oh.\" You shake your head. \"We're not exactly close."]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
$kateSays"
"Ah, I see." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes another swig of beer. His eyes roam lasciviously down your naked body. //"Fock me.// Bet you were a //right// handful growing up."
[[No, I was a good girl.|BMQ-290 I was a good girl Dec]]
[[Why d'you say that?|BMQ-305 Why you say that]]
[[Maybe sometimes.|BMQ-270 Maybe I was a bad girl sometimes]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Close with your folks, huh. That's noice." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes another swig of beer. His eyes roam lasciviously down your naked body. //"Fock me// though. You musta been a //right// handful growing up."
[[No, I was a good girl.|BMQ-290 I was a good girl Dec]]
[[Why d'you say that?|BMQ-305 Why you say that]]
[[Maybe sometimes.|BMQ-270 Maybe I was a bad girl sometimes]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe sometimes."
<span class="greenHighlighter">Declan ''liked'' that.</span>
"Your poor ma and da. Saddled with a little temptress." He stares at your body like it's the source of all mischief. "Maybe I should do 'em a favour. Give you a good spanking for 'em. Keep you on the straight and narrow, uh?"
[[In your dreams, Dec.|BMQ-275 In your dreams Dec]]
[[Don't threaten me with a good time.|BMQ-280 Don't threaten me with a good time]]
[[Only thing you'll be spanking tonight is the monkey.|BMQ-285 Only thing you're spanking tonight is the monkey]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
"In your dreams, Dec."
"It's Thailand, $kate.stripperName." <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Dreams come true."
You smile flirtatiously and <<link "get back to work.">>
<<goto $encounterExit>>
<</link>>
<</page>><<silently>>
<<emote-mouth-smirk>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, don't threaten me with a good time."
<span class="greenHighlighter">Declan ''liked'' that.</span>
"Oh, we'd have a good time," <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Believe it."
You smile flirtatiously and <<link "get back to work.">>
<<goto $encounterExit>>
<</link>>
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<<emote-nose-wrinkle>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
"Only thing you're spanking tonight is the monkey, Dec."
<span class="greenHighlighter">Declan ''loved'' that.</span>
<span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> throws back his head and laughs. "Hahahah! Okay, now I'm sure of it, you //definitely// need a smacked arse."
You smile flirtatiously and <<link "get back to work.">>
<<goto $encounterExit>>
<</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, I was a good girl."
"Pfft, bollocks," <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scoffs. "You got 'bad girl' written all over you. Every time I see you I get the urge to give you a good spanking."
[[In your dreams, Dec.|BMQ-275 In your dreams Dec]]
[[Don't threaten me with a good time.|BMQ-280 Don't threaten me with a good time]]
[[Only thing you'll be spanking tonight is the monkey.|BMQ-285 Only thing you're spanking tonight is the monkey]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Why d'you say that?"
"Aw, c'mon, look at you!" <span class="imageLink"><<link "Declan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/declan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Body built for sin. You probably can't even help it. Every time I see you, I just wanna put you over my knee and give you a spanking."
[[In your dreams, Dec.|BMQ-275 In your dreams Dec]]
[[Don't threaten me with a good time.|BMQ-280 Don't threaten me with a good time]]
[[Only thing you'll be spanking tonight is the monkey.|BMQ-285 Only thing you're spanking tonight is the monkey]]
<</page>><<silently>>
/* Summary - the old man from the night market comes in for a drink */
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' Coming back from an errand around Ploy's side of the bar, you find <span class="imageLink"><<link "Emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> struggling to communicate with [[one of the regulars|BMQ-405 The old man]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This <span class="imageLink"><<link "old Thai man">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes in most nights, but he doesn't speak any English. Ploy had to tell you how to deal with him.
$emilia.firstName looks relieved when she spots you coming over.
<span class="greyedOut">//[Smile]//</span> [[Hey.|BMQ-410 Hey yah][$serviceWithASmile to true]]
[[Hey.|BMQ-410 Hey yah]]
<</page>><<silently>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $serviceWithASmile>>\
"Hey."
The <span class="imageLink"><<link "old man's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes light up when he sees you. He points his thumb at his mouth to mime drinking.
<<unset $serviceWithASmile>>\
<<else>>\
"Hey."
The <span class="imageLink"><<link "old man">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> acknowledges you with a curt nod of his chin.
<</if>>\
<span class="imageLink"><<link "Emilia's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> carefully sculpted brows are question marks.
[[This guy gets a free beer.|BMQ-415 Free beer]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This guy gets a free beer when he comes in," you explain. "If he gives you cash, you have to change it for hundreds."
"Okay." <span class="imageLink"><<link "Emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Who is he?"
While you talk, the <span class="imageLink"><<link "old man's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze roams over you both, drinking in all the curves and contours on display.
[[Don't know.|BMQ-420 IDK][$kateSays to "idk"]]
[[I think he works at the night market.|BMQ-420 IDK][$kateSays to "nightMarket"]]
[[Think he's a friend of the owner.|BMQ-420 IDK][$kateSays to "kriangsak"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "idk">>\
"I don't know," you shrug. "Ploy just said to give him a free beer."
<<elseif $kateSays == "nightMarket">>\
"I don't know," you shrug. "Ploy just said to give him a free beer. I think he works in the night market."
<<elseif $kateSays == "kriangsak">>\
"I don't know," you shrug. "Ploy just said to give him a free beer. I think he's friends with the owner."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You and <span class="imageLink"><<link "Emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> aren't wearing much, but you feel like the <span class="imageLink"><<link "old man">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is mentally undressing the pair of you.
//[[Get him a beer from the fridge.|BMQ-425 Fridge]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follows you over to the fridge. "Bet he could tell some stories about this place."
You swing open the door, and a gust of cold air washes over you both.
[[Maybe, but not to us.|BMQ-430 Not to us]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe," you say, bending down to grab a cold fresh Leo. Wet condensation drips into your palm when you grasp the neck. "But not to us."
<span class="imageLink"><<link "Emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "Maybe we should learn some Thai."
[[Maybe he should learn some English.|BMQ-435 Maybe he should learn English]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You smile back. "Maybe he should learn some English."
The <span class="imageLink"><<link "old man's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze follows the sway of your hips as you walk back, a cold wet beer dangling from your fingertips.
<span class="greyedOut">//[Smile]//</span> [[Here you go.|BMQ-440 Here you go][$serviceWithASmile to true]]
[[Here you go.|BMQ-440 Here you go]]
<</page>><<silently>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<unset $serviceWithASmile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Here you go." You pop the cap and slide the beer across the bar. He thanks you with a nod, but his eyes are fixed firmly on your bare breasts, flickering between yours and <span class="imageLink"><<link "Emilia's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
It's absurd. You're both young enough to be his grandkids. And yet here you are: stripped down to high heels and vibrant, colourful <<knickers>>, on display for him and anyone else who walks in through the door.
It's just...[[not up to you|BMQ-445 Sploosh]] who sees you naked any more.
<</page>><<silently>>
<<emote-mouth-sexy>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Unaroused.* Unconcerned with sex, externally focused, uninfluenced by male interest.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Aroused.* Positively triggered by sexual content, increased awareness of male interest, small lapses into sexual imaginings.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Seeking sexual content, high awareness of male interest, actively fantasising, loss of focus, energised.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* Sexually focused, receptive and open, lowered inhibitions, inwardly focused, suggestible.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<if $kate.arousal lt 7>>
<<set $kate.arousal += 1>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
That thought sends an erotic little tingle through your whole body.
You grab a rag and mop down the bartop to distract yourself. //Clean, clean, clean. Stop thinking about sex.//
The <span class="imageLink"><<link "old man">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/nightMarketMan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sips his beer, and <<link "watches you work">>
<<goto $encounterExit>>
<</link>>.
<</page>><<silently>>
/* Summary - Kate watches Ping prostitute herself */
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' As you're pouring a pint for one guy, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sidles up beside another, a <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> twice her age <span class="imageLink"><<link "wearing chunky glasses">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Sawatdee handsome man," she smiles. "You want have good time?"
"Uh...maybe," he says. "[[How much|BMQ-505 We do everything]]?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Two thousan'<span class="tooltiptext">฿2000 = <<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> we do everything," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Fuck ass, fuck pussy, I suck your dick. Fuck my ass come in my mouth, fuck my mouth come in my ass, fuck my ass come in my face."
"That's a lot," <span class="imageLink"><<link "the farang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Too much. Can we do less?"
"No can do mister," Ping's voice is chirpy and melodic. "I worth [[two thousan'|BMQ-510 Because you're worth it]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Come //on,"// <span class="imageLink"><<link "the farang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> urges. "It's too much. <div class="tooltip">One thousand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
"One thousan' I suck your dick," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "Come in my mouth, come in my face, one thousan'."
"One thousand everything."
"No way mister. Blow job fuck pussy, <div class="tooltip">one thousan' five hundra<span class="tooltiptext">฿1500 = <<if $kate.agency == "cia">>$45<<elseif $kate.agency == "mi6">>£30<<elseif $kate.agency == "asis">>$60<<elseif $kate.agency == "csis">>$60<<elseif $kate.agency == "nzsis">>$60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. Come in my mouth make me [[swallow|BMQ-515 Nuh uh]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "The farang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes his head. "<div class="tooltip">Twelve hundred<span class="tooltiptext">฿1200 = <<if $kate.agency == "cia">>$36<<elseif $kate.agency == "mi6">>£24<<elseif $kate.agency == "asis">>$48<<elseif $kate.agency == "csis">>$48<<elseif $kate.agency == "nzsis">>$48<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> everything," he insists. "Fuck your ass, fuck your pussy, fuck your mouth no condom. Twelve hundred."
<span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> thinks this over carefully.
"And I buy <div class="tooltip">lady drink<span class="tooltiptext">an overpriced soft drink, which includes a small commission to the bargirl</span></div>," he adds.
"Okay," she nods, "[[twelve hundra everything|BMQ-520 Twelve hundra]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Lady drink plea $kate.stripperName," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "<div class="tooltip">Tam hai kem<span class="tooltiptext">Make it strong</span></div>."
That's what <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> say when they want a shot of alcohol with their <div class="tooltip">lady drink<span class="tooltiptext">an overpriced soft drink, which includes a small commission to the bargirl</span></div>. It's free; the club encourages the bargirls to get a little drunk if they need to.
Looking at Ping's <span class="imageLink"><<link "first client tonight">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you can see why she wants her lady drink //tam hai kem.//
[[Sure thing, Ping.|BMQ-525 Drink up]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sure thing, Ping." <span class="imageLink"><<link "Her client">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pays you <div class="tooltip">฿200<span class="tooltiptext"><<if $kate.agency == "cia">>$6<<elseif $kate.agency == "mi6">>£4<<elseif $kate.agency == "asis">>$8<<elseif $kate.agency == "csis">>$8<<elseif $kate.agency == "nzsis">>$8<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> for a Coke, into which you pour a squirt of rum.
//[[Pour her a single.|BMQ-530 Pingle]]
[[Pour her a double.|BMQ-535 Double]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You stretch up to the optic and squirt a single shot of Sangsom into Ping's Coke.
//[[Serve it.|BMQ-540 Thaaanks]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You stretch up to the optic and squirt a shot of Sangsom into Ping's Coke.
Then another one, for good measure.
//[[Serve it.|BMQ-540 Thaaanks]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("BMQ-535 Double")>>\
<span class="greenHighlighter">Ping ''liked'' that.</span>
<</if>>\
"<div class="tooltip">Khop khun khaaa<span class="tooltiptext">Thaaanks</span></div>." <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> knocks down her <<if hasVisited("BMQ-535 Double")>>strong <</if>>drink while the <span class="imageLink"><<link "farang guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/pingsClient.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> paws her bare leg.
His hand slips up under her dress, fondling and cupping her tight, skinny butt. Then they're off, leaving the bar together and heading for the neon yellow archway that <<link "leads up to the brothel">>
<<goto $encounterExit>>
<</link>>.
<</page>><<silently>>
/* Summary - three guys want to take Kate back to their hotel */
<<unset $serviceWithASmile>>
<<emote-calm>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "DC">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "England">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
''$timestamp <small>P.M.</small>'' Three <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div>, <span class="imageLink"><<link "fresh off a golf course">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, enter the club. They're a bit loud and sweaty, but they're not drunk yet.
Their eyes roam appreciatively down your body as they sit down at the bar.
"Wow." "Hey cutie." US accents, in case the swaggering confidence and all-American dental perfection weren't enough of a giveaway.
"Where you from?" asks the third. He enunciates carefully, like he's not sure you speak English.
<span class="greyedOut">//[Smile]//</span> <<link "_katesMotherland!" "BMQ-605 Holy shit">><<set $serviceWithASmile to true>><</link>>
<<link "_katesMotherland!" "BMQ-605 Holy shit">><</link>>
<</page>><<silently>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "DC">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "England">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"_katesMotherland!"
"Holy shit, no way!"
"You're like seriously a backpacker?" The <span class="imageLink"><<link "guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> can't believe it.
[[Uh-huh!|BMQ-610 Uh-huh]]
<</page>><<silently>>
<<if not $serviceWithASmile>>
<<emote-mouth-talking>>
<</if>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Unaroused.* Unconcerned with sex, externally focused, uninfluenced by male interest.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Aroused.* Positively triggered by sexual content, increased awareness of male interest, small lapses into sexual imaginings.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Seeking sexual content, high awareness of male interest, actively fantasising, loss of focus, energised.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* Sexually focused, receptive and open, lowered inhibitions, inwardly focused, suggestible.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<if $kate.arousal lt 7>>
<<set $kate.arousal += 1>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Uh-huh!" you nod.
//"Cool."// <span class="imageLink"><<link "Three male gazes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> roam down your body again, drinking in everything you've got to offer. Your body responds with a little instinctive tingle of anticipation.
"Okay," the blond one says. "Let's start with three beers."
[[We've got Chang, Leo and Singha.|BMQ-615 Kate names the beers]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We've got Chang, Leo and Singha," you tell him.
"Uhhhh...Singha."
His <span class="imageLink"><<link "buddies">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agree, so you need to [[get bottles from the fridge|BMQ-620 Bottles]].
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<<unset $serviceWithASmile>>
<</silently>>\
<<header>>\
<<page>>\
Cool air spills out when you open it. As you bend over slightly to grab the cold bottles, you hear them snickering behind you.
"Check it out, fellas! Could bounce a dime off that ass."
"Be nice."
"I'm just kidding around. You think she'd want to come back to the hotel with us?"
The other two guys chuckle as you pop open the beers.
<span class="greyedOut">//[Smile]//</span> [[฿600 please, guys.|BMQ-625 600 please][$serviceWithASmile to true]]
[[฿600 please, guys.|BMQ-625 600 please]]
<</page>><<silently>>
<<showFront>>
<<if $serviceWithASmile>>
<<emote-mouth-smile>>
<<else>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">600<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$18<<elseif $kate.agency == "mi6">>£12<<elseif $kate.agency == "asis">>$24<<elseif $kate.agency == "csis">>$24<<elseif $kate.agency == "nzsis">>$24<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please, guys," you say, sliding three beers over the bar.
"Thanks." <span class="imageLink"><<link "Blond guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> peels a few colourful Thai banknotes out of an expensive-looking leather wallet, along with a crisp red <div class="tooltip">฿100<span class="tooltiptext"><<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> tip. "So...do you dance here? Or..."
You follow his gaze to the empty glinting stripper poles on stage.
[[I'm just a barmaid.|BMQ-630 Just a barmaid]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "I'm just a barmaid."
"Hey, nobody's //just// a barmaid," <span class="imageLink"><<link "Glasses">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> corrects you.
"Yeah." <span class="imageLink"><<link "Low Rent Tom Cruise">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "But you should be a dancer. I bet you'd be great at it."
[[I've got two left feet.|BMQ-635 What's your name][$kateSays to "2LeftFeet"]]
[[I'll leave it to the experts.|BMQ-635 What's your name][$kateSays to "experts"]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "2LeftFeet">>\
"I've got two left feet."
"Doubt that."
<<elseif $kateSays == "experts">>\
"I'll leave it to the experts."
"Too bad."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"What's your name?"
<<link "$kate.stripperName." "BMQ-640 River">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName."
"Cool cool," <span class="imageLink"><<link "Low Rent Tom Cruise">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/golfBuddies.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You on Insta, or..."
[[No.|BMQ-645 Not on Insta]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No," you shake your head. //Not yet, anyway.//
"Uh huh. Guess we'll have to just come back if we wanna see you again."
"Cool to meet you."
[[Enjoy your beers, guys.|BMQ-650 Enjoy your beers]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Enjoy your beers, guys." You smile and serve the <<link "next customer">>
<<goto $encounterExit>>
<</link>>.
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / MAY 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<wear-top-whiteRipleyVest>>
<<emote-eyes-squint>>
<</silently>>\
<a data-passage="BBJ-110 Cleaning run">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/nextMorningGuardianStatuesTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The next day dawns "cloudy hot", a type of weather you've only experienced in Bangkok. What looks like a cold, cloudy day is actually uncomfortably hot and humid.
You've got a briefing at the safehouse with Ian this afternoon. But it's possible that you're under surveillance, so you can't just go straight there.
You need to carry out a cleaning run first.
//[[Get dressed.|BBJ-120 Not like the movies]]//
<</page>><<silently>>
<<emote-calm>>
<<wear-trousers-oliveGreenCargoTrousers>>
<<wear-top-blackVestWithSpaghettiStraps>>
<<wear-hosiery-blackCottonTrainerSocksWithDarkGreyHeels>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
A cleaning run is a complex journey, designed to break an officer out of a surveillance grid, without looking like you're doing anything unusual.
//They make it look easy in the movies.// In real life, cleaning runs are meticulously planned, and can take hours to carry out properly.
The first leg of your route today is a <<if $kate.agency == "cia">>five k walk<<else>>three mile walk<</if>> down to an old shopping mall. In this heat, that's no joke: you've learned that if you're out in the daytime in Bangkok, you can drink a whole two-litre bottle of water and not need to pee.
//[[Start a long day of walking...|BBJ-130 Title card]]//
<</page>><<silently>>
<<set $header.line1 to "''TROK LA-O''",
$header.line2 to "BANGKOK / MAY 2018">>
<<wear-bohoBrownLeatherBag>>
<<wear-bigBlackSunglasses>>
<<wear-shoes-blackAndWhiteStripeAdidasTrainers>>
<<emote-mouth-sexy>>
<</silently>>\
<a data-passage="BBJ-140 Safehouse arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/safehouse/bangRakDistrictTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're on the move for five hours, mostly on foot. Arriving at the safehouse just before 3 <small>P.M.</small>, you're hot and sweaty and your legs are tired.
<<image "/locationPhotos/thailand/safehouse/baanNoinaGate.jpg" 200 1000 750 0>>\
//[[Ring the bell.|BBJ-150 Ding dong]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''SAFEHOUSE INDIGO''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
After a short wait, <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> opens the gate and lets you into the walled garden.
He looks like he's been chilling out and relaxing all day. With sweat rolling down your neck and the backs of your knees, it's hard not to resent him for it.
"Get here okay?" he asks.
<<image "/locationPhotos/thailand/safehouse/baanNoinaWalledGarden.jpg" 90 1000 620 0>>\
[[No dramas.|BBJ-160 No dramas]]
[[Fine, what's happening?|BBJ-170 What's happening]]
[[Except for sweating like a pig.|BBJ-160 Pigs don't sweat]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Except for sweating like a pig."
"Pigs don't sweat." He bolts the gate. "That's why they wallow."
[[Okay.|BBJ-170 Whatever][$kateSays to "Um...okay"]]
[[Whatever.|BBJ-170 Whatever][$kateSays to "Whatever"]]
[[What are you, a zoologist?|BBJ-180 Zoologist]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays." Your brain's being cooked inside your skull, you don't want to learn new facts about animals right now.
"Clark's back," he tells you. "Come on."
//[[Follow him inside.|BBJ-180 Clark]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are you, a zoologist?"
He smiles wryly. "Clark's back," he says. "Come on."
//[[Follow him inside.|BBJ-180 Clark]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No dramas."
<span class="greenHighlighter">Ian ''liked'' that.</span>
"Clark's back," he tells you. "Come on."
//[[Follow him inside.|BBJ-180 Clark]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fine," you reply, "what's happening?"
"Clark's back," he tells you. "Come on."
//[[Follow him inside.|BBJ-180 Clark]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
"Hey kid." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks up from his laptop when you enter. Like Ian, he looks chilled out and comfortable.
Various bits of surveillance and covert entry gear are dotted around, hooked up to chargers, including three sets of <span class="imageLink"><<link "night vision goggles">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/nvgs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and a <span class="imageLink"><<link "Kronos electronic lockpick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<image "/locationPhotos/thailand/safehouse/baanNoinaLivingRoom2.jpg" 90 1000 620 0>>\
The whirring ceiling fans are a welcome relief from the steamy heat outside. You grab a Diet Coke from the fridge, and hold it against your forehead for several long, blissful seconds.
Then you crack it open, and guzzle down most of the can.
[[Okay, what's up?|BBJ-190 Diet Coke break]]
<</page>><<silently>>
<<remove-bohoBrownLeatherBag>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You unsling your <<handbag>> and slump into a chair. "Okay," you say, "what's up?"
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> closes his laptop. "First, I gotta say everyone's psyched about your reports. You holding up okay?"
[[I'm fine.|BBJ-200 I'm fine]]
[[The club sucks, I hate the misogyny.|BBJ-210 The club sucks]]
[[Is anything I'm getting actually useful?|BBJ-210 Is it worth it?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine."
"Good," nods <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "<div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>'s happy we finally got a lead on <div class="tooltip">Al-Ahmadi<span class="tooltiptext">the Al-Ahmadi Network, which channels funding from high net worth individuals to Islamic terrorism</span></div>. They're making this a priority tasking. Some very senior guys are reading your reports."
[[How senior?|BBJ-220 How senior?]]
<<link "Doesn't feel like I'm getting close to <small>DEVILFISH.</small>" "BBJ-250 Kate is uncertain">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"The club sucks. It's really gross how they treat women in there."
"Uh huh," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, not especially interested. "Well...<div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>'s happy we finally got a lead on <div class="tooltip">Al-Ahmadi<span class="tooltiptext">the Al-Ahmadi Network, which channels funding from high net worth individuals to Islamic terrorism</span></div>. They're making this a priority tasking. Some very senior guys are reading your reports."
[[How senior?|BBJ-220 How senior?]]
<<link "Doesn't feel like I'm getting close to <small>DEVILFISH.</small>" "BBJ-250 Kate is uncertain">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is anything I'm getting actually useful?"
"Yeah," nods <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, "<div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>'s happy we finally got a lead on <div class="tooltip">Al-Ahmadi<span class="tooltiptext">the Al-Ahmadi Network, which channels funding from high net worth individuals to Islamic terrorism</span></div>. They're making this a priority tasking. Some very senior guys are reading your reports."
[[How senior?|BBJ-220 How senior?]]
<<link "Doesn't feel like I'm getting close to <small>DEVILFISH.</small>" "BBJ-250 Kate is uncertain">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How senior?"
"<div class="tooltip">DCTC<span class="tooltiptext">Director, Counterterrorism Mission Center</span></div> got read in this week." <<if $kate.agency == "cia">>That's Mike Dodaro, better known in the Agency by his nickname, The Prince of Darkness. You've never seen him in person, and it's very unlikely he knew you existed until now.<<else>>That's Mike Dodaro, a CIA greybeard better known in the intelligence community by his nickname, //The Prince of Darkness.//
Few things excite the higher-ups as much as high-level attention from the Americans. If they knew your work was being personally seen by the Prince of Darkness, they'd be bouncing off the walls back at <<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey House<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>>.<</if>>
[[Wow.|BBJ-240 Wow][$kateSays to "Wow"]]
[[Shit.|BBJ-240 Wow][$kateSays to "Shit"]]
[[Don't care.|BBJ-230 Don't care]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shrug nonchalantly. "I just want to catch <small>DEVILFISH."</small>
<span class="greenHighlighter">Clark ''liked'' that.</span> <span class="greenHighlighter">Ian ''liked'' that.</span>
"Good," nods <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, "me too. You might already have found [[what we need|BBJ-260 Mission briefing]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays." You let that sink in for a second.
"And you might have already found [[what we need|BBJ-260 Mission briefing]]," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, smiling enigmatically.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Doesn't feel like I'm getting close to <small>DEVILFISH,"</small> you admit.
"Actually," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles enigmatically. "You might have [[got him already|BBJ-260 Mission briefing]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"This CCTV system you found. If they store footage back to February: they might have actual video of <small>DEVILFISH."</small>
//Fuck. Of course.// With that, the computer boffins at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> or <<if $kate.agency == "cia">><div class="tooltip">NSA<span class="tooltiptext">National Security Agency</span></div><<elseif $kate.agency == "mi6">><div class="tooltip">GCHQ<span class="tooltiptext">Government Communications Headquarters</span></div><<elseif $kate.agency == "asis">><div class="tooltip">ASD<span class="tooltiptext">Australian Signals Directorate</span></div><<elseif $kate.agency == "csis">><div class="tooltip">CSEC<span class="tooltiptext">the Communications Security Establishment</span></div><<elseif $kate.agency == "nzsis">><div class="tooltip">GCSB<span class="tooltiptext">Government Communications Security Bureau</span></div><<else>>ERROR IN KATE.AGENCY VAR<</if>> could build a <div class="tooltip">HID<span class="tooltiptext">Human Identification at a Distance: a form of facial recognition technology built from 2D images and algorithms</span></div> profile of <small>DEVILFISH's</small> face.
His capture would be pretty much inevitable after that. The <<if $kate.agency == "cia">>Agency<<else>>CIA<</if>> could just pick him up next time he passes through a friendly airport.
A thrill of excitement bubbles up in your stomach. //Is it possible I caught a <<if $kate.agency != "cia">>CIA <</if>>priority target by flouncing around in my underwear?//
[[You want me to hack the CCTV next time I'm in?|BBJ-270 Hacker quest?]]
[[What's the plan?|BBJ-280 What's the plan?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You want me to hack the CCTV on my next shift?" You try to imagine how you'll get access to it, but <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes his head.
"Nah, fuck it. We're gonna <div class="tooltip">black bag<span class="tooltiptext">in espionage jargon: breaking into a building to collect intel</span></div> the whole place," he says. "[[Tonight.|BBJ-290 Whoa]]"
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's the plan?"
"<div class="tooltip">Black bag job<span class="tooltiptext">in espionage jargon: breaking into a building to collect intel</span></div>," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[Tonight.|BBJ-290 Whoa]]""
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Two thoughts race through your head in rapid succession. //Cool!// is the first one: breaking into a foreign building to hack a surveillance system is exactly the kind of thing you imagined doing when you joined <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
The second thought is the realisation that whatever you steal is going to include nude footage of //you.//
You've been carefully dispassionate about the sex and nudity in your reports; you're not sure how you feel about Clark, and Ian, and god knows how many other senior officers<<if hasVisited("BBJ-220 How senior?")>> – up to and including <<if $kate.agency != "cia">>the CIA's Prince of Darkness<<else>>Mike Dodaro<</if>> –<</if>> actually seeing you topless and working in the Hard Cock Cafe.
//How bad will it be?// There are cameras in the stripper dressing room, //so they're going to see me naked,// and the VIP, //so they're going to see me <<if hasVisited("FNG-251800 Bent over line") or hasVisited("FNG-251700 Lap line")>>doing coke and <</if>>getting groped.//
All this flashes through your mind in an instant, slightly slowing down your reply.
[[What about the risk to my cover?|BBJ-280 Too risky]]
[[What if the footage doesn't go back that far?|BBJ-290 What if the footage isn't there?]]
[[Okay...what's the plan?|BBJ-300 What's the plan]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What about my cover?"
"We secure the footage, you won't need to go back in," shrugs <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "The important part of covert action is //action."//
<<if not hasVisited("BBJ-290 What if the footage isn't there?")>>\
[[But what if the footage doesn't go back that far?|BBJ-290 What if the footage isn't there?]]
<</if>>\
[[Okay...what's the plan?|BBJ-300 What's the plan]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What if the footage doesn't go all the way back to February?" you ask.
"We'll clone all the hard drives and SD cards we can find," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> answers. "If it //was// there...<div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div> might be able to recover it."
<<if not hasVisited("BBJ-280 Too risky")>>\
[[What about the risk to my cover?|BBJ-280 Too risky]]
<<else>>\
[[And if they can't?|BBJ-292 What if they can't?]]
<</if>>\
[[Okay...what's the plan?|BBJ-300 What's the plan]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"And if they can't?"
"Then we're no closer to catching <small>DEVILFISH,"</small> <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs again. "But we gotta take this shot."
[[Okay...what's the plan?|BBJ-300 What's the plan]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you nod. <<if hasVisited("BBJ-280 Too risky") or hasVisited("BBJ-290 What if the footage isn't there?")>>This is happening, it's already been decided above your level, you just need to go with it.<<else>>Clark's flown out with all this gear; it's obviously happening, you just need to accept it.<</if>> "What's the plan?"
"Street's dead by zero three hundred," says <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, laying out a [[hand-sketched map|BBJ-310 Hand-sketched map]] on the table.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Best way in is along Soi Superstar," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, tracing a route with his fingertip, "and take out the police security camera //here.//<<if hasVisited("GOF-10050 Life is a panopticon")>>" It's the surveillance camera you tried to warn <<Zoe>> and <<Amanda>> about, before they flashed their boobs in the night market.<</if>>
"Then we're clear to move up to the main door of the club, and pick the lock."
[[Did you skim Tid's keyfob?|BBJ-320 What about the alarm?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Did you skim Tid's keyfob?"
"Yeah," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, "and Connor's. We can control the alarm."
<<link "What if the alarm //status// is monitored?" "BBJ-330 What if the alarm status is monitored">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"What if someone's watching the alarm //status// somewhere?" Turning it off at 3 <small>A.M.</small> could trigger a response. Police or private security, maybe...or a carload of pissed-off gangsters.
"There's three silenced <div class="tooltip">SMGs<span class="tooltiptext">submachine guns</span></div> in that bag," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "<div class="tooltip">Langley<span class="tooltiptext">CIA Headquarters</span></div>'s pre-authorised us to kill."
//Holy shit.//
[[Right.|BBJ-350 Stoic Kate][$kateSays to "Right"]]
[[Got it.|BBJ-350 Stoic Kate][$kateSays to "Got it"]]
[[Holy shit.|BBJ-340 Holy shit]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Holy shit," you blurt out.
<span class="greenHighlighter">Clark ''liked'' that.</span>
"You'll be fine," says <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Yeah. And welcome to <div class="tooltip">wetwork<span class="tooltiptext">in espionage jargon: missions involving use of lethal force</span></div>," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a [[cheerily ruthless smile|BBJ-400 Title card]] on his face.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Your mouth's suddenly dry. You have to swallow before you can get any words out. "$kateSays," you manage.
<span class="greenHighlighter">Ian ''liked'' that.</span>
"Once we're in, Ian's on security," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "$kate.cover.firstName, you've got the manager's office. Recover //all// the security footage, that's the main objective. I'll clear upstairs, then come down and support either of you as needed."
"Understood," says <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Alright. We've got plenty of time before we leave, but let's make sure all the gear's prepped and fully charged. I don't want this job [[going south|BBJ-400 Title card]] because of a flat fuckin' battery or a broken cable or some shit..."
<</page>>"If we can get clear footage of his face from that, it's all we need," says <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, pulling up a chair. "The techies can build an <div class="tooltip">HID<span class="tooltiptext">Human Identification at a Distance: a form of facial recognition technology built from 2D images and algorithms</span></div> profile off of it; then we lift this little fucker next time he tries to catch a flight. Misson accomplished."
"And you can stop serving drinks and get back to your real job," adds Clark. "We're gonna <div class="tooltip">black bag<span class="tooltiptext">"Black bag" operations involve breaking and entering into denied areas to gain intel.</span></div> the club. Tonight."
[[Cool!|BBJ-230 Cool!]]
[[What's the plan?|BBJ-240 What's the plan]]
[[Sounds risky.|BBJ-250 Sounds risky]]<<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Cool!"
<span class="greenHighlighter">Clark ''liked'' that.</span>
"Ian's been recce-ing the place this past few days," he says.
<<include "BBJ-260 Ian's map">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"What's the plan?" you ask.
"Ian's been recce-ing the place this past few days," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<include "BBJ-260 Ian's map">>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Sounds risky."
"Yep," shrugs <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Ian's been recce-ing the place this past few days."
<<include "BBJ-260 Ian's map">>
<</page>>"The clubs all close down by zero two hundred; whole street's deserted by zero three thirty," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports.
He lays out a hand-sketched map of Soi Patpong 2, tracing a route with his fingertip. "We come in this way, through Soi Superstar, and take out a police security camera //here.//
"Then we're clear to move up to the main door of the club, and pick the lock."
[[What about the alarm?|BBJ-270 What about the alarm?]]<<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"What about the alarm?"
"Each of the managers has a wireless keyfob that controls it. I've skimmed the signals from Connor's fob; once the door's open, we send the disarm string. We reset it when we're leaving..." he shrugs. "Hopefully nobody notices we were there."
[[What if the alarm status is monitored?|BBJ-280 What if the alarm status is monitored]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"What if someone's watching the alarm status somewhere?"
"There are three silenced <div class="tooltip">SMGs<span class="tooltiptext">submachine guns</span></div> in that kit bag under the couch," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "<div class="tooltip">Langley<span class="tooltiptext">CIA Headquarters</span></div>'s pre-authorised us to kill."
//Holy shit.//
[[Right.|BBJ-300 Stoic Kate][$kateSays to "Right"]]
[[Got it.|BBJ-300 Stoic Kate][$kateSays to "Got it"]]
[[Holy shit.|BBJ-290 Holy shit]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Holy shit," you blurt out.
<span class="greenHighlighter">Clark ''liked'' that.</span>
"You'll be fine," says <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Yeah. And welcome to <div class="tooltip">wet work<span class="tooltiptext">in espionage jargon: killing in the line of duty</span></div>," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a [[cheerily ruthless smile|BBJ-400 Title card]] on his face.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Your mouth's suddenly dry. You have to swallow before you can get any words out. "$kateSays," you manage.
<span class="greenHighlighter">Ian ''liked'' that.</span>
"Once we're in, Ian's on security," says <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "$kate.cover.firstName, you've got the manager's office. Recover //all// the security footage, that's the main objective. I'll clear upstairs, then come down and support either of you as needed."
"Understood," says <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Alright. We've got plenty of time before we leave, but let's make sure all the gear's prepped and fully charged. I don't want this job [[going south|BBJ-400 Title card]] because of a flat fuckin' battery or a broken cable or some shit..."
<</page>><<silently>>
<<set $header.line1 to "''PATPONG''",
$header.line2 to "BANGKOK / MAY 2018">>
<<wear-khakiFourPocketBackpackWithStripes>>
<<emote-calm>>
<</silently>>\
<a data-passage="BBJ-410 Patpong arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/patpongZeroDarkThirtyTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
At 3.15 <small>A.M.</small>, Patpong is dead. The night market has been packed down; almost everywhere is shut. The streets are dark and quiet.
<<image "/locationPhotos/thailand/patpong/patpongZeroDarkThirty.jpg" 200 1000 666 0>>\
You follow <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> through a still black <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, and take up position at the far end.
In the gloom you can just make out the silhouette of a street security camera, operated by the Tourist Police, mounted on a tall pole. Ian says it's the only street camera with a view onto the Hard Cock Cafe.
//[[Blind the camera.|BBJ-420 Blind the camera]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
At opposite corners of the <div class="tooltip">trok<span class="tooltiptext">alley</span></div> exit, you and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> each draw out a <span class="imageLink"><<link "tactical flashlight">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/patpong/maglite.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The metal shell feels chunky and solid in your hand.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to shine the beam directly on the camera. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: (_kateD10) = <<= _kateD10>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You aim at your target, and [[twist on the beam|BBJ-430 Crack shot]].
<<else>>
You aim at your target, and [[twist on the beam|BBJ-440 Crap shot]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Both beams hit the target simultaneously, bathing the security camera in dazzling white LED light.
<span class="greenHighlighter">Ian and Clark ''liked'' that.</span>
<<include "BBJ-450 Clark goes in">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ian's beam hits the target directly. Yours misses wildly, lighting up a <<if $kate.hairColour == "Black">>black-haired<<elseif $kate.hairColour == "Brown">>brunette<<else>>weird<</if>> sex doll on the other side of the street.
<<image "/locationPhotos/thailand/patpong/patpongFigurehead.jpg" 0 1000 473 0>>\
You swing your beam up onto the security camera, bathing it in two dazzling beams of white LED light.
<<include "BBJ-450 Clark goes in">>
<</page>><span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> strides out to [[disable it|BBJ-460 Clark disables the camera]] while it's blinded.<<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
In the gloom at the base of the camera pole, <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sets down his rucksack, and gets to work opening the maintenance panel with a workman's tool.
You and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just need to keep the beams [[steady on the camera|BBJ-465 Physicality]] until he cuts the wire.
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Your flashlight isn't heavy, but holding it perfectly still at shoulder height isn't easy. Your muscles burn and your heart beats faster to pump blood up into your arms.
You're breathing a little harder when Clark finally gives you the thumbs up. You and Ian kill your flashlights, and head over to [[join him|BBJ-470 I smell a rat]].
<</page>><<silently>>
<<set $header.line1 to "''SOI PATPONG 2''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
From his rucksack, <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> produces a ziplock bag containing...a //dead rat.// He drops its little body into the hollow space inside the camera pole.
You and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> keep watch, while Clark reattaches the maintenance panel.
[[Where'd you get the rat?|BBJ-480 Where did you get the rat?]]
//[[Keep quiet.|BBJ-490 Main door]]//
<</page>><<silently>>
<<emote-brows-naughty>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Where did you get that?" you hiss.
<<if $kate.agency == "mi6">>\
"<div class="tooltip">Porton Down<span class="tooltiptext">the UK's biological weapons research establishment</span></div>," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs.
<<else>>\
"England," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "<div class="tooltip">Porton Down<span class="tooltiptext">the UK's biological weapons research establishment</span></div>."
<</if>>\
"Probably did him a favour," mutters <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Maybe. 'Kay, I'm done, [[let's go|BBJ-490 Main door]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> draws out the <span class="imageLink"><<link "Kronos lockpick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> as you approach the main entrance to the Hard Cock Cafe.
You trained with the Kronos <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>; it can pick most locks in just a few seconds. <<if hasVisited("DINBOSS-17000 Geek girl")>>About the size of a lightsaber, the male recruits christened it 'the dildo' when they learned that it vibrates during operation.<<else>>The male recruits called it 'the dildo' when they learned that this big phallic cylinder vibrates when you're using it.<</if>> (None of the girls told them that dildos don't vibrate.)
You reach the main door; your job is to keep watch with <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Make it look good," murmurs Clark.
//[[Pretend to make out.|BBJ-500 Lockpick makeout]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Like you planned, <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans into you, pressing you gently up against the wall. You feel lean hard muscles under his shirt, and the boxy grip of a <span class="imageLink"><<link "Glock">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/glock17.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sticking up from the waistband of his jeans.
Your bodies block Clark from view if any cops or civilians blunder in from nearby Silom Road. Ian keeps watch that way, pretending to nibble your neck, stubble scraping your skin.
You gaze down the length of Soi Patpong 2 by craning past his shoulder, pretending to whisper in his ear. His neck smells of hot skin and his shirt smells fresh and clean, like <<if $kate.agency == "cia" or $kate.agency == "csis">>laundry soap<<else>>washing powder<</if>>.
Beside you, Clark fires up the Kronos. It buzzes quietly, like a [[dentist's drill|BBJ-510 Buzz buzz]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Bzzz, vrrrrr, bzzz.//
You stare into the gloom, watching for movement, your breasts pressed against <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
His body's so different from Connor's. His shoulder muscles feel like little boulders. And his touch is so //gentle.// His hand is on the small of your back, just above your butt, bare fingertips on your bare skin under your top.
Is that his phone pressing into your–
"[[Done|BBJ-520 Entry]]," hisses <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> immediately disentangle from the clinch. You keep watch in both directions; he produces a <span class="imageLink"><<link "handheld RF transmitter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/rfExplorer.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from his pocket, and starts it up.
When he gives the nod, <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls the door wide open.
From the darkness inside, an alarm control panel gives out a set of shrill piping beeps.
Ian sends a disarm string from the transmitter. A beat...then the alarm beeps back in recognition, and [[falls silent|BBJ-530 Inside]].
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You follow <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> inside. The familiar smell fills your nostrils, decades of lingering booze, perfume, sweat and sex.
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes in behind you, and closes the door...plunging the dark corridor into [[total, Stygian blackness|BBJ-540 Total Stygian darkness]].
<</page>><<silently>>
<</silently>>\
<<page>>\
//[[Put on your night vision gear.|BBJ-540 Kit rummage]]//
<</page>><<silently>>
<<remove-khakiFourPocketBackpackWithStripes>>
<</silently>>\
<<page>>\
In the quiet dark, you unsling your gear bag, crouch down, and unzip it.
Nearby, you hear Ian and Clark [[doing the same|BBJ-550 Found the goggles]].
<</page>><<silently>>
<</silently>>\
<<page>>\
Reaching into your bag, you fumble around until your fingers find the straps and rubbery eye caps of your [[night vision goggles|BBJ-560 Put them on]].
<</page>><<silently>>
<<set $avatar.foreground.pushUnique("accessories/samsNVGs/60_samsNVGs")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle + "-rear")>>
<</silently>>\
<<page>>\
You pull them on over your head, fixing the goggles into place.
They smell musty, like someone sweated into them before they went into storage.
//[[Switch them on.|BBJ-570 NVGs]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You switch on your <div class="tooltip">NVGs<span class="tooltiptext">Night Vision Goggles</span></div>. In <<if hasVisited("DINBOSS-17000 Geek girl")>>video games<<else>>Hollywood<</if>>, doing this makes a cool whining sound; in real life, it's silent.
//[[Glove up.|BBJ-575 Glove up]]//
<</page>><<silently>>
<<wear-clearLatexSurgicalGloves>>
<</silently>>\
<<header>>\
<<page>>\
You slip on a pair of surgical gloves. No sense leaving your fingerprints somewhere they shouldn't be.
//[[Retrieve your weapon.|BBJ-580 Armed]]//
<</page>><<silently>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/55_hkMP5On3PointSling")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<set $avatar.clothing.pushUnique("clothing/accessories/hkMP5On3PointSling/55_hkMP5On3PointSling-rear")>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle + "-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Finally, you pull your personal weapon out of your rucksack, a Heckler & Koch MP5 submachine gun.
You trained intensively with the MP5 <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>. A fellow recruit – who came to <<if $kate.agency == "cia">>the Agency<<else>>the Service<</if>> after the Army – told you he fired way more 9mm rounds during <<= $kate.agency.toUpperCase()>> training than he had in his whole [[eight-year military career|BBJ-590 Kate's MP5 review]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your own experience with the MP5 is that it's difficult to hit a paper target in the head at 100 metres. Within 25 metres: it is surgical. You do a quick safety check on the weapon, then screw on the silencer, and load it.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are doing the same. A set of satisfyingly menacing scrapes and clicks rings out in the dark corridor, magazines and bolt carriers sliding into place.
//[[Keep the safety on.|BBJ-600 Safe mode]]
[[Set it to fire single shots.|BBJ-610 Single shot]]
[[Set it to fire three-round bursts.|BBJ-620 3RB]]
[[Set it on full auto.|BBJ-630 Full auto]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You double check the weapon is still on safe. That way you can't accidentally put a hole through a wall...or <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span>, or <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<include "BBJ-640 Ready up">>
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-semi")>>
<</silently>>\
<<header>>\
<<page>>\
You click the fire selector switch up once. If you pull the trigger, you'll fire one round. Each magazine holds 31 rounds.
<<include "BBJ-640 Ready up">>
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-burst")>>
<</silently>>\
<<header>>\
<<page>>\
You click the fire selector switch up twice. If you pull the trigger, you'll fire a three-round burst. Each magazine holds ten bursts (plus one extra shot).
<<include "BBJ-640 Ready up">>
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<</silently>>\
<<header>>\
<<page>>\
You click the fire selector switch all the way up, to full auto. In this mode, you can spray out 31 rounds in two point four seconds.
<<include "BBJ-640 Ready up">>
<</page>><<silently>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle + "-rear")>>
<<wear-khakiFourPocketBackpackWithStripes>>
<</silently>>\
You zip up your gear bag, and sling it over your shoulder. <<if hasVisited("BBJ-600 Safe mode")>>Clark and Ian<<else>><span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> are ready, too, looming in the grainy green darkness.
With <div class="tooltip">NVGs<span class="tooltiptext">night vision goggles</span></div> and MP5s, they look absolutely terrifying in the dark, figures out of a fucking nightmare.
//[[Take the lead.|BBJ-650 Starlet Alley]]//<<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're the one who knows this place. You lead them deeper into the darkness, through the long entrance corridor lined with framed photos of <span class="imageLink"><<link "stripped down musicians">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/gwenEllieDuaNV.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Push open the swing door.|BBJ-660 Squeak]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It squeaks so noisily when you push it open, a cacophony in the quiet dark.
You step through into the main club. All lights are off. The bar's deserted, black and quiet.
Seeing it brings back a vivid memory of working here last night. //I //work// here.// That seems so weird now, so unreal.
//[[Lead the team to the backstage No Entry door.|BBJ-670 Dancefloor]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You cross over the empty dancefloor, the soles of your <<trainer>>s crunching quietly on the sticky floor.
In the four nights you've worked here, you feel like you've had to put up with a lot of shit on this dance floor. Random men feeling and smacking your bare ass...the guy who yanked down your <<knickers>> last night, and all the other assholes who stood around and cheered when that happened.
//They'd all run a fucking mile if they saw "$kate.stripperName" now.//
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/noEntryNV.jpg" + '>'>>
The No Entry door leading backstage is closed, protected by a keypad lock.
<<if $kateSawTheDoorCode>>\
//[[Enter 1610.|BBJ-730 Kate knows the door code]]//
<<else>>\
//[[Hack the keypad.|BBJ-680 No Entry door hack]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Unslinging and unzipping your bag, you pull out a <span class="imageLink"><<link "multitool">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/gerberDiesel.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and get to work unscrewing the keypad casing.
Opening it just a crack, you probe gently inside with the multitool knife.
There's a simple anti-tampering device, a spring that will trigger an alarm when the front casing is removed. You disable it easily with a paperclip.
//[[Open up the casing.|BBJ-690 Circuits]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
Carefully – using your thumb to keep the paperclip in contact with the spring – you open up the casing and look inside.
You see a circuit board, connected to various wires and relays. In grainy green nightvision, you can't tell the wires apart by colour, making it harder to keep track of how everything's connected.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to analyse the circuit layout. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
It looks complex, but you keep calm and identify each wire in turn. //These two wires...are power. This relay...connects to the tamper switch. So this relay must control the lock. [[Got it.|BBJ-720 Kate unlocks the door]]//
<<else>>
The wires wind around the board confusingly. //This one is power. And this one connects here...but...//<br />
<br />
You stare at it for a while, unable to figure it out. <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> crouches down beside you. "[[Let me see|BBJ-700 Clark solves it for Kate]]," he whispers.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He studies it for a few seconds, then points to the relay on the left. "That one," he murmurs confidently.
[[Okay.|BBJ-710 Okay][$kateSays to "okay"]]
[[Thanks.|BBJ-710 Okay][$kateSays to "thanks"]]
[[You sure?|BBJ-710 Okay][$kateSays to "uSure"]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "okay">>\
"Okay."
<<elseif $kateSays == "thanks">>\
"Thanks."
<<elseif $kateSays == "uSure">>\
"You sure?"
"Yeah."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You reattach the casing, and use the multitool to screw the keypad back together.
Drawing a mini magnet out of your bag, you hold it up against the keypad, next to the relay Clark identified.
There's a dull //click// and the No Entry door [[unlocks|BBJ-740 Backstage corridors]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reattach the casing, and use the multitool to screw the keypad back together.
Drawing a mini magnet out of your bag, you hold it up against the keypad, next to the correct relay.
There's a dull //click// and the No Entry door unlocks.
<span class="greenHighlighter">Clark and Ian ''liked'' that.</span>
"[[Attagirl|BBJ-740 Backstage corridors]]," murmurs Clark.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You punch the code 1-6-1-0 into the keypad.
There's a dull //click// as the No Entry door [[unlocks|BBJ-740 Backstage corridors]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> stays behind in the club, providing rear security; you and <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> move backstage.
The corridors back here are pitch dark and eerily quiet. You lead Clark around to the right, past the door to the stripper dressing room, to the office door.
It's protected by another keypad lock.
<<if $kateSawTheOfficeDoorCode>>\
//[[Enter 6390.|BBJ-810 Kate knows the door code]]//
<<else>>\
//[[Hack the keypad.|BBJ-750 Office door hack]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("BBJ-680 No Entry door hack")>>\
It's exactly the same model keypad as the No Entry door.
You get out your multitool, and carefully take it apart anyway – just in case somebody got clever, and changed the wiring around. <<if hasVisited("BBJ-700 Clark solves it for Kate")>>"Same one," [[whispers Clark|BBJ-760 Click]].<<else>>
//Nope,// you decide after a brief inspection: everything's [[identical|BBJ-760 Click]].<</if>>
<<else>>\
Unslinging and unzipping your bag, you pull out a <span class="imageLink"><<link "multitool">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/gerberDiesel.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and get to work unscrewing the keypad casing.
Opening it just a crack, you probe gently inside with the multitool knife.
You find a simple anti-tampering device, a spring that will trigger an alarm when the front casing is removed. You disable it easily with a paperclip.
//[[Open up the casing.|BBJ-770 Circuits]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reassemble the keypad, and hold your mini magnet up against the correct relay.
The door unlocks with a dull [[click|BBJ-820 Office]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
Carefully – using your thumb to keep the paperclip in contact with the spring – you open up the casing and look inside.
You see a circuit board, connected to various wires and relays. In grainy green nightvision, you can't tell the wires apart by colour, making it harder to keep track of how everything's connected.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to analyse the circuit layout. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
It looks complex, but you keep calm and identify each wire in turn. //These two wires...are power. This relay...connects to the tamper switch. So this relay must control the lock. [[Got it.|BBJ-800 Kate unlocks the door]]//
<<else>>
The wires wind around the board confusingly. //This one is power. And this one connects here...but...//<br />
<br />
You stare at it for a while, unable to figure it out. <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> crouches down beside you. "[[Let me see|BBJ-780 Clark solves it for Kate]]," he whispers.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He studies it for a few seconds, then points to the relay on the left. "That one," he murmurs confidently.
[[Okay.|BBJ-790 Okay][$kateSays to "okay"]]
[[Thanks.|BBJ-790 Okay][$kateSays to "thanks"]]
[[You sure?|BBJ-790 Okay][$kateSays to "uSure"]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "okay">>\
"Okay."
<<elseif $kateSays == "thanks">>\
"Thanks."
<<elseif $kateSays == "uSure">>\
"You sure?"
"Yeah."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You reattach the casing, and use the multitool to screw the keypad back together.
Drawing a mini magnet out of your bag, you hold it up against the keypad, next to the relay Clark identified.
There's a dull //click// and the office door [[unlocks|BBJ-820 Office]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reattach the casing, and use the multitool to screw the keypad back together.
Drawing a mini magnet out of your bag, you hold it up against the keypad, next to the correct relay.
There's a dull //click// and the office door unlocks.
<span class="greenHighlighter">Clark ''liked'' that.</span>
"[[Attagirl|BBJ-820 Office]]," he murmurs.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You punch the code 6-3-9-0 into the keypad.
There's a dull //click// as the office door [[unlocks|BBJ-820 Office]].
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholderNV2.jpg" 0 1000 563 0>>\
The pair of you step through into the office. The fishtank is still lit up; it's dazzling until your <div class="tooltip">NVGs<span class="tooltiptext">night vision goggles</span></div> adjust.
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> peers around, quickly drawn to the one-way mirror into the stripper dressing room. Even though it's dark and empty in there, you can tell he's fascinated by this illicit glimpse into a private female space.
//<span class="greyedOut">[Primary objective]</span> [[Secure the surveillance system footage.|BBJ-830 Surveillance system]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You get started with the main objective: securing the surveillance footage. <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> heads off to explore the rest of the building, leaving you alone in the dark.
The security screens are on a wall by the door. Last time you saw them, they were displaying live footage of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> being fucked upstairs. Now they're dark and quiet.
//[[Find the security hub.|BBJ-840 Find the hub]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You trace the cables from the screens down to a small cabinet.
Inside is the <span class="imageLink"><<link "security system hub">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/hikvisionHub.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a device about the size of a set-top box for a smart TV.
//[[Get out your laptop.|BBJ-850 Laptop out]]//
<</page>><<silently>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle + "-rear")>>
<<remove-khakiFourPocketBackpackWithStripes>>
<</silently>>\
<<header>>\
<<page>>\
You unsling and unzip your bag, and get out your laptop.
This next part's going to involve disturbing the position of the hub; you take a photo of it first, so you can put it back exactly as it was.
Your phone's camera flash is dazzling in your <div class="tooltip">NVGs<span class="tooltiptext">night vision goggles</span></div>.
//[[Connect with your laptop.|BBJ-860 Hooking up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You power on the hub, then connect it to your laptop via a fiber optic USB cable, built for ultra-fast data transfer.
Sitting cross-legged on the tiger rug, you open an app called //Fine Dining// on your laptop.
Built by the CIA<<if $kate.agency != "cia">>, and used by all <small>FIVE EYES</small> agencies<</if>>, it gives officers in the field a "menu" of cyber attack tools to use on a target system, no coding skills needed.
//[[Hack the security hub.|BBJ-870 Fine Dining]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You set the security hub as the target, and //Fine Dining// gives you a menu of various attacks and viruses you can choose from.
A five-digit PIN is normally required to log into the hub...but <<if $kate.agency == "cia">>a CIA officer<<elseif $kate.agency == "mi6">>an MI6 officer<<elseif $kate.agency == "asis">>an ASIS officer<<elseif $kate.agency == "csis">>a CSIS officer<<elseif $kate.agency == "nzsis">>an SIS officer<<else>>ERROR IN KATE.AGENCY VAR<</if>> using //Fine Dining// doesn't need a conventional login.
A few keypresses and a five-second upload of some malicious code gives you control of the hub's firmware – and total control of this device, in a way that's persistent and very hard to detect.
The Combined Task Force will be able to access the surveillance system remotely from now on. Clark will be able to look in the stripper dressing room as much as he wants.
//<span class="greyedOut">[Primary objective]</span> [[Download all stored surveillance footage.|BBJ-880 Download start]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The hub's hard drive is stuffed full to the brim, with two whole terabytes of recorded surveillance footage. Hopefully that stretches all the way back to <small>DEVILFISH's</small> visit in February – you don't know.
You just need to [[double-click|BBJ-882 Hesitation]] the icon to download it all to your laptop.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your finger hovers over the trackpad.
<small>DEVILFISH</small> may be in this footage; you definitely will be. Everything you download is going to be pored over by analysts...including the footage of "<<if $kate.agency == "cia">>Officer<<elseif $kate.agency == "mi6">>MI6 Officer<<elseif $kate.agency == "asis">>ASIS Officer<<elseif $kate.agency == "csis">>CSIS Officer<<elseif $kate.agency == "nzsis">>SIS Officer<</if>> $kate.firstName[0]" stripping naked; serving VIP drinks in a thong; and, on two nights, returning to the dressing room early with a just-fucked look.
Will they really understand it was all just part of your cover? How many people are even going to see it?
//If I work on a team with one of these analysts in the future, how would I know?// You could easily end up working with or for someone who's seen you naked. //Fuck.//
//[[Download the footage.|BBJ-883 Hesitation II]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You touch a gloved finger to the trackpad.
Some deep sense of self preservation stops you from double-clicking it.
//Two pushes and my nudes are going up on <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>...//
//[[Double click.|BBJ-884 Click click]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//Click-click.//
A window springs up, estimating the download will take 15 minutes 2 seconds.
//Fuck.// Okay, it's happening, you can't control it any more.
You've got time to [[search the office|BBJ-890 Search the office]] while you wait.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
There's a computer on the desk, but you can't hack that while your laptop is tied up.
You can go through the [[in tray|BBJ-900 In tray]] on the desk, or look through the [[desk drawers|BBJ-910 Drawers]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You take a photo of the in tray, then carefully go through each item.
Clark issued you a new smartphone just for tonight. It came with a document scanner app, so you use that to capture each document in the tray.
It's mostly invoices, statements and junk mail from suppliers; the usual stuff that small businesses accumulate. Nothing jumps out at you as exciting intel – no mysterious passwords or Swiss bank account details – but you scan it all anyway, just in case.
//[[Move on to the desk drawers.|BBJ-910 Drawers]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("BBJ-900 In tray")>>\
You restore the in tray as you found it, then turn your attention to the contents of the desk.
<<else>>\
You start with the contents of the desk.
<</if>>\
You take a photo of the top drawer before searching through it.
It's mostly just mundane office stuff; stationery...receipts...breath mints. Plus a few more unusual items: condoms and baby wipes.
//Just thank god there isn't a CCTV camera in here.//
//[[Search the middle drawer.|BBJ-920 Middle drawer]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the middle drawer you find a spiral-bound notebook. It's half-filled with scrawled notes in several handwriting styles; some in curly Thai script, some things jotted down in English.
You can tell that this is the book they use to organise shifts for the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>; many pages are just lists of stage names under a date.
You use your smartphone to scan every page, in case any of it's important.
//[[Search the bottom drawer.|BBJ-930 Bottom drawer]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The bottom drawer contains hanging files. You take a photo, then pull the closest one. <<= $kate.stripperName.toUpperCase()>> is written on the cover.
There's a fingertip tap at the door – Clark letting you know he's coming back in. You prearranged this signal earlier, to reduce the chances of someone accidentally getting shot in the dark.
//[[Open the folder.|BBJ-940 River's dossier]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's a dull //click// as the door unlocks.
Inside the folder is the form that Lu made you fill out on your first day – your name and contact details written out in your own hand.
You turn it over as the office door pushes open. Underneath the form is a sheaf of printouts from your photo session in Connor's apartment. You look down at an photo of yourself printed out on office paper, naked and full frontal, [[smirking at the camera|BBJ-942 Hey]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hey," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs, coming in. "How's it going?"
//[[Hurriedly put your file away.|BBJ-950 Bargirls]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fine." You close your folder before he sees it. "Found some, uh, employee files. Can you hack that computer?"
"Yeah." He comes to the desk, unpacks his own laptop. "The footage?"
"Two terabytes. Should be [[nearly done|BBJ-960 Spies like us]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The room falls quiet but for shuffling papers and the soft //tap-tap-tap// of Clark's keyboard. Two spies, stealing information in the dark, submachine guns dangling off them. For the very first time in your <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> career, it feels close to a spy scene from a movie.
You go through the rest of the bargirl folders. Each has the contact form and a sheaf of nudes, mostly taken at Connor's. Some of the girls are holding up their passports in their nudes, so this is potentially useful intel.
Clark looks down at the forms and the nudes as you work through them, but makes no comment. You scan all of them [[except your own|BBJ-1100 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Each <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> and barmaid has her own folder, containing the contact form and a few nude printouts.
This is useful intel – real names and contact details of the Hard Cock Cafe girls. You get to work [[scanning in forms and nudes|BBJ-960 Tap at the door]] that show passports.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're about halfway through when there's a fingertip tap at the door. Probably Clark – he said he'd come down and join you after he checked out the upstairs.
//[[Keep scanning documents.|BBJ-980 It's Clark]]
[[Aim your weapon at the door.|BBJ-970 Defensive posture]]//
<</page>><<silently>>
<<if hasVisited("BBJ-600 Safe mode")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<<elseif hasVisited("BBJ-610 Single shot")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-semi")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<<elseif hasVisited("BBJ-620 3RB")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-burst")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You quietly set down your smartphone, reach over the MP5 for the fire selector switch, <<if hasVisited("BBJ-630 Full auto")>>and check it's still on full auto.<<else>>and click it all the way up, to full auto.<</if>>
There's a dull //click// as the door unlocks. You aim your weapon at the doorway, ready to put 31 rounds in [[whoever's coming through|BBJ-980 It's Clark]].
<</page>><<silently>>
<<if hasVisited("BBJ-600 Safe mode")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<elseif hasVisited("BBJ-610 Single shot")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-semi")>>
<<elseif hasVisited("BBJ-620 3RB")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-burst")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("BBJ-970 Defensive posture")>>\
It's <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Chill," he murmurs when he realises you're aiming a gun at him; you <<if hasVisited("BBJ-600 Safe mode")>>put it back on safe and re-sling it.<<elseif hasVisited("BBJ-610 Single shot">>put it back on single shot and re-sling it.<<elseif hasVisited("BBJ-620 3RB">>put it back on burst mode and re-sling it.<<else>>re-sling it.<</if>> "Just came to see how you're getting on."
<<else>>\
There's a dull //click// as the door unlocks.
"Hey," murmurs <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, coming in. "How's it going?"
<</if>>\
<<if not hasVisited("BBJ-900 In tray")>>\
[[Nearly done. Can you check that in tray?|BBJ-990 Clark rifles the in tray]]
<</if>>\
[[Nearly done. Can you hack that computer?|BBJ-1020 Can you hack the computer?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm downloading the footage," you report, your voice low. "These are employee files. Can you scan that in tray?"
"Yeah, sure." He comes around to your side of the desk, takes a photo of the in tray, then starts [[scanning letters and invoices|BBJ-1000 Happy at work]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The room falls quiet but for shuffling papers.
Just two spies working together, photographing documents during a break-in. Much more how you imagined your first field mission might go.
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finishes the in tray first. "That hacked?" he murmurs, pointing to the PC on the desk.
[[Not yet.|BBJ-1010 Not yet]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not yet."
"I'm on it." He unslings his bag and gets out [[his own laptop|BBJ-1100 Title card]]...
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm downloading the footage, these are employee files," you report, your voice low. You point to the PC on the desk. "Can you hack that?"
"Yeah, sure." He comes around to your side of the desk, unzips his bag, and gets out [[his own laptop|BBJ-1030 Happy at work]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The room falls quiet but for tapping computer keys and shuffling papers.
Just two spies working together, hacking and photographing documents during a break-in. Much more how you imagined your first field mission might go.
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> uploads some spyware to the PC. Next time an authorised user logs in, the Task Force will gain the ability to hack into it remotely. Then he packs away his laptop.
"That scanned?" he murmurs, pointing to the in tray.
<<if hasVisited("BBJ-900 In tray")>>\
[[Yeah.|BBJ-1050 Yeah]]
<<else>>\
[[Not yet.|BBJ-1040 Not yet]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not yet."
"I'm on it." He takes a photo of the in tray, then starts [[scanning letters and invoices|BBJ-1100 Title card]]...
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you reply.
"Cool." He stops talking and [[lets you work|BBJ-1100 Title card]]...
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<page>>\
//[[TEN MINUTES LATER...|BBJ-1150 Job done]]//
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<<emote-calm>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-armedWithMP5-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle + "-rear")>>
<<wear-khakiFourPocketBackpackWithStripes>>
<</silently>>\
<<header>>\
<<page>>\
//Mission complete.// You've downloaded the surveillance footage, hacked the office PC, and scanned all the docs you could find. Time to get out of here.
You and <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clarkNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> pack away all the gear, and do a last visual check to confirm that you haven't left equipment lying around.
Then you head back out through the club, and collect <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span>, who's been covering the door this whole time.
Out in the corridor with the naked pop stars, you <<if hasVisited("BBJ-600 Safe mode")>>check your weapon's still on safe<<else>>put your weapon back on safe<</if>>, and [[pack it away|BBJ-1200 Going dark]] in your bag.
<</page>><<silently>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-backpackAndMP5-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle + "-rear")>>
<<remove-khakiFourPocketBackpackWithStripes>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/55_hkMP5On3PointSling")>>
<<set $avatar.clothing.delete("clothing/accessories/hkMP5On3PointSling/55_hkMP5On3PointSling-rear")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-safe")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-semi")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-burst")>>
<<set $avatar.foreground.delete("clothing/accessories/hkMP5On3PointSling/56_fireSelectorSwitch-auto")>>
<</silently>>\
<<header>>\
<<page>>\
One final look around this place. Maybe for the last time?
If you really do have video of <small>DEVILFISH</small> on your laptop, you won't need to come back. You'll fly out on a US diplomatic flight with Ian and Clark; "$kate.cover.firstName $kate.cover.surname" will cease to exist, just another barmaid who passed through this place once.
A photo of some starlet you don't recognise, posing with <span class="imageLink"><<link "her top being held open by a bandmate">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/kempMuhlNV2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, is the last thing you see before you [[switch off your nightvision|BBJ-1250 Exit]].
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE INDIGO''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set $avatar.foreground.delete("accessories/samsNVGs/60_samsNVGs")>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/99_nvgOverlay-unarmed-" + $kate.hairStyle + "-rear")>>
<<remove-clearLatexSurgicalGloves>>
<<removeShoes>>
<</silently>>\
<a data-passage="BBJ-1300 Nada">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/safehouse/safehouseIndigoNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's four-thirty <small>A.M.</small> when you get back to the safehouse. But you're all much too amped up to sleep.
Huddled around your laptop, <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> watch eagerly as you try to open the surveillance footage. Unfortunately, it's encrypted; you won't be able to access it without a key.
"Alright," says Clark, "let's get this straight to <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div>. Ian, pack down the gear, please, buddy. $kate.cover.firstName, I'm gonna give you some [[server logins|BBJ-1350 We sleep at dawn]]..."
<</page>><<silently>>
<<wear-knickers-blackUnderArmourSportsKnickers>>
<<remove-trousers-oliveGreenCargoTrousers>>
<<remove-hosiery-blackCottonTrainerSocksWithDarkGreyHeels>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Dawn's rays are creeping through the shutters when you finally brush your teeth and get ready for bed.
//I fucking// did //it.// After hours and hours with Clark and Ian, mirroring their cool masculine detachment all through the stress and fear of the mission, the girl in the mirror allows herself a small smile.
Breaking in with nightvision gear and a weapon; hacking the security hub; getting out, undetected, with the data. A classic paramilitary "black op". //You kept your cool,// you think, admiring the young <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer in the mirror, //you didn't make any mistakes.//
You feel like you want to tell someone. But, of course, you never can.
//[[Shower and go to bed.|BBJ-1360 Shower scene]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<avatar-getWet>>
<<set $avatar.blink to false>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
You shower off the sweat and stress of the day, letting the warm water relax you and get you [[ready for sleep|BBJ-1400 Title card]].
<</page>><<silently>>
<<set $avatar.blink to true>>
<<avatar-expr-removeEyelid-closed>>
<<avatar-dryOff>>
<<emote-calm>>
<<emote-eyes-squint>>
<<wear-knickers-blackUnderArmourSportsKnickers>>
<</silently>>\
<a data-passage="BBJ-1450 Here's your morning heartburn, Arthur">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/safehouse/nextMorningTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/safehouse/baanNoinaGuestRoom.jpg" 0 1000 550 0>>\
When you wake up, it's bright and hot outside.
Car horns beep on the nearby Rama IV Road; the smell of fresh coffee drifts up through the safehouse. Clark is talking on the phone downstairs, although you can't make out what he's saying.
//[[Get dressed and go down.|BBJ-1500 Get dressed and go down]]//
<</page>><<silently>>
<<emote-calm>>
<<wear-top-whiteTShirtWithRuffledSleevesKnottedAtWaist>>
<<wear-trousers-oliveGreenCapriCargoPants>>
<</silently>>\
<<header>>\
<<page>>\
"Coffee's on," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you, nose buried in his laptop. "Ian's out."
//<span class="greyedOut">[Get coffee]</span>// [[What've we got?|BBJ-1550 Breakfast]]
<<if $kate.agency == "mi6">>\
//<span class="greyedOut">[Make tea]</span>// [[What've we got?|BBJ-1550 Breakfast][$kateSays to "tea"]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You <<if $kateSays == "tea">>fill up the kettle and click it on.<<else>>pour yourself a big mug of coffee from the pot. It's thick and wicked strong.<</if>> "What've we got?" you ask.
"Footage only goes back 30 days," Clark says, shaking his head. "Then it gets overwritten. <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div>'s gonna try to recover it, but they said not to get our hopes up."
[[Shit.|BBJ-1600 Shit]]
<<link "Did we get //anything?//" "BBJ-1610 Did we get anything?">><</link>>
[[So what now?|BBJ-1650 What now?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Shit."
"Yeah." He rubs his eyes; it doesn't look like he's been to sleep yet. "<div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div>'s going through the footage, trying to figure out what we //do// got. They sent over some questions for ya...IDs they need confirmed, that kinda thing."
[[No problem.|BBJ-1700 That kinda thing]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Did we get //anything?"//
"Thirty days of footage. Just don't know if any of it's important." He rubs his eyes; it doesn't look like he's been to sleep yet. "<div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div>'s going through it now. They sent over some questions for ya...IDs they need confirmed, that kinda thing."
[[No problem.|BBJ-1700 That kinda thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So...what now?" you ask.
"<div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div>'s going through the footage, trying to figure out what we //do// got." He rubs his eyes; it doesn't look like he's been to sleep yet. "They sent over some questions for ya...IDs they need confirmed, that kinda thing."
[[No problem.|BBJ-1700 That kinda thing]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No problem."
There's a little desk in your guest room. You take your <<if $kateSays == "tea">>tea<<else>>coffee<</if>> and a breakfast of toast and Thai lime marmalade upstairs with you, and set up your laptop.
<<image "/locationPhotos/thailand/safehouse/writingDesk.jpg" 75 1000 600 0>>\
The list of questions from Langley is straightforward. Mostly they're just asking you to confirm who's who in stills from the footage – //is this Connor, is this Roxy,// etc.
Munching on your toast, you work through the list in order. //Yes, yes, yes, yes, yes.//
Then you get to a still that makes your [[stomach tighten|BBJ-1750 Is this Somchai?]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//S6) Is this "Somchai"?//
On your screen is a CCTV shot of the corrupt cop you escorted backstage on your first night. The stocky build, the windbreaker jacket, the mean scowl – yeah, that's Somchai alright.
The shot's taken from above the dancefloor. A <<if $kate.braSize == "small">>slim<<elseif$kate.braSize == "medium">>curvy<<elseif$kate.braSize == "large">>busty<<else>>//[ERROR IN KATE.BRASIZE VAR//<</if>> <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> trots alongside him, [[topless and shameless|BBJ-1760 Totally shameless]], walking nearly naked through a crowd of fully-dressed men.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-cheeks-blush-fading>>
<</silently>>\
<<header>>\
<<page>>\
She's identified with the caption <small>S12 (<<= $kate.stripperName.toUpperCase()>>)</small>...and she looks so sexual and confident that at first glance you didn't even recognise yourself.
Heat prickles up in your face and ears. //Fuck.// This screen grab is probably pinned to an ops board in a room full of CIA analysts.
//[[How much footage is there of me in here?|BBJ-1800 Selfie search]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Oh god.//
You log into the Langley server, and access the footage you pulled from the surveillance hub. It's organised neatly into folders by date, and subfolders by camera number.
Navigating to the date of your last shift, you click through a few camera views of rooms you haven't seen in person. They're bedrooms upstairs, empty at the start of the shift.
Camera 4 is the first room you recognise – the entrance corridor. It's so gloomy in there, you had no chance of spotting it.
Camera 5 is the [[stripper dressing room|BBJ-1850 Stripper cam]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This is the feed that plays in the VIP room, and unlike the others it's in glorious HD quality. You fast forward through it until the time of your arrival.
You watch yourself come in, take a place at a bench, start applying your makeup. Ping comes over to show you photos of her family's buffalo while you're putting on mascara.
You speed it up: <<Zoe>> and <<Amanda>> arrive, zooming into the room at warp speed. Then you slow it down and watch yourself [[strip for work|BBJ-1900 Stripped off]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch yourself peel off your street clothes and slip into a scrappy thong and high heels.
On screen, you look like a vampy, sexualised version of yourself. "$kate.stripperName", ready for work. Topless, tanned, sexy.
The girl on screen looks like she //belongs// in a strip club. That's...reassuring, you guess, in terms of your cover.
But you don't know how you feel about <<if $kate.agency == "cia">>your Agency colleagues<<else>>a whole group of CIA officers<</if>> [[seeing you like this|BBJ-1950 Camera 6]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Camera 6 is the VIP room. You didn't go in there on Friday, but you've been in twice before. You can check that footage later.
//[[Check Camera 7.|BBJ-2000 Camera 7]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Camera 7 is another bedroom. So is Camera 8.
Camera 9 is the dancefloor. [[Camera 10|BBJ-2050 Camera 10]] is the //bar.//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Jesus.// This place is //bristling// with cameras you didn't spot.
Luckily, this one's angled mainly on Ploy and Roxy. But there are still plenty of moments when you come flouncing into shot, wearing a thong and a smile.
You fast forward through the shift. You can see the progression as the night gets busier and the room gets drunker: by nine <small>P.M.</small> all four barmaids are [[stepping up on the rail and bending over the bar|BBJ-2100 Casually slutty]] to take orders.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It looks so...casually slutty on screen.
You and the other girls, bending over the bar, offering your bare breasts to be felt and pinched and squeezed by //everyone,// while you serve drinks and knock back shots and smile.
Your mouth goes dry when you see yourself in the way the Langley analysts have, or soon will – bending over the bar, your ass in the air, your ear to the lips of one of your regulars while he tugs on your nipples erotically.
You remember that conversation vividly – he was telling you how much he wanted to fuck you, //begging// you to let him take you upstairs. You were sure his dick was hard because your thong was soaked.
//Oh god. This looks so much worse than I pictured.//
//[[Check out Camera 11.|BBJ-2150 Girl on film]]//
<</page>><<silently>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
You switch to Camera 11. And see a familiar desk, a tiger rug, and an illuminated fishtank.
A tingling feeling sweeps up the back of your neck. Your chest feels tight.
//There's a fucking hidden camera in the office.//
A tap at the bedroom door makes you start. "$kate.firstName?" Clark's voice, sounding uncharacteristically tentative. "Can I, uh...[[have a word|GNO-100 Clark wants to talk]]?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Finally,// your first shift's over. Nine hours standing and walking around in new heels – your feet are killing you.
This would normally be the part where you help clean down the bar for tomorrow, but Lu asks to see you [[in the office|DINBOSS-1100 Managers office]] instead.
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Backstage in the manager's office, Lu counts out your pay for the night – six red banknotes, adding up to <div class="tooltip">600 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$18<<elseif $kate.agency == "mi6">>£12<<elseif $kate.agency == "asis">>$24<<elseif $kate.agency == "csis">>$24<<elseif $kate.agency == "nzsis">>$24<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
On this side of the one-way mirror, you can see the bargirls changing back into their street clothes next door – peeling off clingy, revealing stripper dresses and slipping into comfy t-shirts and baggy elephant pants.
"<<Amanda>> make twelve thousan' bah tonight," Lu tells you, sliding 5% of that amount across the desk. "Think abou' it."
[[I will.|DINBOSS-1200 I will]]
[[I couldn't do what she does.|DINBOSS-1300 I couldn't]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I will," you promise, scooping up the cash.
<span class="greenHighlighter">Miss Lu ''liked'' that.</span>
"Good, good," she smiles. "We talk abou' it next time. But firs', good news. The owner, Mr Kriangsak, he want to meet you."
[[Now?|DINBOSS-1400 Now?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You glance through at <<Amanda>>, who's obliviously getting dressed next door, and shake your head. "I couldn't do that."
"We'll see," Lu harrumphs. "But firs', good news. The owner, Mr Kriangsak, he want to meet you."
[[Now?|DINBOSS-1400 Now?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Now?"
"No, no, next few day," she says. "He call you. Jus' make sure you answer."
[[Okay.|DINBOSS-1800 Kate is issued a dress]]
[[Can you tell me anything about him?|DINBOSS-1500 Who is he?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Can you tell me anything about him?"
"He nice." She shrugs. "You find out for yourself, next few day."
[[Okay.|DINBOSS-1800 Kate is issued a dress]]
[[How old is he?|DINBOSS-1600 How old is he?]]
[[What does he want to meet me for?|DINBOSS-1700 What is the purpose of the meeting?]]
[[What kind of girls does he like?|DINBOSS-1750 Who should I be?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"How old is he?"
She laughs. "He handsome older man," she says. "Don' worry."
[[Okay.|DINBOSS-1800 Kate is issued a dress]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Why does he want to meet me?"
"You new girl," she shrugs. "He like to meet all employee. Don' worry."
[[Okay.|DINBOSS-1800 Kate is issued a dress]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"What kind of girls does he like?"
<span class="greenHighlighter">Miss Lu ''loved'' that.</span>
She looks at you curiously for a second. //TK get advice from lulu//
[[Okay.|DINBOSS-1800 Kate is issued a dress]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug.
"Mr Kriangsak say you borrow dress from club," she says, pointing to the couch. A few flimsy looking dresses are draped over the back. "Choo' one."
//[[Check out the dresses.|DINBOSS-1900 Check out the dresses]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are three dresses; one short, two long. They're of the sort you've seen the <div class="tooltip">bargirls<span class="tooltiptext">prostitutes</span></div> wearing all night: tight, revealing, gossamer thin.
They're thin and stretchy, so any of them should fit – albeit in an especially clingy and unforgiving way.
//[[Choose the long red dress.|DINBOSS-2000 Kate chooses a dress]]
[[Choose the long hot pink dress.|DINBOSS-2000 Kate chooses a dress]]
[[Choose the short black dress.|DINBOSS-2000 Kate chooses a dress]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sort through them, and settle on //[TK description of the selected dress]//.
"Okay," says Lu. "Go get change, go home. I give you call in few day about nex shift."
//[[Get changed, go home.|DINBOSS-2100 Title card]]//
<</page>><<silently>>
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>
<<wear-bra-nudeStrapless>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-whiteRibbedButtonUpCroppedTShirt>>
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $kate.isUsingHerStripperName to false>>
<</silently>>\
<<page>>\
//[[A LITTLE LATER...|DINBOSS-2200 Patpong after closing]]//
<</page>><<silently>>
<<set $header.line1 to "''PATPONG''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/patpongPackingUp.jpg" 90 1000 540 0>>\
//[TK A light sweater would be cool in this scene]//
It's about 2.30 <small>A.M.,</small> but the night air still feels warm and balmy after hours in the chilled air of the club.
A group of about thirty men are busily packing down the night market. Most of the bars are closed, now, but a few stores are still open.
A street food stall nearby is doing a roaring trade, selling katsu curries to hungry <div class="tooltip">bargirls<span class="tooltiptext">prostitutes</span></div> coming off their shifts.
[[Get a katsu curry.|DINBOSS-2300 Katsu curry]]
[[Get a toastie from 7/11.|DINBOSS-2400 Toastie]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/chickenKatsu.jpg" 120 1000 560 0>>\
<div class="tooltip">60 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$1.80<<elseif $kate.agency == "mi6">>£1.20<<elseif $kate.agency == "asis">>$2.40<<elseif $kate.agency == "csis">>$2.40<<elseif $kate.agency == "nzsis">>$2.40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> gets you a carton stuffed with fried chicken in spicy katsu sauce, a mound of sticky rice topped with a runny fried egg, and a gyoza dumpling that's crunchy on the outside and juicy in the middle.
It's //so good.// You wolf it down right there in the street, watching the men pack down the market.
//[[Go back to the hostel.|DINBOSS-2500 Title card]]//
<</page>><<silently>>
<<set $header.line1 to "''7/11''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/cheeseToastie.jpg" 120 1000 560 0>>\
You grab a toastie from the 7/11 across the street. The lady toasts it for you in the shop and, just like last time, every bite is crunchy, golden, comforting and delicious.
Why don't they sell these everywhere? They're cheap and they're amazing.
//[[Go back to the hostel.|DINBOSS-2410 Hostel]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//[TK Kate goes back to the hostel.
Back there: all quiet (it's 2AM!). She can't sleep; her ears are ringing, and she's buzzing from all the socialisation.
She has work to do anyway. Kate drafts and submits a preliminary intel report on her first night.
When she finally slips into bed...it's 3.30AM and she's //ridiculously// horny. Kate picks something that happened tonight to fantasise about: e.g. giving a lapdance to that first chubby Thai guy, doing a girl/girl show with Roxy, selling her knickers to the Chinese playboy, getting passed around the VIP room by Tid's friends, all the guys who groped her, giving head in the DJ booth, etc.
Jilling off scene, then sleep.
Probably some kind of morning after regret/emotion/guilt...tempered by checking in with Ian, and getting absolutely glowing feedback. (Kate left all the groping out of her report, of course.) The Task Force is super impressed with her; she's in place and already picking up intel. AMAZING work...wait for them to contact you, they obviously like you, don't do anything to upset what you're doing...
[[Days pass...|DINBOSS-2500 Title card]]
]
<</page>><<silently>>
<<set $avatar.clothing.delete("teenRom/50_katesBedsheets")>>
<<set $avatar.clothing.delete("/makeup/bodyGlitter/05_bodyGlitter1-" + $kate.braSize)>>
<<set $avatar.clothing.delete("/makeup/bodyGlitter/05_bodyGlitter1-rear")>>
<<emote-calm>>
<<avatar-stripNaked>>
<<remove-makeup-manicure>>
<<remove-makeup-pedicure>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-shorts-blackHikerShortsWithBrownBelt>>
<<wear-top-darkGreyTankTop>>
<<wear-hosiery-blackTrainerSocks>>
<<wear-shoes-blackAndWhiteConverseLowTops>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<page>>\
''//A FEW DAYS LATER...//''
Days pass. Aware that you might be under surveillance, you try to live like the broke backpacker you're posing as, avoiding attractions and nights out that'd cost money.
Later in the week, though, your Israeli hostel buddies Shira and Danny ask you to come along to a spot that shouldn't be expensive. After all, officially [[it's closed down|DINBOSS-2600 Title card]]...
<</page>><<silently>>
<<set $header.line1 to "''SATHORN NEIGHBOURHOOD''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="DINBOSS-2700 Sathorn base">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/sathornTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You suspect they mostly invited you along to take photos for their Instagram. But Vish and Jaya tag along, too, so you feel less like a third wheel. //Fifth wheel, maybe.//
The "ghost tower" was meant to become an iconic addition to Bangkok's skyline. But construction was abandoned during the 1997 Asian Financial Crisis. Locals are convinced [[it's haunted|DINBOSS-2800 Creepy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
When you get close to the skeletal grey tower, empty and desolate, you can understand why. Reportedly built on a burial ground, it rises forebodingly just off the Chao Phraya river. Every day it casts a looming shadow over an ancient Buddhist temple below.
<<image "/locationPhotos/thailand/sathorn/sathornFromGround.jpg" 0 1000 628 0>>\
"Creepy," Jaya sums it up. Her thick Indian accent makes the word sound melodic.
"C'mon," says Danny, "let's [[find a way in|DINBOSS-2900 No entry]]."
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
The site is protected by a tall, climbproof metal fence. You walk all around it; some panels are dented and damaged, but there aren't any gaps.
<<image "/locationPhotos/thailand/sathorn/sathornPerimeterFence.jpg" 300 1000 715 0>>\
The security guard Danny summons by pounding on a gate can't speak English,<<if $kate.ethnicity == "French Canadian">> French ,<</if>> Hindi or Hebrew. Nor - remarkably – is he interested in the <div class="tooltip">600 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$18<<elseif $kate.agency == "mi6">>£12<<elseif $kate.agency == "asis">>$24<<elseif $kate.agency == "csis">>$24<<elseif $kate.agency == "nzsis">>$24<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> bribe that Danny and Vish scrape together.
That's especially galling considering the shit you had to do for ฿600 last week, but it's the situation.
"That's it, then," sighs Shira when the gate clangs shut.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Mild (2).
<<link "Roll 2 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 2>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 2. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="greyedOut">//[Perception check passed]//</span> [[Maybe not...|DINBOSS-3000 Maybe not]]<br/>
[[Let's take a walk, we'll find something cool.|DINBOSS-7000 A short walk]]
<<else>>
<span class="greyedOut">//[Perception check passed]// Maybe not...</span> <br/>
[[Let's take a walk, we'll find something cool.|DINBOSS-7000 A short walk]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe not..."
Everybody follows your gaze. Four stories up is a walkway connecting the ghost tower to the building across the street: a decrepit <<if $kate.agency == "cia" or $kate.agency == "csis">>parking lot<<else>>car park<</if>>, with no perimeter fence.
<span class="greenHighlighter">Everybody ''liked'' that.</span>
<<image "/locationPhotos/thailand/sathorn/sathornSkybridge.jpg" 100 1000 666 0>>\
"//Has// to be sealed off," murmurs Vish.
Danny shrugs. "[[Let's find out|DINBOSS-3100 Parking lot]]."
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $header.line1 to "''DERELICT PARKING LOT''",
$header.line2 to "SATHORN / MAY 2018">>
<<else>>
<<set $header.line1 to "''DERELICT CAR PARK''",
$header.line2 to "SATHORN / MAY 2018">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You make your way into the dark and grungy <<if $kate.agency == "cia" or $kate.agency == "csis">>parking lot<<else>>car park<</if>> to investigate. "This is like Scooby Doo," whispers Jaya.
//Scooby Doo with homeless junkies, maybe.// Needles and dirty mattresses scattered around tell you that this place [[isn't totally deserted|DINBOSS-3110 Cat dungeon]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One level up, you spot one of the lowly addicts who live here - a skinny, dirty, dark-skinned asian man, asleep or unconscious on a filthy mattress.
Cages stacked around him are clowdered with cats. They have food and a water, like they're pets – does he //collect// them?
<<image "/locationPhotos/thailand/sathorn/catJail.jpg" 0 1000 667 0>>\
They don't seem distressed, and he doesn't stir. So you creep past his drug addled cat jail, and keep [[going up|DINBOSS-3200 Blocked]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Four staircases up, you reach the walkway. Vish was right; it's sealed shut with a heavy metal plate.
<<image "/locationPhotos/thailand/sathorn/blockedWalkway.jpg" 100 1000 666 0>>\
"Damn," says Danny, looking around. "Let's go up one and take a look."
"We're //not// going over the roof," objects Shira.
"Let's just [[take a look|DINBOSS-3300 Inspection from above]]," he insists.
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
One level up: well, there //is// a way you could climb out on top of the walkway. But Danny whistles when he sees it. "It's...pretty high," he admits.
<<image "/locationPhotos/thailand/sathorn/sathornWalkwayCrossing.jpg" 180 1000 666 0>>\
That's an understatement. You'd have to climb out onto the rickety old metal walkway roof; cross above the street <<if $kate.agency == "mi6">>160 feet<<else>>50 metres<</if>> below; then scale round the metal lattice welded into place on the other side. It's been put there exactly to deter people like you.
"No fucking way," Shira says flatly when she sees it. Jaya and Vish echo her sentiment. Danny's wavering in the face of all this good advice.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Daring check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Daring check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="greyedOut">//[Daring check passed]//</span> [[We can make it.|DINBOSS-3400 Let's do this]] <br />
[[Too dangerous.|DINBOSS-3310 Too dangerous]]
<<else>>
<span class="greyedOut">//[Daring check failed]// We can make it.</span> <br />
[[Too dangerous.|DINBOSS-3310 Too dangerous]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This is the kind of thing that video game characters do without thinking. But in real life, climbing out over a five-storey drop is actually a seriously daunting proposition.
You look down at the concrete below and shake your head. "It's too dangerous," you say. Outvoted four to one, Danny quickly gives up on his crazy idea.
[[Let's take a walk, we'll find something cool.|DINBOSS-7000 A short walk]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"We can make it," you pronounce.
"You think?" Danny looks out again, recalculating the risk. You can almost see the wheels turning in his head.
Then he turns to you and nods, a plucky grin forming on his face.
<span class="greenHighlighter">Danny ''liked'' that.</span> <span class="redHighlighter">Shira ''disliked'' that.</span>
"It's too dangerous," protests Shira.
"You'll have to do it //twice,"// points out Vish. "When you come back, you'll have to do it backwards in reverse."
"Danny, no," [[squeaks Jaya|DINBOSS-3500 Danny no]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Neither of you are listening, too swept up in a sudden mutual rush of adrenaline and instinctive camaraderie. "I'll go first," he tells you, climbing out over the side.
Jaya sucks in her breath in a frightened gasp. Shira whips out her <<if $kate.agency == "cia" or $kate.agency == "csis">>cellphone<<else>>phone<</if>> and starts filming. "[[Careful, Danny|DINBOSS-3600 Danny crosses]]," urges Vish.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It feels like your heart's in your mouth as you watch him cross slowly over the metal roof, <<if $kate.agency == "mi6">>160 feet<<else>>50 metres<</if>> above the ground.
On the other side, he sidesteps carefully along the metal lattice, edging out on a narrow concrete ledge, balancing with his fingertips in the mesh.
At the end he pauses briefly...then swings his body out over the street and around the lattice. It's an [[act of heart-pounding daring|DINBOSS-3700 Danny made it]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A moment's flirtation with sudden death...then he's safely around, standing inside the Sathorn Ghost Tower.
He lets out a whoop of joy, and so does Shira – who wasn't filming a snuff movie, after all.
Jaya and Vish shout encouragement, but Danny's only focused on you. "$kate.cover.firstName, it's not too bad," he shouts back. "You can do it."
//[[Climb out onto the roof.|DINBOSS-3800 Kate climbs out]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Following Danny's lead, you climb out over the side of the <<if $kate.agency == "cia" or $kate.agency == "csis">>parking lot<<else>>car park<</if>>. Fear rushes up inside you as you balance on the precipice, just a rusty old roof between you and the dizzying fatal drop beneath.
"You two are crazy," Jaya says behind you. Her voice sounds further away than she is, muffled by the blood rushing in your ears.
One last glance back, at two very worried Indian faces. Shira's face is hidden behind her camera phone. Maybe she //is// filming a snuff movie.
"You can do it, $kate.cover.firstName," Danny calls from the other side. His voice is low and strong and encouraging.
//[[Step out onto the walkway.|DINBOSS-3900 Kate stands]]//
<</page>><<silently>>
<<if $kate.agency == "mi6">>
<<set $header.line1 to "''WALKWAY ROOF''",
$header.line2 to "160FT ABOVE SATHORNSATHORN / MAY 2018">>
<<else>>
<<set $header.line1 to "''WALKWAY ROOF''",
$header.line2 to "50M ABOVE SATHORNSATHORN / MAY 2018">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("DINBOSS-4400 Game over")>>\
//An eerie feeling washes over you, like someone just walked over your grave.//
<</if>>\
The rusty, sun-baked metal creaks as you ease your weight down onto it. It's so hot you can feel it through the soles of your <<trainer>>s.
It's the roof of a walkway, so it's not like walking a tightrope. Logically, you should be able to just <span class="imageLink"><<link "stroll casually across it">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sathorn/longWayDown.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
But logic's a quiet voice in your head when your body senses that death is just a fall away.
//[[Cross carefully.|DINBOSS-4000 Kate crosses]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tread gingerly along the creaking, decrepit metal roof, step by step crossing the street far below.
Relief wells up inside you when you reach the other side, and can step up onto concrete again.
But now something [[even more dangerous|DINBOSS-4100 Lattice climb]] is ahead: you need to shuffle out sideways along the ledge, past the massive metal lattice in your way.
<</page>><<silently>>
<<if $kate.agency == "mi6">>
<<set $header.line1 to "''GHOST TOWER EXTERIOR''",
$header.line2 to "160FT ABOVE SATHORN / MAY 2018">>
<<else>>
<<set $header.line1 to "''GHOST TOWER EXTERIOR''",
$header.line2 to "50M ABOVE SATHORN / MAY 2018">>
<</if>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
The holes in the wire mesh are tiny – too small to get your fingers properly through.
Everything depends on keeping your balance along the tiny concrete ledge. If you stay upright, you'll make it. If you slip or lean back at any point, you'll fall to the street below.
"You got this," Danny says. He leans out around the far edge of the metal lattice, stretching out his hand for you to make it to.
It's only a <<if $kate.agency == "mi6">>few feet<<else>>a few metres<</if>> across. But it's a very long way down.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make an ''Agility check.'' Risk: Mild (2).
<<link "Roll 2 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 2>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Agility check.'' Target: 2. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
//Oh god.// The hairs on your arms and the nape of your neck all lift up at once as you [[inch out over the side...|DINBOSS-4700 Climbing like Lara Croft]]
<<else>>
//Oh god.// The hairs on your arms and the nape of your neck all lift up at once as you [[inch out over the side...|DINBOSS-4200 Slip!]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _npcD10 to random(2,11)>> /* npc rolls 1d10+1 */
<</silently>>\
<<header>>\
<<page>>\
Dangling precariously above the street far below, you inch out sideways across the metal lattice.
Tiny step follows tiny step. "Nearly there..." says Danny, his voice soft and reassuring. "Nearly th–"
Your right foot slips on the ledge and you lurch suddenly, //horrifyingly// off-balance.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>\
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''Reflexes check.'' Danny rolls <div class="tooltip">1D10+1<span class="tooltiptext">Average of Danny's Coordination & Strength (+1)</span></div> to catch you.
Target: 6. Result<<= either("...", "....", ".....", ".......", "........", ".........", "..........", "...........")>><<= _npcD10>>. \
<<if _npcD10 gte 6>>\
[[Success.|DINBOSS-4500 Gotcha!]]
<<else>>\
[[Failure.|DINBOSS-4300 Kate falls]]
<</if>>\
</div>\
</td>\
</tr>\
</table>\
</div>\
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-open>>
<<emote-brows-worried>>
<<if $kate.agency == "mi6">>
<<set $header.line1 to "''IN FREEFALL''",
$header.line2 to "128FT ABOVE SATHORN / MAY 2018">>
<<else>>
<<set $header.line1 to "''IN FREEFALL''",
$header.line2 to "40M ABOVE SATHORN / MAY 2018">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Your fingertips brush his – one last fleeting touch – then you plunge off the side of the building.
Your life doesn't flash before your eyes. All you feel in those final three seconds is a profound sense of denial, and regret.
A scream erupts from your lips; cut short by a horrifyingly loud //crack// that only your friends hear. There's a bright white flash //inside your head// as you [[slam into the concrete|DINBOSS-4400 Game over]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-mouth-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<if hasVisited("MALAY-89000 Max's balcony")>>
<<set _sexualPartners += 1>>
<</if>>
<</silently>>\
<<page>>\
<<image "/ui/gameOver.jpg" 0 1000 238 0>>\
Your ending: //''Cerpin Taxt.'' <<= $kate.agency.toUpperCase()>> officer $kate.firstName $kate.surname died from an accidental fall while serving in Bangkok. Her body was repatriated and buried in <<if $kate.agency == "cia">>Arlington National Cemetery<<elseif $kate.agency == "mi6">>Brookwood Cemetery<<elseif $kate.agency == "asis">>Woden Cemetery<<elseif $kate.agency == "csis">>Beechwood Cemetery<<elseif $kate.agency == "nzsis">>Addington Cemetery<<else>>ERROR IN KATE.AGENCY VAR<</if>>. She was $kate.age.//
//Body count 2018-2019: <<if hasVisited("MALAY-89000 Max's balcony")>>2 (Max, Connor)<<else>>1 (Connor)<</if>>//
<hr />
<<link "//Respawn on the walkway roof//" "DINBOSS-3900 Kate stands">><<emote-eyes-calm>><<wear-multicolouredMalaysianCrossBodyBag>><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A teetering moment of sheer terror, then Danny grabs your wrist and steadies you.
You regain your footing. //Oh fuck that was close.// "You okay?"
[[Yeah.|DINBOSS-4600 Recovery][$temp.playerDecision to "yeah"]]
[[Don't let go.|DINBOSS-4600 Recovery][$temp.playerDecision to "dontLetGo"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "yeah">>\
"Yeah," you squeak.
<<elseif $temp.playerDecision == "dontLetGo">>\
"Don't let go," you squeak.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"I've got you."
Steadied by his grip on your wrist, you resume your climb, inching out to the edge of the metal lattice. Danny helps pull you around it, and your feet //finally// touch down on [[solid concrete|DINBOSS-4800 Made it!]] again.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Dangling precariously above the street far below, you inch out sideways across the metal lattice.
Tiny step follows tiny step. "Nearly there..." says Danny, his voice soft and reassuring. "Nearly there..."
Your hand brushes past his, then you're holding onto each other's wrists. "Got you," he says, and all of a sudden you know you're going to make it.
You inch out to the edge of the metal lattice. Danny helps pull you round, and your feet //finally// touch down on [[solid concrete|DINBOSS-4800 Made it!]] again.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<<set $header.line1 to "''GHOST TOWER''",
$header.line2 to "SATHORN / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Fuck." You grin wildly up at Danny as you find your footing. //What a rush.// You're not looking forward to climbing back out there...but that's a problem for later. You made it!
"Danny!" Vish calls from across the street. "You go ahead, I can't leave the girls."
Danny scoffs at that. "<div class="tooltip">Beseder, Vish<span class="tooltiptext">Sure, Vish</span></div>," he mutters skeptically, then raises his voice to shout back. "Yeah, man! Look after them!"
"Good luck," cries Jaya.
"<div class="tooltip">Tahene<span class="tooltiptext">Have fun</span></div>," Shira calls, a slight edge in her tone.
[[We'll call you when we get back!|DINBOSS-4900 Farewell]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"We'll call you when we get back!" you shout.
Farewells are waved across the street, then it's time for you and Danny to [[explore the old building|DINBOSS-5000 Horror flick]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/spookyCorridors.jpg" 50 1000 700 0>>\
The pair of you venture deeper into the shadowy, murky corridors. It feels like stepping into a horror flick.
Frames without doors; rubble strewn everywhere; malevolent warnings spray-painted onto the walls. This is an [[eerie, desolate place|DINBOSS-5100 Desolate place]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're instinctively quiet, speaking only in murmurs, trying not to attract attention in this...urban crypt.
Sometimes a twist or a turn leads you into menacing darkness. Sometimes to a stunning graffiti piece. It's like a haunted art gallery.
<<image "/locationPhotos/thailand/sathorn/witchyGraffiti.jpg" 30 1000 450 0>>\
"Over there," Danny whispers. "Stairs."
The cryptlike silence is pierced by your <<if $kate.agency == "cia" or $kate.agency == "csis">>cellphone<<else>>phone<</if>>. It pings inside your <<handbag>>, announcing the arrival of a text message.
<span class="greyedOut">//[Whisper]//</span> [[Sorry!|DINBOSS-5200 Sorry]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry," you hiss, fishing inside your <<handbag>>.
Danny grins. "Why are we whispering?" he whispers.
"I don't know," you whisper back.
//[[Check your messages.|DINBOSS-5300 Check your messages]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderIOS"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">11:34</div><div class="h2"><b>+66898479072</b></div></div>
<div class="date">\
Text message
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
$kate.stripperName I will pick you up from your hostel be ready at 7
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
That must be your new boss, Mr Kriangsak...he wants to meet you tonight. //Shit.//
"Everything okay?" whispers Danny.
[[Yeah. Just a sec.|DINBOSS-5400 Reporting in]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you murmur distractedly. "Just a sec."
You open Signal, tap out a quick report to Ian, then send it and tuck your <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>phone<</if>> away. 7 <small>P.M.</small> tonight still leaves you plenty of time.
"You look super serious now," Danny whispers.
<span class="greyedOut">//[Smile]//</span> [[I'm fine, let's go.|DINBOSS-5500 I'm fine]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine," you insist, forcing a smile so you look less super serious. "Let's go."
<<image "/locationPhotos/thailand/sathorn/stairwell.jpg" 100 1000 667 0>>\
You follow Danny over to the stairwell he saw, and begin your [[long ascent of the Ghost Tower|DINBOSS-5600 The long climb]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
The narrow stairwell is dark and scary and dangerous. With no railings, and decades of <<if $kate.agency == "cia" or $kate.agency == "csis">>trash<<else>>rubbish<</if>> underfoot, you really need to watch your step.
You go up carefully, lighting the way with your phone flashlights, communicating in whispers and touches as you guide one another past exposed cables, downed construction tools, boards bristling with rusted nails, and dozens more things to [[hurt or kill yourselves|DINBOSS-5700 Hot climb]] on.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The shady gloom isn't much respite from the thick humidity. By the time you've gone up ten floors, you're pouring with sweat.
It's like [[climbing an indoor mountain|DINBOSS-5800 The higher you go]]. You stop periodically to rest and explore.
The abandoned, windowless luxury apartments are decorated with graffiti and uninstalled furnishings and million-dollar views of the city all around.
<<image "/locationPhotos/thailand/sathorn/throneRoom.jpg" 100 1000 500 0>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The [[higher you get|DINBOSS-5900 Spectacular views]], the more dangerous and skeletal the Ghost Tower becomes.
<<image "/locationPhotos/thailand/sathorn/elevatorShaft.jpg" 150 1000 500 0>>\
Above the 30th floor you start finding dark random holes in the floor, and totally open elevator shafts offering a quick trip to the <<if $kate.agency == "cia" or $kate.agency == "csis">>first<<else>>ground<</if>> floor.
By unspoken consent, it seems safest just to hold hands when you're near the edge of a drop like that.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The views get [[more and more spectacular|DINBOSS-6000 Rooftop]], too. You make sure you get plenty of flattering shots for Danny to use on his Instagram.
<<image "/locationPhotos/thailand/sathorn/danny.jpg" 150 1000 650 0>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
By the time you get all the way to the 49th floor, you're both drenched in sweat and breathing hard. You drank the last of the water ten floors ago, and your thigh and butt muscles are burning.
<<image "/locationPhotos/thailand/sathorn/stairsToRoof.jpg" 150 1000 650 0>>\
Sunlight streaming in through the stairwell roof keeps you pushing together up the last few steps. You let out a satisfied little sigh of relief as you [[step out onto the rooftop|DINBOSS-6100 Rooftop view]] at last. Danny comes out behind you just a few seconds later.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Up on the roof it's a mess, with steel rebar and broken concrete all over the place.
But the view is //spectacular.//
<<image "/locationPhotos/thailand/sathorn/rooftopView.jpg" 150 1000 650 0>>\
A sweeping panorama of the city stretches out before your eyes. Skyscrapers of all shapes and sizes; the BTS skytrain system; narrow city streets congested with traffic; barges and river taxis gliding along the mighty Chao Phraya river.
Looking out over it all makes you feel like you [[conquered a mountain|DINBOSS-6200 Hungry]]. Queen of the city. Goddess of the sky.
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
"Shoulda brought some //food,"// Danny says ruefully. He's right. You're starving, and thirsty. But the view and the cool wind are too special to just rush away from.
<<image "/locationPhotos/thailand/sathorn/rooftopView2.jpg" 150 1000 650 0>>\
You sit and gaze out over the skyline together, enjoying what could be the quietest, most peaceful spot in all Bangkok. Just the two of you, [[alone together|DINBOSS-6300 Title card]] surrounded by ten million people...
<</page>><<silently>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<page>>\
//[[AN HOUR LATER...|DINBOSS-6400 Did they didn't they]]//
<</page>><<silently>>
<<set $header.line1 to "''BACK ON THE GROUND''",
$header.line2 to "SATHORN / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Well you two took your time," Shira says testily.
"Yeah, yeah, we're //starving,"// Danny replies. "Let's [[get food|DINBOSS-6500 Doodle bar]], and we'll show you the photos. It's //incredible// up there..."
<span class="redHighlighter">Shira ''disliked'' that.</span>
Danny doesn't notice, but Shira fixes you with a stern, possessive glare as soon as he turns away. Even though all you did up there was hold hands...you find yourself hoping that Danny's wise enough to not reveal that.
<</page>><<silently>>
<<set $header.line1 to "''ALL YOU CAN EAT NOODLE''",
$header.line2 to "SATHORN / MAY 2018">>
<<remove-bigBlackSunglasses>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
There's a street noodle bar nearby. You and Danny wolf down heaps of cheap, greasy noodles, washed down with big glasses of <span class="imageLink"><<link "Thai Coke">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sathorn/thaiCoke.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and then you feel human enough to swipe through the photos of your adventure in the Ghost Tower.
"We're thinking maybe Khao San tonight," Jaya tells you. "Want to come?"
[[Can't tonight, sorry...|DINBOSS-6600 Can't tonight]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Can't tonight," you shake your head. "Sorry."
<span class="greenHighlighter">Shira ''liked'' that.</span>
"Too bad. Well, Vish and I are leaving soon," Jaya says. "We have to go out as a group before then. And I meant what I said about [[visiting us in India|DINBOSS-10000 Title card]]..."
<</page>><<silently>>
<<set $header.line1 to "''WAT YANNAWA''",
$header.line2 to "SATHORN / MAY 2018">>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
A short walk takes you to Wat Yannawa, the boat temple. King Rama III commissioned it to remind future generations about the important role that Chinese-style junk boats played in the development of Bangkok.
<<image "/locationPhotos/thailand/sathorn/watYannawa.jpg" 40 1000 560 0>>\
It looks cool but, in shorts and t-shirts, you and the girls are showing too much skin to be allowed in a temple. After taking some photos of the outside, you [[keep walking|DINBOSS-7100 A real boat]].
<</page>><<silently>>
<<set $header.line1 to "''EAST BANK''",
$header.line2 to "CHAO PHRAYA RIVER / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Walking down to the riverside, you come across a real boat – a beautiful wooden long tail boat, painted in cheery rainbow colours, moored and idle.
After a short haggling session, the five of you are clambering aboard for an impromptu [[canal tour|DINBOSS-7200 River crossing]]!
<<image "/locationPhotos/thailand/sathorn/longtailBoat.jpg" 0 1000 634 0>>\
<</page>><<silently>>
<<set $header.line1 to "''CHAO PHRAYA RIVER''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
The old truck engine on the back splutters into life, and the wooden boat roars out into the mighty Chao Phraya river at a surprisingly high speed.
Other long-tails are criss-crossing the river all around. Surging and splashing out across the choppy waves, cool wind in your hair...riding in one of these tuk-tuks of the waves is just great fun.
Shira and the guys are loving it, too, but poor Jaya looks [[a little green|DINBOSS-7400 Lock entrance]].
<<image "/locationPhotos/thailand/sathorn/riverCrossing.jpg" 0 1000 510 0>>\
<</page>><<silently>>
<<set $header.line1 to "''WEST BANK''",
$header.line2 to "CHAO PHRAYA RIVER / MAY 2018">>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Mercifully for her, the crossing's over quickly. Your boatman joins a group of other long-tails manoeuvring into a lock on the other side of the river.
<<image "/locationPhotos/thailand/sathorn/lockGate.jpg" 200 1000 600 0>>\
The boats jostle into position like racecars lining up on a starting grid, a roaring noisy event.
Then...sudden tranquility, as the long-tails cut their engines and wait, bobbing gently, crammed gunwale to gunwale in the lock.
The peace is disturbed by your <<if $kate.agency == "cia" or $kate.agency == "csis">>cell phone<<else>>phone<</if>>, pinging in your <<handbag>>.
//[[Check it.|DINBOSS-7500 Check your messages]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderIOS"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">11:34</div><div class="h2"><b>+66898479072</b></div></div>
<div class="date">\
Text message
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
$kate.stripperName I will pick you up from your hostel be ready at 7
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
That must be your new boss, Mr Kriangsak...he wants to meet you tonight. //Shit.//
"Everything okay?" asks Jaya.
[[Yeah. Just a sec.|DINBOSS-7600 Reporting in]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you murmur distractedly. "Just a sec."
You open Signal, tap out a quick report to Ian, then send it and tuck your <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>phone<</if>> away. 7 <small>P.M.</small> tonight still leaves you plenty of time.
"You look serious," Jaya insists.
<span class="greyedOut">//[Smile]//</span> [[I'm fine.|DINBOSS-7700 I'm fine]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine," you assure her, forcing a carefree smile onto your face.
You put the meeting tonight out of your mind as – having descended gently to canal level – the lock opens, and the long-tails [[roar back into life|DINBOSS-7800 Khlong tour]]...
<</page>><<silently>>
<<set $header.line1 to "''THONBURI KHLONGS''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khlongs/khlongView.jpg" 200 1000 700 0>>\
More than a thousand hidden <div class="tooltip">khlongs<span class="tooltiptext">canals</span></div> snake through Bangkok, inspiring one of the city's nicknames, "Venice of the East".
After the heat and throngs of the city streets, a journey through the khlongs feels like visiting [[another world|DINBOSS-7810 Khlong tour 2]]. It's beautiful, green and tranquil, a glimpse of a lifestyle physically close to the city, but so far away in time.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The canopy on the boat keeps you shaded, and the movement creates a cool breeze. You cruise behind wooden houses on stilts, and see monitor lizards as big as alligators basking along the shores.
<<image "/locationPhotos/thailand/khlongs/woodenHouse.jpg" 200 1000 700 0>>\
It's fascinating; you chug past fishermen, women in canoes with market goods, and wading egrets. At one point a floating vendor draws alongside – like a pirate – and sells you [[fish soup and beer|DINBOSS-7820 Khlong tour 3]] for lunch.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the end, you spend a couple hours cruising the <div class="tooltip">khlongs<span class="tooltiptext">canals</span></div>. It's nowhere near enough; you could explore them for days.
<<image "/locationPhotos/thailand/khlongs/khlongs3.jpg" 50 1000 650 0>>\
But that'll have to wait. For a little extra cash, the longtail boatman takes you back across the mighty Chao Phraya, and drops you upriver near [[the hostel|DINBOSS-10000 Title card]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-bathRobe-whiteBathRobe>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="DINBOSS-10100 Getting ready">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Back at the hostel, you shower off all the dust and sweat and grime, then go to your room to get ready for your meeting with Mr Kriangsak.
It's a big deal: getting the owner on-side could change the mission. If Kriangsak could be recruited as an agent, the Task Force's job would get a lot easier.
That's a move that'll be decided above your pay grade. Your job is to get to know him tonight, looking for quirks or weaknesses that fit the <div class="tooltip">MICE<span class="tooltiptext">Money, Ideology, Coercion, Ego</span></div> or <div class="tooltip">RASCLS<span class="tooltiptext">Reciprocation, Authority, Scarcity, Commitment, Liking, Social proof</span></div> [[agent recruiting frameworks|DINBOSS-10300 But do I have to fuck him?]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The problem is...is Kriangsak expecting sex with you, even though you're not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>?
Connor did. And everybody in the club assumed it was okay to grope you.
The dress you've been told to wear probably isn't a good sign. You couldn't believe how trashy it looked when you tried it on. It's been hanging up in your little closet for the past few days, a little daily reminder of your upcoming date with the boss.
//[[I'll try to get away with just flirting.|DINBOSS-10500 Denial isn't just a river]]
[[I'll do it, it's just not going in my report.|DINBOSS-10600 Mata Whorey]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
On the other hand: he knows you're not a prostitute, right? Maybe he's more professional than Connor. Maybe he's old, and he just likes to flirt? Maybe he has a wife or girlfriend he's crazy about, and this really is just a work meeting.
Although...the dress you've been told to wear probably isn't a good sign. You couldn't believe how slutty it looked when you tried it on. It's been hanging up in your little closet for the past few days, a little daily reminder of your upcoming date with the boss.
Now that you have to put it on and go out in it...it's hard to imagine that Kriangsak //won't// want sex.
//[[I'll try to get away with just flirting.|DINBOSS-10500 Denial isn't just a river]]
[[I'll do it, it's just not going in my report.|DINBOSS-10600 Mata Whorey]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. You're thinking yourself into knots. For all you know, he could be gay.
Best to play it by ear. You'll try to get away with just flirting if you can. For now, it's time to [[get ready|DINBOSS-10700 Makeup]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Well...//fine,// you finally decide. You already had sex with a manager, why not the owner? And if the Task Force has a problem with it, they need to get real. As if you could have gotten this far just by batting your eyelashes.
//It's just not going in my report.// Like the interview with Connor. Like all the groping on your first shift. The important thing is the results you're getting, not exactly how you're doing it.
For now, it's time to [[get ready|DINBOSS-10700 Makeup]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You grab your makeup kit.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "DINBOSS-10710 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "DINBOSS-10720 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "DINBOSS-10740 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "DINBOSS-10730 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "DINBOSS-10750 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "DINBOSS-10790 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "DINBOSS-10730 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "DINBOSS-10720 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "DINBOSS-10710 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "DINBOSS-10740 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "DINBOSS-10750 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-10790 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeshadow", "eyeliner", "lipstick")>>\
If you're happy with your look, you can [[get dressed for the date|DINBOSS-11000 Dinboss dressup]].
<</if>>\<<silently>>
<<remove-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
You slip off your robe.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Underwear</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "DINBOSS-11010 Underwear">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Dresses</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="dress-container">\
<<include "DINBOSS-11020 Dresses">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "DINBOSS-11030 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "DINBOSS-11090 Exit navigation">>
</span>\
<</page>><<if $purchasedHeels == "blackElegantPumps">>\
<<if !$avatar.clothing.includes("clothing/shoes/blackElegantPumps/15_shoes-blackElegantPumps")>>\
<<link "Elegant black pumps">>\
<<wear-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elegant black pumps">>\
<<remove-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $purchasedHeels == "leopardStrappyHighHeelSandals">>\
<<if !$avatar.clothing.includes("clothing/shoes/leopardStrappyHighHeelSandals/15_shoes-blackElegantPumps")>>\
<<link "Leopard strappy high heel sandals">>\
<<wear-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard strappy high heel sandals">>\
<<remove-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $purchasedHeels == "pinkStrappyStilettoHeelSandals">>\
<<if !$avatar.clothing.includes("clothing/shoes/pinkStrappyStilettoHeelSandals/15_shoes-pinkStrappyStilettoHeelSandals")>>\
<<link "Pink strappy stiletto heel sandals">>\
<<wear-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink strappy stiletto heel sandals">>\
<<remove-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $purchasedHeels == "nudePeepToeHeels">>\
<<if !$avatar.clothing.includes("clothing/shoes/nudePeepToeHeels/15_shoes-nudePeepToeHeels")>>\
<<link "Nude peeptoe heels">>\
<<wear-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude peeptoe heels">>\
<<remove-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $purchasedHeels == "redValentinoStilettos">>\
<<if !$avatar.clothing.includes("clothing/shoes/redValentinoStilettos/15_shoes-redValentinoStilettos")>>\
<<link "Red Valentino stilettos">>\
<<wear-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Valentino stilettos">>\
<<remove-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $purchasedHeels == "redVelvetCrissCrossStrappyStilettoHeelSandals">>\
<<if !$avatar.clothing.includes("clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals")>>\
<<link "Red velvet criss cross strappy stiletto heel sandals">>\
<<wear-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red velvet criss cross strappy stiletto heel sandals">>\
<<remove-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "DINBOSS-11030 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<else>>\
//[FATAL ERROR IN PURCHASEDHEELS VAR!]//
<</if>>\<<if !$avatar.underwear.includes("malaysia/30_pants-blackLaceStringWithBlackCentralBow")>>\
<<link "Black lacy thong">>\
<<wear-knickers-blackLaceStringWithBlackCentralBow>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black lacy thong">>\
<<remove-knickers-blackLaceStringWithBlackCentralBow>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackStringWithPinkPolkaDots/30_pants-blackWithPinkPolkaDotsString")>>\
<<link "Black thong with pink polka dots">>\
<<wear-knickers-blackWithPinkPolkaDotsString>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black thong with pink polka dots">>\
<<remove-knickers-blackWithPinkPolkaDotsString>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedMidiKnickers/30_pants-cherryRedMidiWithSplitSide")>>\
<<link "Cherry red midi <<knickers>>">>\
<<wear-knickers-cherryRedMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red midi <<knickers>>">>\
<<remove-knickers-cherryRedMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("malaysia/30_pants-nudeStringWithTwoBowsOnStraps")>>\
<<link "Nude thong">>\
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude thong">>\
<<remove-knickers-nudeStringWithTwoBowsOnStraps>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkSheerBikiniCutKnickers/30_pants-pinkSheerBikiniCutPantsWithCentralPinkBow")>>\
<<link "Pink sheer bikini cut <<knickers>>">>\
<<wear-knickers-pinkSheerBikiniCutKnickers>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink sheer bikini cut <<knickers>>">>\
<<remove-knickers-pinkSheerBikiniCutKnickers>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/whiteBrazilianCutPantiesWithLaceHem/30_pants-whiteBrazilianCutWithLaceHem")>>\
<<link "White lacy hem Brazilian <<knickers>>">>\
<<wear-knickers-whiteBrazilianCutWithLaceHem>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White lacy hem Brazilian <<knickers>>">>\
<<remove-knickers-whiteBrazilianCutWithLaceHem>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if $purchasedThong == "hotPinkCottonBoyshorts">>\
<<if !$avatar.underwear.includes("clothing/underwear/hotPinkCottonBoyshorts/30_knickers-hotPinkCottonBoyshorts")>>\
<<link "Hot pink cotton boyshorts">>\
<<wear-knickers-hotPinkCottonBoyshorts>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Hot pink cotton boyshorts">>\
<<remove-knickers-hotPinkCottonBoyshorts>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\
<<elseif $purchasedThong == "leopardPrintMidiWithSplitSide">>\
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\
<<elseif $purchasedThong == "oceanDotStringBikiniPanties">>\
<<if !$avatar.underwear.includes("clothing/underwear/oceanDotStringBikiniPanties/30_knickers-oceanDotStringBikiniPanties")>>\
<<link "Ocean dot string bikini cut <<knickers>>">>\
<<wear-knickers-oceanDotStringBikiniPanties>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ocean dot string bikini cut <<knickers>>">>\
<<remove-knickers-oceanDotStringBikiniPanties>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\
<<elseif $purchasedThong == "pinkThongWithCentralBow">>\
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\
<<elseif $purchasedThong == "redLowRiseThong">>\
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\
<<elseif $purchasedThong == "redWineThongWith2Bows">>\
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "DINBOSS-11010 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\
<<else>>\
<<set _thongDescription to "[ERROR IN THONGDESCRIPTION VAR]">>
<</if>>\<<if $borrowedDress == "kittenWetLookBlackCrissCrossDress">>\
<<if !$avatar.clothing.includes("clothing/dresses/kittenWetLookBlackCrissCrossDress/30_dress-kittenWetLookBlackCrissCrossDress-rear")>>\
<<link "Kitten black wetlook criss cross minidress">>\
<<wear-dress-kittenWetLookBlackCrissCrossDress>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Kitten black wetlook criss cross minidress">>\
<<remove-dress-kittenWetLookBlackCrissCrossDress>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $borrowedDress == "onePieceCowlNeckBurgundyMiniDress">>\
<<if !$avatar.clothing.includes("clothing/dresses/onePieceCowlNeckBurgundyMiniDress/30_dress-onePieceCowlNeckBurgundyMiniDress-rear")>>\
<<link "One piece cowl neck burgundy minidress">>\
<<wear-dress-onePieceCowlNeckBurgundyMiniDress>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// One piece cowl neck burgundy minidress">>\
<<remove-dress-onePieceCowlNeckBurgundyMiniDress>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $borrowedDress == "blackDeepVDualSlitJerseyMaxi">>\
<<if !$avatar.clothing.includes("clothing/dresses/blackDeepVDualSlitJerseyMaxi/30_dress-blackDeepVDualSlitJerseyMaxi-rear")>>\
<<link "Black Deep V dual slit jersey maxi dress">>\
<<wear-dress-blackDeepVDualSlitJerseyMaxi>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black Deep V dual slit jersey maxi dress">>\
<<remove-dress-blackDeepVDualSlitJerseyMaxi>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif $borrowedDress == "purpleOpaqueLongSleeveCutOutFront">>\
<<if !$avatar.clothing.includes("clothing/dresses/purpleOpaqueLongSleeveCutOutFront/30_dress-purpleOpaqueLongSleeveCutOutFront-rear")>>\
<<link "Purple Opaque longsleeve cutout front minidress">>\
<<wear-dress-purpleOpaqueLongSleeveCutOutFront>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Purple Opaque longsleeve cutout front minidress">>\
<<remove-dress-purpleOpaqueLongSleeveCutOutFront>>\
<<replace "#dress-container">>\
<<include "DINBOSS-11020 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "DINBOSS-11090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<else>>\
//[FATAL ERROR IN BORROWEDDRESS VAR!]//
<</if>>\<<if $kate.isWearing.includesAll("dress", "shoes")>>\
If you're happy with your look, you can [[wait to be picked up|DINBOSS-11100 Waiting around]].
<</if>>\<<silently>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
//I look like a stripper.// A drink would take the edge off your nerves. The sounds of talk and laughing and clinking glasses drift up from the hostel courtyard, but there's no way you're going down there dressed like this.
You sit around in your room and wait.
And wait. [[And wait|DINBOSS-11110 Hunger strikes]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
7 <small>P.M.</small> passes, then 7.30, then 7.45.
You keep checking your phone, but there's no message.
Hopefully he really is buying you dinner, because you're getting //hungry// - <<if hasVisited("DINBOSS-6500 Doodle bar")>>wolfing down noodles after your adventure with Danny in the Ghost Tower feels like a long time ago now.<<else>>the fish soup you ate in the boat feels like a long time ago now.<</if>>
//[[Wait.|DINBOSS-11200 Text message]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Just before eight, your phone pings. //Finally.//
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderIOS"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">19:53</div><div class="h2"><b>+66898479072</b></div></div>
<div class="date">\
Today 11:34
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
$kate.stripperName I will pick you up from your hostel be ready at 7
</div>\
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
ok see you tonight 🙂
</div>\
</div>\
<div class="date">\
Just now
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
I'm outside, come down
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
You tap out a quick reply, then [[head downstairs to meet him|DINBOSS-11300 Click click click]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Dressed like this feels like doing the walk of shame in reverse. You're hoping not to attract too much attention on the way out. But it's hard to stealthily cross creaky wooden floorboards in high heels.
You're clicking slowly and noisily down the main staircase, one hand on the railing to keep your balance, when your phone pings again.
//[[Check it.|DINBOSS-11400 Second message]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderIOS"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">19:56</div><div class="h2"><b>+66898479072</b></div></div>
<div class="date">\
Today 11:34
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
$kate.stripperName I will pick you up from your hostel be ready at 7
</div>\
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
Ok see you tonight 🙂
</div>\
</div>\
<div class="date">\
3 minutes ago
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
I'm outside, come down
</div>\
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
On my way
</div>\
</div>\
<div class="date">\
Just now
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
No underwear please
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
<<if hasVisited("DINBOSS-10500 Denial isn't just a river")>>\
You stare at the screen for second. //Ohhhh-kay. Might //not// be able to just flirt my way out of this. Fuck.//
<<elseif hasVisited("DINBOSS-10600 Mata Whorey")>>\
<<if $kate.isWearing.includes("knickers")>>\
You stare at the screen for a second. Okay, so you were expecting him to get you out of your <<knickers>> tonight...but not via text message. //Fuck.//
<<elseif hasVisited("DINBOSS-10500 Denial isn't just a river")>>\
You stare at the screen for a second. //Well...definitely not gay.//
<<else>>\
You stare at the screen for a second. You were expecting your new boss to try to seduce you, not instruct you via text to go commando. //Looks like #MeToo hasn't made it out to Thailand yet.//
<</if>>\
<<else>>\
//ERROR IN HASVISITED VAR//
<</if>>\
<<if $kate.isWearing.includes("knickers")>>\
//[[Take them off here.|DINBOSS-11500 Knickers off (stairs)]]
[[Go back to your room and take them off.|DINBOSS-11600 Knickers off (room)]]//
<<else>>\
You're not wearing any <<knickers>> anyway. But now he'll probably think you took them off because he texted you.
//[[Go down to the car.|DINBOSS-11800 Lobby]]//
<</if>>\
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
You're just above the lobby. You can hear Thai male voices down there – Wun Sen and his friend, maybe? But there's no one actually in sight.
//Fuck it.// Briskly and efficiently, you reach up under your dress, and peel down your <<knickers>>.
You step out of them - //click, click// go your heels on the wooden stairs – then straighten up, smooth your dress down, and tuck the little bundle of lycra into your <<handbag>>.
//Fuck.// This dress is so revealing. You're going to have to be walk downstairs very carefully.
//[[Go down to the car.|DINBOSS-11800 Lobby]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're just above the lobby. You can hear Thai male voices down there – Wun Sen and his friend, maybe?
You turn smartly and click-click-click back up to your room.
Not everyone staying here is a young, hip backpacker – as you're fumbling with your door key, a middle-aged couple come out from their room across the hall. They're <<if $kate.agency == "mi6">>fellow <</if>>Brits; you chatted yesterday with the husband, Pete, while you were down in the courtyard browsing the book exchange. He enthused about fantasy novels and seemed really sweet.
His eyes nearly pop out of his head when he sees you in the dress. //Stick around, Pete,// you think wryly as you vanish into your bedroom. //When I come back out I'll be wearing [[even less|DINBOSS-11700 Sanctuary]].//
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
Back in the privacy of your own room, you peel off your <<knickers>>, smooth down your dress, and check your reflection in the mirror.
This dress is so revealing. You're going to have to be very careful going downstairs, or getting out of a car, or just when you're sitting down.
//[[Go down to the car.|DINBOSS-11800 Lobby]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("DINBOSS-11500 Knickers off (stairs)")>>\
Now, improbably, wearing even //less,// you round the corner and head down into the lobby.
<<elseif hasVisited("DINBOSS-11600 Knickers off (room)")>>\
You head back down the stairs, click-click-clicking on the wood.
<<else>>\
With a sigh, you tuck your <<if $kate.agency == "cia" or $kate.agency == "csis">>cell <</if>>phone away, and head down the last flight of stairs. You can hear Thai male voices down in the lobby.
<</if>>\
<<if hasVisited("DINBOSS-11500 Knickers off (room)")>>Wun Sen and his friend are in the lobby<<elseif hasVisited("DINBOSS-11500 Knickers off (stairs)")>>Wun Sen and his friend are here<<else>>When you turn the corner you spot Wun Sen and his friend<</if>>, sitting side-by-side on a chintzy old couch. They're watching a video on Wun Sen's ancient model iPhone – but they both look up and stare at you coming down the staircase.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You try to make it down without flashing your pussy at the boys. You [[think|DINBOSS-11810 Graceful descent]] you pulled it off. <<if $kate.braSize != "small">>Maybe they were distracted by your braless, jiggling boobs.<</if>>
<<else>>
<<if $kate.lastWornDress == "blackDeepVDualSlitJerseyMaxi">>
<<set $avatar.clothing.pushUnique("clothing/dresses/blackDeepVDualSlitJerseyMaxi/30_dress-blackDeepVDualSlitJerseyMaxi-twatFlash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/blackDeepVDualSlitJerseyMaxi/30_dress-blackDeepVDualSlitJerseyMaxi-"+$kate.braSize)>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<</if>>
You try to make it down without [[flashing your pussy|DINBOSS-11820 Kate staircase flash (Wun Sen)]]. <<if $kate.lastWornDress == "blackDeepVDualSlitJerseyMaxi">>But it's seriously hard in this dress.<<else>>You're not confident that you succeeded.<</if>>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Here ey?<span class="tooltiptext">What the fuck?</span></div>" mutters the friend, eyes wide as you step off the staircase.
"<div class="tooltip">Hup park!<span class="tooltiptext">Shut up!</span></div>" Wun Sen hisses back. Their big dark eyes are locked on you as you move, drinking in every curve and inch of bare flesh on display.
"Hi $kate.cover.firstName," Wun Sen manages.
[[Hi Wun Sen.|DINBOSS-11900 Hi Noodle][$temp.playerDecision to "wunSen"]]
[[Hi Noodle.|DINBOSS-11900 Hi Noodle][$temp.playerDecision to "noodle"]]
<</page>><<silently>>
<<if $kate.lastWornDress == "blackDeepVDualSlitJerseyMaxi">>
<<set $avatar.clothing.pushUnique("clothing/dresses/blackDeepVDualSlitJerseyMaxi/30_dress-blackDeepVDualSlitJerseyMaxi-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/blackDeepVDualSlitJerseyMaxi/30_dress-blackDeepVDualSlitJerseyMaxi-twatFlash-"+$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Here ey?<span class="tooltiptext">What the fuck?</span></div>" mutters the friend, eyes wide as you step off the staircase.
"<div class="tooltip">Hup park!<span class="tooltiptext">Shut up!</span></div>" Wun Sen hisses back. Their big dark eyes are locked on you as you move, drinking in every curve and inch of bare flesh on display.
"Hi $kate.cover.firstName," Wun Sen manages.
[[Hi Wun Sen.|DINBOSS-11900 Hi Noodle][$temp.playerDecision to "wunSen"]]
[[Hi Noodle.|DINBOSS-11900 Hi Noodle][$temp.playerDecision to "noodle"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "wunSen">>\
"Hi Wun Sen," you say as you breeze on past.
<<elseif $temp.playerDecision == "noodle">>\
"Hi Noodle," you say as you breeze on past.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<if $kate.lastWornDress == "blackDeepVDualSlitJerseyMaxi">>\
You know they'll be [[staring at your ass|DINBOSS-12000 Walk to courtyard]] all the way out into the courtyard, but there's not much you can do about it.
<<else>>\
Instinctively, you tug your hemline down, knowing they're going to be [[staring at your ass|DINBOSS-12000 Walk to courtyard]] all the way out into the courtyard.
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You head out through the double doors, propped open to the hot night sky, and the conversation and laughter out in the courtyard.
It mingles with the muttered Thai behind you. "<div class="tooltip">Mung muer kee hen jim pa<span class="tooltiptext">Dude, did you <<if hasVisited("DINBOSS-11820 Kate staircase flash (Wun Sen)")>>see her pussy<<else>>see her nipples<</if>>...</span></div>"
"<div class="tooltip">Ku bork hai hup park!<span class="tooltiptext">I said shut up!</span></div>"
//[[Leave through the courtyard.|DINBOSS-12100 Courtyard catwalk]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/hostelCourtyardNight.jpg" 650 1000 1280 0>>\
You've lived here for a couple of weeks. You've never stopped conversation just by walking out into the courtyard. But that's what happens now.
To be fair, it's only seven or eight people, and the only faces you can put names to are Jaya and Vish. They were chatting when you stepped out, now they're just staring at you.
"Whoa. $kate.cover.firstName," Vish murmurs, drinking you in as you pass. Jaya whacks him on the arm.
<span class="greenHighlighter">Vish ''liked'' that.</span> <span class="redHighlighter">Jaya ''disliked'' that.</span>
[[Hey Vish.|DINBOSS-12200 The car][$temp.playerDecision to "heyVish"]]
[[Seeya, guys.|DINBOSS-12200 The car][$temp.playerDecision to "seeyaGuys"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "heyVish">>\
"Hey Vish," you say sweetly as you pass their table.
<<elseif $temp.playerDecision == "seeyaGuys">>\
"Seeya, guys," you say as you breeze on past.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
Through the front gate, you can see what must be your ride – a white vintage Rolls Royce, parked up across the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>.
<<image "/locationPhotos/thailand/hostel/whiteRollsRoyce.jpg" 270 1000 600 0>>\
As you approach, the driver's door opens, and out climbs...the [[biggest, most brutal looking Asian man|DINBOSS-12300 Bao]] you've ever seen: 280lbs of tattoo and muscle, improbably poured into a Brioni suit.
<</page>><<silently>>
<<set $header.line1 to "''TROK LAM PHU''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
A sickly spike of adrenaline runs through your gut. He'd be a big guy in a gym back home – here in Thailand, where men are shorter, he looks like The Hulk. He has a beard and a shaven head, and black tribal tattoos that peep out from the collar and cuffs of his pressed white shirt.
He's 'intimidating' in the same way Bill Gates is 'loaded'. This guy could squash you like a bug. You're not even sure it'd be safe to take him on with a handgun. //Maybe an airstrike.//
You keep walking. He [[holds open the back door of the Roller|DINBOSS-12400 I've seen you naked]] as you cross over the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Another man's waiting in the backseat – a man of more normal proportions. A Thai in his fifties or sixties, with dove grey temples and handsome, patrician features, he smirks devillishly as you appear in the doorway.
"Well," he says, his eyes roving down your body. "Nice dress."
[[Thanks.|DINBOSS-12500 Kate greets Kriangsak][$temp.playerDecision to "thanks"]]
[[I feel like a hooker.|DINBOSS-12500 Kate greets Kriangsak][$temp.playerDecision to "imNotAHooker"]]
[[Nice car.|DINBOSS-12500 Kate greets Kriangsak][$temp.playerDecision to "niceRide"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "thanks">>\
<<emote-mouth-smile>>\
"Thanks."
He pats the seat beside him. "[[Climb in|DINBOSS-12600 Hop in]]."
<<elseif $temp.playerDecision == "imNotAHooker">>\
<<emote-mouth-oh>>\
"I feel like a hooker," you complain.
He pats the seat beside him. "[[Hop in|DINBOSS-12600 Hop in]]."
<<elseif $temp.playerDecision == "niceRide">>\
<<emote-mouth-smile>>\
"Nice car."
He smiles and pats the seat beside him. "[[Hop in|DINBOSS-12600 Hop in]]."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You climb up on the footstep<<if $kate.agency == "mi6">> – like boarding a black cab, back in London –<<else>>,<</if>> and clamber into the backseat. It's made of cloth, not leather, and it feels like settling into a big old comfy couch.
Asian Hulk closes the heavy door behind you. Inside it's all polished walnut, studded with an unbelievable number of unmarked switches and little handles.
In the cold aircon, his cologne – spicy, pleasant – mingles with the gracefully ageing wood and polish of the Roller's interior.
Mr Kriangsak offers a handshake. "I'm Daeng," he says.
<<link "$kate.cover.firstName." "DINBOSS-12700 I'm Kate">><<set $temp.playerDecision to "kate">><</link>>
<<link "$kate.stripperName." "DINBOSS-12700 I'm Kate">><<set $temp.playerDecision to "river">><</link>>
[[Nice to meet you!|DINBOSS-12700 I'm Kate][$temp.playerDecision to "nice2MeetU"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "kate">>\
<<set $kate.isUsingHerStripperName to true>>\
<<emote-mouth-oh>>\
His handshake is firm and confident, like a senior officer. "$kate.cover.firstName," you tell him.
He shakes his head. "$kate.stripperName," he says firmly. "Always $kate.stripperName."
<<elseif $temp.playerDecision == "river">>\
<<set $kate.isUsingHerStripperName to true>>\
<<emote-mouth-oh>>\
His handshake is firm and confident, like a senior officer. "$kate.stripperName," you tell him.
"Delighted."
<<elseif $temp.playerDecision == "nice2MeetU">>\
<<emote-mouth-smile>>\
His handshake is firm and confident, like a senior officer. "Nice to meet you," you smile.
"My pleasure."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
Asian Hulk climbs into the driver's seat, and the big car gently pulls away.
You cast a last glance back into the hostel courtyard. Vish and Jaya are watching in fascination as you [[depart|DINBOSS-12800 Soi Sam Sen]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<set $header.line1 to "''THANON SAM SEN''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The big car turns right, pulling smoothly into light traffic on the big main road.
Familiar restaurants and storefronts roll by, lit up against the night. Asians and westerners mill along the <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalks<<else>>pavements<</if>>, mostly walking towards Khao San.
"So. <<if $temp.playerDecision == "kate">>//$kate.stripperName."//<<else>>$kate.stripperName."<</if>> Kriangsak pats your bare knee. "I hear good things from Tid and Lu. How long will you stay?"
[[Not sure. No plans to move on.|DINBOSS-12810 No plans]]
[[I wanna see Japan next. If I can save some money.|DINBOSS-12820 Kate wants to go to Japan]]
[[Why, am I going to get my passport back?|DINBOSS-12830 Where's my passport]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Not sure," you tell him. "No plans to move on yet."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Good, good," he nods, "I'm sure we can keep you on for a while. Just keep on impressing Tid and Lu."
<<include "DINBOSS-12900 Roller cruise">>
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I wanna see Japan next," you tell him. "If I can save some money."
"Hm," he muses. "I've got friends in Tokyo. Maybe we could find you a place to stay, once you've finished at the club."
[[Maybe.|DINBOSS-12825 Kriangsak decides to traffick Kate to the Yakuza][$kateSays to "maybe"]]
[[Great, thanks.|DINBOSS-12825 Kriangsak decides to traffick Kate to the Yakuza][$kateSays to "thanks"]]
[[No rush.|DINBOSS-12825 Kriangsak decides to traffick Kate to the Yakuza][$kateSays to "noRush"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "maybe">>\
"Maybe," you smile.
<<elseif $kateSays == "thanks">>\
"Great, thanks," you smile.
<<elseif $kateSays == "noRush">>\
"No rush," you smile.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"We'll see. We can help you make a little money in the meantime, anyway," he says. "Just keep on impressing Tid and Lu."
<<include "DINBOSS-12900 Roller cruise">>
<</page>><<silently>>
<<emote-mouth-oh>>
<<set _npcD10 to random(4,13)>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
<<header>>\
<<page>>\
"Why," you ask dryly, "am I going to get my passport back?"
<span class="yellowHighlighter">Daeng Kriangsak became more ''wary'' of your intelligence.</span>
"Don't be a silly girl." He chuckles disarmingly. "Of course you'll get it back. It's because you've got no <div class="tooltip">blue book<span class="tooltiptext">a Non-B visa, the kind that entitles you to work in Thailand</span></div>. We need to get that cleared with some people, like the police."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''Detect Deception check.'' Daeng Kriangsak rolled<<= either("....", ".....", "......", ".......", "........", ".........", "..........")>>_npcD10 with 1D10+3.
<<link "Roll _npcD10 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Detect Deception check.'' Target: _npcD10. Result: (_kateD10+1) = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
That may be true, but he's [[holding something back|DINBOSS-12840 So don't worry about it]].
<<else>>\
He's either telling the truth, or he's a [[really good liar|DINBOSS-12840 So don't worry about it]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1D10+1<span class="tooltiptext">+1 //Deception//</span></div> to succeed.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"So don't worry about it," he advises. "Just worry about keeping Tid and Lu happy while you're with us."
<<include "DINBOSS-12900 Roller cruise">>
<</page>>The Rolls turns left a few blocks before Khao San, heading somewhere else. It's such a smooth, quiet ride; a world apart from the tuk-tuks and taxis [[spluttering along outside|DINBOSS-13000 Miss home?]].<<silently>>
<<emote-calm>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-"+$kate.braSize)>>
<<set $header.line1 to "''PHRA SUMEN ROAD''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The aircon – turned down low enough to cool down a man wearing a suit on a hot night - washes over all the naked skin you've got on display. Your nipples quickly stiffen in the cold air, standing up like bullets under your thin, clingy dress.
"Connor said you've been here for, what, nine months?" Kriangsak asks. "You don't miss home? Your parents?"
[[Yeah, but there's Skype.|DINBOSS-13100 Yes but Skype]]
[[We're not close.|DINBOSS-13200 We're not close]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, but there's Skype."
"That's true," he says, absently tracing a line up your bare leg with his fingertip.
Even though last week you got touched by dozens of guys, in this intimate setting it's startling, a total lack of propriety from a //much// older man. "You're a pretty girl, they must be proud of you."
[[Hope so.|DINBOSS-13110 Proooud][$kateSays to "hopeSo"]]
//[[Shrug noncommittally.|DINBOSS-13110 Proooud][$kateSays to "shrug"]]//
[[Do you have kids?|DINBOSS-13110 Proooud][$kateSays to "doYouHaveKids"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hopeSo">>\
<<emote-mouth-smile>>\
"Hope so," you smile.
"I'm //sure// they are," he says. His hand slides under your dress, checking you're not wearing underwear. "[[Good girl|DINBOSS-15000 Title card]]."
<<elseif $kateSays == "shrug">>\
<<emote-calm>>\
You shrug noncommittally.
"I'm //sure// they are," he insists. His hand slides under your dress, checking you're not wearing underwear. "[[Good girl|DINBOSS-15000 Title card]]."
<<elseif $kateSays == "doYouHaveKids">>\
"Do you have kids?"
"Dozens, I should think," he chuckles. His hand slides under your dress, checking you're not wearing underwear. "[[Good girl|DINBOSS-15000 Title card]]."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"We're...not close."
"Oh, shame," he says, absently tracing a line up your bare leg with his fingertip. Even though last week you got touched by dozens of guys, in this intimate setting it's startling, a total lack of propriety from a //much// older man. "Why's that?"
<<link "They didn't want me to drop out of <<uni>>." "DINBOSS-13300 Daddy's little dropout">><</link>>
[[I wasn't perfect.|DINBOSS-13400 Not perfect]]
[[I'm just not a kid anymore.|DINBOSS-13500 Not a kid anymore]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"They were mad I dropped out of <<university>>."
"<<University>>!" he scoffs. His hand slides under your dress, checking you're not wearing underwear. "[[Good girl|DINBOSS-15000 Title card]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Just...wasn't cut out to be their perfect little girl," you say, injecting an edge of bitterness into your voice.
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Their loss." His hand slides under your dress, checking you're not wearing underwear. "[[Good girl|DINBOSS-15000 Title card]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Just...not a kid anymore," you shrug. "I need to do my own things."
"Absolutely." His hand slides under your dress, checking you're not wearing underwear. "[[Good girl|DINBOSS-15000 Title card]]."
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"You don't like tourists?"
"Ha," he chuckles at that. "Well...[[we need their money, of course, everybody knows that|DINBOSS-13000 Nationalist insight]]. For now." He shrugs wryly. "Maybe not forever."
<</page>><<silently>>
<<emote-mouth-calm>>
<<first>>
<<addNotification "Insight gained" "Daeng Kriangsak – Ideology (Thai Nationalist)">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Interesting.// He went straight to the political; he framed it in terms of the whole country, not just himself.
<div class="greyHighlighter">\
<b>New rule: <i>Insights.</i></b> You just gained an //Insight// about this character. Insights can unlock unique dialogue & decision options.
$kate.firstName is trained to seek Insights about a character's //Money,// //Ideology,// vulnerability to //Coercion,// or need for //Excitement// (MICE). A character with quirks or weaknesses in one or more of these areas could be recruited as an //Agent// later.
Daeng Kriangsak's answer indicates that his ideology is partly //Thai Nationalist.//
</div>\
//[[That's definitely going in my report.|DINBOSS-13010 Back on track]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//That's definitely going in my contact report.// "So what's your story?" he asks.
[[I love it here.|DINBOSS-13100 I love it here]]
[[Nothing to go back to.|DINBOSS-13800 Nothing to rush back to]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I love it here," you tell him.
"You don't miss your family? Your parents?"
[[Yeah, but there's Skype.|DINBOSS-13200 Kate misses her family]]
[[We're not close.|DINBOSS-13400 Kate and her parents aren't close]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, but there's Skype."
"Mmhm." He nods. "Well, it's brave of you to travel on your own. Adventurous. I'm sure they're proud of their girl."
[[Hope so.|DINBOSS-13300 Hope so][$temp.playerDecision to "hopeSo"]]
<span class="greyedOut">//[[Shrug noncommittally|DINBOSS-13300 Hope so][$temp.playerDecision to "shrug"]]//</span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "hopeSo">>\
<<emote-mouth-smile>>\
"Hope so," you smile.
<<elseif $temp.playerDecision == "shrug">>\
<<emote-mouth-calm>>\
You shrug ambiguously. Something about the way he said that made you wary.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"I'm sure they are," he insists. "And you [[do look lovely tonight|DINBOSS-14100 Cruise downtown]]."
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"We're...not close."
"Hm, shame. What's the reason for that?"
<<link "They were disappointed I dropped out of <<uni>>." "DINBOSS-13500 Daddy's little dropout">><</link>>
[[I was too wild.|DINBOSS-13600 Wild child]]
[[I'm just not a kid anymore.|DINBOSS-13700 I'm a big girl now]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"They didn't like me dropping out of <<uni>>," you tell him.
"Ha!" He chuckles in amusement. "Well...perhaps academia's loss can be Patpong's gain. You look much better in that than a [[stuffy old graduation gown|DINBOSS-14100 Cruise downtown]], anyway."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Just wasn't cut out to be their...perfect little girl, I guess."
He nods understandingly. "Well," he says, "their loss. Just because you're not perfect enough for them, doesn't mean you can't be [[perfect for other things|DINBOSS-14100 Cruise downtown]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm just not a kid anymore," you shrug, "I've got my own life to live."
"Of course," he nods, "you're a fine young woman in your own right. [[Very promising|DINBOSS-14100 Cruise downtown]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Not much to go back to," you tell him, with a shrug.
"Hm. What is it you were you doing, before you left?"
<<link "<<Uni>>, but I dropped out." "DINBOSS-13900 I'm a college dropout">><</link>>
[[Dreary office work.|DINBOSS-14000 I was an office drone]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<<Uni>>," you say. "But I didn't finish my degree."
"Hm!" Discovering you're partway through a higher education seems to bemuse him. "Well. I'm sure you look better in a dress than a [[stuffy old graduation gown|DINBOSS-14100 Cruise downtown]], anyway."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Just office work," you tell him with a shrug. "Paperwork and filing and stuff."
That's technically true...you're just glossing over a few details. He nods anyway, probably picturing you shuffling papers and filing your nails at <<if $kate.agency == "cia">>Dunder Mifflin<<elseif $kate.agency == "mi6">>some dead-end job in Slough<<elseif $kate.agency == "asis">>some Aussie version of Dunder Mifflin<<elseif $kate.agency == "csis">>some Canadian version of Dunder Mifflin<<elseif $kate.agency == "nzsis">>some Kiwi version of Dunder Mifflin<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
"Waste of your good looks," he smirks. "Although I'm sure you [[brightened up the place|DINBOSS-14100 Cruise downtown]] while you were there."
<</page>><<silently>>
<<set $header.line1 to "''PHRA SUMEN ROAD''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The Rolls turns left a few blocks before Khao San, heading somewhere else. It's such a smooth, quiet ride; a million miles away from the tuk-tuks and taxis spluttering along outside.
The aircon – turned down low enough to cool down a man wearing a suit on a hot night - washes over acres of naked skin of the girl beside him. Your nipples quickly stiffen in the cold air, standing up like bullets under your thin, clingy dress.
//TK Kriangsak now asks her about the other dialogue path she didn't take – i.e. he asks about her job if she spoke about her parents, and vice versa. Not implemented because it's a slightly complex to code – do later. If he knows she was at uni, he may ask her about her degree instead? Basically get Kate to reveal something else about herself. Then [[continue|DINBOSS-15000 Title card]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="DINBOSS-15100 Hotel arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/lumphini/lumphiniDistrictNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''WIRELESS ROAD''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Embassies and skyscrapers roll by as you cruise into Lumphini. Asian Hulk slows the big car, and pulls up out front of a sleek, modern hotel: you've arrived.
<<image "/locationPhotos/thailand/lumphini/indigoWirelessRoad.jpg" 0 1000 667 0>>\
Uniformed porters step briskly [[up to the car|DINBOSS-15200 Help with the door]] as it rolls to a halt.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/lumphini/hotelIndigoEntrance.jpg" 550 1000 1050 0>>\
A porter opens up your door, and holds it for you to exit. From inside the lobby, an Asian couple gaze out at your [[beautiful car|DINBOSS-15300 Debus]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
Disembarking from the backseat of a Rolls Royce isn't easy when you're wearing a stripper dress. You tug the tight clingy fabric as far down your hips as you can, then attempt to step out gracefully.
You shimmy over to the edge of your seat, and try to get your heels down on the <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalk<<else>>pavement<</if>> without flashing the porter and the whole lobby.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
Keeping your knees demurely pressed together, you somehow you make it from backseat to <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalk<<else>>pavement<</if>> without losing your dignity.<br />
<br />
Out in the hot night air, you instinctively tug the hem back down for modesty. Well...as much modesty as you can get in this [[stupid dress|DINBOSS-15400 Indigo lobby]], anyway.
<<else>>
<<if $kate.lastWornDress == "blackDeepVDualSlitJerseyMaxi">>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<</if>>
Maybe you'd have been able to pull it off from a smaller car...but it's impossible to climb down the footstep without giving everyone a glimpse up this stupid dress.<br />
<br />
You climb out in the hot night air, and tug the stretchy material [[back down into place|DINBOSS-15400 Indigo lobby]] with a little wriggle.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $header.line1 to "''LOBBY''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Asian Hulk stays out in the Roller; Mr Kriangsak walks you in through the trendy, modern lobby.
His hand cups your ass, all the way. It feels like everybody is judging you. He's practically old enough to be your grandfather, he's obviously wealthy, and you're dressed like a stripper; they must think you're a whore.
<<image "/locationPhotos/thailand/lumphini/indigoLobby.jpg" 156 1000 556 0>>\
Ignoring the front desk, Kriangsak leads you straight through to the <<if $kate.agency == "cia" or $kate.agency == "csis">>[[elevators|DINBOSS-15500 Restaurant]]<<else>>[[lifts|DINBOSS-15500 Restaurant]]<</if>>.
<</page>><<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $header.line1 to "''ELEVATOR CAR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<<else>>
<<set $header.line1 to "''LIFT COMPARTMENT''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</if>>
<<first>>
<<addNotification "Arousal +1" "Your body's getting ready for sex.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/lumphini/indigoHotelLiftCar.jpg" 0 1000 563 0>>\
You ride up the tall hotel. "Now this," Kriangsak pronounces, fondling and squeezing your butt through the thin material of your dress, "is a //very// nice <<if $kate.agency == "mi6">>'arse'<<else>>ass<</if>>."
//Is he taking me straight to one of the rooms?// The dress, the car, the hotel...you practically feel like you //are// a prostitute, even though you're just undercover.
The slick hot flush building up in your [[naked, nearly exposed pussy|DINBOSS-15510 Debus]] tells you that at least you won't have to worry about not being wet enough.
<</page>><<silently>>
<<set $header.line1 to "''25TH FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/lumphini/charLobby.jpg" 100 1000 560 0>>\
The <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> stops on the 25th floor. You're expecting a normal hallway, but the doors swoosh open on a restaurant instead.
You weren't even aware of all the tension in your body, but it suddenly washes out of you all at once. You're going to dinner, not straight to his bed. //Thank god.//
A sizzling waft of flame grilled meat rolls out to greet you, reminding you that you [[haven't eaten in hours|DINBOSS-15600 Maitre d]].
<</page>><<silently>>
<<set $header.line1 to "''CHAR RESTAURANT''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Inside it's a buzzy, expensive hotel restaurant. Your heels click on the hardwood floor to announce your arrival.
<<image "/locationPhotos/thailand/lumphini/charRoom.jpg" 0 1000 523 0>>\
Standing in the doorway, waiting for the maître d to find your reservation, you feel as on display as you were in the club.
Kriangsak's let go of your ass, mercifully. But you feel like you're wearing a trashy parody of the dresses the other women in here are in. It's...humiliating. Are they even gonna [[let you in|DIBOSS-15700 Please be seated]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"This way, plea', sir madam." You follow the waitress to your table.
Floor-to-ceiling windows offer a stunning view of Lumphini at night, but it feels like the other diners are more interested in staring at you as you're paraded past them.
<<image "/locationPhotos/thailand/lumphini/charTableForTwo.jpg" 700 1000 1250 0>>\
//[[Take a seat.|DINBOSS-15800 Kate sits]]//
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
You're relieved to settle into your seat.
The waitress stays to take your drink orders. Kriangsak orders a Fino sherry; you definitely need something stronger.
//[[G&T.|DINBOSS-15900 Drink order][$katesDrink to "gAndT"]]
[[Margarita.|DINBOSS-15900 Drink order][$katesDrink to "margarita"]]
[[Vodka martini.|DINBOSS-15900 Drink order][$katesDrink to "vodkaMartini"]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $katesDrink == "gAndT">>\
"Gin and tonic, please," you tell her.
"Large one," Kriangsak adds.
<<elseif $katesDrink == "margarita">>\
"Margarita, please," you tell her.
<<elseif $katesDrink == "vodkaMartini">>\
"Vodka martini, please," you tell her. The first time you drank one of these, it was to celebrate the job offer from <<if $kate.agency == "cia">>the Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> – you've got a taste for them since.
<<else>>\
(ERROR IN KATESDRINK VAR)
<</if>>\
She leaves you with menus and a wine list. The first thing you notice about the menu is that it's expensive: most of the starters would cost you a full day's pay at the Hard Cock Cafe.
"I'm paying, order anything you like," Kriangsak says, smiling indulgently. "So...tell me about the club. Any surprises on your first day?"
[[All the groping.|DINBOSS-16000 Gropey customers]]
[[The stage shows got pretty hardcore.|DINBOSS-16100 Stage shows]]
[[Being so on display.|DINBOSS-16200 On display]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Well...all the groping," you admit. "Didn't expect I'd be so...manhandled."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Ha!" he chuckles. "Good, good, that means they like you. Don't worry," he says with a paternal smile, patting your knee. "You'll get used to it very fast. All girls do."
<<include "DINBOSS-16300 Drinks arrive">>
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Well...the stage shows were kinda hardcore," you admit.
"Mm-hmm," he murmurs. "What was the main show? The ten o'clock?"
[[Girl/girl.|DINBOSS-16110 Girl/girl]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Girl/girl," you reply, realising that you're picking up some of the lingo.
"Oh?" He raises his eyebrows. "Well...better get used to seeing that," he shrugs. "Girl/girl shows are very common in Patpong."
<<include "DINBOSS-16300 Drinks arrive">>
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Well...being so on display," you admit. "We're wearing less than the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>."
"Mm-hm," he smiles. "Well, that's why we're paying you. Can I give you some advice?"
//[[Nod politely.|DINBOSS-16210 Kriangsak's advice]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You nod politely. "You're...$kate.age?" he asks. "In years to come, you'll think back to how you were now, and you'll think: //My God...I would kill to have that ass again."// He laughs melodiously. "My advice? Flaunt it while you can."
<<include "DINBOSS-16300 Drinks arrive">>
<</page>>Your drinks arrive; you take a long calming sip of your <<if $katesDrink == "gAndT">>G&T, enjoying its zesty, bittersweet kick<<elseif $katesDrink == "margarita">>margarita, enjoying its sweet and salty kick<<elseif $katesDrink == "vodkaMartini">>vodka martini, enjoying its strong, briny kick<<else>>//ERROR IN KATEDRINK VAR//<</if>>. "Ready to order?" asks the waitress, notepad at the ready.
//[[Order salmon avocado to start.|DINBOSS-16500 Main course order][$kateStarter to "salmonAvocado"]]
[[Order Thai jumbo crab cake to start.|DINBOSS-16500 Main course order][$kateStarter to "crabCake"]]
[[Order Australian beef tartare to start.|DINBOSS-16500 Main course order][$kateStarter to "beefTartare"]]//<<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
She scrawls that down. Kriangsak orders foie gras, with extra toast. "An' for main?"
//[[Order wood-fired tomahawk steak.|DINBOSS-16600 Any problems][$kateMain to "steak"]]
[[Order chorizo & lobster spaghetti.|DINBOSS-16600 Any problems][$kateMain to "lobster"]]
[[Order fire-grilled lamb chops.|DINBOSS-16600 Any problems][$kateMain to "lamb"]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Kriangsak orders <<if $kateMain == "steak">>grilled lamb chops<<elseif $kateMain == "lobster">>king crab thermidor<<elseif $kateMain == "lamb">>a ribeye steak, medium rare<<else>>//ERROR IN KATEMAIN VAR<</if>>, some sides to share, and a bottle of <<if $kateMain == "lobster">>Comtes Lafon<<else>>Trapiche<</if>> to wash it all down.
You didn't see the wine list, but the bill for the food alone would add up to around ten days' pay for "$kate.stripperName".
"So," your new boss says when the waitress departs. "Anything I should know about? Any problems?"
<<if not hasVisited("DINBOSS-12830 Where's my passport")>>\
[[Lu took my passport.|DINBOSS-16610 Lu took my passport]]
<</if>>\
[[There was cocaine in the VIP.|DINBOSS-16620 Coke in the VIP]]
[[Roxy doesn't like me.|DINBOSS-16640 Roxy hates me]]
[[Do you know Connor made me have sex with him?|DINBOSS-16650 Connor fucked me]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<set _npcD10 to random(4,13)>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
<<header>>\
<<page>>\
"Lu took my passport," you tell him.
"Oh, that's normal," he says. "We need to show it to some people, get you cleared to work without a <div class="tooltip">blue book<span class="tooltiptext">a Non-B visa, the kind that entitles you to work in Thailand</span></div>. You'll get it back soon."
<<if hasVisited("FNG-21070 Lu took my passport, Amanda")>>\
//That's not what <<Amanda>> says.//
<</if>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''Detect Deception check.'' Daeng Kriangsak rolled<<= either("....", ".....", "......", ".......", "........", ".........", "..........")>>_npcD10 with 1D10+3.
<<link "Roll _npcD10 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Detect Deception check.'' Target: _npcD10. Result: (_kateD10+1) = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
That's a lie; at least the part about [[getting it back soon|DINBOSS-16700 Any porn?]] is.
<<else>>\
He's either telling the truth, or he's a [[really good liar|DINBOSS-16700 Any porn?]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1D10+1<span class="tooltiptext">+1 //Deception//</span></div> to succeed.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"There was cocaine in the VIP," you tell him.
"Oh, that's normal," he says. "Don't worry about it."
[[Got it.|DINBOSS-16630 What about the cops][$kateSays to "gotIt"]]
[[What about the police?|DINBOSS-16630 What about the cops][$kateSays to "police"]]
[[Just checking.|DINBOSS-16630 What about the cops][$kateSays to "justChecking"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "gotIt">>\
"Got it," you nod.
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Lots of the girls use coke or <div class="tooltip">yaba<span class="tooltiptext">a narcotic pill containing caffeine and amphetamine</span></div>," he says. "We don't mind as long as they don't [[abuse it|DINBOSS-16700 Any porn?]]."
<<elseif $kateSays == "police">>\
<<set $kateAlreadyBroughtUpThePolice to true>>\
<<emote-brows-raised>>\
"What about the police?"
"We've got very good relations with them," he chuckles. "Don't worry. You won't get into trouble."
//More indications of police corruption. Interesting, in the sense that it could conflict with the mission. I'll need to [[find out more|DINBOSS-16700 Any porn?]].//
<<elseif $kateSays == "justChecking">>\
"Just checking."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Lots of the girls use coke or <div class="tooltip">yaba<span class="tooltiptext">a narcotic pill containing caffeine and amphetamine</span></div>," he says. "We don't mind as long as they don't [[abuse it|DINBOSS-16700 Any porn?]]."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Roxy doesn't like me," you tell him.
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
He laughs. "I'm sure she's jealous. She was the queen of the bar, now a new girl comes along for everyone to [[get excited about|DINBOSS-16700 Any porn?]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Do you know that Connor made me have sex with him?"
<span class="redHighlighter">Daeng Kriangsak ''disliked'' that.</span>
"Of course," he nods. "That's how you get a job in Patpong. And how you [[keep it|DINBOSS-16700 Any porn?]], so...get used to it."
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-naughty>>
<</silently>>\
<<header>>\
<<page>>\
"First time working in a club like this, right? No sex work? No porn?" he asks.
[[Nope.|DINBOSS-16710 No porn]]
<<if $kate.kinks.includesAny("exhibitionist", "submissive")>>\
<<if $kate.kinks.includes("exhibitionist")>><span class="greyedOut">//[Exhibitionist]//</span><<else>><span class="greyedOut">//[Submissive]//</span><</if>> [[Not professionally.|DINBOSS-16705 Amateur porn]]
<<else>>\
<span class="greyedOut">//[Exhibitionist (or Submissive)]// Not professionally.</span>
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Not for money," you tell him.
"Oh...boyfriends? On their phones?" He chuckles. "Well, trust me, you're on the internet somewhere, then, I guarantee it. Never got paid for it?"
[[No.|DINBOSS-16710 No porn]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("DINBOSS-16705 Amateur porn")>>"No,"<<else>>"Nope,"<</if>> you shake your head.
"So innocent," he chuckles. He reaches out under the table, fondles your bare leg again. "What were you like growing up? Any hobbies, or just boys?"
[[Sports.|DINBOSS-16720 Sports star]]
[[Girly stuff. Fashion, beauty.|DINBOSS-16730 Alpha female]]
[[I was into fantasy novels.|DINBOSS-16740 Geek girl]]
[[Rock music, I was in a band.|DINBOSS-16760 Rock chick]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sports," you answer with a tinge of pride. "I was a pretty good runner."
"That explains the legs," Kriangsak says, stroking one appreciatively. "You're like a...[[fine horse|DINBOSS-17000 Starter arrives]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hmm, the normal things. Fashion, beauty."
"That's good," he nods approvingly. "I've always thought the female body is [[the perfect canvas|DINBOSS-17000 Starter arrives]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, novels, mainly," you tell him. "Fantasy, sci fi...that kind of thing."
"Really?" he arches a brow, looks you up and down doubtfully, then chuckles. "You don't look like a nerd. What drew you to that?"
//[[Imagining whole different worlds.|DINBOSS-16750 Kate explains why she's a nerd][$kateSays to "senseOfWonder"]]
[[They're more exciting than real life.|DINBOSS-16750 Kate explains why she's a nerd][$kateSays to "excitement"]]
[[Sex and violence, haha!|DINBOSS-16750 Kate explains why she's a nerd][$kateSays to "sexAndViolence"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "senseOfWonder">>\
"I guess...imagining whole different worlds," you say.
"Ahhh..." he nods, "so that's what drew you to travel. You craved adventure all your life."
//Adventure, excitement, a Jedi craves not these things.// Master Yoda's warning echoes through the years; but you [[nod agreeably|DINBOSS-17000 Starter arrives]] at the boss's insight.
<<elseif $kateSays == "excitement">>\
"They're just...more exciting than real life," you say. "Everything's less ambiguous in fantasy."
"Ahhh..." he nods, "so that's what drew you to travel. You craved adventure all your life."
//Adventure, excitement, a Jedi craves not these things.// Master Yoda's warning echoes through the years; but you [[nod agreeably|DINBOSS-17000 Starter arrives]] at the boss's insight.
<<elseif $kateSays == "sexAndViolence">>\
<<emote-nose-wrinkle>>\
<<emote-mouth-smile>>\
"Sex and violence," you quip, and he laughs again. "Have you //seen// Game of Thrones? I read that when I was thirteen."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Aha, I see. You [[grew up very fast|DINBOSS-17000 Starter arrives]]."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Rock music," you tell him. "I was in a band! I played the bass."
"Aha, a //performer,"// he says, like that's the answer to a question. "Have you met Clive?"
[[Is he a regular?|DINBOSS-16770 Who's Clive?][$kateSays to "aRegular"]]
[[Don't think so.|DINBOSS-16770 Who's Clive?][$kateSays to "dontThinkSo"]]
[[Not yet.|DINBOSS-16770 Who's Clive?][$kateSays to "notYet"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "aRegular">>\
"Is he a regular?" you ask.
<<elseif $kateSays == "dontThinkSo">>\
"Don't think so," you say, searching your memory for a Clive but coming up blank.
<<elseif $kateSays == "notYet">>\
"Not yet."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"<<if $kateSays == "aRegular">>No, <<else>>He's <</if>> one of the DJs. Loves heavy metal, loves it when we hire a 'rock chick'. He'll adore you. And who knows, maybe one day we'll get you [[back up on a stage|DINBOSS-17000 Starter arrives]], hm?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your starters arrive. Kriangsak sniffs and tastes the wine before the waitress fills your glass with <<if $kateMain == "lobster">>chilled white Comtes Lafon. It's very dry and tastes very expensive.<<else>>blood red Trapiche. It's strong and balanced and tastes...expensive.<</if>>
<<if $kateStarter == "salmonAvocado">>\
<<image "/locationPhotos/thailand/lumphini/charSalmonAvocado2.jpg" 100 1000 430 0>>\
Your food's gorgeous, creamy avocado blending beautifully with smoked salmon in your mouth. The flower-shaped cake on top is //kanom dok jok,// a slightly sweet, crispy fried Thai cookie.
<<elseif $kateStarter == "crabCake">>\
<<image "/locationPhotos/thailand/lumphini/charCrabCakes.jpg" 200 1000 600 0>>\
Your food's gorgeous: crunchy, freshly fried crab cakes served with a chunky corn salad and sweet spicy mayo.
<<elseif $kateStarter == "beefTartare">>\
<<image "/locationPhotos/thailand/lumphini/charTartare.jpg" 290 1000 600 0>>\
Your food's gorgeous: cold seasoned steak that melts in your mouth, served with crunchy hot sourdough on the side.
<<else>>\
//ERROR IN KATESTARTER VAR, PLEASE REPORT THIS//
<</if>>\
Kriangsak tucks into his toast and foie gras. He's dominated the conversation so far, but now you've got a chance to ask him something.
[[So how did you come to own a club?|DINBOSS-17500 Club history]]
[[How come you hire farang girls?|DINBOSS-18000 Farang girls]]
[[Do you spend much time at the club?|DINBOSS-18400 Other activities]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "passport">>\
<<silently>>
<<set _npcD10 to random(3,12)>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
"Lu took my passport," you tell him.
"Oh, that's normal," he says, dismissively. "First, the police need to see it. Did she tell you about our friend at the visa...good, good. So we can get it stamped anytime, no need for border runs while you work for us. Just ask Lu or Nini if you need it back for something, it's no problem."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''Detect Deception check.'' Daeng Kriangsak rolled..._npcD10 with 1D10+2.
<<link "Roll _npcD10 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Detect Deception check.'' Target: _npcD10. Result: _kateD10+1 = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
That's a lie...at least the part about [[getting it back easily|DINBOSS-16400 Any sex work?]] is.
<<else>>\
He's either telling the truth, or he's a good liar. You're [[not sure which|DINBOSS-16400 Any sex work?]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1D10+1<span class="tooltiptext">+1 //Deception//</span></div> to succeed.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<<elseif $kateSays == "roxy">>\
"Roxy doesn't like me," you tell him.
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"She's probably just jealous," he chuckles. "She was the new girl until you arrived. Now she has to share the limelight at the bar. I'm sure doesn't help that you're [[slimmer than her|DINBOSS-16400 Any sex work?]]."
<<elseif $kateSays == "connor">>\
<<set $kriangsakGropedKatesLeg to true>>\
"Well...do you know that Connor made me have sex with him?"
<span class="redHighlighter">Daeng Kriangsak ''disliked'' that.</span>
"Mm. Well...that's one of the perks of his job, I'm afraid." His hand settles on your bare thigh under the table, slips casually up under your dress. Right there in the restaurant! You instinctively clench your legs together as his hand slides up your thigh and onto your crotch.
"You'll have to get used to it," he says, lightly touching your <<if $kate.bikiniLine == "hollywood">>shaved pubic bone<<else>>pubic bone, feeling your <<if $kate.bikiniLine == "georgeW" or $kate.bikiniLine == "bikini">>bush<<elseif $kate.bikiniLine == "brazilian" or $kate.bikiniLine == "landingStrip">>little strip of pubic hair<<else>>little tuft of pubic hair<</if>><</if>> with a fingertip, "now you work in a whorehouse."
He smirks at that, then slides his hand back down off your leg to take another [[sip of sherry|DINBOSS-16400 Any sex work?]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You've never worked in a club like mine before?" he asks. "No stripping, or porn, or anything back home?"
[[No.|DINBOSS-16500 Ingenue][$kateSays to "no"]]
//[[Shake your head.|DINBOSS-16500 Ingenue][$kateSays to "shakeHead"]]//
<<if $kate.kinks.includesAny("exhibitionist", "submissive")>>\
<<if $kate.kinks.includes("exhibitionist")>><span class="greyedOut">//[Exhibitionist]//</span><<else>><span class="greyedOut">//[Submissive]//</span><</if>> [[Well. Nothing professional.|DINBOSS-16500 Ingenue][$kateSays to "amateur"]]
<<else>>\
<span class="greyedOut">//[Exhibitionist (or Submissive)] Well. Nothing professional.//</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "no">>\
"No."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"Ah," he smiles fondly, "an ingenue."
<<elseif $kateSays == "shakeHead">>\
He chuckles when you shake your head. "Ah, an ingenue."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
<<elseif $kateSays == "amateur">>\
"Well." You take a sip of your <<if $katesDrink == "gAndT">>G&T<<elseif $katesDrink == "margarita">>margarita<<elseif $katesDrink == "vodkaMartini">>vodka martini<<else>>//ERROR IN KATEDRINK VAR//<</if>> "Nothing professional. Just, you know...boyfriends taking pictures and stuff."
<span class="greenHighlighter">Daeng Kriangsak ''loved'' that.</span>
"Mm, good," he says. <<if $kriangsakGropedKatesLeg>>His hand settles on your thigh again.<<else>>His hand settles on your bare thigh under the table.<</if>> "Pictures of you naked? Did you like that?"
[[Yes.|DINBOSS-16600 Yes]]
<<if $kate.kinks.includes("exhibitionist")>><span class="greyedOut">//[Lie] //</span><</if>>[[No.|DINBOSS-16700 No]]
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kateSays != "amateur">>
"What sort of things were you into when you were growing up? Any hobbies in your teens? Besides boys, I mean."
//[[Sports.|DINBOSS-16800 Sports star]]
[[Girly stuff. Fashion, beauty.|DINBOSS-16900 Alpha female]]
[[I was into fantasy novels.|DINBOSS-17000 Geek girl]]
[[I was in a rock band.|DINBOSS-17200 Rock chick]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You nod, and he smiles. //"Now// I think I understand," he says. "Good girl."
<span class="greenHighlighter">Daeng Kriangsak ''loved'' that.</span>
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"No," you shake your head. "Not really."
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
"But you did it anyway," he smiles approvingly. "Good girl."
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sports," you answer with a tinge of pride. "I was a pretty good runner."
"Ah, that explains the legs!" <<if $kriangsakGropedKatesLeg>>His hand settles on your thigh again.<<else>>His hand settles on your bare thigh under the table.<</if>> "I'm sure you looked sexy in your track gear."
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Just the normal things. Fashion, beauty."
"That's good," he nods approvingly. <<if $kriangsakGropedKatesLeg>>His hand settles on your thigh again.<<else>>His hand settles on your bare thigh under the table.<</if>> "It's important for girls to concentrate on their appearance."
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I was into novels," you tell him. "Fantasy, sci fi...that kind of thing."
"Oh!" he looks surprised. "I wouldn't have guessed that. What drew you to that?"
//[[Exploring whole different worlds.|DINBOSS-17100 Kate explains why she's a nerd][$kateSays to "senseOfWonder"]]
[[They're more exciting than real life.|DINBOSS-17100 Kate explains why she's a nerd][$kateSays to "excitement"]]
[[Sex and violence, haha!|DINBOSS-17100 Kate explains why she's a nerd][$kateSays to "sexAndViolence"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "senseOfWonder">>\
"I guess exploring whole different worlds," you say. "Even if it is only in your imagination."
"Ah...but it's not any more, is it? You're all grown up," he says, <<if $kriangsakGropedKatesLeg>>his hand settling on your thigh again.<<else>>his hand settling on your bare thigh under the table.<</if>> "And you're having your own real-life adventure."
//Adventure, excitement, a Jedi craves not these things.// Master Yoda's warning echoes in your mind; but you nod agreeably at the boss's insight.
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<<elseif $kateSays == "excitement">>\
"They're just more exciting than real life," you say. "Everything's less...ambiguous in fantasy."
"Ah, it's excitement she craves," smiles Kriangsak. "That's why you couldn't stay home. You're all grown up now," he says, <<if $kriangsakGropedKatesLeg>>his hand settling on your thigh again.<<else>>his hand settling on your bare thigh under the table.<</if>> "And you're having a real-life adventure. You can't go back."
//Adventure, excitement, a Jedi craves not these things.// Master Yoda's warning echoes in your mind; but you nod agreeably at the boss's insight.
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<<elseif $kateSays == "sexAndViolence">>\
"Sex and violence," you quip, and he laughs. "Have you //seen// Game of Thrones? I read that when I was thirteen."
"Oh my goodness," he chuckles. <<if $kriangsakGropedKatesLeg>>His hand settles on your thigh again.<<else>>His hand settles on your bare thigh under the table.<</if>> "You must have grown up very fast."
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I was in a rock band," you tell him. "I played the bass."
"Ah, she's a //performer,"// he smiles. "You should get to know Clive, have you met him?"
[[One of the regulars?|DINBOSS-17300 Who's Clive?][$kateSays to "aRegular"]]
[[Don't think so.|DINBOSS-17300 Who's Clive?][$kateSays to "dontThinkSo"]]
[[Not yet.|DINBOSS-17300 Who's Clive?][$kateSays to "notYet"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "aRegular">>\
"One of the regulars?" you ask.
<<elseif $kateSays == "dontThinkSo">>\
"Don't think so," you say, searching your memory for a Clive but coming up blank.
<<elseif $kateSays == "notYet">>\
"Not yet."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"One of the DJs," Kriangsak explains. "He'll adore you, he loves 'rock chicks'. And who knows," he says, <<if $kriangsakGropedKatesLeg>>his hand settling on your thigh again.<<else>>his hand settling on your bare thigh under the table.<</if>> "We might get you back up on a stage one day."
His hand lingers on your leg a little longer, then slides off as the [[waitress returns|DINBOSS-17400 Starter arrives]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your starters arrive. Kriangsak sniffs and tastes the wine before the waitress fills your glass with <<if $kateMain == "lobster">>chilled white Comtes Lafon. It's very dry and tastes very expensive.<<else>>blood red Trapiche. It's strong and balanced and tastes...expensive.<</if>>
<<if $kateStarter == "salmonAvocado">>\
<<image "/locationPhotos/thailand/lumphini/charSalmonAvocado2.jpg" 100 1000 430 0>>\
Your starter's gorgeous, creamy avocado blending beautifully with smoked salmon in your mouth. The flower-shaped cake on top is //kanom dok jok,// a slightly sweet, crispy fried Thai cookie.
<<elseif $kateStarter == "crabCake">>\
<<image "/locationPhotos/thailand/lumphini/charCrabCakes.jpg" 200 1000 600 0>>\
Your starter's gorgeous: crunchy, freshly fried crab cakes served with a chunky corn salad and sweet spicy mayo.
<<elseif $kateStarter == "beefTartare">>\
<<image "/locationPhotos/thailand/lumphini/charTartare.jpg" 290 1000 600 0>>\
Your starter's gorgeous: cold seasoned steak that melts in your mouth, served with crunchy hot sourdough on the side.
<<else>>\
//ERROR IN KATESTARTER VAR, PLEASE REPORT THIS//
<</if>>\
Kriangsak tucks into his toast and foie gras. He's dominated the conversation so far, but now you've got a chance to ask him something.
[[So how did you come to own a club?|DINBOSS-17500 Club history]]
[[How come you hire farang girls?|DINBOSS-18000 Farang girls]]
[[Do you spend much time at the club?|DINBOSS-18400 Other activities]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"So," you say, taking a sip of <<if $kateMain == "lobster">>white<<else>>red<</if>> wine. "How did you end up owning a club?"
"Heh!" he smiles. "Well, getting it was luck. Keeping it was the hard part."
[[What kind of luck?|DINBOSS-17600 Lucky how]]
[[Hard how?|DINBOSS-17800 Hard how]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"What kind of luck?"
"Well, this is back in...'96. You'd have been a baby then," he chuckles. "I was an assistant to an accountant. Then the owner of that club got into debt problems with a...friend of mine." He shrugs. "Long story short, I ended up in charge."
[[Big change from accounting!|DINBOSS-17700 Kate reply][$kateSays to "bigChange"]]
[[Your friend sounds shady.|DINBOSS-17700 Kate reply][$kateSays to "shadyFriend"]]
[[Wish I had a friend who'd give me a club.|DINBOSS-17700 Kate reply][$kateSays to "generousFriend"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "bigChange">>\
"Big change from accounting," you observe.
"Oh, I don't know," he smiles. "I'm still working with figures."
That joke is so obviously rehearsed it's kind of funny. Kriangsak enjoyed telling it.
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span>
<<include "DINBOSS-18600 Wardrobe adjustment">>
<<elseif $kateSays == "shadyFriend">>\
<<silently>>
<<first>>
<<addNotification "Insight gained" "Daeng Kriangsak – Personal history (links to Organised Crime)">>
<</first>>
<</silently>>\
"Your friend sounds shady," you observe.
"Blow was lucky he only lost his business," Kriangsak nods. "Very lucky."
<<if not hasVisited("DINBOSS-13000 Nationalist insight")>>\
<div class="greyHighlighter">\
<b>New rule: <i>Insights.</i></b> You just gained an //Insight// about this character. Insights can unlock unique dialogue & decision options.
$kate.firstName is trained to seek Insights about a character's //Money,// //Ideology,// vulnerability to //Coercion,// or need for //Excitement// (MICE). A character with quirks or weaknesses in one or more of these areas could be recruited as an //Agent// later.
Daeng Kriangsak's answer indicates that he was linked to //Organised Crime// in his youth.
</div>\
<</if>>\
<<include "DINBOSS-18600 Wardrobe adjustment">>
<<elseif $kateSays == "generousFriend">>\
"Wish I had a friend who'd give me a club," you muse.
"Hmm. I think you're better placed in entertainment than management for now."
<<include "DINBOSS-18600 Wardrobe adjustment">>
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hard in what way?"
"Exhausting. Stressful. Lots of...big gambles. But they're all paying off now," he says brightly. "You're joining at the perfect time, really. I think you've got a bright future."
<<include "DINBOSS-18600 Wardrobe adjustment">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"So," you say, taking a sip of <<if $kateMain == "lobster">>white<<else>>red<</if>> wine. "How come you hire <div class="tooltip">farang<span class="tooltiptext">foreign</span></div> girls?"
"Accident, at first. I met this Australian couple, offered her a job. It was a joke really, but she turned up next day!" He chuckles wistfully. "That's when I realised <div class="tooltip">farang<span class="tooltiptext">foreign</span></div> girls want <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> job too. All girls need money."
[[What happened to her?|DINBOSS-18100 Dani's fate]]
[[How many girls work for you now?|DINBOSS-18200 How many farangs?]]
[[I'm not going to be a bargirl.|DINBOSS-18300 I'm not doing it]]
<</page>><<silently>>
<<set _npcD10 to random(3,12)>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
<<header>>\
<<page>>\
"What happened to her?"
"Oh, this was...fifteen years ago," he says. "She moved on a long time ago. No idea where she is now."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
''Detect Deception check.'' Daeng Kriangsak rolled..._npcD10 with 1D10+2.
<<link "Roll _npcD10 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Detect Deception check.'' Target: _npcD10. Result: _kateD10+1 = <<= _kateD10 + 1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
You think he's lying about not knowing where she is. Interesting.<br />
<br />
<<include "DINBOSS-18600 Wardrobe adjustment">>
<<else>>\
Feels like there's more to this story than he's letting on. Something to look into later, maybe.<br />
<br />
<<include "DINBOSS-18600 Wardrobe adjustment">>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with 1d10+1 (//Trained Observer// skill bonus) to succeed.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"How many girls work for you now?"
"It varies," he says. "Normally about 50 girls total. Mostly Thai. We have seven <div class="tooltip">farangs<span class="tooltiptext">foreigners</span></div> on the books at the moment. Eight soon, I think, Roxy won't stay behind the bar much longer."
<<include "DINBOSS-18600 Wardrobe adjustment">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not going to be a bargirl," you tell him.
"That's what they all say." He shrugs and smiles. "But it's up to you. Nobody's going to force you."
<<include "DINBOSS-18600 Wardrobe adjustment">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"So," you say, taking a sip of <<if $kateMain == "lobster">>white<<else>>red<</if>> wine. "Do you spend lots of time at the club?"
"I used to practically live there in the early days," he chuckles. "Now I can leave the day-to-day things to Connor and Tid. Gives me time for other interests."
[[Like what?|DINBOSS-18500 Like what]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Like what?"
"I've got a racehorse," he says proudly. "You like horses? I'll take you along sometime. And I organise parties. You'll like them, lots of important men to meet."
<<include "DINBOSS-18600 Wardrobe adjustment">>
<</page>>Like in the club, every time you start to relax, you catch a lingering glance on your body from somewhere. Women glare at you coldly; men undress you with their eyes.
//[[Gulp down some wine.|DINBOSS-18700 Wine helps]]//<<silently>>
<<first>>
<<addNotification "Tipsy" "The wine's helping you feel confident and chatty.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You finish another big glass of <<if $kateMain == "lobster">>Comtes Lafon<<else>>Trapiche<</if>>; the waitress quickly appears to refill it. "Another bottle, please," Kriangsak tells her.
<<if $kate.tattoos.includes("leftHipBoneJacob")>>\
"So," Kriangsak says, "tell me about Jacob."
//Oh yeah. He's seen the photos Connor took of me.// When you got that tattoo, you didn't imagine how many times you'd have to answer this question all through your teens and twenties.
[[First boyfriend.|DINBOSS-18720 First BF]]
<span class="greyedOut">//[Lie]//</span> [[Jacob's my cat.|DINBOSS-18710 Jacob's my cat]]
<<else>>\
Your starters are cleared away. Kriangsak turns the conversation to your exes; the first time a man's ever asked you about //other// men in your life. You're careful not to let any real names or identifiable details slip, but it's actually quite interesting hearing a guy's perspective on [[your past relationships|DINBOSS-18800 Main course]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Jacob's my cat," you tell him, falling back on a disarming quip you've perfected over the years.
Kriangsak smiles politely, and waits for the truth.
[[Okay. First boyfriend.|DINBOSS-18720 First BF]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("DINBOSS-18710 Jacob's my cat")>>Okay. <</if>>First boyfriend," you <<if hasVisited("DINBOSS-18710 Jacob's my cat")>>admit<<else>>tell him<</if>>.
"Whose idea was the tattoo?"
[[Mine, I wanted to show how much I loved him.|DINBOSS-18730 Whose idea][$kateSays to "mine"]]
[[His, he thought it would be hot.|DINBOSS-18730 Whose idea][$kateSays to "his"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "mine">>\
"Mine," you admit, taking a sip of wine. "I wanted to show him how much I loved him."
<<elseif $kateSays == "his">>\
"His," you admit, taking a sip of wine. "He thought it'd be hot."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Did he get a matching one?"
<span class="greyedOut">//[Lie]//</span> [[Yes.|DINBOSS-18740 Yes he did]]
[[No.|DINBOSS-18750 No he dittent]]
<</page>><<silently>>
<<set _npcD10 to random(4,13)>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 1>> /* tk later replace this with Kate's charisma skill or similar */
<</silently>>\
<<header>>\
<<page>>\
"Yes."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Deception check.''
<<link "Roll higher than Kriangsak">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + 1 gte _npcD10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
Make a ''Deception check.'' You rolled: (_kateD10+1) = <<= _kateD10 + 1>>. Daeng Kriangsak rolled<<= either("....", ".....", "......", ".......", "........", ".........", "..........")>>_npcD10 with 1D10+3. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>\
"Hm," he nods, "that's sweet. I wonder what he'd think if he [[saw you in the club|DINBOSS-18800 Main course]]."
<<else>>\
"No he didn't," he chuckles. "I wonder what he'd think if he [[saw you in the club|DINBOSS-18800 Main course]]."
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1D10+1<span class="tooltiptext">+1 //Deception//</span></div> to succeed.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"No."
"Hm. So...[[you were his|DINBOSS-18800 Main course]], he wasn't yours."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
More wine's brought to your table, then the main course.
<<if $kateMain == "steak">>\
<<image "/locationPhotos/thailand/lumphini/charTomahawk.jpg" 170 1000 500 0>>\
Your steak's amazing: a big slab of juicy flame-grilled beef, served on the bone and melt-in-your mouth tender. The sides are pretty spectacular, too, especially the beef-fat fries.
<<elseif $kateMain == "lobster">>\
<<image "/locationPhotos/thailand/lumphini/charLobsterSpaghetti.jpg" 100 1000 600 0>>\
It's delicious: a juicy jumble of plump, buttery lobster, served on a bed of slippery spaghetti. The sides are pretty spectacular, too, especially the creamed corn.
<<elseif $kateMain == "lamb">>\
<<image "/locationPhotos/thailand/lumphini/charLamb.jpg" 100 1000 600 0>>\
It's delicious: three chunky grilled lamb chops, seared on the outside and melt-in-your mouth tender. The sides are pretty spectacular, too, especially the beef-fat fries.
<<else>>\
//ERROR IN KATEMAIN VAR, PLEASE REPORT THIS//
<</if>>\
After weeks of Asian flavours, eating something western is enormously satisfying.
The conversation falls silent a while, both of you fully occupied with the sensual pleasure of a well-cooked meal. Only after you've each enjoyed a few mouthfuls can you talk again.
[[This is amazing.|DINBOSS-18900 This is amazing]]
[[Who was the guy I escorted to the office?|DINBOSS-19000 Who is Somchai?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"This is //amazing,"// you tell him.
"After nine months of street food..." he laughs. "I thought you'd be famished. Make sure you leave enough room for pudding."
<<include "DINBOSS-19400 Pudding">>
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"There was this guy who came into the club," you say. "Big guy, Thai, in his forties. Roxy made me take him straight to the office."
Kriangsak eyes you while he chews on a mouthful of <<if $kateMain == "steak">>lamb chop<<elseif $kateMain == "lobster">>king crab<<elseif $kateMain == "lamb">>steak<<else>>//ERROR IN KATEMAIN VAR<</if>>.
[[He gave me the creeps.|DINBOSS-19010 Gave me creeps]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"He gave me the creeps."
Kriangsak snorts and nearly spits out his <<if $kateMain == "steak">>lamb<<elseif $kateMain == "lobster">>crab<<elseif $kateMain == "lamb">>steak<<else>>//ERROR IN KATEMAIN VAR<</if>>. "Don't worry about him," he tells you once he's recovered. "He's a policeman."
[[Seriously?|DINBOSS-19020 Seriously?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Seriously?"
"Mm-hm. They don't get paid well here," he says, "did you know they have to buy their own guns? I'm serious, they do. Anyway, <<if $kateAlreadyBroughtUpThePolice>>stop worrying<<unset $kateAlreadyBroughtUpThePolice>><<else>>don't worry<</if>> about the police, we have many friends on the force. You'll get to know them someday, they're not all as scary as Somchai."
<<include "DINBOSS-19400 Pudding">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Do you ever get trouble from the police?" you ask.
"No, don't worry," he shakes his head. "We have an arrangement, all the bars in Patpong do. And <div class="tooltip">Soi Cowboy and Nana Plaza<span class="tooltiptext">the other two - more upmarket - red light zones in Bangkok</span></div>. You only get raided if you don't pay the fee."
[[Seriously?|DINBOSS-19100 Seriously?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Seriously?"
"Police don't get paid well here," he says, <<if $kateMain == "steak">>cutting a juicy slice of grilled lamb<<elseif $kateMain == "lobster">>scooping a forkful of king crab<<elseif $kateMain == "lamb">>slicing off a bloody chunk of steak<<else>>//ERROR IN KATEMAIN VAR<</if>>. "Did you know they have to buy their own guns? I'm serious, they do. You'll get to know a few of them, anyway, one or two are regulars at the club."
//TK something else to segue here//
<<include "DINBOSS-19400 Pudding">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Everybody's looking at me," you tell him.
"Of course they are," he smiles. "You look lovely."
//TK something else to segue here//
<<include "DINBOSS-19400 Pudding">>
<</page>>The meal ends with a glass of gooey butterscotch pudding, sweetness interspersed with crunchy shortbread and a tang of salt. Kriangsak sips a cognac while he [[watches you eat|DINBOSS-19500 Check please]].<<silently>>
<<emote-calm>>
<<unset $katesDrink>>
<<unset $kateStarter>>
<<unset $kateMain>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
He pays the bill with a black Kasikorn Bank corporate credit card.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
The name printed on the card is //KIET KRIANGSAK//. "Daeng" must just be a nickname, like Wun Sen. Knowing his real name will help the task force run background checks on him. <br/>
<br/>
You also get a glimpse of the other cards in his wallet: you don't recognise them all, but you do learn that he has [[accounts|DINBOSS-19600 Let's get out of here]] with American Express, Credit Suisse and Mizuho Bank of Japan.
<<else>>
The name printed on the card is //KIET KRIANGSAK//. "Daeng" must just be a nickname, like Wun Sen. Knowing his real name will help the task force run [[background checks|DINBOSS-19600 Let's get out of here]] on him.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Perception//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Come on," he says, rising to his feet. "Let's get out of here."
He walks you back through the restaurant, his hand possessively cupping your ass all the way past the other tables. "Can you have my [[car brought around|DINBOSS-19700 Lift]], please," he says to the maître d' on the way out. "White Rolls Royce."
<</page>><<silently>>
<<set $header.line1 to "''25TH FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
So he's taking you somewhere else. You were thinking he might whisk you straight to one of the rooms here after dinner. Apparently not.
<<image "/locationPhotos/thailand/lumphini/indigoHotelLiftCar.jpg" 0 1000 563 0>>\
Wherever he's taking you...it's probably for sex. He gropes your ass enthusiastically in the <<lift>> car, squeezing and stroking your rump through the thin clingy dress. //Okay, I think I can go through with this now.// The wine took the edge off.
He's interrupted by a tinny [[phone ringtone|DINBOSS-19800 Burner phone]], chirping inside his jacket.
<</page>><<silently>>
<<set $header.line1 to "''16TH FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Sorry." He pulls out a phone – cheap, disposable, obviously a <div class="tooltip">burner phone<span class="tooltiptext">a <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>mobile<</if>> phone, used for a short time then discarded. Popular with criminals, spies and adulterers</span></div> – and flips it open. "<div class="tooltip">Wah ma?<span class="tooltiptext">Talk?</span></div>"
You're close enough to hear a gruff male voice over the line, although you can't hear what he says.
"<div class="tooltip">Sawaddee krub loong<span class="tooltiptext">Hello, Uncle</span></div>" Kriangsak replies.
Could be a relative...but you know from your pre-mission research in Faslane that [[organised crime captains|DINBOSS-19900 I can talk]] are called "Uncles" here.
<</page>><<silently>>
<<set $header.line1 to "''9TH FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Chai krub, ror rod yoo krub,<span class="tooltiptext">Yes, just let me get to the car</span></div>" Kriangsak says. "<div class="tooltip">Dai krub dai, tee rarn ar han.<span class="tooltiptext">Yes, yes, at a restaurant</span></div>"
You gaze around the <<lift>> car, like you're looking for something to occupy your mind.
"<div class="tooltip">Dek mai,<span class="tooltiptext">A new girl</span></div>" he's saying. "<div class="tooltip">Mai mai pen khon Angkrit.<span class="tooltiptext">No, no, she's <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>a Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>"
//[[Look uninterested.|DINBOSS-20000 Kriangsak describes Kate]]//
<</page>><<silently>>
<<set $header.line1 to "''5TH FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Khao...<<if $kate.hairColour == "Brown">>namtarn<<elseif $kate.hairColour == "black">>dum<<elseif $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>tong<<elseif $kate.hairColour == "ginger">>daeng<<elseif $kate.hairColour == "Auburn">>daeng<<else>>//[ERROR IN KATE.HAIRCOLOUR VAR//<</if>>...<<if $kate.braSize == "small">>nom nan nan<<elseif $kate.braSize == "medium">>nom lek nan nan<<elseif $kate.braSize == "large">>nom yai<</if>>,<span class="tooltiptext">White...<<if $kate.hairColour == "Brown">>brunette<<elseif $kate.hairColour == "black">>dark hair<<elseif $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>blonde<<elseif $kate.hairColour == "ginger">>redhead<<elseif $kate.hairColour == "Auburn">>redhead<<else>>//[ERROR IN KATE.HAIRCOLOUR VAR//<</if>>... <<if $kate.braSize == "small">>perky little tits<<elseif $kate.braSize == "medium">>good tits<<elseif $kate.braSize == "large">>big tits<</if>></span></div>" he says, reeling off your best qualities. "<div class="tooltip">Ma tee rarn si, ma du ang.<span class="tooltiptext">Come to the club, see for yourself</span></div>"
The voice on the line asks a question.
"<div class="tooltip">Mai ton ni kae serv lao.<span class="tooltiptext">No, just serving drinks. For now</span></div>" Both men chuckle at that. "<div class="tooltip">Dai lei, deaw pom ja tum hai ter tum ngarn ang.<span class="tooltiptext">Fine. I'll make sure she's working</span></div>"
Kriangsak shoots you a sidelong glance.
[[Smile back.|DINBOSS-20100 To the car][$kateSays to "smile"]]
[[Gaze down at your nails.|DINBOSS-20100 To the car][$kateSays to "nails"]]
<</page>><<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set $header.line1 to "''1ST FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<<else>>
<<set $header.line1 to "''GROUND FLOOR''",
$header.line2 to "HOTEL INDIGO / MAY 2018">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "smile">>\
<<emote-mouth-smile>>\
You smile back sweetly, pretending to have no idea what he's talking about.
<<elseif $kateSays == "nails">>\
You gaze down at your nails, admiring <<if $kate.isWearing.includes("manicure")>>the pretty polish<<else>>your neatly trimmed cuticles<</if>>.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
The <<lift>> doors swoosh open, and you walk back through the lobby and out into the hot balmy night.
The Rolls Royce is waiting out front, engine purring, a porter holding open the rear door for you.
//[[Climb in.|DINBOSS-20200 Backseat]]//
<</page>><<silently>>
<<set $header.line1 to "''WIRELESS ROAD''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You climb into the back, shuffling across on the big, comfy cloth backseat. Kriangsak clambers in behind you, still talking on the phone: "<div class="tooltip">Pap na krub, gum lung kuen rod...<span class="tooltiptext">Hold on, just getting in the car</span></div>"
The big door clunks shut behind him, and the car pulls away, making an illegal u-turn back out into Wireless Road.
"<div class="tooltip">Krub loong, kui dai leaw, wah ngai krub...<span class="tooltiptext">Uncle? I can talk now, what is it</span></div>"
//[[Sit quietly and listen.|DINBOSS-20300 Listening in]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the back of the Rolls, the engine and road noise is so quiet you can still hear Uncle's voice, although it's just noise – you can't make out any of the actual words.
It sounds like he's explaining something to Kriangsak, who responds with the occasional <div class="tooltip">//dâai//<span class="tooltiptext">sure</span></div> and //mm-hmm// to let Uncle know he's keeping up.
The Rolls cruises past the US Ambassador's Residence. Kriangsak reaches across the backseat for your knee, casually pulls your legs open.
//[[Keep your knees together.|DINBOSS-20400 Reluc]]
[[Spread your legs.|DINBOSS-20500 Legs spread]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You press your knees back together. Still on the phone, Kriangsak turns to give you a sharp glare.
<span class="redHighlighter">Daeng Kriangsak ''disliked'' that.</span>
He taps you on your bare thigh – not a slap, the tap you give a pet or a child when it misbehaves. Then pulls your knee again, less gently this time.
//[[Spread your legs.|DINBOSS-20500 Legs spread]]
[[Just part them slightly.|DINBOSS-20500 Legs spread][$kateSpreadThemReluctantly to true]]//
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pulledUp-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pulledUp-pokies-"+$kate.braSize)>>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pokies-"+$kate.braSize)>>
<</if>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSpreadThemReluctantly>>\
<<unset $kateSpreadThemReluctantly>>\
You part your knees slightly. Kriangsak tugs them wider apart – annoyed – then tugs your dress up, exposing your pussy on the backseat. For a moment, you lock eyes with Asian Hulk in the rearview mirror, then his gaze shifts back to the road.
<<else>>\
You <<if hasVisited("DINBOSS-20400 Reluc")>>reluctantly<<else>>instinctively<</if>> let him spread your knees apart. He tugs up your dress, exposing your pussy on the backseat. For a moment, you lock eyes with Asian Hulk in the rearview mirror, then his gaze shifts back to the road.
<</if>>\
Kriangsak's hand cups your pubic bone, and his middle finger slips between your wet lips, finding and casually strumming your clit.
After hours of anticipating sex, your pussy's wet and responsive. His touch takes your breath away, escaping you in a [[quivery little gasp|DINBOSS-20600 Changing the day?]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Leaw ngai krub,<span class="tooltiptext">So what</span></div>" he asks on the phone, <<if hasVisited("DINBOSS-20400 Reluc")>>no longer looking at you<<else>>not looking at you<</if>>. "<div class="tooltip">Ja plean wan song kong mai krub?<span class="tooltiptext">Are we changing the drop off day</span></div>"
Uncle says something, a tinny unintelligible voice in the handset. You gasp again as Kriangsak's finger slips casually up inside you, going straight to your g-spot.
"<div class="tooltip">Dai yu, wan nai?<span class="tooltiptext">Makes sense, what day</span></div>" [[he asks|DINBOSS-20700 That's tea money day]].
<</page>><<silently>>
<<set $header.line1 to "''PHLOEN CHIT ROAD''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Uncle says something, but Kriangsak interrupts. "<div class="tooltip">Mai dai mai dai,<span class="tooltiptext">No no no</span></div>" he says, "<div class="tooltip">Wan nun Somchai pai keb ngern jak cha, mai nyak hai me ... hahaha chai leaw!<span class="tooltiptext">That's when Somchai collects the "tea money", we don't want...hahaha, exactly</span></div>"
Your eyes meet Asian Hulk's again, glancing in the rearview mirror to see you getting very skilfully [[fingerfucked in the backseat|DINBOSS-20800 BJ start]].
"Okay," says Kriangsak into the phone. "<div class="tooltip">Wan pud gor dai.<span class="tooltiptext">Wednesdays are fine</span></div>"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Pap na krub loong,<span class="tooltiptext">Hold on a second, Uncle</span></div>" he says. His finger slips out of you and then, holding the burner phone in the crook of his neck, he fumbles with his crotch, unbuckling his belt and undoing his <<trousers>>.
He glances at you expectantly as he pulls his erect cock out in the back of the car.
//[[Jerk him off.|DINBOSS-20900 Hand job]]
[[Suck it.|DINBOSS-21000 Backseat BJ]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reach out and curl your fingers round it, feeling the squidgy warm hardness in your palm.
Gently, rhythmically, you massage the shaft, tugging it up and down.
"<div class="tooltip">Pap na loong,<span class="tooltiptext">Hold on, Uncle</span></div>" he says into the phone. Then he speaks quietly to you. "Are you fifteen?" he mutters. "[[Use your mouth|DINBOSS-21000 Backseat BJ]]. <div class="tooltip">Dek ngo.<span class="tooltiptext">Stupid girl</span></div>"
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("DINBOSS-20900 Hand job")>>It's obvious what he wants. <</if>>"<div class="tooltip">Tod tee krub loong,<span class="tooltiptext">Sorry about that, Uncle</span></div>" he says as you shuffle into position in the backseat. After a moment, your lips slip onto his stiff cock. "<div class="tooltip">Wa ngai na krub?<span class="tooltiptext">You were saying</span></div>"
Uncle talks for a while; Kriangsak listens quietly; you suck cock, trying to listen, your head bobbing rhythmically up and down in the backseat.
Your ears are straining but you can't hear Uncle's words, just the tinny timbre of his voice over the soft slurping sounds of your BJ in the [[quiet car|DINBOSS-21100 Turned on]].
<</page>><<silently>>
<<set $header.line1 to "''CITY STREETS''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
You're distractingly turned on. Your pussy feels hot and wet and //neglected.//
It doesn't help that you can literally feel the erection in your mouth stiffening as you suck it. <<if _katesFantasy == "submissive">>//And I //have// to swallow,// you realise, //I can't get any on the seats.// The submissive thought makes your groin //tingle.//<<elseif _katesFantasy == "exhibitionist">>Right there, in the backseat of the car, driving through the city streets. What's going to happen when you stop at a junction? The thought of a tuk-tuk driver peering in and watching you do this makes your groin //tingle.//<<elseif _katesFantasy == "masochist">>Or how much it turned you on when he just casually shoved your legs apart. Being just pawed like that made your groin //tingle.//<</if>>
"<div class="tooltip">Kao jai krub,<span class="tooltiptext">I understand</span></div>", he says on the phone. "<div class="tooltip">Kon song mai la gun krub?<span class="tooltiptext">New courier, then</span></div>"
//[[Concentrate on the call.|DINBOSS-21200 Focus]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<set $avatar.blink to true>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
//Switch on, $kate.firstName.// "<div class="tooltip">Kao jai krub,<span class="tooltiptext">I understand</span></div>" Kriangsak is saying.
It's surprisingly hard to suck a dick while listening into half a conversation in a foreign language. You try to focus on your eavesdropping, not the dick in your mouth – but then Kriangsak grunts irritably, [[pushes your head down|DINBOSS-21210 Mindful BJ]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You miss the next part of the conversation totally, unable to do the live translation in your head //and// suck cock as fast and rhythmically as Kriangsak directs you to, using his hand on your head to control the pace.
It doesn't feel like you're sucking his cock, it feels like he's fucking your mouth. You breathe through your nose and concentrate on making your mouth [[feel good|DINBOSS-21220 Dialled back in]] on his cock.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Kriangsak's hand relaxes. You keep going at the same pace, but manage to dial your ears back in to catch the [[end of the conversation|DINBOSS-21300 Spectacular intel]].
"<div class="tooltip">Rahud derm, laew kor...umm...okay krub.<span class="tooltiptext">Same password, or...um...okay</span></div>"
A moment's peaceful silence in the car while he thinks. The //tick tock// of the dashboard clock mingles with the soft wet sounds of your lips bobbing up and down fast on his cock.
"Uhhh...<div class="tooltip">Dara rock<span class="tooltiptext">Rockstar</span></div>," he says. "<div class="tooltip">Rahud mai kue dara rock<span class="tooltiptext">New password is Rockstar</span></div>."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He finishes up the call. Jesus...you just picked up operational intel on some kind of regular courier run, //including// the day and the password.
Could be drugs, could be money laundering: you don't know how it's going to be useful, yet, but you //do// know your contact report is going to [[blow some minds|DINBOSS-21400 Back to the BJ]] when it lands in Faslane.
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-piercings-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-"+$kate.braSize)>>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pulledUp-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pulledUp-pokies-"+$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
His call's finished...but the hand on the back of your head tells you that the blowjob isn't. His free hand reaches under you to play with your tits, cupping and squeezing them and pinching your stiff nipples through your clingy dress.
//[[Suck his cock.|DINBOSS-21500 BJ]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Streets and junctions roll past outside; with your head in Kriangsak's lap, your mouth sliding up and down on his stiff cock, you lose all sense of where you are in the city.
Your jaw gets tired, and starts to ache. It's the longest blowjob you've ever given; Kriangsak pushes you firmly back down on his dick when you slow your pace.
Your forgotten pussy feels so slick and hot and sensitive that you feel like he might [[make you come|DINBOSS-21600 End of the road]] just from the way he's tweaking and tugging on your nipples.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He stays hard, but he doesn't come. Eventually, the Rolls Royce slows down and stops, and Kriangsak lets go of your hair.
You come up for air, flexing your jaw to relax it, looking around to [[see where you are|DINBOSS-22000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''TROK LAM PHU''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<emote-mouth-sexy>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<a data-passage="DINBOSS-22100 My place">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
/* <<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-twatFlash-"+$kate.braSize)>> */
<</silently>>\
<<header>>\
<<page>>\
The Rolls Royce has returned you to your hostel. Asian Hulk gets out and walks round to your door.
//[[Adjust your dress.|DINBOSS-22110 Fix your dress]]//
<</page>><<silently>>
<<emote-calm>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pokies-"+$kate.braSize)>>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-piercings-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-"+$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Pulling your dress back over your boobs, you <<if $kate.lastWornDress == "blackDeepVDualSlitJerseyMaxi">>straighten out<<else>>tug down<</if>> your hemline just as Asian Hulk opens your door.
You step up and out into the warm night, and behind you Kriangsak does as well.
[[Well...thanks for dinner.|DINBOSS-22200 Thanks for dinner][$kateSays to "thanks4Dinner"]]
[[Are you coming up?|DINBOSS-22200 Thanks for dinner][$kateSays to "rUComingUp"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks4Dinner">>\
"Thanks for dinner."
He chuckles. "You can thank me properly."
<<elseif $kateSays == "rUComingUp">>\
"Are you coming up?" you ask.
"Of course."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
//[[Walk ahead of him.|DINBOSS-22400 Courtyard]]
[[Hold his hand.|DINBOSS-22400 Courtyard][$kateIsHoldingHands to true]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You get out, straighten your dress, then cross the street with Kriangsak.
//[[Walk ahead of him.|DINBOSS-22400 Courtyard]]
[[Hold his hand.|DINBOSS-22400 Courtyard][$kateIsHoldingHands to true]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateIsHoldingHands>>\
Holding hands with your new boss – like he's a boyfriend you're bringing back from a date – you walk back into the hostel courtyard.
<<else>>\
"Come on," you say, stepping out a few paces in front. He follows your swinging hips as they lead him into the hostel courtyard.
<</if>>\
You weren't really expecting to come back here. You feel a slight [[twinge of anxiety|DINBOSS-22500 Ta da]] about parading him through the place in front of everyone; that intrinsic fear of being judged you used to get, when contemplating bringing a guy back to your <<if $kate.agency == "mi6">>halls<<else>>dorm room<</if>> at <<uni>>.
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You enter the courtyard through the front gates.
A group of handsome, dark-haired, olive-skinned guys around your age are here, drinking and playing cards – Italian backpackers, who arrived earlier in the week.
Your entrance – in this dress – stops both the game and their rapid-fire conversation dead in its tracks.
"'eyyy, <div class="tooltip">chi ha chiamato la spogliarellista?<span class="tooltiptext">who called the stripper?</span></div>" one quips for his friends.
//[[Walk past them into the lobby.|DINBOSS-22600 Lobby]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Wun Sen and his friend are still sat in the exact same place in the lobby. They twist eagerly around on the couch when they hear your heels clicking up to the door.
Their dark eyes flit between the older Asian man <<if $kateIsHoldingHands>>by your side<<else>>you're with<</if>>, and the dress, clinging to and accentuating every curve and bump of your body.
"Hi $kate.cover.firstName," Wun Sen croaks.
[[Hi Wun Sen.|DINBOSS-22700 Hi Noodle][$kateSays to "wunSen"]]
[[Hi Noodle.|DINBOSS-22700 Hi Noodle][$kateSays to "noodle"]]
<</page>><<silently>>
<<unset $kateIsHoldingHands>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "wunSen">>\
"Hi Wun Sen."
<<elseif $kateSays == "noodle">>\
"Hi Noodle."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
Leaving the boys in their couch, you lead Kriangsak over to the [[creaky wooden staircase|DINBOSS-22800 Stairs]]. He gazes around curiously at the chintzy decorations.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"How long have you been here?" Kriangsak asks as you climb up the creaking stairs.
[[Couple weeks. I just got back from a border run.|DINBOSS-22900 Kate's door][$kateSays to "coupleWeeks"]]
[[Like it?|DINBOSS-22900 Kate's door][$kateSays to "likeIt"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "coupleWeeks">>\
"Couple weeks," you tell him, fumbling for your door key in your <<handbag>>. "I just got back from a border run."
"Where did you go?"
[[Malaysia.|DINBOSS-23000 Malaysia]]
<<elseif $kateSays == "likeIt">>\
"Like it?" you ask, fumbling for your key in your <<handbag>>.
"Mmm?" he shrugs noncommittally, looking around the corridor while you unlock the door to your room.
[[Come in.|DINBOSS-23100 Come in]]
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Malaysia," you smile, unlocking the door to your room.
"Nice."
[[Come in.|DINBOSS-23100 Come in]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Well...come in."
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
You lead him into your tiny little room, clicking on the lights and the fan.
Kriangsak peers around, taking it in: single bed, old furniture, a few square <<if $kate.agency == "mi6">>feet<<else>>metres<</if>> of floor space.
Some of "$kate.cover.firstName $kate.cover.surname"'s few possessions are scattered about: her yoga mat, her makeup kit, a couple of personal photos tacked up near the bed. You've only been living this cover for a few weeks, but you feel like it [[looks authent...|DINBOSS-23200 Pushed on the bed]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Kriangsak pushes you onto the single bed. It creaks under your weight, then his as he [[climbs on|DINBOSS-23300 First kiss]]...
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-piercings-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-"+$kate.braSize)>>
<</if>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-pokies-"+$kate.braSize)>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Your first kiss with the owner of the club is short and passionate, his tongue in your mouth, his hands all over you, [[tugging at your dress|DINBOSS-23400 Dress off]]...
<</page>><<silently>>
<<removeDress>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-piercings-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/dresses/" + $kate.lastWornDress + "/30_dress-" + $kate.lastWornDress + "-exposed-"+$kate.braSize)>>
<</if>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Then he's peeling it off you. You lift your arms and the clingy, stretchy material comes off your body fast, baring your skin in the hot night air.
"Keep your shoes on when you fuck," he tells you, throwing the dress aside. "Now get on all fours."
//[[Get on all fours on the bed.|DINBOSS-24000 All fours]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn around and get up onto your hands and knees on the bedsheets, feeling very naked and vulnerable as you hesitantly offer him your ass.
"Come on, come on," he tuts, lifting you [[up into position|DINBOSS-24050 Penetration]] with a firm pull of your hips.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
The tip of his cock nudges inside your pussy and then, with a casual //thrust,// he enters your body fully, his hard dick pushing inside you all the way to the hilt.
Your breath comes out in a guttural little //unh// as the head of his cock bumps up against your cervix. After sucking his cock and being fingered in the car, your pussy is slick and hot and wet and he [[slides inside you easily|DINBOSS-24100 Fast paced fuck]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The single bed creaks and bumps the wall as Daeng Kriangsak's cock thrusts inside you at a brisk, steady pace.
Letting him do this feels shockingly taboo. But you're undercover as the kind of girl who'd let her boss fuck her. If the Task Force has got a problem with it, then they need to get real, because it's not like...
//Slap!// he smacks your ass. It stings but feels good at the same time. A soft, girlish mew escapes your lips and you instinctively [[pick up the pace|DINBOSS-24150 Creak creak]].
<</page>><<silently>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
The bedposts bump against the wall in time with the noise of slapping hips and your own sensual little mews and murmurs.
Masculine laughter ripples up from the courtyard below your window: the Italian backpackers, laughing at the sound of you being fucked and spanked.
Kriangsak smacks you again. "You like all <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls," he pants, "lazy! //Squeeze// with pussy, [[tight like fist|DINBOSS-24200 Tight like fist]], come on."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Of all the things you never expected you'd let a man do to you in bed, critiquing your performance is right up there. //What the fuck?//
//[[Squeeze your pussy tight.|DINBOSS-24250 Kegel squeeze]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You angrily clench your pelvic floor muscles once, tightly, on his thrusting cock.
//"That's// right," he murmurs, gripping your hips firmly. "Good girl, keep doing."
//[[Squeeze your pussy again.|DINBOSS-24300 Kegel squeezing]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to -4>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
You clench your pelvic muscles again and again as he fucks you.
Kriangsak murmurs in satisfaction as you make your pussy pulse on his stiff, thrusting penis. "<div class="tooltip">Dek dee<span class="tooltiptext">Good girl</span></div>," he purrs, "<div class="tooltip">dek dee<span class="tooltiptext">good girl</span></div>..."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Sexpert check'' to perform the Singapore Grip on Kriangsak. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 10>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Sexpert check.'' Target: 6. You rolled: (<<= _kateD10>>-4) = <<= _kateD10-4>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
He loves it, but your [[muscles are getting tired|DINBOSS-24700 Natural pace]] quickly.
<<else>>
He likes it, but your strength [[ebbs out of those muscles|DINBOSS-24350 Smack!]] quickly.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10-4<span class="tooltiptext">+0 //Sexpert// skill; -4 no //Singapore Grip// speciality</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You go back to just normal fucking.
//Smack!// A sharp slap cracks your ass and makes you gasp.
"Come on," he urges, "don't be lazy <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div>."
//[[Squeeze your pussy again.|DINBOSS-24400 Kegel spank]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Fuck. A few seconds break gave you enough time to recover and you give his cock another //squeeze// with your pussy muscles.
That pacifies him for about five seconds. //Smack!// "Again," he demands.
//[[Do it.|DINBOSS-24450 Kegel spanking]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Another hard //clench// with your tired pelvic muscles. Another satisfied murmur from Kriangsak; another five seconds of fucking.
//Smack!// You don't need to be told this time; you squeeze your pussy when he hits you.
And again, and again. Smack, squeeze, a few seconds break. Smack, squeeze, a few seconds break.
//"That's// it," says Kriangsak approvingly, the tone of a teacher who's coaxed a breakthrough from a student. //"That's// [[how you fuck|DINBOSS-24500 Kate orgasm]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Smack, squeeze. Smack, squeeze.// Every time you clench your tired pussy on his cock it //throbs// inside you.
You've never had to work so hard in bed in your life. //God, why won't he come.// You meet his movements with instinctive, answering thrusts of your hips, squeezing his cock in your pussy.
The stimulation is too much. You're not even sure if you're allowed to come, but you do, orgasm rippling through your body while your pussy spasms weakly on his [[hard thrusting cock|DINBOSS-24550 Kriangsak orgasm]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your reaction seems to push him over the edge. Gripping your hips tightly, he slams his cock inside you hard and fast.
Sensing he's close, you clench your pussy on his cock, as tight as you can. Three more squeezes...and suddenly his cock is erupting inside you, twitching as he [[fills you with his cum|DINBOSS-24600 Pull out]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
For a moment, you stay connected. Then he pulls out, and you slump down onto the bed, totally exhausted. Your pelvic mucles feel like your thighs do after a hill run.
You meet his dark eyes. His face looks flushed and relaxed. "No one showed you how to fuck like that?" he asks.
You shake your head.
"It's called the Singapore Grip," he says. "You learn how to do it, men will think you're very special. <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> girl who know how to fuck like a Thai. Now clean me up."
//[[Clean him up with one of your t-shirts.|DINBOSS-24300 T-shirt cleanup]]
[[Clean him up with your mouth.|DINBOSS-24400 Mouth cleanup]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Clenching muscles you hardly use isn't easy. But if you take a few seconds break between squeezes...you //can// make your pussy pulse on his dick.
<span class="greenHighlighter">Daeng Kriangsak ''loved'' that.</span>
//"That's// it," he murmurs approvingly, taking a firm grip on your hips and fucking you a little harder and faster. //"That's// how you fuck. Good girl...[[keep doing|DINBOSS-24750 Keep doing]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// This is hard but it's //hot.// Every time you clench your tired pussy on his cock it //throbs// inside you.
You're having to work hard but you can feel his excitement building, you can physically feel it. You meet his movements with instinctive, answering thrusts of your hips, squeezing his cock in your pussy.
Each thrust feels better and better. Each squeeze a hot little sacrifice. Sensation wells up in your body then an orgasm ripples through it, your pussy spasming weakly on his [[hard thrusting cock|DINBOSS-24550 Kriangsak orgasm]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You arch your back and grip your bedsheets, writhing at the sensual assault on your body. <<if $kateIsBeingNoisy>>Your voice comes out in loud, expressive mews and whimpers<<else>>Your breath comes out in soft, demure gasps<</if>> as his fingertip rhythmically massages your g-spot...
His finger slips out of you, leaving you feeling suddenly empty. The bed creaks as he moves. Kriangsak grabs your hips and [[turns you over, moving you onto your hands and knees|DINBOSS-23600 Face down ass up]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
A <<if $kate.agency == "cia" or $kate.agency == "csis">>zipper<<else>>zip<</if>> comes down behind you as he climbs between your legs.
On all fours on the bedsheets, you're facing the personal photos tacked up on the wall. You and your best friends from <<uni>>, glammed up and looking gorgeous for a big night out, beam out of a group selfie. //If you could see me now you wouldn't belie-//
Then the tip of his cock finds your wetness, nudges inside you, skin on skin. //Oh fuck.// You slump into the bed and <<if $kateIsBeingNoisy>>cry out<<else>>moan into the bedsheets<</if>> as he grabs your hips and pulls you [[fully back onto his cock|DINBOSS-23700 Squeaky bed]] with a driving thrust.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Taking a hold of your hair, he pulls you back up into position on all fours.
He picks up a quick rhythm and the single bed squeaks and creaks while his hard cock thrusts inside you. The bedposts bump against the wall in time with the noise of slapping hips and your own <<if $kateIsBeingNoisy>>sensual little mews and gasps<<else>>breathy gasps and murmurs<</if>>.
Masculine laughter ripples up from the courtyard below your window: the Italians are laughing at the sound of you [[being fucked|DINBOSS-23700 Putting on a show]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's a bit embarrassing. You feel like burying your face in the mattress, but you stay up in position instead.
Tightly gripping your hips to control your movements, Kriangsak fucks you at a brisk, insistent pace. His stiff naked dick slips back and forth [[inside your hot wet pussy|DINBOSS-23800 Kriangsak insight]] as the bed creaks and rocks and bumps against the wall.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He's old enough to be your dad, probably old enough to be your grandfather. And he's just...doing you on all fours. Confidently, casually, like getting a much younger woman into bed is no big deal for him.
For a second you wonder how many other girls he's done this with. The way he's handling you...it's just obvious that he's used to fucking young women like you. Just like Connor is.
In a moment of sudden clarity you realise that you're absolutely nothing out of the ordinary to these guys. You're just [[the latest|DINBOSS-23900 Kate orgasm]].
<</page>><<silently>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-mouth-sexy>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
All these thoughts swirl in your head while his dick thrusts inside you relentlessly.
<<if $kateIsBeingNoisy>>A set of soft, feminine cries escape your lips<<else>>Your breath comes out in a series of soft, feminine gasps and murmurs<</if>> as excitement surges up inside you...then conscious thought dissipates as an orgasm [[swells and explodes through your whole body|DINBOSS-24000 Post nut clarity]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
//Creak, bump, creak, bump.// As reality returns, you realise just how much noise the two of you are making. They can definitely hear you out in the courtyard.
Kriangsak takes a big handful of your hair, pulls your head up and back so you're arching off the bed. His cock pumps in you mercilessly as he uses your body to get off.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Sexpertise check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Sexpertise check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
Sensing he's close, you meet his movements with instinctive, answering thrusts of your hips.<br />
<br />
<span class="greenHighlighter">Daeng Kriangsak ''liked'' that.</span><br />
<br />
You squeeze your pussy tight on his cock as he [[fucks you hard|DINBOSS-24100 Kriangsak money shot]].
<<else>>
You take it stoically, letting the old Thai man pull your hair while he [[fucks you hard|DINBOSS-24100 Kriangsak money shot]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Sexpertise// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Creak, bump, creak, bump.// A little longer, a little longer and...Kriangsak moans in satisfaction as his cock bucks and spurts inside you.
The bed stops rocking and he stays inside you for a moment longer, enjoying the sensation.
Then you feel him slide out behind you. And smack your ass.
"[[Clean me up|DINBOSS-24200 Cock cleanup]]," he snaps.
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You shift around on the bed to face Kriangsak. He's still wearing his shirt and <<trousers>>, his softening cock dangling out of his clothes.
//[[Clean him up with one of your t-shirts.|DINBOSS-24300 T-shirt cleanup]]
[[Clean him up with your mouth.|DINBOSS-24400 Mouth cleanup]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reach down and grab up one of your t-shirts. He smirks as you pat and rub his dick dry with it.
<<include "DINBOSS-24500 That's enough">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You take him back into your mouth. This time it's softer and squidgier, and it tastes of a mix of his cum and your slick juices.
After a few seconds you can feel it gently beginning to stir back into life, but he stops you. <<include "DINBOSS-24500 That's enough">>
<</page>>"That's enough," he mutters.
You watch as he fastens up his <<trousers>>, picks up his jacket and slips it back on. "I'll tell Lu you can have more shifts," he says, in parting. "[[See you at work|DINBOSS-24600 Alone]]."<<silently>>
/* a test version jumps to this passage after character creation. this code removes her work clothes if the player arrived using the jump. */
<<if hasVisited("DINBOSS-24400 Mouth cleanup")>>
<<removeShoes>>
<<else>>
<<avatar-stripNaked>>
<</if>>
<<emote-mouth-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
He leaves without ceremony. You kick off your shoes and lock the door behind him.
//Fuuuck.// You slump on the bed, not sure how you should feel after that.
He came inside you. You smell of him and you need a shower.
And, probably, some time to process this, even though you don't really feel //bad// about it, not yet. //That'll probably come later,// you think, //this can't be normal.//
But you're not ready to bump into anybody in the corridor just yet. And you have [[work to do|DINBOSS-24700 Report]].
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<<wear-bathRobe-whiteBathRobe>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Tapping out a message on your phone, you hear some merriment in the courtyard outside as Kriangsak walks out past the Italians.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 23:24
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Contact report to follow. Please run full stoneghost & osrc sweep on Kiet "Daeng" Kriangsak, owner Hard Cock Cafe, vehicle white Rolls Royce <<if $kate.agency == "cia" or $kate.agency == "csis">>licence plate<<else>>registration<</if>> ending 1063
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
👌🏼 wilco. dinner ok?
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
//[[Reply "Fine why?".|DINBOSS-24800 Kate reply][$kateSays to "fineWhy"]]
[[Reply "It sucked".|DINBOSS-24800 Kate reply][$kateSays to "itSucked"]]
[[Reply "Report to follow".|DINBOSS-24800 Kate reply][$kateSays to "reportToFollow"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 23:24
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Contact report to follow. Please run full stoneghost & osrc sweep on Kiet "Daeng" Kriangsak, owner Hard Cock Cafe, vehicle white Rolls Royce <<if $kate.agency == "cia" or $kate.agency == "csis">>licence plate<<else>>registration<</if>> ending 1063
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
👌🏼 wilco. dinner ok?
</div>\
</div>\
<<if $kateSays == "fineWhy">>\
<div class="pc messages">\
<div class="messageSignal last">\
Fine why?
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
just checking. u r doing great 👍🏼
</div>\
</div>\
<<elseif $kateSays == "itSucked">>\
<div class="pc messages">\
<div class="messageSignal last">\
It sucked
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
aw. but u r doing great 👍🏼
</div>\
</div>\
<<elseif $kateSays == "reportToFollow">>\
<div class="pc messages">\
<div class="messageSignal last">\
Report to follow
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
rgr. u r doing great 👍🏼
</div>\
</div>\
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
//[[Acknowledge and sign off.|DINBOSS-25000 Keep this up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He can't possibly be praising you for learning the Singapore Grip, but it makes you feel a little better anyway. You acknowledge and sign off. You need to get started on your contact report from tonight.
You start by tapping out a transcript of Kriangsak's call with his "Uncle", from memory. You picked up real operational intel from that – timings on some kind of courier run, and a password.
You don't know how it'll be useful, yet, but it proves beyond any doubt that you're infiltrating //fast.// And you don't need to report exactly what you were doing while you [[listened in to the call|DINBOSS-25100 Report]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Cool toy? Well...in real life it's never an exploding pen, or a watch that fires poison darts. You send him a meeting location, and sign off. You need to get started on your contact report.
You start by tapping out a transcript of Kriangsak's call with his "Uncle". You picked up real operational intelligence from that – timings on some kind of courier run, and a password. Even though you're not sure how it'll be useful yet, it demonstrates beyond any doubt that you're infiltrating //fast.//
And nobody needs to know exactly what you were doing on the backseat while you were [[listening in|DINBOSS-25100 Report]].
<</page>><<silently>>
<<emote-calm>>
<<remove-makeup-lipstick>>
<<remove-makeup-blusher>>
<<remove-makeup-eyeliner>>
<<remove-makeup-eyeshadow>>
<<wear-shoes-greyToeThongFlipFlops>>
<</silently>>\
<<header>>\
<<page>>\
An hour later...you're done. You send your report, and sneak off to the bathroom to [[clean up before bed|DINBOSS-26000 Title card]].
After all the noise you made with Kriangsak...you really don't feel like running into any of your fellow guests tonight.
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<wear-top-whiteRipleyVest>>
<<emote-eyes-squint>>
<</silently>>\
<a data-passage="GOF-100 Woken by breakfast">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/bangkokNextMorningTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-calm>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<a data-passage="FNG-1100 Night market">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/ratchadaNightMarket/ratchadaTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''RATCHADA TRAIN MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
It's weird to think of a thong and heels as professional attire, but this is the weirdest your job has ever been. You head over to one of the big night markets to do some shopping.
<<image "/locationPhotos/thailand/ratchadaNightMarket/ratchadaStalls2.jpg" 170 1000 563 0>>\
Ratchada Train Market (so called because it's near a train station) is buzzy and sprawling, infinitely bigger than Patpong's two streets. Hundreds and hundreds of brightly coloured market stalls are crammed together in the hot night air.
The bustling crowds are much less touristy than Patpong; most of the people shopping, and haggling, and grabbing street food for dinner are Asian.
//[[Look for underwear.|FNG-2000 Underwear stall]]//
//[[Look for shoes.|FNG-3000 Shoe stall]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are lots and lots of clothes stalls selling tees and sundresses and flowery shirts. After some walking around, you find one that sells underwear – drab and comfy boxers for men, and skimpy, pretty, brightly-coloured scraps of lace and lycra for women.
You peer over them, trying to picture yourself wearing...just this, for a whole night in a bar. It seems so surreal.
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Underwear stall</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="bikini-lines-Table-item"><img src="media/ui/ratchadaNightMarketStalls/001a.jpg" onmouseover="this.src='media/ui/ratchadaNightMarketStalls/001b.jpg'" onmouseout="this.src='media/ui/ratchadaNightMarketStalls/001a.jpg'" /> [[Buy pink thong.|FNG-2100 Thong purchase][$purchasedThong to "pinkThongWithCentralBow"]]</td>
<td class="bikini-lines-Table-item"><img src="media/ui/ratchadaNightMarketStalls/002a.jpg" onmouseover="this.src='media/ui/ratchadaNightMarketStalls/002b.jpg'" onmouseout="this.src='media/ui/ratchadaNightMarketStalls/002a.jpg'" /> <<link "Buy leopard print <<knickers>>." "FNG-2100 Thong purchase">><<set $purchasedThong to "leopardPrintMidiWithSplitSide">><</link>></td>
<td class="bikini-lines-Table-item"><img src="media/ui/ratchadaNightMarketStalls/003a.jpg" onmouseover="this.src='media/ui/ratchadaNightMarketStalls/003b.jpg'" onmouseout="this.src='media/ui/ratchadaNightMarketStalls/003a.jpg'" /> <<link "Buy red wine thong." "FNG-2100 Thong purchase">><<set $purchasedThong to "redWineThongWith2Bows">><</link>></td>
</tr>
<tr>
<td class="bikini-lines-Table-item"><img src="media/ui/ratchadaNightMarketStalls/004a.jpg" onmouseover="this.src='media/ui/ratchadaNightMarketStalls/004b.jpg'" onmouseout="this.src='media/ui/ratchadaNightMarketStalls/004a.jpg'" /> <<link "Buy ocean dot <<knickers>>." "FNG-2100 Thong purchase">><<set $purchasedThong to "oceanDotStringBikiniPanties">><</link>></td>
<td class="bikini-lines-Table-item"><img src="media/ui/ratchadaNightMarketStalls/005a.jpg" onmouseover="this.src='media/ui/ratchadaNightMarketStalls/005b.jpg'" onmouseout="this.src='media/ui/ratchadaNightMarketStalls/005a.jpg'" /> <<link "Buy hot pink boyshorts." "FNG-2100 Thong purchase">><<set $purchasedThong to "hotPinkCottonBoyshorts">><</link>></td>
<td class="bikini-lines-Table-item"><img src="media/ui/ratchadaNightMarketStalls/006a.jpg" onmouseover="this.src='media/ui/ratchadaNightMarketStalls/006b.jpg'" onmouseout="this.src='media/ui/ratchadaNightMarketStalls/006a.jpg'" /> <<link "Buy red low rise thong." "FNG-2100 Thong purchase">><<set $purchasedThong to "redLowRiseThong">><</link>></td>
</tr>
</tbody>
</table>
<</page>><<silently>>
<<if $purchasedThong == "hotPinkCottonBoyshorts">>
<<if $kate.agency == "mi6">>
<<set _thongDescription to "a pair of bright pink knickers. They're cute and they'll give your bum some coverage">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _thongDescription to "a pair of bright pink undies">>
<<else>>
<<set _thongDescription to "a pair of bright pink panties">>
<</if>>
<<set _knickersPronoun to "them">>
<<elseif $purchasedThong == "leopardPrintMidiWithSplitSide">>
<<if $kate.agency == "mi6">>
<<set _thongDescription to "some leopard print knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _thongDescription to "some leopard print undies">>
<<else>>
<<set _thongDescription to "some leopard print panties">>
<</if>>
<<set _knickersPronoun to "them">>
<<elseif $purchasedThong == "oceanDotStringBikiniPanties">>
<<if $kate.agency == "mi6">>
<<set _thongDescription to "some polka dot knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _thongDescription to "some polka dot undies">>
<<else>>
<<set _thongDescription to "some polka dot panties">>
<</if>>
<<set _knickersPronoun to "them">>
<<elseif $purchasedThong == "pinkThongWithCentralBow">>
<<set _thongDescription to "a stretchy little scrap of pink lycra">>
<<set _knickersPronoun to "it">>
<<elseif $purchasedThong == "redLowRiseThong">>
<<set _thongDescription to "a stretchy little scrap of red lycra">>
<<set _knickersPronoun to "it">>
<<elseif $purchasedThong == "redWineThongWith2Bows">>
<<set _thongDescription to "a stretchy little scrap of burgundy lycra">>
<<set _knickersPronoun to "it">>
<<else>>
<<set _thongDescription to "[ERROR IN THONGDESCRIPTION VAR]">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You trade a red <div class="tooltip">฿100<span class="tooltiptext"><<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknote for _thongDescription.
A middle-aged Asian man, standing nearby, watched the whole transaction with interest, probably picturing you wearing _knickersPronoun.
That's kind of creepy, but tomorrow <<if _knickersPronoun == "it">>it's<<else>>they're<</if>> all you'll be wearing, so...//better get used to it, I guess.//
<<if hasVisited("FNG-3100 Shoe purchase")>>\
<<include "FNG-3900 Leaving text">>
<<else>>\
//[[Look for some shoes.|FNG-3000 Shoe stall]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You find a stall selling knock-off designer shoes and <<handbag>>s, and look for a set of <<if $kate.agency == "cia" or $kate.agency == "csis">>pumps<<else>>high heels<</if>> to wear to work tomorrow.
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Shoes stall</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="bikini-lines-Table-item">[img[($imagePath.ui + "ratchadaNightMarketStalls/shoes001.jpg")]] <<link "Buy pink strappy sandals." "FNG-3100 Shoe purchase">><<set $purchasedHeels to "pinkStrappyStilettoHeelSandals">><</link>></td>
<td class="bikini-lines-Table-item">[img[($imagePath.ui + "ratchadaNightMarketStalls/shoes002.jpg")]] <<link "Buy red velvet strappy sandals." "FNG-3100 Shoe purchase">><<set $purchasedHeels to "redVelvetCrissCrossStrappyStilettoHeelSandals">><</link>></td>
<td class="bikini-lines-Table-item">[img[($imagePath.ui + "ratchadaNightMarketStalls/shoes003.jpg")]] <<link "Buy nude peeptoe heels." "FNG-3100 Shoe purchase">><<set $purchasedHeels to "nudePeepToeHeels">><</link>></td>
</tr>
<tr>
<td class="bikini-lines-Table-item">[img[($imagePath.ui + "ratchadaNightMarketStalls/shoes004.jpg")]] <<link "Buy red heels." "FNG-3100 Shoe purchase">><<set $purchasedHeels to "redValentinoStilettos">><</link>></td>
<td class="bikini-lines-Table-item">[img[($imagePath.ui + "ratchadaNightMarketStalls/shoes005.jpg")]] <<link "Buy leopard strappy sandals." "FNG-3100 Shoe purchase">><<set $purchasedHeels to "leopardStrappyHighHeelSandals">><</link>></td>
<td class="bikini-lines-Table-item">[img[($imagePath.ui + "ratchadaNightMarketStalls/shoes006.jpg")]] <<link "Buy black heels." "FNG-3100 Shoe purchase">><<set $purchasedHeels to "blackElegantPumps">><</link>></td>
</tr>
</tbody>
</table>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They're <div class="tooltip">฿400<span class="tooltiptext"><<if $kate.agency == "cia">>$12<<elseif $kate.agency == "mi6">>£8<<elseif $kate.agency == "asis">>$16<<elseif $kate.agency == "csis">>$16<<elseif $kate.agency == "nzsis">>$16<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. That's kind of expensive (for a night market), but they're well made, and you've got to do an 11-hour work shift in them tomorrow. You have a feeling that your feet are going to be in absolute bits by 2 <small>AM.</small>
<<if hasVisited("FNG-2100 Thong purchase")>>\
<<include "FNG-3900 Leaving text">>
<<else>>\
//[[Look for some underwear.|FNG-2000 Underwear stall]]//
<</if>>\
<</page>>There are a million stalls selling clothes and souvenirs and thotchkes that you'd like to look at. But there's a small chance you're under surveillance now, and "$kate.cover.firstName $kate.cover.surname" just blew almost a day's wages on <<knickers>> and spike heels – you'd better not buy anything else. //Hopefully the tips are good.//
//[[Leave the night market.|FNG-4000 Title card]]//<<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<a data-passage="FNG-4100 Back at the hostel">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hey $kate.cover.firstName."
The hostel has a few communal areas: the breakfast bar, the shared women's bathroom, and a courtyard that's a nice place to sit and read or drink a beer. Over the past few days you've gotten to know a few of the other guests staying here.
Danny and Shira – a photogenic Israeli couple, backpacking around whilst trying to kick-start their careers as influencers – are out in the courtyard drinking bottles of Chang with Vish and Jaya, newlyweds from India.
//[[Join them for a drink.|FNG-4200 Join them for a drink]]
[[Straight to bed.|FNG-4300 Early night]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pull up a chair and join them. The landlady, Mrs Chu, brings you out a cold green bottle of Chang.
"Where have you been?" asks Jaya. Her thick Indian accent is so songful, you enjoy hearing everything she says. You have to force yourself not to smile when she talks, so she doesn't think you're making fun of her.
[[Night market.|FNG-4210 Night market]]
[[Khao San.|FNG-4220 Siam Paragon][$kateSays to "khaoSan"]]
[[Just walking.|FNG-4220 Siam Paragon][$kateSays to "streetwalker"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Night market," you answer.
"Ooh, any bargains?"
Showing off your new <<knickers>> and heels would raise some questions you'd rather not answer, so you'd better be discreet.
[[No, just window shopping.|FNG-4220 Siam Paragon][$kateSays to "windowShopping"]]
[[Just..."woman things".|FNG-4220 Siam Paragon][$kateSays to "ladyThings"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "windowShopping">>\
"<<if $kate.agency == "cia" or $kate.agency == "csis">>Nope<<else>>Nah<</if>>, just window shopping."
"Cool. We're all going to <div class="tooltip">Siam Paragon<span class="tooltiptext">a luxury mega mall complex</span></div> tomorrow if you want to come."
<<elseif $kateSays == "ladyThings">>\
"Just, uh, woman things," you answer.
That does the trick. Nobody wants to get into that topic, and it's not like they'll search your bag for <<if $kate.agency == "asis" or $kate.agency == "nzsis">>Moxies<<else>>Tampax<</if>>.
"Uh huh. We're all going to <div class="tooltip">Siam Paragon<span class="tooltiptext">a luxury mega mall complex</span></div> tomorrow if you want to come."
<<elseif $kateSays == "khaoSan">>\
"Khao San," you lie.
"Oh cool. We're all going to <div class="tooltip">Siam Paragon<span class="tooltiptext">a luxury mega mall complex</span></div> tomorrow if you want to come."
<<elseif $kateSays == "streetwalker">>\
"Just walking," you lie.
"I love this city at night," Jaya enthuses. "Hey, we're all going to <div class="tooltip">Siam Paragon<span class="tooltiptext">a luxury mega mall complex</span></div> tomorrow if you want to come."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Thanks, but I'm broke.|FNG-4230 I'm broke]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, but I'm broke." //Plus I have to go work in a topless bar tomorrow.//
"$kate.cover.firstName, we told you, you should get into Instagram," Danny urges.
"We're nearly at six thousand followers now," says Shira. "We can help you, give you a boost."
//Heh. Side hustling on Instagram. <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> would throw a fit.//
It's nice that they're trying to fix your problems, but you can't tell them the real reason you're not doing it.
[[Don't worry, I'll figure something out.|FNG-4240 I got this]]
<span class="greyedOut">//[Fish for compliments]//</span> [[I'm not hot enough.|FNG-4250 Who me?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry," you tell them, "I'll figure something out."
<<include "FNG-4270 Good chat">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Meh," you wave dismissively. "I'm not hot enough."
This cues a very pleasant wave of praise for your looks, which you pretend not to enjoy. But you quite like this topic when it comes up, because it's flattering to be rated in the same league as conventionally beautiful [[Danny and Shira|FNG-4260 Change of topic]].
/* You've noticed that nobody ever suggests //Jaya// should try to earn some money with a bikini and a camera...which makes talking about it with her and Vish feel even better for some reason.
//Is this what it felt like to be one of the mean girls in school?// You always thought they were just bitches, but it's honestly kind of thrilling to make her and her boyfriend gush about [[how hot you are|FNG-4260 Change of topic]]. */
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<<include "FNG-4270 Good chat">>
<</page>>The conversation moves on, and you drink and chat with your backpacking buddies until late in the night.
The long talk brings back memories of <<uni>> – impromptu drinking sessions that turned into hours-long discussions and debates under the stars.
As always, you have to be guarded about your own life. But it feels good to just talk and laugh and listen anyway. //I've missed just talking like this,// you think as you set down your last empty bottle of Chang. It's [[time for bed|FNG-5000 Title card]].<<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shorts-offWhiteVelour70sTrackShorts>>
<<wear-top-petrolBlueDeathHornetCropTop>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You say hi, but decide to get an early night instead of staying up.
Sounds of talking and laughter and clinking bottles drift up to your room while you're trying to relax. But eventually, you [[drift off into dreams|FNG-5000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''SOI PATPONG 1''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-ring-transmitterRing>>
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>
<<wear-bra-nudeStrapless>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-whiteRibbedButtonUpCroppedTShirt>>
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>
<<wear-bigBlackSunglasses>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<page>>\
//[[NEXT DAY...|FNG-5100 Patpong title card]]//
<</page>><<silently>>
<</silently>>\
<a data-passage="FNG-5200 Patpong by day">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/patpongDayTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Patpong 1 is a different beast in the daytime.
You arrive while they're setting up the night market. The <div class="tooltip">soi<span class="tooltiptext">street</span></div> looks and sounds like a construction site; clangs and crashes as metal poles and wooden boards are assembled into market stalls up and down the length of the street.
<<image "/locationPhotos/thailand/patpong/patpongNightMarketSetup.jpg" 80 1000 400 0>>\
The forest of neon signs, so glamorous at night, seems shoddy and lifeless in the daytime: just dirty glass tubes and shabbily rigged cables, sprouting grotesquely out of rough holes in the buildings.
//[[Head to the Hard Cock Cafe.|FNG-5300 HCC exterior]]//
<</page>><<silently>>
<<set $header.line1 to "''SOI PATPONG 2''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You cut through a little <div class="tooltip">trok<span class="tooltiptext">alley</span></div> into Soi Patpong 2. Dusty electrical cables criss-cross the street overhead, knotted and draped together like bundles of tendons.
A few bars are open, blaring music out into the quiet street. The Hard Cock Cafe's tacky neon sign is dusty and dead. It looks closed – closed //down,// even.
But the front door is slightly ajar, propped open with a broken brick.
//[[Go inside.|FNG-5400 Entry corridor]]//
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
You push the door, and step through into dark, cool air.
The gloomy, grubby entrance corridor is even gloomier without all the neon. It takes your eyes a moment to adjust to the dim illumination supplied by a few lamps.
You head through the corridor, past the <span class="imageLink"><<link "naked">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/mileyCyrus.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <span class="imageLink"><<link "female">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/ritaOra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <span class="imageLink"><<link "rockstars">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/pink.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the walls, up to the swing doors that lead into the main club.
It's weird, moving through a club in the daytime, with no music; like creeping around somewhere you're not supposed to be. You feel an urge to stay quiet. But the door squeaks noisily when you [[push it open|FNG-5500 Main club]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The main club looks forlorn and empty in the daytime. Starkly lit and cavernous.
Just one person's here; a middle-aged Thai woman, sitting at the bar alone. She looks up from her phone when the swing door squeaks open.
Dressed smartly in a pencil skirt and ruffled blouse, you could take her for an office worker if you passed her in the street. Some ageing secretary or office administrator, [[perhaps|FNG-5600 Eye contact]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Although...there is something <<if $kate.agency == "cia" or $kate.agency == "csis">>tacky<<else>>tarty<</if>> about her look. The shoes, maybe, or the makeup; you'd never wear heels that high or lipstick that red to the office.
Your eyes meet when she looks up at you. She smiles: a wide, scarlet smile, that doesn't quite reach her eyes.
//[[Join her at the bar.|FNG-5800 Meeting Miss Lu]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Welcome, welcome," she stands up to greet you warmly, her voice deep and hoarse. "We speak on phone. I'm Lu."
<span class="greyedOut">//[Offer a handshake]//</span> <<link "$kate.cover.firstName." "FNG-5810 Nice 2 meet u">><</link>>
<span class="greyedOut">//[Bow traditionally to her]//</span> <<link "Sawatdee kha." "FNG-5820 Wai there">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.cover.firstName," you reply. Her handshake is firm but gentle.
"Welcome to club," she says. "Let's [[go to office|FNG-6000 Kate follows Lu to the office]], we talk."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You press your palms together and dip your head in a //wai,// the traditional greeting bow of Thailand. <div class="tooltip">"Sawatdee kha."<span class="tooltiptext">Hello</span></div>
<span class="yellowHighlighter">Miss Lu was ''surprised'' by that.</span>
"<div class="tooltip">Pood thai dai rer?<span class="tooltiptext">You speak Thai?</span></div>" she asks.
[[Huh?|FNG-5830 No comprende][$kateSays to "huh"]]
[[Sorry, I didn't understand.|FNG-5830 No comprende][$kateSays to "sorry"]]
//[[Look blank.|FNG-5830 No comprende][$kateSays to "blankLook"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "huh">>\
"Huh?"
<<elseif $kateSays == "sorry">>\
"Uh, sorry, I didn't understand..."
<<elseif $kateSays == "blankLook">>\
You put on your best confused expression.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<span class="greenHighlighter">Miss Lu ''liked'' that.</span>
"I ask if you speak Thai. Never mind, <div class="tooltip">sawatdee kha<span class="tooltiptext">Hello</span></div>." She presses her hands together and offers you a //wai// in return. "Welcome to club. Let's [[go to office|FNG-6000 Kate follows Lu to the office]], we talk."
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
You follow her across the dance floor. The sticky wooden floor hasn't been cleaned in a while. Your sandals make a soft //shlep shlep// sound as you cross it.
Lu leads you to a black door near the stage. It's secured with a keypad lock and marked with a no entry symbol.
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/noEntrySign.gif" + '>'>>
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 5>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 6. You rolled: (_kateD10+1) = <<= _kateD10+1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $kateSawTheDoorCode to true>>
She tries to block your view, but you catch the [[door code|FNG-6100 Backstage]] anyway, 1-6-1-0.
<<else>>
She blocks your view with her body when she punches in the [[door code|FNG-6100 Backstage]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+1<span class="tooltiptext">+1 //Perception//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSawTheDoorCode>>//1610, 1610, 1610.// <</if>>You pass through into a dingy backstage corridor, lit by tube lights that flicker and buzz overhead.
It's just a corridor. But you feel a little buzz of excitement anyway. This is it: you're starting to see parts of the site that a male officer never would.
You try to memorise everything you can for the debrief. //Staff toilet...some kind of closet...ah, fire exit.// That door's tactically relevant - you'll need to learn where it comes out later.
//[[Follow along and observe.|FNG-6200 Backstage corridor]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
You turn right and follow Lu down a long hallway – two unmarked doors on your left, a long plain wall on your right. You think you're passing along behind the stage now.
The right-hand wall is carpeted over, floor to ceiling – maybe to deaden the music when the club's open?
Lu walks you to the far door, at the end of the corridor on the left. It's secured by another keypad lock.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 5>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 6. You rolled: (_kateD10+1) = <<= _kateD10+1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $kateSawTheOfficeDoorCode to true>>
<<if $kateSawTheDoorCode>>
Different code for this one, [["6-3-9-0"|FNG-6300 Manager's office]].
<<else>>
You catch it this time, [["6-3-9-0"|FNG-6300 Manager's office]].
<</if>>
<<else>>
<<if $kateSawTheDoorCode>>
You don't catch the code [[this time|FNG-6300 Manager's office]].
<<else>>
She blocks your view with her body again when she [[punches in the code|FNG-6300 Manager's office]].
<</if>>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+1<span class="tooltiptext">+1 //Perception//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
<<if $kateSawTheDoorCode and $kateSawTheOfficeDoorCode>>//6390, 1610. 6390, 1610.// <<elseif $kateSawTheOfficeDoorCode>>//6390, 6390, 6390.// <</if>>You step through to an office that smells of burned incense. It's cleaner than the rest of the place, moodily lit and decorated with an assortment of Asian bric-a-brac. Fish swim in a brightly lit tank on the back wall.
A window on the left wall looks directly into a feminine dressing room next door: makeup benches, lit up beauty mirrors, burgundy flock wallpaper like something out of //Moulin Rouge.//
You count four, six, eight...ten young women through there, chatting and doing their makeup. Some are in their street clothes, a couple are [[in their underwear|FNG-6400 Bargirls]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Two are white, the rest are asian. One of the white girls is a blonde you haven't seen before; the other is the barmaid you remember from last week, Pigtails.
In normal street clothes and with no makeup, she looks much less vampy and sexual than before. Just a [[normal girl|FNG-6500 One way mirror]], the kind you wouldn't look twice at in the street.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The window must be mirrored on their side; you're looking straight into her eyes, but she can't see you.
It's a creepy feeling: like watching animatronics, not real women. Like if <<if $kate.agency == "cia">>Disneyland<<elseif $kate.agency == "mi6">>EuroDisney<<elseif $kate.agency == "asis">>Dreamworld<<elseif $kate.agency == "csis">>Wonderland<<elseif $kate.agency == "nzsis">>Rainbow's End<<else>>ERROR IN KATE.AGENCY VAR<</if>> opened a Strip Club World, to entertain the dads.
"Sit, sit," Lu tells you, gesturing to [[the couch|FNG-6400 Kate sits]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Lu sits in the office chair as you sit down on the couch. She crosses her legs; her tight pencil skirt rides up above her black-stockinged knees. You can tell they're stockings from the little bumps on her thigh.
There's a bank of TV screens on one wall, all switched off. Internal surveillance? //That could be important.//
"So," says Lu, with a scarlet smile that shows the nicotine stains on the necks of her teeth. "Ever-one like your photo. You think about <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> job instead? Pay a lot more."
[[How much more?|FNG-6420 How much more?]]
[[Couldn't imagine doing that.|FNG-6410 Couldn't imagine]]
[[I'm not interested.|FNG-6500 Not interested]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I couldn't imagine doing that," you say, shaking your head. That's true: maybe '$kate.cover.firstName $kate.cover.surname' could end up selling her body...but she didn't go through <<if $kate.agency == "cia">>four<<else>>three<</if>> years of <<university>> education and get selected for <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
"Why not?" Lu asks. "It jus' sex. It normal here. Lot of Thai girl do it. You make lot of money."
[[How much?|FNG-6420 How much more?]]
[[No thanks.|FNG-6500 Not interested][$kateSaidNoThanks to true]]
[[I'm not interested.|FNG-6500 Not interested]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-6410 Couldn't imagine")>>\
"Well...how much?" you ask.
<<else>>\
"Well...how much more?" you ask.
<</if>>\
<span class="greenHighlighter">Miss Lu ''liked'' that.</span>
"Lot more," she promises. "What barmaid get pay in month...you get pay in one night."
Connor told you a barmaid can clear ฿10K a month. So, working as a prostitute here would earn you...<<if $kate.agency == "cia">>$300<<elseif $kate.agency == "mi6">>£200<<elseif $kate.agency == "asis">>$400<<elseif $kate.agency == "csis">>$400<<elseif $kate.agency == "nzsis">>$400<<else>>ERROR IN KATE.AGENCY VAR<</if>> a night.
Interesting to be straight-up told your market value. It's a little short of the million <<if $kate.agency == "mi6">>dollars<<else>>bucks<</if>> it took to get Demi Moore up to Robert Redford's room in //Indecent Proposal.// And it's probably worse for the mission anyway – you want to be in here //more// of the time, not less.
[[It's not for me.|FNG-6500 Not interested][$kateSaidNotForMe to true]]
[[No thanks.|FNG-6500 Not interested][$kateSaidNoThanks to true]]
[[I'm not interested.|FNG-6500 Not interested]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<if $kate.agency == "cia">>
<<set _barLocation to "the States">>
<<elseif $kate.agency == "mi6">>
<<set _barLocation to "London">>
<<elseif $kate.agency == "asis">>
<<set _barLocation to "Sydney">>
<<elseif $kate.agency == "csis">>
<<set _barLocation to "Toronto">>
<<elseif $kate.agency == "nzsis">>
<<set _barLocation to "New Zealand">>
<<else>>
<<set _barLocation to "ERROR IN TEMPVAR TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSaidNoThanks>>\
<<unset $kateSaidNoThanks>>\
You shake your head<<if hasVisited("FNG-6410 Couldn't imagine")>> again<</if>>. "No thanks."
<<elseif $kateSaidNotForMe>>\
<<unset $kateSaidNotForMe>>\
You shake your head<<if hasVisited("FNG-6410 Couldn't imagine")>> again<</if>>. "It's not for me."
<<else>>\
You shake your head<<if hasVisited("FNG-6410 Couldn't imagine")>> again<</if>>. "I'm just here about the barmaid job."
<</if>>\
"Okay, fine. Jus' barmaid for now. Have you work like this before?"
<<link "I worked in a bar, back in _barLocation." "FNG-6600 Kate's experience">><</link>>
<</page>><<silently>>
<<emote-mouth-oh>>
<<if $kate.agency == "cia">>
<<set _barLocation to "the States">>
<<elseif $kate.agency == "mi6">>
<<set _barLocation to "London">>
<<elseif $kate.agency == "asis">>
<<set _barLocation to "Sydney">>
<<elseif $kate.agency == "csis">>
<<set _barLocation to "Toronto">>
<<elseif $kate.agency == "nzsis">>
<<set _barLocation to "New Zealand">>
<<else>>
<<set _barLocation to "ERROR IN TEMPVAR TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I worked in a bar for nine months," you tell her. "Back in _barLocation."
That's true: you worked at Carlucci's after <<uni>>, while you waited forever for <<if $kate.agency == "cia">>the Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> to get through your security vetting. All your friends were starting cool careers while you served drinks in high heels.
Clark and <<Olivia>> agreed you should work that experience into your <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div>, in case it helped with your recruitment. You felt clever when you proposed it. In the end, Connor didn't give the remotest fuck, of course.
"What sor' of bar?" Lu asks.
[[A wine bar. Not topless.|FNG-6700 Wine bar, not topless]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Just a normal wine bar," you tell her. "Not topless."
She nods, satisfied. It's funny; when <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> finally accepted you for training, you assumed your bartending days were over. Yet here you are, back again...only this time, in about 95% less uniform.
"Okay," says Lu, "so you pick it up easy. Jus' few things different here. Firs' you need [[stage name|FNG-7000 Stripper name]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<<set $stripperNames to [
"Ellie",
"Daisy",
"Jess",
"Samantha",
"Emily",
"Katie",
"Nina",
"Sophie",
"Scarlett",
"Penny",
"Hannah",
"Lucy",
"Leah",
"Bella",
"Dani",
"Liv"
]>>
<<set $stripperNames.delete($kate.firstName, $kate.cover.firstName)>>
<<set $nameOption1 to $stripperNames.pluck()>>
<<set $nameOption2 to $stripperNames.pluck()>>
<<set $nameOption3 to $stripperNames.pluck()>>
<<if $kate.firstName == "Sam" or $kate.cover.firstName == "Sam" or $kate.cover.firstName == "Samantha" or $kate.cover.firstName == "Samm" or $kate.cover.firstName == "Amanda" or $kate.cover.firstName == "Mandy">>
<<set $stripperNames.delete("Samantha")>>
<</if>>
<<if $kate.firstName == "Jessica" or $kate.cover.firstName == "Jessica">>
<<set $stripperNames.delete("Jess")>>
<</if>>
<<if $kate.firstName == "Kate" or $kate.cover.firstName == "Kate">>
<<set $stripperNames.delete("Katie")>>
<</if>>
<<if $kate.firstName == "Penelope" or $kate.cover.firstName == "Penelope">>
<<set $stripperNames.delete("Penny")>>
<</if>>
<<if $kate.firstName == "Sophia" or $kate.cover.firstName == "Sophia">>
<<set $stripperNames.delete("Sophie")>>
<</if>>
<<if $kate.firstName == "Danielle" or $kate.cover.firstName == "Danielle" or $kate.firstName == "Daniella" or $kate.cover.firstName == "Daniella">>
<<set $stripperNames.delete("Dani")>>
<</if>>
<<if $kate.firstName == "Olivia" or $kate.cover.firstName == "Olivia" or $kate.firstName == "Liv" or $kate.cover.firstName == "Liv">>
<<set $stripperNames.delete("Liv")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"All girl go by stage name here," she explains. "It for protection. For you, hmmm..."
She drums her fingers on the desk, thinking. "You look like a...<<link "$nameOption1" "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption1>><</link>>, I think. Or maybe...<<link "$nameOption2" "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption2>><</link>>."
[[Can I pick my own?|FNG-7010 Can I pick my own?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Can I pick my own?"
"No. We pick name. <<link "$nameOption1" "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption1>><</link>>, <<link "$nameOption2" "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption2>><</link>> or...umm...<<link "$nameOption3" "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption3>><</link>>," she pronounces.
[[I don't like any of them.|FNG-7020 I don't like them]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I don't like any of them."
<span class="redHighlighter">Miss Lu ''disliked'' that.</span>
"Too bad. Choo' one."
<<link "$nameOption1." "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption1>><</link>>
<<link "$nameOption2." "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption2>><</link>>
<<link "$nameOption3." "FNG-7100 Kate accepts a stripper name">><<set $kate.stripperName to $nameOption3>><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<unset $stripperNames>>
<<unset $nameOption1>>
<<unset $nameOption2>>
<<unset $nameOption3>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-7010 Can I pick my own?")>>\
"Um," you shrug. "$kate.stripperName?"
<<else>>\
"Umm....$kate.stripperName works," you shrug, "I guess."
<</if>>\
"$kate.stripperName, fine." She writes that down. "Okay. Connor he say you not have blue book. It not problem. Can I see passpor'?"
You produce the little <<if $kate.agency == "cia">>blue<<elseif $kate.agency == "mi6">>red<<elseif $kate.agency == "asis">>blue<<elseif $kate.agency == "csis">>blue<<elseif $kate.agency == "nzsis">>black<<else>>ERROR IN KATE.AGENCY VAR<</if>> booklet from your <<handbag>>, and pass it over. She flips through it perfunctorily, then drops it into the in-tray on the desk.
"I keep it for while," she says. "Police need to see. Plus, don' worry about visa no more, we have fren' in visa office. He stamp for you when you need. No problem." She smiles toothily.
[[Um...okay.|FNG-8100 Ok]]
[[I'd rather keep it.|FNG-8010 Rather keep it]]
[[When can I have it back?|FNG-8200 For how long?]]
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName," she nods, satisfied. "Pretty name, pretty girl. Okay, jus' some paperwork now. Connor say you not have blue book. That no problem. Can I see passpor'?"
You produce the little <<if $kate.agency == "cia">>blue<<elseif $kate.agency == "mi6">>red<<elseif $kate.agency == "asis">>blue<<elseif $kate.agency == "csis">>blue<<elseif $kate.agency == "nzsis">>black<<else>>ERROR IN KATE.AGENCY VAR<</if>> booklet from your <<handbag>>, and pass it over. She flips through it perfunctorily, then drops it into the in-tray on the desk.
"I keep it for while," she says. "Police need to see. Plus, don' worry about visa no more, we have fren' in visa office. He stamp for you when you need. No problem." She smiles toothily.
[[Um...okay.|FNG-8100 Ok]]
[[I'd rather keep it.|FNG-8010 Rather keep it]]
[[When can I have it back?|FNG-8200 For how long?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I'd rather keep it."
<span class="redHighlighter">Miss Lu ''disliked'' that.</span>
"Too bad." She shrugs matter-of-factly. "We keep it. Now: you need fill this form..."
//[[Fill out the form.|FNG-8200 Personnel form]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Um...okay."
You're not truly worried about losing it. It's forged, you've got another one in your bug-out bag at the safehouse, and you could just report to any friendly embassy and get whisked out on a diplomatic flight anyway, very few questions asked. But you act out a moment of inner concern about having it taken away.
"You need fill this form..." she slides a document and a pen across the desk.
//[[Fill out the form.|FNG-8200 Personnel form]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"When can I have it back?"
"Few day, few week," she shrugs dismissively. "Let me know if you need sooner. No problem."
[[Um...okay.|FNG-8100 Ok]]
[[I'd rather keep it.|FNG-8010 Rather keep it]]
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Filling out a form before you're allowed to do something reminds you of <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>>, except for the spelling errors and faintly disturbing mish mash of fonts on the page.
It's standard work admin stuff: name, contact number, address in Bangkok, emergency contact. For that last, you write down the name and number of your "uncle" <<if $kate.agency == "cia">>back in the States<<elseif $kate.agency == "mi6">>back in England<<elseif $kate.agency == "asis">>back in Oz<<elseif $kate.agency == "csis">>back in Canada<<elseif $kate.agency == "nzsis">>back in NZ<<else>>ERROR IN KATE.AGENCY VAR<</if>> – in reality, a <div class="tooltip">backstop<span class="tooltiptext">an officer acting as part of an alibi or cover story</span></div> you set up during mission prep with Clark and <<Olivia>>.
When you're done, the form goes into the in-tray with your passport. "<<if hasVisited("FNG-8010 Rather keep it")>>There. <</if>>All done," smiles Lu. "Okay, time for you [[meet the girls|FNG-9000 Meeting the girls]]."
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<<set $kate.isUsingHerStripperName to true>>
<</silently>>\
<<header>>\
<<page>>\
She leads you back out into the corridor, and into the dressing room next door. It smells of moisturiser and hairspray and baking hair straighteners. Just as you suspected, the window to the manager's office is mirrored on this side.
"Ladies, this $kate.stripperName," Lu announces from the doorway. "She try out as barmaid tonigh'."
A couple of the Thai girls chirp hellos; most just glance at you and go back to doing their makeup.
"Roxy," Lu says, "you train $kate.stripperName, 'kay? Show her rope."
"Da, Miss Lu," replies Pigtails, not turning around. Her sour expression in the mirror is either displeasure at that prospect, or a really bad case of [[Resting Bitch Face|FNG-9100 Meeting Amanda]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Do makeup, get change," Lu instructs you. "Bar open at five."
"Hey $kate.stripperName." The other white girl pats the stool beside her. Blonde, lithe and pretty, she has an all-American twang to her accent. "You can come sit with me."
[[Thanks.|FNG-11000 Kate sits with Amanda]]
[[I'd better sit with Roxy.|FNG-10000 I'd better sit with Roxy]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I'd better sit with Roxy," you tell her.
"Whatever..."
<span class="redHighlighter"><<Amanda>> ''disliked'' that.</span>
You cross the room and settle into the stool beside Pigta-//Roxy,// your [[mentor for tonight|FNG-10100 Kate sits with Roxy]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
You unsling your bag, and rummage through it for your little makeup kit. Some of the other girls have enough eyeshadow palettes and lipsticks to kit out a M‧A‧C counter, but you've just got some basics.
Roxy just ignores you, busy dabbing concealer under her pale, Slavic blue eyes.
//[[Study the other girls.|FNG-10200 Study the bargirls]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">Talent spotting<span class="tooltiptext">Identifying potential agents</span></div> is part of your mission briefing; that starts with figuring out who's who. You use your makeup mirror to subtly check out the other girls, picking up what you can from first impressions.
<<if hasVisited("FNG-11000 Kate sits with Amanda")>>\
<span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stick out because they're white. You think <<Amanda>>'s a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>; Roxy's a bartender, is Eastern European, and kind of a bitch so far.
<<else>>\
<span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and the <span class="imageLink"><<link "other blonde girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stick out because they're white. Roxy works the bar, is Eastern European, and is kind of a bitch so far; the other blonde is American, and that's all you know. She has a deep tan, but that doesn't tell you much; for all you know she could have picked it up on Long Beach.
<</if>>\
Two of the eight Thai girls stand out from the others because of their hair. One has <span class="imageLink"><<link "dyed hers pink">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – and not just the hair on her head, you remember from seeing her dancing naked on stage the first night you came in. [[Her name was Ping, right?|FNG-10300 Gib and Moo]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The other has <span class="imageLink"><<link "bleached her hair blonde">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. She's one of the girls who said hi to you when you came in; her face has a sunny, carefree air, ready to break out into a smile or laughter at any moment.
She's listening to one of the other Thai girls telling a funny story about something her daughter did at school. Actually, <span class="imageLink"><<link "this one's a //woman,//">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> not a girl - she's attractive, but she's [[way older than the other girls|FNG-10400 Other girls]]. She's doing her best to disguise that with the makeup she's layering on thick.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The others are harder to pick apart; lithe, pretty Thai girls, aged 18-25, with dark hair, dark eyes, and golden skin.
One has features that strike you as quite western, perhaps suggesting mixed parentage. She looks a little bit like...an <span class="imageLink"><<link "asian Catherine Zeta-Jones">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
The <span class="imageLink"><<link "others">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/smuk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> look <span class="imageLink"><<link "similar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to one <span class="imageLink"><<link "another">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/fah.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – they're all pretty, but none really stand out by their looks. You think <span class="imageLink"><<link "one of them">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> was a barmaid on the night you came in, but in her street clothes and without makeup, you can't be sure.
//[[Do your makeup.|FNG-12000 Makeup scene]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks." Sitting down at the makeup counter, you unsling your bag, and rummage through it for your little makeup kit.
"I'm <<Amanda>>," she says, dusting her cheeks with blusher. "Where ya from?"
<<if $kate.agency == "cia">>\
[[New York.|FNG-11100 Kate reveals her homeland][$kateSays to "ny"]]
[[California.|FNG-11100 Kate reveals her homeland][$kateSays to "california"]]
[[Texas.|FNG-11100 Kate reveals her homeland][$kateSays to "texas"]]
<<elseif $kate.agency == "mi6">>\
[[England.|FNG-11100 Kate reveals her homeland]]
<<elseif $kate.agency == "asis">>\
[[Australia.|FNG-11100 Kate reveals her homeland]]
<<elseif $kate.agency == "csis">>\
[[Canada.|FNG-11100 Kate reveals her homeland]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand.|FNG-11100 Kate reveals her homeland]]
<<else>>\
//[FATAL ERROR IN KATE.AGENCY VAR! Sorry – please report this so we can fix it. You can [[sit with Roxy|FNG-9100 Meeting Amanda]] instead]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
<<if $kateSays == "ny">>\
"New York," you tell her.
<<elseif $kateSays == "california">>\
"California," you tell her.
<<elseif $kateSays == "texas">>\
"Texas," you tell her.
<<else>>\
//[ERROR IN KATESAYS VAR! Sorry – please report this so we can fix it.]//
<</if>>\
"Oh cool, cool! I'm an Okie," she chuckles. "There's one other American, <<Zoe>>, she's from Chicago. She's cool. So...how long you been in Thailand..."
<<elseif $kate.agency == "mi6">>\
"England," you tell her.
"Oh, //cool.// I love your accent. So...how long you been in Thailand..."
<<elseif $kate.agency == "asis">>\
"Australia," you tell her.
"Oh, cool. We've got another Aussie, <<Gina>>. I guess you two'll be besties. So...how long you been in Thailand..."
<<elseif $kate.agency == "csis">>\
"Canada," you tell her.
"Oh, cool! Well...how //aboot// that. Haha."
<<elseif $kate.agency == "nzsis">>\
"New Zealand," you tell her.
"Oh, cool. I love your accent. So...how long you been in Thailand..."
<<else>>\
//[FATAL ERROR IN KATE.AGENCY VAR! Sorry – please report this so we can fix it. You can [[sit with Roxy|FNG-9100 Meeting Amanda]] instead]//
<</if>>\
You make small talk with <<Amanda>> while you're setting out your makeup things. Some of the other girls have enough eyeshadow palettes and lipsticks to kit out a M‧A‧C counter, but you've just got some basics.
//[[Study the other girls.|FNG-10200 Study the bargirls]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "FNG-12030 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "FNG-12020 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "FNG-12040 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "FNG-12010 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "FNG-12050 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "FNG-12090 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "FNG-12010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "FNG-12020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "FNG-12030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "FNG-12040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "FNG-12050 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "FNG-12090 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeshadow", "eyeliner", "lipstick")>>\
If you're happy with your look, you can [[change for work|FNG-12100 Beautification]].
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
As you paint up your face like you're getting ready for a night out, the girls around you are all going through similar transformations. With spritzes of perfume and daubs of powder and oils, they're metamorphosing into their most glamorous versions.
Clothes have been gradually coming off all around you, too; just you and one of the Thai girls is still fully dressed. \
<<if hasVisited("FNG-11000 Kate sits with Amanda")>>\
"$kate.stripperName," Roxy calls from across the room, "get changed. We've got to be ready first."
<<else>>\
"Come on, get changed," Roxy tells you. "We've got to be ready first."
<</if>>\
When you first saw her tonight, she looked totally average. Now her eyes are carefully painted a gothic, smoky black, and her plump lips are glossy and blood red. She looks strikingly sensual, even despite her permanent bitchy expression.
//[[Take off your top.|FNG-12200 It's getting hot in here]]//
<</page>><<silently>>
<<remove-top-whiteRibbedButtonUpCroppedTShirt>>
<</silently>>\
<<header>>\
<<page>>\
Carefully, so you don't smoosh your makeup, you pull your top off over your head.
Amidst all the acres of skin on display, it doesn't feel like a big deal...even though a part of you knows that anyone in the manager's office could be watching.
<<if hasVisited("FNG-11000 Kate sits with Amanda")>>\
<<link "<<Amanda>>, where can I put my stuff?" "FNG-12300 Amanda's locker">><</link>>
<</if>>\
[[Roxy, where can I put my stuff?|FNG-12400 Roxy's locker]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Where can I put my stuff?" you ask <<Amanda>>.
"You can share my locker," she says. "Combination is..." she leans in close to whisper it in your ear. //"4-7-7."// She smells like moisturiser.
The lockers in here have little combination padlocks dangling from them. That makes sense; it's not like you'll have anywhere to keep a key when you're in "uniform".
"Come //on,// $kate.stripperName," Roxy urges, already down to her underwear. "Chop chop."
//[[Strip naked.|FNG-13000 Naked]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Where can I put my stuff?" you ask Roxy.
"My locker," she offers reluctantly. "But you need to bring padlock next time. With combination."
Makes sense...it's not like either of you will have anywhere to keep a key when you're in "uniform".
"Come //on,// $kate.stripperName," she urges, already down to her underwear. "Chop chop."
//[[Strip naked.|FNG-13000 Naked]]//
<</page>><<silently>>
<<remove-shorts-blueDenimDaisyDukes>>
<<remove-shoes-brownAnkleHighStrappyFlatSandals>>
<<remove-bra-nudeStrapless>>
<<remove-knickers-nudeStringWithTwoBowsOnStraps>>
<<if $purchasedThong == "hotPinkCottonBoyshorts">>
<<if $kate.agency == "mi6">>
<<set _thongDescription to "A pair of knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _thongDescription to "A pair of undies">>
<<else>>
<<set _thongDescription to "A pair of panties">>
<</if>>
<<elseif $purchasedThong == "leopardPrintMidiWithSplitSide">>
<<if $kate.agency == "mi6">>
<<set _thongDescription to "A pair of leopard print knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _thongDescription to "A pair of leopard print undies">>
<<else>>
<<set _thongDescription to "A pair of leopard print panties">>
<</if>>
<<elseif $purchasedThong == "oceanDotStringBikiniPanties">>
<<if $kate.agency == "mi6">>
<<set _thongDescription to "A pair of knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _thongDescription to "A pair of undies">>
<<else>>
<<set _thongDescription to "A pair of panties">>
<</if>>
<<elseif $purchasedThong == "pinkThongWithCentralBow">>
<<set _thongDescription to "A stringy little scrap of lycra">>
<<elseif $purchasedThong == "redLowRiseThong">>
<<set _thongDescription to "A stringy little scrap of lycra">>
<<elseif $purchasedThong == "redWineThongWith2Bows">>
<<set _thongDescription to "A stringy little scrap of lycra">>
<<else>>
<<set _thongDescription to "[ERROR IN THONGDESCRIPTION VAR]">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You quickly peel off the rest of your street clothes. There's a nervous tension building up in your stomach; agreeing to go topless as part of an undercover operation is not the same thing as actually getting naked in a room full of prostitutes and strippers. <<if $kate.braSize == "large" and hasVisited("FNG-11000 Kate sits with Amanda")>>"Damn," <<Amanda>> murmurs when your bra comes off.<</if>>
You stuff your clothes and makeup into your bag, and take out your uniform – all three pieces of it. _thongDescription and two shoes.
It looks tiny compared to all the denim and cotton and lycra you just took off. Your mouth feels dry; you swallow nervously. //Do I really have to do this?//
<<link "//Put on your <<knickers>>.//" "FNG-13100 Thonged up">><</link>>
//[[Put on your shoes.|FNG-13800 Shoes on]]//
<</page>><<silently>>
<<= '<<wear-knickers-' + $purchasedThong + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
<<if $purchasedThong == "hotPinkCottonBoyshorts">>\
You quickly pull on your new <<knickers>>.
<<elseif $purchasedThong == "leopardPrintMidiWithSplitSide">>\
You quickly pull on your new <<knickers>>.
<<elseif $purchasedThong == "oceanDotStringBikiniPanties">>\
You quickly pull on your new <<knickers>>.
<<elseif $purchasedThong == "pinkThongWithCentralBow">>\
You quickly slip on the thong. The string at the back slips snugly up between your buttocks.
<<elseif $purchasedThong == "redLowRiseThong">>\
You quickly slip on the thong. The string at the back slips snugly up between your buttocks.
<<elseif $purchasedThong == "redWineThongWith2Bows">>\
You quickly slip on the thong. The string at the back slips snugly up between your buttocks.
<<else>>\
<<set _thongDescription to "[ERROR IN THONGDESCRIPTION VAR]">>
<</if>>\
//[[Check the rear view.|FNG-13200 Thong rear view]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You <<if $kate.isWearing.includes("shoes")>>clip clop over<<else>>pad across<</if>> to a full length mirror nearby and check out the rear view.
<<if $purchasedThong == "hotPinkCottonBoyshorts" or $purchasedThong == "oceanDotStringBikiniPanties">>\
At least most of your butt's covered. That's something, right?
<<elseif $purchasedThong == "leopardPrintMidiWithSplitSide" or $purchasedThong == "redWineThongWith2Bows">>\
//Jeez.// With all the talk about being a topless barmaid...it's only now that you appreciate how much your butt's going to be on show, too.
<<else>>\
//Jesus.// You feel a queasy twinge in your stomach when you realise just how much of your <<if $kate.agency == "cia" or $kate.agency == "csis">>ass<<else>>bum<</if>> is on show. With all this talk of being a topless waitress...you hadn't really considered it.
At least the other girls are all wearing similarly skimpy little things. That makes it...slightly less humiliating.
<</if>>\
<<if $kate.isWearing.includes("shoes")>>\
//[[Go back to your stuff.|FNG-13710 Back to the bench]]//
<<else>>\
//[[Put on your shoes.|FNG-13800 Shoes on]]//
<</if>>\
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
And...that's it. That's seriously it. //This is seriously all I'm wearing to work.//
<<include "FNG-13810 Leaving the dressing room">>
<</page>><<silently>>
<<showFront>>
<<= '<<wear-shoes-' + $purchasedHeels + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("knickers")>>\
You slip on your new shoes, getting the little boost of empowerment that comes with the little boost of height. And...that's it. That's seriously it. //This is seriously all I'm wearing to work.//
<<include "FNG-13810 Leaving the dressing room">>
<<else>>\
You slip on your new shoes, feeling the little boost of empowerment that comes with the little boost of height.
<<link "//Put on your <<knickers>>.//" "FNG-13100 Thonged up">><</link>>
<</if>>\
<</page>>You...you look like a stripper. The contrast with the modest suits and skirts you wear to your //actual// work is so stark it's unbelievable. If any of your colleagues from <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>> could see you now, it'd <<if $purchasedThong == "hotPinkCottonBoyshorts" or $purchasedThong == "oceanDotStringBikiniPanties">>[[blow their minds|FNG-13820 Girl, interrupted]].<<else>>blow their minds.<</if>>
<<if $purchasedThong != "hotPinkCottonBoyshorts" and $purchasedThong != "oceanDotStringBikiniPanties">>\
<<if hasVisited("FNG-11000 Kate sits with Amanda")>>\
"Try this." <<Amanda>> passes you a pump spray of some kind of cosmetic. "Body glitter."
[[Where does it go?|FNG-13900 Body glitter]]
<<else>>\
"Come //on,"// Roxy nags. Now fully dressed for work, she looks sexy and gothic in opaque black stockings, over-the-knee black boots, and a strappy black satin thong.
You put your stuff away in her locker, then [[follow her back out into the club|FNG-15000 Backstage corridors]].
<</if>>\
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
The dressing room door opens. "$kate.stripperName," says Lu, and it takes a second before you realise she's talking to you.
You look up from your reflection in the mirror, and she tosses you something small and black and stringy. "Change to this," she snaps curtly.
You look down at the thing in your hand. It's...a thong.
A really tiny thong.
"Quick quick," commands Lu. "I want bar open now."
[[But...|FNG-13825 But...]]
<<link "//Take off your <<knickers>>.//" "FNG-13830 Knickers off">><</link>>
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"But..."
"No but! Change," she commands, clapping her hands.
<<link "//Take off your <<knickers>>.//" "FNG-13830 Knickers off">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<= '<<remove-knickers-' + $kate.lastWornKnickers + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
You peel down your new <<knickers>>, and step out of them.
//[[Change into the tiny thong.|FNG-13840 Tiny thong]]//
<</page>><<silently>>
<<wear-knickers-blackMicroMiniGString>>
<</silently>>\
<<header>>\
<<page>>\
You slip it on. It's stretchy and tiny.
//[[Check out the rear view.|FNG-13850 Rear view]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Your stomach lurches when you check it out in the mirror. //Jesus.//
It provides about as much modesty as a strip of dental floss. You surely can't...
"$kate.stripperName, come //on,"// groans Roxy.
You put your stuff away in <<if hasVisited("FNG-12400 Roxy's locker")>>her<<else>><<Amanda>>'s<</if>> locker, then <<if hasVisited("FNG-12400 Roxy's locker")>>[[follow her back out into the club|FNG-15000 Backstage corridors]]<<else>>[[follow Roxy back out into the club|FNG-15000 Backstage corridors]]<</if>>.
<</page>><<silently>>
<<emote-mouth-oh>>\
<</silently>>\
<<header>>\
<<page>>\
"Where does it go?" you ask, inspecting the bottle. //Shake me up! Glitter spray for hair, body & clothing.//
"All over," she says. "Not too much. It's expensive."
//[[Spray some on.|FNG-14000 Applying glitter]]//
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("/makeup/bodyGlitter/05_bodyGlitter1-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("/makeup/bodyGlitter/05_bodyGlitter1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You pump a few sprays onto your body, and rub it in on your skin and your bare boobs. It goes on like <<if $kate.agency == "cia" or $kate.agency == "csis">>tanning oil<<else>>suntan lotion<</if>>, slick and oily.
"Give me some," demands Roxy, sidling over. Now fully dressed for work, she looks sexy and gothic in opaque black stockings, over-the-knee black boots, and a strappy black satin thong.
//[[Give Roxy the glitter spray.|FNG-14100 Kate gives Roxy the spray]]//
<<link "It's <<Amanda>>'s." "FNG-14200 It's Amanda's">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass it across – but <<Amanda>> snatches it back. "Get your own," she snaps at Roxy. "And don't give away my stuff," she growls at you.
<span class="greenHighlighter">Roxy ''liked'' that.</span> <span class="redHighlighter"><<Amanda>> ''disliked'' that.</span>
"<div class="tooltip">//Scorpié//<span class="tooltiptext">Bitch</span></div>," scowls Roxy. Then, to you: "Come //on."//
You put your stuff away in <<if hasVisited("FNG-12400 Roxy's locker")>>her<<else>><<Amanda>>'s<</if>> locker, then <<if hasVisited("FNG-12400 Roxy's locker")>>[[follow her back out into the club|FNG-15000 Backstage corridors]]<<else>>[[follow Roxy back out into the club|FNG-15000 Backstage corridors]]<</if>>.
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"It's <<Amanda>>'s," you protest.
"Yeah," says <<Amanda>>, taking it back. "Get your own."
<span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="redHighlighter">Roxy ''disliked'' that.</span>
"<div class="tooltip">Romanian romanian romanian<span class="tooltiptext">You two deserve each other</span></div>," Roxy mutters darkly. Then, to you: "Come //on."//
You put your stuff away in <<if hasVisited("FNG-12400 Roxy's locker")>>her<<else>><<Amanda>>'s<</if>> locker, then <<if hasVisited("FNG-12400 Roxy's locker")>>[[follow her back out into the club|FNG-15000 Backstage corridors]]<<else>>[[follow Roxy back out into the club|FNG-15000 Backstage corridors]]<</if>>.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
Two of the Thai girls leave the dressing room just ahead of you. You follow them out, stepping topless into the corridor with the flickery, buzzing tube lights. The music's on in the club now, loud but muffled backstage.
One of the Thai girls was definitely working the bar on the night you came in. You <span class="imageLink"><<link "recognise her">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> now she's made up and in her bar gear; tall heels, a champagne-coloured g-string, three glittery hearts dangling from her pierced belly button.
She's got a part done [[tattoo of a Chinese dragon|FNG-15100 Kayk]] on her upper arm, so fresh it's still wrapped in clingfilm.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The <span class="imageLink"><<link "other girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s younger – barely 18, tall and willowy and coltish in her high heels. <<if $kate.braSize == "small">>Like you, she's got small boobs; like you, her nipples are pierced.<<if hasVisited("WELBANG-380000 Piercings appointment")>> You wonder if Connor made her do that, too.<</if>><<else>>Her small breasts are decorated with diamonte nipple piercings.<</if>>
She's wearing a cute little string choker. Even though they're all nearly naked, each girl has [[individualised her look|FNG-15105 Following the locals]] – the colour and style of her thong and shoes, her makeup and accessories.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You follow along behind two flawless, heart-shaped, golden-skinned asses, framed and sculpted in skimpy thongs. They open the No Entry door back into the main club; The Girl With Half A Dragon Tattoo holds it open for you and Roxy, smiling shyly.
Rock music blares out from the dance floor. Your legs feel weak. You can't believe you're about to go out into a nightclub wearing [[just this|FNG-15110 Tid]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your stomach lurches when a weird-looking young Thai man suddenly appears in the doorway. Maybe twenty, lean and thin, he's wearing a dark suit, a skinny tie, and a sullen expression.
He has a striking face; <span class="imageLink"><<link "black, hooded eyes, and big, bulging cheekbones">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
The girls scuttle automatically out of his way as he comes through. You follow suit instinctively, stepping aside so he can pass, feeling naked and vulnerable.
He totally ignores the others, like they're beneath his notice. You get a surly eye-to-eye glare. Then he's gone, heading towards the office.
[[Who was that?|FNG-15120 Who was that]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Your eyes meet Roxy's. "Who was that?" you ask.
"Tid," she says. "One of the managers. Just do what he says, you'll be fine."
That weird looking kid with a bad attitude is //in charge?// Shit. You thought your boss was going to be Connor – where even is he?
"Come on," Roxy murmurs.
//[[Follow her out into the club.|FNG-15200 Return to the club]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step through the door and back out into the main club. It looks like a real nightclub again: darkness lit with pink and violet and glowing neon. Some kind of Asian rock song is pealing out over the PA.
It's colder in here. The aircon's on full blast, you can feel it on your skin and nipples. You feel so //naked// in this [[big, empty room|FNG-15210 Big Empty]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are no customers yet. You pass a brutal-looking Thai bouncer on the way [[back to the bar|FNG-16000 Start of shift]] – bearded, cross-eyed, sleeve tattoos down to the knuckles.
The Thai girls beam at him; he smiles back as the four of you strut past, bare breasts jiggling, nipples stiff.
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The bar counter's lit up in blue neon. You step around behind it for the first time, onto a rubberised floor scuffed by thousands of stiletto heel marks.
"You work in a bar before?" asks Roxy. Out here in the club you need to shout at each other to be heard.
[[Yeah.|FNG-16010 Kate's experience][$kateSays to "yeah"]]
[[Long time ago.|FNG-16010 Kate's experience][$kateSays to "longTimeAgo"]]
[[Not this kind of bar.|FNG-16010 Kate's experience][$kateSays to "notThisKind"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yeah">>\
"Yeah," you shout.
"<div class="tooltip">Jó<span class="tooltiptext">Good</span></div>," she [[nods|FNG-16020 Roxy training]].
<<elseif $kateSays == "longTimeAgo">>\
"Long time ago," you admit.
"You'll remember," she [[promises|FNG-16020 Roxy training]].
<<elseif $kateSays == "notThisKind">>\
"Not //this// kind," you shout, shaking your head.
"One is dog, one is hound," she shrugs, making her <<if $kate.braSize == "small">>massive <<elseif $kate.braSize == "medium">>big <</if>>boobs rise and fall with the movement.
[[What?|FNG-16010 Kate's experience][$kateSays to "what"]]
<<elseif $kateSays == "what">>\
<<emote-brows-naughty>>\
"What?" Did she just call you a dog?
"Dog is hound. Hound is dog. Bar is bar." She shrugs again. "[[Same same|FNG-16020 Roxy training]]."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/sodaGun.jpg" 50 1000 500 0>>\
<<if $kateSays == "what">><<emote-brows-naughty>>//Hmmm.// <</if>>Roxy shows you where everything's set up. It reminds you of Carlucci's, just laid out differently.
She makes you demonstrate that you know how to [[use a soda gun|FNG-16030 Soda gun]]. Thankfully the buttons are labelled with English letters and not curly Thai glyphs. You've been busy enough learning what the language sounds like, without trying to pick up a whole new alphabet.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You grab the soda gun. Even that's a reminder you're naked; your arm brushes your breast as you reach out for the gun.
"Okay," Roxy says, "show me how you get Coke..." Her big, round boobs shift slightly as she moves in for a closer look at the keypad. You catch a strong waft of her perfume; citrus and flowers.
//This is...so fucking surreal. Two women at work. Totally normal except they're topless.//
You keep glancing nervously up at the door – when's somebody going to [[come in|FNG-16040 Training complete]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The two Thai girls are working the other side of the bar, behind you. "Get them if you need them to speak Thai," Roxy advises.
She tells you that the Girl With Half A Dragon Tattoo is <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and she's the bar manager. The young one with the nipple piercings is <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Káyk smiles and waves when she notices you're talking about her.
[[What now?|FNG-16050 What now]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"What now?" you shout.
"[[Wait for customer|FNG-16100 The wait]]," Roxy shrugs.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Shit.// This is really happening. A prickle runs up your spine when you glance nervously up at the doors.
Who's going to walk through them and [[see you like this|FNG-16110 Nothing to do]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You remember this feeling from Carlucci's. The fridges are stocked with beers; everything's clean; there's nothing to do but stand around and wait for the first customer.
You felt kind of self-conscious and on display back then, when your uniform was tight black <<trousers>> and a slim-fitting white shirt.
Now, doing the same thing, but stripped down to a thong and heels is...just terrifying.
You shift your weight from heel to heel. How can Roxy and the other two be [[so cool|FNG-16120 Minutes drag by]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Minutes drag by. Your stomach clenches up like a fist.
//Breathe. Relax. Look around.// There are Polaroids tacked up all over the bar behind you, scores and scores of them; <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls, topless or naked, smiling happily as they pose behind this very bar. The hairstyles go back to the nineties.
Roxy's chopping up lime wedges, head bobbing slightly along to the peppery drumbeat of some famous old rock song. The two Thai girls are behind you, round the other side of the bar.
//[[Wait.|FNG-16200 The wait part II]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You //know// you're undercover, but...it's hard not to feel stupid and embarrassed right now.
Nine months of interviews and security checks. Hand picked out of thousands of candidates for <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Trained <<if $kate.agency == "cia">>in the Shenandoah wilderness<<elseif $kate.agency == "mi6">>at top secret Fort Monckton<<elseif $kate.agency == "asis">>alongside the SAS on Swan Island<<elseif $kate.agency == "csis">>alongside JTF 2 at Dwyer Hill<<elseif $kate.agency == "nzsis">>alongside the SAS at Camp Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>> for a //year// in how to fire weapons and complete missions and survive undercover.
And here you are...stripped down to high heels and a thong, serving drinks. The only gun you've got shoots Coca-Cola.
//Bond, Jane Bond.// You feel sick, really sick.
//[[Why the hell did I volun-|FNG-16300 First customers]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The doors swing open. Your mouth goes dry and you gulp. The squeaky door was deafening when the club was quiet; now it's lost under the guitar solo spiralling out of the speakers.
Four Asian guys push through into the club. In their twenties, they're wearing bland modern suits and carrying laptop bags. Young professionals, you guess, coming straight here from the office.
They make a beeline for the bar, where you and Roxy are standing, half-naked and ready. //Oh my god.// You feel like a deer in the headlights. Or...a deer being walked up on by [[four hyenas|FNG-16400 Look busy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One looks straight at you. Your eyes meet; you look away, flustered.
You feel the urge to cover your breasts with your hands. But instinctively you know that you shouldn't. You fiddle with the ice machine instead, pretending to be busy with it.
None of the guys walking up on you are hot, not even a little bit. Embarrassingly, your body responds to them anyway. Your nipples stiffen to attention and a tingly wet heat strikes up in your groin [[as four local office guys approach|FNG-16500 Turned on]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are stiffening, your pussy's getting wet.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
They land at the bar. Roxy takes the lead: "Hello, guys!" She has to shout to be heard over the rock music.
She beams prettily, the first time you've ever seen her smile, her glossy red lips parting to show off teeth glowing white in the club lights. "What would you like?"
//[[Smile.|FNG-16600 First orders][$kateSmiles to true]]
[[Look casual.|FNG-16600 First orders]]//
<</page>><<silently>>
<<if $kateSmiles>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSmiles>>\
<<unset $kateSmiles>>\
You try to cover up how nervous you feel by forcing a casual smile, hovering off to the side while Roxy leans over the bar to have orders shouted into her ear.
<<else>>\
You hang back, playing it cool, hovering off to the side while Roxy leans over the bar to have orders shouted into her ear.
<</if>>\
"$kate.stripperName!" she shouts and snaps her fingers. "Two pints of Chang."
[[Got it!|FNG-16700 Pouring pints]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Got it!" You spring into action, grateful for something to do.
You set up two glasses under the beer taps marked ''ช้าง CHANG'', and [[pour two pints|FNG-16800 Filling up]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Feeling incredibly on display, you watch the glasses fill slowly with chilled Chang lager. Roxy turns to get some bottled beers from the fridge.
The office guys prop up the neon blue bar, chatting nonchalantly with one another. Their gazes roam casually over your and Roxy's bodies. You've been eyed up while pouring men drinks before...but at least at Carlucci's, all they could do was //imagine// you naked. You feel a thousand times more vulnerable.
You can't hear what they're talking about over the music. Are they...rating you? Comparing your looks with Roxy's? Or just talking about their day in the office?
//[[Serve the beers.|FNG-16810 Serve the Changs]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You click off the taps. A few tiny droplets of cold Thai lager splash up onto your chest. You wouldn't even notice if you were wearing a shirt, but you exhale sharply when it spatters your bare breasts.
Scooping up the beers, you place them up on the bar counter, next to the cold bottles that Roxy's popped open.
You spilled beer on your hands and your fingers are wet. You instinctively start to wipe your hand on your trousers – then remember you're not wearing any.
You wipe your hand on your naked hip instead. It doesn't help much.
One of the guys gives Roxy a handful of brightly coloured banknotes. She takes them, and shows you how to [[use the cash register|FNG-16900 Cash register]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
It's pretty simple: the beers anyway all have their own buttons on this chunky, ancient machine. You tap CHANG twice and SINGHA twice, and the green button makes the drawer spring open.
You tuck in the banknotes, and take out a green ฿20 note as change. Roxy's standing close, and your naked arm brushes hers as you move. Again, you wouldn't even notice if you were both [[wearing tops|FNG-16910 Kate got it right]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She watches you count the change carefully, like she's expecting you to fuck it up. Even though it's //incredibly// simple, compared to the multipoint Bayesian data analysis you were working on that day <<if $kate.agency == "cia">>Jack <<Colby>><<elseif $kate.agency == "mi6">>Sir James <<Greenwood>><<elseif $kate.agency == "asis">>Jim <<McKenzie>><<elseif $kate.agency == "csis">>Adam <<McKenzie>><<elseif $kate.agency == "nzsis">>Mark <<McKenzie>><<else>>ERROR IN KATE.AGENCY VAR<</if>> called you up to his office.
Roxy nods grudgingly when you manage to close the till drawer without requiring instruction.
When you [[turn around,|FNG-17000 Front view]] you realise all the Thai office guys were staring at your asses that whole time.
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
Now they're staring at your tits. You hand the ฿20 change to the guy who paid Roxy, and he beckons you closer.
//[[Lean over the bar.|FNG-17100 Lean in]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and lean forward over the bar, like you saw Roxy do<<if $kate.hairStyle != "short">>, tucking your hair behind your ear so he can shout into it<</if>>.
You suddenly recall a <span class="imageLink"><<link "book about female leadership">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/leanIn.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> that did the rounds at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>> last year. You didn't get round to reading it, but you doubt that draping yourself half-naked over a bar for men to shout instructions at you is what the author had in mind.
"You new here?" the Thai guy shouts in your ear. Either he's a regular and he knows all the girls, or Roxy told him.
[[Yeah, first day.|FNG-17200 Same same][$kateSays to "firstDay"]]
[[Yeah, go easy on me!|FNG-17200 Same same][$kateSays to "goEasy"]]
[[Yeah, got any advice?|FNG-17200 Same same][$kateSays to "advice"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "firstDay">>\
"Yeah!" you shout back in his ear. His hair smells like styling gel, cheap and masculine. "First day!"
<<elseif $kateSays == "goEasy">>\
"Yeah!" you shout back in his ear. His hair smells like styling gel, cheap and masculine. "Go easy on me!"
<<elseif $kateSays == "advice">>\
"Yeah!" you shout back in his ear. His hair smells like styling gel, cheap and masculine. "Got any advice?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Him too! Same same." His accent is nasal, sing-song, his English halting. He points to one of his colleagues, a chubby Thai guy with glasses. "First day, our com-pa-ny!"
[[How's he working out?|FNG-17210 Uh huh][$kateSays to "howsHeWorkingOut"]]
[[What is it you guys do?|FNG-17210 Uh huh][$kateSays to "WhatDoUDo"]]
<span class="greyedOut">//[Shrug]//</span> [[Uh huh...|FNG-17210 Uh huh][$kateSays to "uhHuh"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "howsHeWorkingOut">>\
"How's he working out?" you shout back.
"He [[very shy|FNG-17220 Lap dance request]]."
<<elseif $kateSays == "WhatDoUDo">>\
"What is it you guys do?" you shout back.
"[[Telecom system|FNG-17220 Lap dance request]]," he shouts.
<<elseif $kateSays == "uhHuh">>\
"Uh huh..." you shout, not sure [[where this is going|FNG-17220 Lap dance request]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"You should give him lap dance," he goes on. "You firs' day, him firs' day, same same! You do lap dance on him."
[[Don't think I'm allowed, sorry.|FNG-17300 Kate lapdance reply][$kateSays to "professional"]]
<span class="greyedOut">//[Joke]//</span> [[Maybe after I've had a few shots.|FNG-17300 Kate lapdance reply][$kateSays to "flirty"]]
[[I just serve drinks.|FNG-17300 Kate lapdance reply][$kateSays to "aloof"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "professional">>\
<<emote-mouth-open>>\
"Don't think I'm allowed," you shout back. "Sorry."
"Aw, [[too bad|FNG-17310 Tip calculation]]," he replies.
<<elseif $kateSays == "flirty">>\
<<emote-mouth-smirk>>\
"Ask me later," you shout back. "After I've had a few shots."
<span class="greenHighlighter">Jag ''loved'' that.</span>
"Cool, cool! I tell him!" He knows you're kidding...[[right?|FNG-17310 Tip calculation]]
<<elseif $kateSays == "aloof">>\
<<emote-mouth-open>>\
"I just serve drinks," you tell him.
"Aw, [[too bad|FNG-17310 Tip calculation]]."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<set $shotsKateDrank to 0>>
<<set _d100 to random(1,100)>>
<<if $kateSays == "flirty">>
<<set _tipTarget to 66>>
<<else>>
<<set _tipTarget to 33>>
<</if>>
<<if _d100 lte _tipTarget>>
<<set _kateGetsTipped to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if _kateGetsTipped>>\
"You want drink?" he shouts. Maybe a shot would take the edge off.
[[Too early, maybe later.|FNG-17320 No thanks]]
[[Thanks, I'll have a tequila.|FNG-17330 Shot][$kateChoseTequila to true]]
[[Thanks, I'll have a Jäger.|FNG-17330 Shot]]
<<else>>\
The guys go back to their drinks and their conversation. Now you're just...standing there, being looked at.
Roxy slouches around, totally unfazed; but you can't bear it. You grab up a cloth and start mopping the counter.
It's already clean anyway<<if $kate.braSize != "small">>, and the movement makes your boobs jiggle distractingly<</if>>, but at least you feel like you're more than [[just an ornament|FNG-17400 More patrons]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Too early," you shake your head. "Maybe later."
The guys go back to their drinks and their conversation. Now you're just...standing there, being looked at.
Roxy slouches around, totally unfazed; but you can't bear it. You grab up a cloth and start mopping the counter.
It's already clean anyway<<if $kate.braSize != "small">>, and the movement makes your boobs jiggle distractingly<</if>>, but at least you feel like you're more than [[just an ornament|FNG-17400 More patrons]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $shotsKateDrank += 1>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you smile. He hands you a blue <div class="tooltip">฿50<span class="tooltiptext"><<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> bill to ring up in the till; you pour yourself a shot of <<if $kateChoseTequila>>cheap gold tequila<<else>>inky dark Jägermeister<</if>>, and clink it to his pint glass.
"<div class="tooltip">Chone gaow!<span class="tooltiptext">"Touch glasses!" – a common Thai toast</span></div>" he toasts you.
[[Chone gaow!|FNG-17340 Chai yo]]
<</page>><<silently>>
<<unset $kateChoseTequila>>
<</silently>>\
<<header>>\
<<page>>\
"Chone gaow!" you repeat, and knock back the shot. It burns in your throat as it goes down.
The guys go back to their drinks and their conversation. Now you're just...standing there, being looked at.
Roxy slouches around, totally unfazed; but you can't bear it. You grab up a cloth and start mopping the counter.
It's already clean anyway, and the movement makes your boobs jiggle distractingly, but at least you feel like you're more than [[just an ornament|FNG-17400 More patrons]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Four more bar patrons trickle in over the next half-hour.
Every time the door swings open, you feel a little twinge of alarm – //who's about to see me like this?// But each time it's just a sad, middle-aged white guy. Tourists and expats, drinking alone.
Two go over to sit round on the Thai side of the bar, served drinks by <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; Roxy intercepts the third, and seems happy to see and chat with him, leaning over the bar and laughing at his jokes.
You've just finished serving a fresh round of beers to the Thai office guys, when the door swings open again. Disconcertingly, it's [[a face you immediately recognise|FNG-17500 Beardy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You feel a sickly twinge of alarm until you realise you recognise him from here.
The thick glasses, the big bristly beard, the ginger-grey combover; it's Beardy, the middle-aged guy who was eye fucking you on the night you came in to meet Connor.
He was leering at you in your street clothes. His eyes light up when he recognises you now, stripped down and serving drinks.
He [[comes up to the bar|FNG-17600 Hello again]] with a spring in his step.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hello lovely!" he shouts, offering a handshake over the bar. "I'm Sam!" he shouts. His accent's English.
<span class="greyedOut">//[Shake hands]//</span> <<link "Hi, I'm $kate.stripperName!" "FNG-17700 Kate introduces herself to Adie">><<set $kateSays to "shakeHands">><</link>>
<span class="greyedOut">//[Don't touch him]//</span> <<link "$kate.stripperName!" "FNG-17700 Kate introduces herself to Adie">><<set $kateSays to "river">><</link>>
<span class="greyedOut">//[Don't touch him]//</span> [[What can I get you?|FNG-17700 Kate introduces herself to Adie][$kateSays to "whatCanIGetU"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "shakeHands">>\
"Hi!" you shout back, shaking his big, clammy paw. "I'm $kate.stripperName!"
<span class="greenHighlighter">Sam ''liked'' that.</span>
"Lovely! Pint of your finest Chang, please, $kate.stripperName!"
<<elseif $kateSays == "river">>\
"$kate.stripperName!" you shout back, not taking his hand.
<span class="redHighlighter">Sam ''disliked'' that.</span>
"Pint of Chang!" he demands, tapping the Chang tap.
<<elseif $kateSays == "whatCanIGetU">>\
"What can I get you?" you shout back, not taking his hand.
<span class="redHighlighter">Sam ''disliked'' that.</span>
"Chang!" he commands, tapping the Chang tap.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
//[[Pour him a Chang.|FNG-17800 Kate pours Adie a beer]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You pour him a pint of Chang, flinching at the tiny little flick of beer droplets when you click off the tap.
He beckons you closer when you serve it to him.
//[[Lean over the bar.|FNG-17900 Adie recognises her]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and Lean In so he can shout in your ear.
"Saw ya in here last week! Congrats!" His bristly beard tickles your ear, and his voice tickles your eardrum.
[[Thanks!|FNG-17910 Kate reply][$kateSays to "thanks"]]
[[Yeah, it's my dream job.|FNG-17910 Kate reply][$kateSays to "dreamJob"]]
[[You're a regular here, right?|FNG-17910 Kate reply][$kateSays to "uRegular"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"Thanks!" you [[shout back|FNG-18000 Adie name drops]].
<<elseif $kateSays == "dreamJob">>\
"Yeah," you shout back dryly, "it's my [[dream job|FNG-18000 Adie name drops]]."
<<elseif $kateSays == "uRegular">>\
"You're a [[regular here|FNG-18000 Adie name drops]], right?" you shout back.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"No problem! I'm mates with Connor. Ever need me to put in a word for you, just say."
<<elseif $kateSays == "dreamJob">>\
He laughs at that. "Well, could be worse, I guess," he shouts, but you don't know what he means. "I'm mates with Connor. Ever need me to put in a word for you, just say."
<<elseif $kateSays == "uRegular">>\
"Yep. I'm mates with Connor," he explains. "Ever need me to put in a word for you, just say."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Thanks!|FNG-18010 Thanks][$kateSays to "thanks"]]
[[No need.|FNG-18010 Thanks][$kateSays to "noNeed"]]
[[How d'ya know him?|FNG-18010 Thanks][$kateSays to "howDYaKnowHim"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"[[Thanks|FNG-18020 Adie's job offer]]!" you shout.
<<elseif $kateSays == "noNeed">>\
"No need," you shout. "But [[thanks|FNG-18020 Adie's job offer]]."
<<elseif $kateSays == "howDYaKnowHim">>\
"How d'ya know him?" you [[shout back|FNG-18020 Adie's job offer]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
It's so weird just having a normal conversation with a middle-aged <<if $kate.agency == "cia" or $kate.agency == "csis">>dude<<else>>bloke<</if>> in a bar when you're topless.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "howDYaKnowHim">>"British Club," he shouts. //Some kind of expats organisation?//<<else>>"No problem," he shouts.<</if>>
"I'm a photographer," he goes on, "got my own studio. You should do a portfolio, could get you some work." His breath is hot in your ear, his beard tickling your skin. "I normally charge <div class="tooltip">ten thousand<span class="tooltiptext">in Thai Baht:<<if $kate.agency == "cia">>$300<<elseif $kate.agency == "mi6">>£200<<elseif $kate.agency == "asis">>$400<<elseif $kate.agency == "csis">>$400<<elseif $kate.agency == "nzsis">>$400<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> a day, but I do girls from here for free."
[[Um, let me think about it.|FNG-18100 Kate modelling reply][$kateSays to "letMeThink"]]
[[Wow, sounds cool.|FNG-18100 Kate modelling reply][$kateSays to "soundsCool"]]
[[I'm not a model.|FNG-18100 Kate modelling reply][$kateSays to "notInterested"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "letMeThink">>\
"Maybe," you shout. "Let me [[think about it|FNG-18110 Adie reply]]."
<<elseif $kateSays == "soundsCool">>\
"Wow," you shout. "[[Sounds cool|FNG-18110 Adie reply]]."
<<elseif $kateSays == "notInterested">>\
"I'm [[not a model|FNG-18110 Adie reply]]," you shout.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "letMeThink">>\
"Sure! Let's swap numbers, stay in touch."
//[[Give him your number.|FNG-18200 Kate gives Adie her number]]
[[Give him a fake number.|FNG-18210 Kate gives Adie a fake number]]
[[Just take his number instead.|FNG-18220 Kate takes Adie's number]]//
<<elseif $kateSays == "soundsCool">>\
"Yeah! Let's swap numbers, I'll call and get you booked in."
//[[Give him your number.|FNG-18200 Kate gives Adie her number]]
[[Give him a fake number.|FNG-18210 Kate gives Adie a fake number]]
[[Just take his number instead.|FNG-18220 Kate takes Adie's number]]//
<<elseif $kateSays == "notInterested">>\
"You should be, $kate.stripperName, you're beautiful my darling! I could introduce you to some //very// powerful people in the biz."
[[No thanks.|FNG-18115 Kate's not interested][$kateSays to "noThanks"]]
[[Well...let me think about it.|FNG-18115 Kate's not interested][$kateSays to "letMeThink"]]
[[Maybe if this job doesn't work out.|FNG-18115 Kate's not interested][$kateSays to "ifImFired"]]
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "noThanks">>\
"No thanks," you shout. You're not here to model for some lechy old sexpat you met in a brothel.
"Fair enough," he shouts. He hands over two red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknotes to pay for his drink. "[[Keep the change|FNG-19000 1800]]."
<<elseif $kateSays == "letMeThink">>\
"Well...let me think about it," you shout.
"Sure! Let's swap numbers, stay in touch."
//[[Give him your number.|FNG-18200 Kate gives Adie her number]]
[[Give him a fake number.|FNG-18210 Kate gives Adie a fake number]]
[[Write down his number instead.|FNG-18220 Kate takes Adie's number]]//
<<elseif $kateSays == "ifImFired">>\
"Maybe if this job doesn't work out," you suggest.
"Fair enough," he shouts. He hands over two red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknotes to pay for his drink. "[[Keep the change|FNG-19000 1800]]."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shout your number into his ear, and watch him punch it into his phone. //I'm probably going to regret this.//
<span class="greenHighlighter">Sam ''loved'' that.</span>
"Lovely!" he shouts. He hands over two red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknotes to pay for his drink. "And [[keep the change|FNG-19000 1800]], sweetheart," he beams.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shout a phone number that's //almost// yours into his ear, and watch him punch it into his phone.
<span class="greenHighlighter">Sam ''loved'' that.</span>
"Lovely!" he shouts. He hands over two red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknotes to pay for his drink. "And [[keep the change|FNG-19000 1800]], sweetheart," he beams.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Not quite ready to be giving out your phone number to random men you meet in a brothel, you scrawl down his mobile number instead.
<<if $kateSays == "letMeThink">>\
"Call me anytime!" he shouts. He hands you two red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknotes to pay for his drink. "And [[keep the change|FNG-19000 1800]], sweetheart," he beams.
<<elseif $kateSays == "soundsCool">>\
"Call me tomorrow!" he shouts, "we'll get you booked in." He hands you two red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknotes to pay for his drink. "And [[keep the change|FNG-19000 1800]], sweetheart," he beams.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You tuck a blue <div class="tooltip">฿50<span class="tooltiptext"><<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> from the cash register into the tip jar. And wait.
A few more customers trickle in: no one who looks remotely like DEVILFISH. Just more fat, over-the-hill sexpats with <<if $kate.agency == "cia" or $kate.agency == "csis">>soccer<<else>>football<</if>> shirts, deep leathery tans, and crappy tattoos they got before you were born.
The other girls serve them all. There aren't enough customers to be busy at the bar, and the hard thing is just standing around in the nude without anything to do. You clean glasses that are already clean, and rearrange the drinks bottles behind your patch of the bar into [[alphabetical order|FNG-19010 Reverse alphabetisation]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Then into //reverse// alphabetical order, just to look busy. The highlight of the next half hour or so is Roxy showing you how the dishwasher works.
You're slowly becoming used to – if not comfortable with – being on permanent display. There's just no respite from it. When you face the men at the bar, they're all looking at your breasts. When you turn your back, you're showing them your ass.
At first it just felt demeaning. And it still is – you're <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer, for fuck's sake, you've got more to offer than serving drinks in your <<knickers>>. But there's also something kind of liberating about getting to strut about naked in heels and a thong, and realising [[nobody gives a shit|FNG-19100 Paging Amanda]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The soundtrack is a stream of classic rock songs, some familiar, some you've never heard.
//Eye of the Tiger// fades down, and a Thai male voice comes over the PA. "Good evening, gen-tel-meh, welcome to Hard Cock Cafe. Home of cold beer, cool tune and hot girl.
"Dancing for you first, all way from US of A, it <<Amanda>>! That <<Amanda>>, coming [[on stage now|FNG-19200 Amanda's show]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Everyone's attention shifts to the stage, empty and lit up in pink neon. There are maybe a dozen men in here, now, clustered around the bar.
A short wait – then <<if hasVisited("FNG-11000 Kate sits with Amanda")>><<Amanda>><<else>>the blonde from the dressing room<</if>> comes strutting out like a model on the catwalk. She's wearing a skimpy version of a school uniform, carrying a stack of books, her hair tied in bunches.
The rock song fades down; the opening piano riff of Britney's //Baby One More Time// rings out, loud.
//Oh baby, baby... Oh baby, baby...//
<<Amanda>> struts up to the edge of the stage, and [[tosses away her schoolbooks|FNG-19300 Amanda strips]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a confident, flirty smile on her face, <<Amanda>> dances to the track, playing with her hair, shaking her ass, her little school skirt flipping up with every swing of her hips.
For the first time since the Thai office guys arrived, absolutely no one's looking at you.
It's a relief, although there's something ironic about all the men being suddenly distracted by a woman [[wearing more clothes|FNG-19310 Clothes coming off]] than you.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Until the second verse, anyway.
Then they start coming off, fast. Hips gyrating, <<Amanda>> undoes her school shirt, button-by-button, and tosses it aside.
Her bra follows right after; sliding off her body and dropped [[on the stage|FNG-19400 Topless]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Now topless – unless you count the school tie, knotted loose around her neck – <<Amanda>> curls her legs gracefully around the stripper pole, then ascends it, pushing up from her ankles like a soldier doing a rope climb.
She leans all the way back and glides down the pole, upside down, her hair and tie dangling beneath her. //Wow.// It's seriously physically impressive.
Her little skirt falls up around her waist, showing off a plain black thong.
Then she's back on her heels and the [[skirt's coming off|FNG-19500 Skirtless]], unzipped at the side and sliding down her swinging hips.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With her back to the little audience, she bends over and peels off the thong, slowly and sensuously baring her ass and her pussy to the room.
Up until now the show was pretty tame. Classy, even, with the pole work.
But now you're literally watching a girl bend over and shake her shaved naked vagina for an audience. She couldn't look more [[slutty and available|FNG-19510 Show's over]] if she tried.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The song comes to an end. "Alrigh', give it up for...//<<if $kate.firstName != "Amanda">>Amaaanda<<else>>Samaaantha<</if>>..."// says the DJ.
There's a smattering of applause at the bar. Naked except for high heels and a tie, <<Amanda>> smiles and waves, then gets to scooping up her [[clothes and books|FNG-19600 Sexy]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "You're wet and turned on.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
That was...kind of sexier than you expected.
When she came out on stage, you were expecting it to be totally tacky and silly. But there was something weirdly erotic about watching a grown woman peel off a school uniform, piece by piece.
Especially the last piece. There was something almost...//symbolic// about the way she did that, bending over and peeling down her last scrap of modesty, in front of //everyone...//
//Jesus, calm down $kate.firstName.// Your imagination's running a little bit wild. Under [[your last scrap of modesty|FNG-19700 Bar rush]], things are getting hot and wet.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The men return their attention to the bar; for the first time in the night, all four barmaids are busy at the same time.
You pour Sam another Chang, and crack open a bottle of Singha for a new arrival, a fat Asian man who doesn't speak English and just communicates by pointing.
Around now the Thai <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> suddenly emerge; the girls you were dressing with backstage, now glammed up in very skimpy dresses, or just lingerie.
They descend on the bar in a big group, a [[pack of lithe golden-skinned girls|FNG-19800 Limited appeal]] decked out in lace and fishnet and stretchy lycra, splitting up to drape themselves over the Thai office guys and coo in the ears of ancient foreign expats.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch this curiously. Not one of these guys would have a chance with girls this hot in real life.
And yet...they seem cool and standoffish, defensive almost. It's like the normal club mating ritual, reversed: the guys are the prize, the hot girls are the ones making approaches and getting shot down.
You're not sure you like it one bit. Watching fat old guys gruffly turn down glamorous 20-year olds with perfect bodies feels like a [[crime against nature|FNG-19850 Stage shows]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
At least not all the focus is on you, now. You feel like you have a little more space to observe and think – although any time you get close to relaxing, you catch a lingering glance that makes you hyper-aware of how your body's positioned.
Every fifteen minutes or so, the DJ comes on the mic to announce a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>'s stage performance. They take turns getting up onstage to strip naked, just like <<Amanda>> did.
It's helpful because he announces them by name...that's going to help in your report.
The <span class="imageLink"><<link "girl with the dyed blonde hair">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is called Jib. She peels off her clingy red dress onstage to reveal that she's totally naked under it, and dances on the stage and the pole in just her heels to the tune of an [[old rock song|FNG-19900 Next encounter]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The doors swing open, and in walk two pasty pale, fresh-faced white kids in board shorts and wifebeater vests.
There's something furtive and nervous in their demeanour, and when they get to you at the bar, you think you can see why. "Fresh faced" is an understatement; your bush grows faster than the wispy hair on their chinny chin chins.
These guys may be 18, but they're //definitely// not the legal drinking age in Thailand, which is 20.
"How 'bout two beers," the dark-haired one shouts. American.
[[How 'bout some ID?|FNG-20000 ID check]]
[[Comin' right up.|FNG-20300 Comin right up]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"How 'bout some ID?" you riposte.
A moment's hesitation. Then both pull out their wallets, and flop [[similar-looking ID cards|FNG-20100 Military ID]] out onto the neon blue bar.
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-brows-naughty>>
<</silently>>\
<<header>>\
<<page>>\
You take a look. Unexpectedly, they're...US military ID cards, <div class="tooltip">CACs<span class="tooltiptext">Common Access Cards</span></div>.
Except they're the wrong colour, and the fonts are a mishmash, and there's no such thing as //SPECIAL OPERATION COMMAND// anyway. You flip them over to check the dates of birth...//1990// on both.
Okay, it's possible they're both the same age. But it's not 28.
The photos do match their soft, innocent faces. So closely, in fact, they could have been taken an hour ago. They probably bought these things for a couple hundred Baht on the Khao San Road.
[[Sorry, soldiers. Can't serve you.|FNG-20200 Sorry soldiers]]
[[Two beers coming up, Sergeant.|FNG-20300 Comin right up]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-nose-scrunch>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry, soldiers." You shake your head, and slide their fake IDs back over the bar. "Can't serve you."
"That's ridiculous," shouts the World's Youngest Master Sergeant. But they don't look surprised.
With one last, mournful look around – like they're trying to remember every detail of this place, from the <span class="imageLink"><<link "naked Thai girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> onstage, to the smirking, topless bartender – they tuck their little IDs back in their little wallets, and [[slink out|FNG-20500 Amanda appears]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-20100 Military ID")>>\
"Two beers coming up...//Sergeant."//
Their ID's ridiculous. But you're not the ID police. And you seriously doubt anybody here gives a fuck about underage drinking, anyway.
Both kids visibly relax when you start pouring two pints of Chang.
<<else>>\
"Coming right up."
You seriously doubt this place gives a fuck about underage drinking. Both kids visibly relax when you start pouring two pints of Chang.
<</if>>\
[[That's ฿300.|FNG-20400 Thank you for your service]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"That's 300 Baht," you shout, sliding the beers over the blue neon counter.
You got splashed again when you clicked off the taps. An especially big droplet of cold Chang beer tickles its way down your naked left breast.
//[[Wipe it off with your hand.|FNG-20410 Paid up][$kateWipedHerBoob to true]]
[[Ignore it.|FNG-20410 Paid up]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateWipedHerBoob>>\
<<unset $kateWipedHerBoob>>\
You casually reach up and brush the droplet off your <<if $kate.braSize == "small">>pert, naked breast<<elseif $kate.braSize == "medium">>perky, naked breast<<elseif $kate.braSize == "large">>big, naked tit<</if>> while the World's Youngest Staff Sergeant fumbles for his money. "Thanks, lady," he murmurs, staring at your stiff nipples.
<<else>>\
You force yourself to ignore it while the World's Youngest Master Sergeant fumbles for his money. It's not easy when the cold wet droplet rolls sensuously down over your stiff nipple...making you want to //gasp.// "Thanks, lady," he murmurs, staring appreciatively at your <<if $kate.braSize == "small">>pert, naked breasts<<elseif $kate.braSize == "medium">>perky, naked breasts<<elseif $kate.braSize == "large">>big, naked tits<</if>>.
<</if>>\
The pair settle in to enjoy their beers, and all the acres of female flesh on display. Pretty soon they've each got a half-naked Thai <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> cooing in their ears and laughing at their jokes.
These kids don't stand a chance. Cash is checked and counted...then [[all four head off hand-in-hand|FNG-20500 Amanda appears]] towards an archway near the stage, lit up in yellow neon.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<Amanda>> appears at the bar shortly after they leave. She's now dressed in a //tiny// skirt – slung low on her hips, and barely covering her ass – and a clingy, cropped Hard Cock Cafe t-shirt.
She leans over the bar to have a short shouted conversation with Roxy, which ends with both women [[looking at you|FNG-20600 Put these on]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<Amanda>> comes round behind the bar, and hands you a couple of small, stretchy items of clothing.
<<if hasVisited("FNG-11000 Kate sits with Amanda")>>"$kate.stripperName, [[put these on|FNG-20700 Booty shorts]],"<<else>>"[[Put these on|FNG-20700 Booty shorts]], New Girl,"<</if>> she shouts in your ear. "We're getting some air."
<</page>><<silently>>
<<wear-shorts-pinkBootyShorts>>
<</silently>>\
<<header>>\
<<page>>\
Unsure what's happening – but more than happy to put some clothes on – you step into and pull up a pair of tight, clingy booty shorts.
//[[Put on the top.|FNG-20800 HCC Tee]]//
<</page>><<silently>>
<<wear-top-blackHardCockCafeCropTop>>
<</silently>>\
<<header>>\
<<page>>\
You pull on the Hard Cock Cafe t-shirt. It's too small, it clings to your tits without supporting them, it bares your midriff, and it has a picture of a woman getting a facial from a cock-shaped guitar.
Hard to believe this shirt and these shorts could make you feel dignified again...but they do, they really do.
"C'mon," shouts <<Amanda>>. "[[Let's go|FNG-20900 Following Amanda]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"We're gonna bring in some guys off the street," she shouts in your ear as you walk together through the mostly empty club. "They call it 'coyoting', don't know why. We do it at the start of the night when it's quiet."
You push through the swing doors, and out into <span class="imageLink"><<link "Naked">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/courtneyLove.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <span class="imageLink"><<link "Singer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/charliXCX.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>/<span class="imageLink"><<link "Songwriter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/toveLo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> Corridor. It's lit up in neon now. Signs advertising GIRLS GIRLS GIRLS and ROCK MUSIC glow red and blue.
<<Amanda>> slips on a wristband as you walk. It's shaped like a big plastic heart and it has the number //10// on it.
<<link "//Follow <<Amanda>>.//" "FNG-20900 Patpong">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/patpongStallsAtNight.jpg" 50 1000 450 0>>\
You leave the air-conditioned club, and step out into the warm noisy hubbub of the night market. The air smells of satay and fried food.
It's like walking back into [[real life|FNG-21000 Coyoting]]. Outside the club, an endless stream of tourists trickles past. Hawkers shout out, offering them //Special iPhone// and //Gucci handbag.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The first time you came here, you walked past all the skimpily clad bargirls, offering their bodies by the side of the market.
Now you're dressed like one of them, doing the same thing in the same street. The only reason a passer-by might think you're any different from them is because you're white.
<<Amanda>> guides you in front of a huge poster pasted on the boarded over frontage of the Hard Cock Cafe. It's a massive version of the half-naked girl from the <span class="imageLink"><<link "flyer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/hccFlyer2.png']]")>>
<<set Dialog.open()>>
<</link>></span> Ian showed you when you arrived. English and Thai text advertises WHITE GIRLS, BACKPACK GIRLS, TOPLESS BAR.
"Just look pretty," she says. "Smile at any guys who look at you. I'll do the talking."
[[Okay.|FNG-21010 Looking pretty]]
[[What's with the wristband?|FNG-21005 Wristband]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"What's with the wristband?" you ask.
"Oh," she looks down at it. "<div class="tooltip">Bargirls<span class="tooltiptext">club prostitutes</span></div> have to wear one in the street." She shrugs. "[[Don't know why|FNG-21010 Looking pretty]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("FNG-21005 Wristband")>>\
"Okay," you nod.
<</if>>\
The market's just a few metres away. White backpackers, Asian locals, families with kids trickle past, mostly ignoring you. A hubbub of talking and tinny music from little stereos and the same sales pitches, over and over. //You want the Gucci handbag? Gucci handbag, half price, I give to you...//
"So how'd you hear about this place?" <<Amanda>> asks you.
<span class="greyedOut">//[Lie]//</span> [[Some guys on Khao San Road.|FNG-21020 KSR guys]]
<span class="greyedOut">//[Lie]//</span> [[This girl at a half moon party.|FNG-21030 Half moon girl]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Some guys on Khao San," you lie.
<<include "FNG-21040 Not so bad">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"This girl at a half moon," you lie.
<<include "FNG-21040 Not so bad">>
<</page>>"Cool. Stick with it, it's not so bad," <<Amanda>> promises. "Just gotta get used to it."
[[How long have you been here?|FNG-21050 How long have you been here, Amanda?]]
[[Got any advice?|FNG-21060 Got any advice, Amanda?]]
[[Lu took my passport, is that normal?|FNG-21070 Lu took my passport, Amanda]]<<silently>>
<</silently>>\
<<header>>\
<<page>>\
"How long have you been here?" you ask.
"Nearly a year," she says. "They handle the visa stamps. And the money's enough to stay out as long as you want."
<<include "FNG-21080 Chinese playboy">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Got any advice?"
"Hmmm," she cocks her head to one side as she considers that. "Well...just stay on the right side of the bosses, I guess. If they like you, they like you. If not...they'll make your life pretty miserable."
<<include "FNG-21080 Chinese playboy">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Lu took my passport," you confide. "Is that normal?"
"Yeah. Well..." she admits, "they've still got mine. I think they just don't like girls quitting without notice, it fucks up the roster."
The analyst in you wonders if she's got any evidence for that belief, or if it's just wishful thinking.
<<include "FNG-21080 Chinese playboy">>
<</page>>Meanwhile the crowd ambles past, mostly ignoring the two white bargirls. Then you accidentally lock eyes with an Asian guy, early 30s, wearing an expensive-looking short sleeved white shirt.
Everything about him – from the coiffed dark hair, to the aloof, relaxed posture, to the designer shades peeping out of his shirt pocket – looks tailored and confident and wealthy. He looks like [[the kind of guy who owns a yacht|FNG-21090 The kind of guy who owns a yacht]].<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your chest tightens and your ears feel suddenly hot.
A few moments ago you were grateful to be putting some clothes on. Now you feel very aware that you're standing by the roadside, tarted up in makeup and heels and trashy little clothes that advertise the titty bar you work at.
WHITE GIRLS, BACKPACK GIRLS, TOPLESS BAR. You //know// you're undercover. But it's hard not to feel...cheap.
//[[Smile at him.|FNG-21090 Kate smiles at Chinese playboy]]
[[Look away.|FNG-21100 Kate breaks eye contact with Chinese playboy]]//
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Feeling hot and embarrassed, you force a smile on your face, just like <<Amanda>> told you to.
<<include "FNG-21110 Yacht guy approaches">>
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Embarrassed, you look down at the ground.
<<include "FNG-21110 Yacht guy approaches">>
<</page>>Yacht Guy is here with another Asian man – who looks like a guy whose //friend// owns a yacht. Same age, less put together, not...radiating authority like Yacht Guy does.
//Oh god, they're [[coming over|FNG-21120 Hey guys]].//<<silently>>
<<set $shenLiking to 0>>
<</silently>>\
<<header>>\
<<page>>\
"Heyyy," <<Amanda>> says with a bright, welcoming smile. "How's it going, guys?"
"Hey," replies Yacht Guy, but he's looking at you, his well-groomed eyebrows curving up. "What's this place?"
[[What's it look like?|FNG-21130 What's it look like?]]
[[Still figuring it out, it's my first day.|FNG-21220 Still figuring it out]]
[[Bar full of naked women.|FNG-21250 Bar full of naked women]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<if $kate.agency == "mi6">>
<<set _england to "England">>
<<elseif $kate.agency == "asis">>
<<set _england to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _england to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _england to "New Zealand">>
<<else>>
<<set _england to "ERROR IN ENGLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What's it look like?"
He peers carefully at the blacked-out front with the big tacky poster, the neon sign that matches your skimpy t-shirts. "A shithole," he shrugs. "Where are you two sluts from?"
"USA," smiles <<Amanda>>.
<<if $kate.agency == "cia">>\
[[Me too. What about you guys?|FNG-21200 We're sluts from America]]
<<else>>\
<<link "_england. What about you guys?" "FNG-21200 We're sluts from America">><</link>>
<</if>>\
[[Why, where are you two assholes from?|FNG-21140 Assholes]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-naughty>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Why, where are you two assholes from?"
<span class="redHighlighter">Shen ''disliked'' that.</span> <span class="redHighlighter"><<Amanda>> ''disliked'' that.</span>
"Charming," Yacht Guy tuts. He and his friend ditch the conversation, and head back off [[into the night market|FNG-21150 Jesus Christ River]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"What the hell, $kate.stripperName?" <<Amanda>> snaps.
[[Screw those guys.|FNG-21160 Those guys were assholes]]
[[Sorry. Not used to being talked to like that.|FNG-21170 Sorry]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Screw those guys, they're assholes."
<span class="redHighlighter"><<Amanda>> ''disliked'' that.</span>
"Assholes with //money,"// she retorts. "Now they're gone. Great work."
[[Sorry. Not used to being talked to like that.|FNG-21170 Sorry]]
[[A rich asshole's still an asshole.|FNG-21170 Still assholes]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry. Just...not used to being talked to like that."
//"Get// used to it," she snaps. "Fast."
[[Sorry.|FNG-21270 Frosty atmosphere][$kateSays to "sorry"]]
//[[Say nothing.|FNG-21270 Frosty atmosphere][$kateSays to "nothing"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Rich asshole's still an asshole."
<span class="redHighlighter"><<Amanda>> ''disliked'' that.</span>
"If I don't get clients I don't get //paid,// $kate.stripperName," <<Amanda>> says. "Ditch the attitude. Now."
[[Sorry.|FNG-21270 Frosty atmosphere][$kateSays to "sorry"]]
//[[Say nothing.|FNG-21270 Frosty atmosphere][$kateSays to "nothing"]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<if $kate.agency == "cia">>
<<set _england to "Me too">>
<<elseif $kate.agency == "mi6">>
<<set _england to "England">>
<<elseif $kate.agency == "asis">>
<<set _england to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _england to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _england to "New Zealand">>
<<else>>
<<set _england to "ERROR IN ENGLAND TEMP VAR">>
<</if>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _modifiers to 2>>
<</silently>>\
<<header>>\
<<page>>\
"_england," you smile, letting the insult pass. "What about you guys?"
<span class="greenHighlighter">Yacht Guy ''liked'' that.</span>
"China," he replies proudly. Then, to his friend: "<div class="tooltip">Wei, qu bu qu yi xia?<span class="tooltiptext">Do you want to check it out, Wei?</span></div>"
The friend looks you over appraisingly. His gaze runs down your body; your <<if $kate.braSize == "large">>big tits, unsupported by the flimsy crop top<<else>>nipples straining inside the flimsy crop top<</if>>, your bared belly, your long naked legs.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Seduction check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Seduction check.'' Target: 6. You rolled: (_kateD10+_modifiers) = <<= _kateD10 + _modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
The two men share a grin and a shrug. "Okay," Yacht Guy tells you. "We'll [[take a look|FNG-21910 Follow me]]."
<<else>>
"Nah," he pronounces. "I didn't come to Thailand to <<if $kate.agency == "cia">>[[fuck an American|FNG-21280 Failed pitch]]<<elseif $kate.agency == "mi6">>[[fuck a Brit|FNG-21280 Failed pitch]]<<elseif $kate.agency == "asis">>[[fuck an Aussie|FNG-21280 Failed pitch]]<<elseif $kate.agency == "csis">>[[fuck a Canadian|FNG-21280 Failed pitch]]<<elseif $kate.agency == "nzsis">>[[fuck a Kiwi|FNG-21280 Failed pitch]]<<else>>ERROR IN KATE.AGENCY VAR<</if>>."<br />
<br />
"Yeah," Yacht Guy concurs. "Have a nice night, <div class="tooltip">nǐ yáng lājī<span class="tooltiptext">you foreign trash</span></div>."
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+2<span class="tooltiptext">+1 //Beauty//, +1 //Liking//</span></div> to tempt them inside.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Still figuring it out," you shrug. "It's my first day."
"Oh, sure," he scoffs. "Don' bullshit me." His accent's deeper, less sing-song than the locals. Chinese?
"Seriously," <<Amanda>> backs you up. "She just started tonight."
"Doing what?"
[[Barmaid.|FNG-21230 Barmaid]]
[[Topless barmaid.|FNG-21230 Barmaid][$kateSays to "toplessBarmaid"]]
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<if $kateSays == "toplessBarmaid">>
<<set _modifiers to 2>>
<<else>>
<<set _modifiers to 1>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "toplessBarmaid">>\
<<set _yachtGuyLikesKate to true>>\
"Topless barmaid," you admit.
<span class="greenHighlighter">Yacht Guy ''liked'' that.</span>
<<else>>\
"Barmaid," you tell him.
//"Topless// barmaid," <<Amanda>> clarifies.
<</if>>\
"And what abou' you?" he asks <<if $kateSays == "toplessBarmaid">><<Amanda>><<else>>her<</if>>.
"For <div class="tooltip">2000 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," she arches an eyebrow, "anything you guys want."
"<div class="tooltip">Měiguó dàng fù<span class="tooltiptext">American slut</span></div>," chuckles Yacht Guy. He turns to his friend. "<div class="tooltip">Wei, qu bu qu yi xia?<span class="tooltiptext">Do you want to check it out, Wei?</span></div>"
The friend looks you over appraisingly. His gaze runs down your body; your <<if $kate.braSize == "large">>big tits, unsupported by the flimsy crop top<<else>>nipples straining inside the flimsy crop top<</if>>, your bared belly, your long naked legs.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Seduction check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Seduction check.'' Target: 6. You rolled: (_kateD10+_modifiers) = <<= _kateD10 + _modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
The two men share a grin and a shrug. "Okay," Yacht Guy tells you. "We'll [[take a look|FNG-21910 Follow me]]."
<<else>>
"Nah," he pronounces. "I didn't come to Thailand to <<if $kate.agency == "cia">>[[fuck an American|FNG-21280 Failed pitch]]<<elseif $kate.agency == "mi6">>[[fuck a Brit|FNG-21280 Failed pitch]]<<elseif $kate.agency == "asis">>[[fuck an Aussie|FNG-21280 Failed pitch]]<<elseif $kate.agency == "csis">>[[fuck a Canadian|FNG-21280 Failed pitch]]<<elseif $kate.agency == "nzsis">>[[fuck a Kiwi|FNG-21280 Failed pitch]]<<else>>ERROR IN KATE.AGENCY VAR<</if>>."<br />
<br />
"Yeah," Yacht Guy concurs. "Have a nice night, <div class="tooltip">nǐ yáng lājī<span class="tooltiptext">you foreign trash</span></div>."
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+_modifiers<span class="tooltiptext">+1 //Beauty//<<if $kateSays == "toplessBarmaid">>, +1 //Liking//<</if>></span></div> to tempt them inside.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _modifiers to 1>>
<</silently>>\
<<header>>\
<<page>>\
"Bar full of naked women," you answer truthfully.
Yacht Guy chuckles at that. He turns to his friend: "<div class="tooltip">Wei, qu bu qu yi xia?<span class="tooltiptext">Do you want to check it out, Wei?</span></div>"
The friend looks you over appraisingly. His gaze runs down your body; your <<if $kate.braSize == "large">>big tits, unsupported by the flimsy crop top<<else>>nipples straining inside the flimsy crop top<</if>>, your bared belly, your long naked legs.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Persuasion check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Persuasion check.'' Target: 6. You rolled: (_kateD10+_modifiers) = <<= _kateD10 + _modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
The two men share a grin and a shrug. "Okay," Yacht Guy tells you. "We'll [[take a look|FNG-21910 Follow me]]."
<<else>>
"Nah," he pronounces. "I didn't come to Thailand to <<if $kate.agency == "cia">>[[fuck an American|FNG-21280 Failed pitch]]<<elseif $kate.agency == "mi6">>[[fuck a Brit|FNG-21280 Failed pitch]]<<elseif $kate.agency == "asis">>[[fuck an Aussie|FNG-21280 Failed pitch]]<<elseif $kate.agency == "csis">>[[fuck a Canadian|FNG-21280 Failed pitch]]<<elseif $kate.agency == "nzsis">>[[fuck a Kiwi|FNG-21280 Failed pitch]]<<else>>ERROR IN KATE.AGENCY VAR<</if>>."<br />
<br />
"Yeah," Yacht Guy concurs. "Have a nice night, <div class="tooltip">nǐ yáng lājī<span class="tooltiptext">you foreign trash</span></div>."
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+_modifiers<span class="tooltiptext">+1 //Beauty//</span></div> to tempt them inside.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "sorry">>\
"Sorry," you <<if hasVisited("FNG-21170 Sorry")>>repeat<<else>>murmur<</if>>.
<<elseif $kateSays == "nothing">>\
You say nothing, looking down at your new shoes on the dirty tarmac.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
A minute or so passes in frosty silence. Then a tall, burly white guy in his 30s with sunburned skin and shabby clothes catches <<Amanda>>'s glance and comes shambling over, attracted by her flirty smile.
"Hey handsome, what's your name?" she coos.
She can't really think he's handsome, he'd be a 6 on a good day. But he eats it right up. "Billy," he tells her, [[smiling drunkenly|FNG-22010 Amanda and Billy]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry about it," <<Amanda>> says. "Plenty more fish in the sea."
She's right. Almost immediately a tall, burly white guy in his 30s with sunburned skin and shabby clothes catches <<Amanda>>'s glance and comes shambling over, attracted by her flirty smile.
"Hey handsome, what's your name?" she coos.
She can't really think he's handsome, he'd be a 6 on a good day. But he eats it right up. "Billy," he tells her, [[smiling drunkenly|FNG-22010 Amanda and Billy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Yacht Guy and his friend grin at each other. "Okay," he shrugs. "We have a look."
[[Follow me.|FNG-21910 Follow me]]
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<Amanda>> stays out front; you lead the two Chinese men in through the long dark corridor of neon and naked female rock stars.
You push through the swing doors into the main club. //Livin' on a Prayer// is blaring out, one of the <span class="imageLink"><<link "Thai bargirls">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/smuk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is stripping onstage, and <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is pouring pints topless.
You escort the men to the bar. Two skimpily dressed <span class="imageLink"><<link "Thai">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <span class="imageLink"><<link "bargirls">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> appear on their shoulders, as if by magic. You guess they'll take it from here.
<<link "//Go back out to <<Amanda>>.//" "FNG-22000 Coyoting Pt II">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Back out front, <<Amanda>> is talking with another guy, a tall, burly white guy in his 30s with sunburned skin and shabby clothes. He's smiling drunkenly, pawing her leg while she talks.
"Here she is," she says when you appear. "$kate.stripperName, this is Billy, show him to the bar, will ya?"
[[Sure thing.|FNG-22100 Bum grope]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The next few minutes are the <<Amanda>> and Billy Show; you stand around like a third wheel as she promises him he's found the coolest club in Bangkok, and he smiles and paws her leg.
"$kate.stripperName'll [[take you in|FNG-22100 Bum grope]]," she says. "And I'll see you in there later."
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
He follows you into the corridor. He has to dip his head to go through the door; he must be 6'6 at least.
As you're walking him through the long dim hallway, his big hand settles on your [[butt cheek|FNG-22105 Rear view]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
His hand's as big as a bunch of bananas. His palm rests on your booty shorts, his fingertips touch the bared underside of your buttock, giving it a firm squeeze.
//[[Push his hand away.|FNG-22110 Defensive Kate]]
[[Let him fondle your butt.|FNG-22120 Permissive Kate]]//
<</page>><<silently>>
<<showFront>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//Oh god.// You tense up at the surprise grope, and instinctively swat away his massive paw. Billy just laughs and [[follows along|FNG-22130 Dropping off Billy]].
//Some o' the punters'll get a wee bit handsy...// Connor's words from the interview ring out in your mind. But knowing that intellectually, and having some random fucking giant casually lay his hand on your ass, are two totally different things.
<</page>><<silently>>
<<showFront>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//Oh god.// You tense up at the unexpected touch, but otherwise manage to keep your cool. Billy accompanies you [[into the club|FNG-22130 Dropping off Billy]] with his hand on your ass the whole way.
//Some o' the punters'll get a wee bit handsy...// Connor's words from the interview ring out in your mind. But knowing that intellectually, and having some random fucking giant casually lay his hand on your ass, are two totally different things.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your work's like that for the next half-hour or so: flirting with guys in the street, escorting them inside, sometimes with an arm round your waist or a hand on your ass.
Even though you're bringing them in in ones and twos, each time you come back in the place looks a little busier and livelier. Drinks are flowing fast at the bar and there's a [[tinge of party excitement|FNG-22140 Targets spotted]] in the air.
<</page>><<silently>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Back out in the night market, your spider senses tingle when you glimpse a big pack of rowdy, sunburned lads surging through the throng, holding beers in plastic cups. //Oh god, they're gonna notice m–//
"Hey boys!" <<Amanda>> squeals. Her face is lit up in flirty, playful excitement. "[[Where ya from|FNG-22150 Stag party]]?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're quickly surrounded by twelve boisterous British lads with trendy haircuts and lobster pink sunburns: a stag party from Kent<<if $kate.agency != "mi6">> in the south of England<</if>>.
"Ahh come you two are doing this?" one asks. His voice is croaky and hoarse, probably from hours of shouting in pubs.
"We're backpackers, we're broke!" shrugs <<Amanda>>.
That admission gets a cold-blooded laugh from the stag party. "Hahaha! [[Slaaags|FNG-22160 Slaaags]]!"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"C'mon, let's go in, you can see our titties," offers <<Amanda>>.
//"You can see our titties,"// sniggers one of the guys, mimicking her US accent.
"What about our beers?" croaks Hoarse Guy.
[[Bring 'em in.|FNG-22170 Bring 'em in]]
[[Drink them, you pussies.|FNG-22180 Drink them you pussies]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Bring 'em in," you shrug.
<<include "FNG-22200 Corridor description">>
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Drink 'em, you pussies."
<span class="greenHighlighter">Amanda ''loved'' that.</span>
A moment's scandalised //whoas// and laughter from the taunted stags – then they're all pouring beer down their throats, guzzling it down and tossing away their plastic cups in the street.
"Come on boys," wheezes Hoarse Guy. "Let's [[check it ahhht|FNG-22190 Corridor walk]]."
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<include "FNG-22200 Corridor description">>
<</page>>And so you end up returning into the gloomy corridor, this time surrounded by a dozen drunk dickheads from <<if $kate.agency == "mi6">>Kent<<else>>England<</if>>.
<<Amanda>> is up ahead, laughing her ass off as one of them playfully holds up her tiny skirt all the way back in. Her bare buttocks shift hypnotically up and down as she walks.
Two different men's hands cup and squeeze your ass, all the way back [[into the club|FNG-23000 Club reëntry]].<<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Once you pass through the swing doors, all the available <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> swoop in on your gang of stags, like World War II fighter planes swarming over a pack of enemy bombers.
<<if hasVisited("FNG-22180 Drink them you pussies")>>\
You use the distraction to slip [[back behind the bar|FNG-23100 Behind the bar (thirsty stags version)]].
<<else>>\ You use the distraction to slip [[back behind the bar|FNG-24000 Asian man]].
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
It's a big relief to get back behind the bar. You know you'll have to strip off again, but at least you'll have a big block of wood and glowing blue neon to protect you.
The atmosphere's really changed now; with the stag party, there's maybe thirty or forty customers in. The place is nowhere near packed, but the bar is buzzing and busy. The music's been turned up, too.
Roxy's busy serving, and the stags all need fresh drinks. A few of them are already at the bar trying to get your attention, and you haven't even taken your clothes off yet.
//[[Take off your booty shorts.|FNG-23300 Shorts off]]
[[Take off your t-shirt.|FNG-23200 T-shirt off]]//
<</page>><<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your t-shirt, baring your breasts for the customers. After being outside in the warm night, the chilled air feels frigid on your exposed skin and nipples.
<<if $kate.isWearing.includes("shorts")>>\
[[Take off your booty shorts.|FNG-23300 Shorts off]]
<<else>>\
<<include "FNG-23400 Ready to serve">>
<</if>>\
<</page>><<silently>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
You peel down your tight booty shorts and step out of them. Now you're back down to your skimpy thong.
<<if $kate.isWearing.includes("top")>>\
[[Take off your t-shirt.|FNG-23200 T-shirt off]]
<<else>>\
<<include "FNG-23400 Ready to serve">>
<</if>>\
<</page>>You tuck the little clothing items away on a shelf behind the bar, then [[get ready to serve a customer|FNG-23500 Hoarse Guy]].<<silently>>
<<unset $kateSays>>
<</silently>>\
<<header>>\
<<page>>\
It's Hoarse Guy. The music's now so loud that you'd have to lean over the bar to hear his order, even if his voice wasn't husky.
You step up on the rail and lean over the bar<<if $kate.hairStyle != "short">>, tucking your hair behind your ear so he can shout into it<</if>>.
"<<if $kate.braSize == "small">>Cute piercings<<elseif $kate.braSize == "medium">>Nice tits<<else>>You've got great tits<</if>>," he shouts.
<<if $kate.braSize == "large">>\
[[I know.|FNG-23600 I know]]
<<else>>\
[[You think?|FNG-23620 You think?]]
<</if>>\
[[Thanks, what can I get you?|FNG-23610 What can I get you][$kateSays to "thanks"]]
[[What can I get you?|FNG-23610 What can I get you]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"I know," you assure him. Guys have been telling you that for [[a long time|FNG-23700 Shake 'em]].
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"Thanks," you shout back. "What can I get you?"
<<else>>\
"What can I get you?" you shout back.
<</if>>\
"[[Ten pints|FNG-23800 Ten pints]], darlin'," he shouts.
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"You think?" you shout back, coyly. <<if hasVisited("WELBANG-393000 Nipples. Pierced")>>"They're new."<</if>>
"Oh yeah," he shouts back, gesturing for you to [[straighten up|FNG-23630 Boob assessment]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You straighten up behind the bar, subtly sucking in your stomach and casually arching your back.
Hoarse Guy shouts something into the ear of the stag beside him at the bar, and both men appraisingly stare at your bod. They shout some comments to each other, back and forth, then Hoarse Guy [[beckons you back in|FNG-23640 They're grrreat]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step on the rail and bend over the bar. This time you've got two men shouting in your ears.
<<if $kate.braSize == "small">>\
"They're fucking sexy," shouts the other guy.
"We both like 'em," shouts Hoarse Guy.
<<else>>\
"They're perfect," shouts the other guy.
"Not too big, not too small," shouts Hoarse Guy. "Perfect."
<</if>>\
[[Thanks guys, what can I get you?|FNG-23650 Thanks what'll it be]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks guys," you shout, as if you actually give a shit about what these two drunk randoms think about your <<if $kate.braSize == "small">>nipple piercings<<else>>bra size<</if>>. "What can I get you?"
"[[Ten pints|FNG-23800 Ten pints]], darlin'," shouts Hoarse Guy, holding up all his fingers and thumbs.
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
He laughs at that. "Give 'em a shake." he shouts in your ear.
[[Nope. What can I get you?|FNG-23710 Nope]]
[[If I do, will you hurry up and order?|FNG-23720 Kate sets a condition][$kateSays to "willUOrder"]]
[[Okay, if you buy me a shot.|FNG-23720 Kate sets a condition][$kateSays to "buyMeAShot"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Nope," you shout back, and he laughs. "What can I get you?"
"[[Ten pints|FNG-23800 Ten pints]], darlin'," he shouts.
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "willUOrder">>\
"If I do, will you hurry up and order?" you shout.
<<elseif $kateSays == "buyMeAShot">>\
"If you buy me a shot," you shout.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
Hoarse Guy [[nods eagerly|FNG-23730 Boob shake]] and flashes you the "ok" sign.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You straighten up behind the bar.
What you're about to do would feel absolutely ridiculous, if not for the rapt attention written all over Hoarse Guy's face.
//[[Shake your chest.|FNG-23740 Kate shakes her titties]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a quick glance to your right – Roxy's not looking, thank goodness – you shimmy your chest and give your boobs a little shake.
Okay, you were wrong, you //do// feel ridiculous. But Hoarse Guy seems pleased. He stares at your big, wobbling tits and mouths something you can't hear, but looks like him muttering //fucking hell// to himself.
[[Okay, what can I get you?|FNG-23750 What'll it be]]
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-eyes-big>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
You lean over the bar again. "Okay," you shout, "what can I get you?"
"Fuckin' hell, darlin'," he shouts back. "[[Ten pints|FNG-23800 Ten pints]]. And anything you want. Fuck. Marry me."
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("FNG-17330 Shot")>>\
<<if $kateChoseTequila>>
<<set $katesShotOfChoice to "tequila">>
<<else>>
<<set $katesShotOfChoice to "Jäger">>
<</if>>
<<else>>
<<set $katesShotOfChoice to either("tequila", "Jäger", "vodka", "rum",)>>
<</if>>\
<</silently>>\
<<header>>\
<<page>>\
You pour ten pints of Chang, shuttling between your taps and Roxy's to get them poured faster. Your hands are wet and your boobs are spattered with drops of cold Chang when you're done.
Hoarse Guy buys you a shot of $katesShotOfChoice and you knock it back with him before you [[serve the next customer|FNG-25000 Bar atmosphere]].
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Roxy's busy serving. An Asian man waiting at the bar catches your eye, exuding that anxious, "next in line" vibe.
He doesn't look like the other customers in here; he looks older, grizzled, more world-worn. Poorer. The lines etched deep in his dark skin speak of a lifetime of hard outdoor work.
//[[Serve him.|FNG-24005 Clothed service]]
[[Strip off your clothes first.|FNG-24010 Kate strips respectfully]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Better serve this guy,// you think. You step up on the rail to [[take his order|FNG-24050 No English]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"One second," you mouth, holding up your finger to let the old man know you've noticed him.
//[[Take off your booty shorts.|FNG-24030 Shorts off]]
[[Take off your t-shirt.|FNG-24020 T-shirt off]]//
<</page>><<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
The old man watches you peel off your t-shirt, baring your soft, smooth breasts to him and the others. After being outside in the warm night, the chilled air feels frigid on your exposed skin and nipples.
<<if $kate.isWearing.includes("shorts")>>\
[[Take off your booty shorts.|FNG-24030 Shorts off]]
<<else>>\
<<include "FNG-24040 Ready to serve">>
<</if>>\
<</page>><<silently>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
You peel down your tight booty shorts and step out of them. Now you're back down to your skimpy thong.
<<if $kate.isWearing.includes("top")>>\
[[Take off your t-shirt.|FNG-24020 T-shirt off]]
<<else>>\
<<include "FNG-24040 Ready to serve">>
<</if>>\
<</page>>You tuck your little clothing items away on a shelf behind the bar, then [[step up on the rail|FNG-24050 No English]] to get the old man's order.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're about to lean in and offer him your ear – but he waves you back, brusquely.
Clutching a brown <div class="tooltip">฿1000 note<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in one hand, he points a wrinkled finger at the bar behind you.
It looks like he's pointing at the liquor bottles.
[[You want Sangsom?|FNG-24050 You want liquor?][$kateSays to "Sangsom"]]
[[You want tequila?|FNG-24050 You want liquor?][$kateSays to "tequila"]]
[[You want gin? Gin & Tonic?|FNG-24050 You want liquor?][$kateSays to "gin? Gin & Tonic"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"You want $kateSays?" you ask, pointing to a bottle.
He shakes his head, stabs the air with his finger again.
<<if $kateSays != "Sangsom">>\
[[You want Sangsom?|FNG-24060 Second attempt][$secondAttempt to "Sangsom"]]
<</if>>\
<<if $kateSays != "tequila">>\
[[You want tequila?|FNG-24060 Second attempt][$secondAttempt to "tequila"]]
<</if>>\
<<if $kateSays != "gin? Gin & Tonic">>\
[[You want gin? Gin & Tonic?|FNG-24060 Second attempt][$secondAttempt to "gin? Gin & Tonic"]]
<</if>>\
[[You want JD?|FNG-24060 Second attempt][$secondAttempt to "JD"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You want $secondAttempt?" you try.
He shakes his head in frustration, points again, jabbing the air. //Ohhhh...is he pointing through to the other side of the bar? At the Thai barmaids?//
[[You want Káyk?|FNG-24070 You want Kayk?]]
[[You want Ploy?|FNG-24080 You want Ploy?]]
<</page>><<silently>>
<<unset $secondAttempt>>
<</silently>>\
<<header>>\
<<page>>\
"You want Káyk?" you shout.
He shakes his head, but the excitement in his eyes tells you that you're on the right track.
[[You want Ploy?|FNG-24080 You want Ploy?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You want Ploy?" <<if not hasVisited("FNG-24070 You want Kayk?")>>you shout.<</if>>
The old man nods and beams a big, gap-tooth smile. //Is he her dad or something?//
//[[Get Ploy.|FNG-24090 Kate gets Ploy]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You head round the other side of the bar to get <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
She's about to serve a guy, but she breaks away when she sees you. "Hi," she shouts, leaning up into your ear to be heard.
[[This guy on my side wants you.|FNG-24100 Kate asks for help][$kateSays to "thisGuyWantsYou"]]
[[Can you help me with a customer?|FNG-24100 Kate asks for help][$kateSays to "canUHelp"]]
[[I don't know what this guy wants.|FNG-24100 Kate asks for help][$kateSays to "idk"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thisGuyWantsYou">>\
"This guy on my side wants you," you shout in her ear. After all the guy hair you've been getting up close to tonight, Ploy's long straight hair smells incredibly fragrant and feminine.
<<elseif $kateSays == "canUHelp">>\
"Can you help me with a customer?" you shout in her ear. After all the guy hair you've been getting up close to tonight, Ploy's long straight hair smells incredibly fragrant and feminine.
<<elseif $kateSays == "idk">>\
"I don't know what this guy wants," you shout in her ear. After all the guy hair you've been getting up close to tonight, Ploy's long straight hair smells incredibly fragrant and feminine.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
She nods, and follows you back round to the [["western" side of the bar|FNG-24110 Recognition]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Ploy recognises him when she sees him, offering him a smile and a <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> before taking his money. She beckons you over to your [[cash register|FNG-24120 Cash register]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"He from night market," Ploy shouts into your ear. "He come in every night. Give him change in <div class="tooltip">hun-dred<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> and bottle Leo beer, no charge. He friend of owner."
[[Thanks.|FNG-24130 Thanks Ploy]]
[[Why doesn't he go to your side?|FNG-24140 Why is he on my side?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you shout. Ploy smiles and leaves you to it.
//[[Give the old man his change and beer.|FNG-24150 Kate serves the Old Man]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Why doesn't he go to your side?" you shout.
"He like <div class="tooltip">farang<span class="tooltiptext">foreign</span></div> girl," Ploy explains.
[[Thanks.|FNG-24130 Thanks Ploy]]
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You hand the old man ten red <div class="tooltip">฿100<span class="tooltiptext">฿100 = <<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> notes, and a free bottle of cold Leo beer. He nods and gives you a gappy smile as a reward.
<<if $kate.isWearing.includes("top")>>\
You catch a testy little glance from Roxy. //Better undress before I serve anybody else.//
//[[Take off your booty shorts.|FNG-24170 Shorts off]]
[[Take off your t-shirt.|FNG-24160 T-shirt off]]//
<<else>>\
You look around for your [[next customer|FNG-25000 Bar atmosphere]].
<</if>>\
<</page>><<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
The old man watches you peel off your t-shirt, baring your soft, smooth breasts to him and the others. After being outside in the warm night, the chilled air feels frigid on your exposed skin and nipples.
<<if $kate.isWearing.includes("shorts")>>\
[[Take off your booty shorts.|FNG-24170 Shorts off]]
<<else>>\
<<include "FNG-24180 Ready to serve">>
<</if>>\
<</page>><<silently>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
You peel down your tight booty shorts and step out of them. Now you're back down to your skimpy thong.
<<if $kate.isWearing.includes("top")>>\
[[Take off your t-shirt.|FNG-24160 T-shirt off]]
<<else>>\
<<include "FNG-24180 Ready to serve">>
<</if>>\
<</page>>Back in uniform. Such as it is. You tuck your little clothing items away on a shelf behind the bar, then look around for your [[next customer|FNG-25000 Bar atmosphere]].<<silently>>
<</silently>>\
<<header>>\
<<page>>\
The atmosphere in here is definitely picking up. For the first couple of hours it was a slow shift, mostly serving fat old sexpats; now it's louder, busier, and there are quite a few guys your own age in here. Some are even quite easy on the eye.
<<Amanda>>'s missing...actually, most of the bar girls are missing. The crowd is happier and animated now everybody's been drinking for a few hours.
There's something different about Roxy now. During the early shift, she was slouching around; now she's energised...vivacious. She's holding herself differently; more upright, more sexy, stomach in, chin up, back a little arched to show off her breasts.
It's only when you see it in her that you realise [[you're doing it, too|FNG-24190 Moo's show]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One of the bargirls – <span class="imageLink"><<link "the MILFy one">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – just finished her dance up on stage.
Wearing only thigh-length PVC boots with sky-high platforms, she bends at the waist to collect her scattered clothes, giving the audience a few last looks at her shaven pussy, and the glinting purple "gemstone" decorating the pommel of the buttplug shoved up her ass.
"Okay that was Moo, guys, less hear it for Moo," announces the DJ. One of the stags at the bar moos like a cow in response. "Nex' girl in 10 minute. And don' forget, girl/girl show at ten, you don' wanna miss, now [[Metallica|FNG-25000 Metallica]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A big dirty guitar riff kicks in, and there's a rush at the bar as a dozen guys want drinks at once.
First up is one of the old sexpats, an English guy you served earlier. Despite being at least 50, he has a stud earring and long hair – a lank grey ponytail, possibly grown to compensate for the hairline retreating over the top of his head.
He's one of the regulars here; he bought you a shot earlier to celebrate your first day on the job. He's been drinking for a couple of hours.
//[[Step up and take his order.|FNG-25010 What can I get you?]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Hi!" You step on the rail and lean over the bar. Beardy – Sam, the photographer – is hanging out with him now. "Another Leo?"
//[[Listen to his order.|FNG-25020 Boob grope]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
"Nah," he shouts into your ear, making your eardrum tickle. "Two Jack and Cokes, please, sweetie."
You freeze as he casually reaches up and cups your breast. Right there at the bar!
Connor told you not to freak out about getting groped. But...//Jesus!//
<span class="greyedOut">//[Retreat behind the bar]//</span> [[Coming up!|FNG-25040 Kate slithers away from the first grope]]
<span class="greyedOut">//[Swat his hand away]//</span> [[Hey!|FNG-25030 Kate swats away the first grope]]
<span class="greyedOut">//[Let him grope you]//</span> [[Um...with ice and lime?|FNG-25050 Kate double checks Pete's order]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Hey!" you swat his hand away and escape back behind the bar, out of reach.
Ponytail and Beardy both laugh at your shocked reaction.
[[Make them two Jack & Cokes.|FNG-25110 Kate makes Jack & Cokes]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Er, okay!" You slither quickly back over the bar and out of range.
Ponytail and Beardy burst out laughing at the startled look on your face.
[[Make them two Jack & Cokes.|FNG-25110 Kate makes Jack & Cokes]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Um," you freeze for a second, bent over the bar, tense and unmoving. Grey Ponytail gives your boob a little squeeze.
[[Do you want ice and lime?|FNG-25060 Ice and lime]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You put your mouth back to his ear. His hand stays on your breast as it moves. "[[Ice and lime|FNG-25070 Yes please]] with that?" you shout.
<span class="greenHighlighter">Pete ''loved'' that.</span> <span class="greenHighlighter">Sam ''loved'' that.</span>
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.hairStyle != "short">>Pete curls your hair out of your ear with his free hand. "Yes please, $kate.stripperName," he shouts.<<else>>Pete leans down to shout in your ear. "Yes please, $kate.stripperName."<</if>>
Beardy reaches up, touches your other breast, gently squeezes your hard nipple.
[[Coming up.|FNG-25075 Coming up]]
[[Singles or doubles?|FNG-25080 Singles or doubles?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Coming up," you shout in his ear, before [[slithering back across the bar|FNG-25100 Slitherer]].
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Singles or doubles?" you shout at Grey Ponytail. You nearly gasp in his ear when he squeezes your nipple at the same time as Beardy does, but manage to [[keep your composure|FNG-25090 Doubles]].
<span class="greenHighlighter">Pete ''loved'' that.</span> <span class="greenHighlighter">Sam ''loved'' that.</span>
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Doubles," shouts Ponytail, giving your nipple a soft, sensual //flick.//
[[Coming up.|FNG-25075 Coming up]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaked.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Both of them are staring at you, kind of stunned. You feel the same. Neither of these guys would ever, ever have a chance with you. Not in a thousand years.
But doing that made you wet as fuck. //Fuck. What am I doing.//
<<if hasVisited("FNG-25080 Singles or doubles?")>>\
//[[Make them two double Jack & Cokes, with ice and lime.|FNG-25110 Kate makes Jack & Cokes]]//
<<else>>\
//[[Make them two Jack & Cokes, with ice and lime.|FNG-25110 Kate makes Jack & Cokes]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You grab two highball glasses and turn around to use the bar optics. //Fuuuck.//
<<if hasVisited("FNG-25100 Slitherer")>>\
<<set _katesFantasy to $kate.kinks.random()>>\
It's obviously the situation, not these guys. //Obviously.//
It's something about the situation, <<if _katesFantasy == "masochist">>being so vulnerable amidst all<<elseif _katesFantasy == "submissive">>stripping off and serving<<elseif _katesFantasy == "exhibitionist">>being naked in front of<<else>>//[ERROR IN KATESFANTASY TEMP VAR]//<</if>> these men, that's turning you on, not the men themselves.
But you doubt they're smart enough to understand that.
<<if hasVisited("FNG-25080 Singles or doubles?")>>\
//[[Pour two double JDs.|FNG-25130 JD squirt]]//
<<else>>\
//[[Pour two single JDs.|FNG-25130 JD squirt]]//
<</if>>\
<<else>>\
Connor warned you about being groped, but you still can't quite believe that old guy just reached up and grabbed your tit.
Then just...//laughed// at your reaction. It's obviously no big deal here. //[[Fuuuck!|FNG-25120 Turned on]]//
<</if>>\
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy's wet.">>
<</first>>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
What's not helpful is how turned on and responsive your body feels right now.
It's obviously the situation, not any of these men. //Obviously.// Ponytail wouldn't have a chance with you in a thousand years.
It's something about <<if _katesFantasy == "masochist">>being so vulnerable amidst all<<elseif _katesFantasy == "submissive">>stripping off and serving<<elseif _katesFantasy == "exhibitionist">>being naked in front of<<else>>//[ERROR IN KATESFANTASY TEMP VAR]//<</if>> these men that's turning you on, not the men themselves. But you doubt any of them are smart enough to understand that.
<<if hasVisited("FNG-25080 Singles or doubles?")>>\
//[[Pour two double JDs.|FNG-25130 JD squirt]]//
<<else>>\
//[[Pour two single JDs.|FNG-25130 JD squirt]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//Deep breath. Poker face.// You squirt <<if hasVisited("FNG-25080 Singles or doubles?")>>two measures<<else>>a measure<</if>> of JD into each highball, then turn back to face them.
Both gross old guys are leering at you disgustingly. They probably have stinky erections in their pants. If the soda gun had a button that fired holy water, you're pretty sure it'd melt them.
You use it to fill both their glasses with Coke instead, and slide them across the blue neon counter.
<span class="greyedOut">//[Lean over the bar]//</span> [[That's 400 Baht!|FNG-25160 You heard me][$kateSays to "400"]]
<span class="greyedOut">//[Just shout it]//</span> [[400 Baht!|FNG-25140 Pervert says what]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"That's 400 Baht!" you shout.
"What?" shouts Ponytail, cupping his ear.
[[I said 400 Baht!|FNG-25150 I said 400 Baht]]
<span class="greyedOut">//[Lean across the bar]//</span> [[400 Baht.|FNG-25160 You heard me][$kateSays to "400"]]
<span class="greyedOut">//[Lean across the bar]//</span> [[You heard me.|FNG-25160 You heard me][$kateSays to "youHeardMe"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I said 400 Baht!" You hold up four fingers to illustrate.
"I can't hear you!" Ponytail shouts. He beckons you closer. Beardy titters like this is hilarious.
<span class="greyedOut">//[Lean across the bar]//</span> [[400 Baht.|FNG-25160 You heard me][$kateSays to "400"]]
<span class="greyedOut">//[Lean across the bar]//</span> [[You heard me.|FNG-25160 You heard me][$kateSays to "youHeardMe"]]
<span class="greyedOut">//[Lean across the bar]//</span> [[You're a perv.|FNG-25160 You heard me][$kateSays to "youPerv"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "400">>\
You step up on the rail, and lean over the bar. "400," you [[shout in his ear|FNG-25170 Ponytail pays up]].
<<elseif $kateSays == "youHeardMe">>\
You step up on the rail, and lean over the bar. "You heard me," you [[shout in his ear|FNG-25170 Ponytail pays up]].
<<elseif $kateSays == "youPerv">>\
You step up on the rail, and lean over the bar. "You're a perv," you [[shout in his ear|FNG-25170 Ponytail pays up]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-25100 Slitherer")>>Both men immediately cup your breasts again<<else>>He cups your breast again<</if>>, of course. With his free hand, Ponytail extracts a violet-coloured <div class="tooltip">฿500 note<span class="tooltiptext"><<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> from his pocket, and slides it over the bar.
"Get yourself a shot," he shouts.
//Okay.// You fucking [[need it|FNG-25180 Shot]].
<</page>><<silently>>
<<set _katesShotOfChoice to either ("vodka", "JD", "tequila", "Jäger", "gin", "rum", "Sangsom")>>
<</silently>>\
<<header>>\
<<page>>\
You knock down a shot of _katesShotOfChoice before moving onto the next customer. He's a chubby white kid, a couple years younger than you, with curly auburn hair and alcohol flushed cheeks.
//[[Step up and take his order.|FNG-26000 Service]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You hook a heel onto the footrail, and lean over the bar for him. "What can I get you?" you [[shout|FNG-26010 Young groper]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
His pudgy hand cups your boob. "Wow. Um...a beer, please," he shouts in your ear. <<if $kate.agency == "asis">>A young fellow Aussie.<<else>>A young Aussie.<</if>>
<span class="greyedOut">//[Pull away]//</span> [[Coming up!|FNG-26020 Quick service][$kateSays to "pullAway"]]
<span class="greyedOut">//[Swat his hand away]//</span> [[Okay!|FNG-26020 Quick service][$kateSays to "swat"]]
<span class="greyedOut">//[Let him grope you]//</span> [[We have Chang, Singha and Leo.|FNG-26030 Thorough service]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "pullAway">>\
<<set $katesGropingPolicy to "pullAway">>\
"Coming up!" you shout, quickly slithering [[back behind the bar|FNG-26040 Chang o'clock]] and out of his pudgy grasp.
<<elseif $kateSays == "swat">>\
<<set $katesGropingPolicy to "swat">>\
"Okay!" you swat his pudgy paw away, like you're batting away an insect, and slither [[back behind the bar|FNG-26040 Chang o'clock]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-open>>
<<set $katesGropingPolicy to "encouraging">>
<</silently>>\
<<header>>\
<<page>>\
"We have Chang, Singha and Leo," you shout in his ear.
<span class="greenHighlighter">Aaron ''loved'' that.</span>
"Um. Wow. Fuck," he says, reaching up and cupping your other bare breast while he shouts in your ear. "[[Chang, please|FNG-26040 Chang o'clock]]," he shouts, giving your <<if $kate.braSize == "small">>small<<elseif $kate.braSize == "medium">>perky<<else>>big<</if>> boobs a squeeze.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-26030 Thorough service")>>\
You slither back behind the bar, out of his pudgy grasp.
<</if>>\
//Okay. This is obviously happening now.// Connor warned you about it, and you'll just have to deal with it.
You click on the beer tap and pour the kid <<if hasVisited("FNG-26030 Thorough service")>>his<<else>>a<</if>> pint of Chang. It spatters up on your boobs when you click it off.
[[200 Baht!|FNG-26050 Aaron's beer]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and lean over the bar; his fleshy hands grab both your boobs. "200!" you shout in his ear.
"Okay!" He hands over <div class="tooltip">two red ฿100 notes<span class="tooltiptext">฿200 = <<if $kate.agency == "cia">>$6<<elseif $kate.agency == "mi6">>£4<<elseif $kate.agency == "asis">>$8<<elseif $kate.agency == "csis">>$8<<elseif $kate.agency == "nzsis">>$8<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, the exact money.
That little dork just felt you up twice, and [[didn't even tip|FNG-26055 No tip]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
There must be fifty guys in the club now. They trickle in from the street in ones and twos, hit the bar, watch a stage show. Some of them leave the way they came; some go through the arch with a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>, not to be seen again.
//Where are they exiting?// Not the way they came. That's tactically relevant, you'll definitely need to find out. Somehow.
In the early shift, the bargirls were all hanging around the bar; now they're scarce. You see them stripping onstage, and you see them working the crowd. But now it's busy, it doesn't take them long to seduce a tourist and lead him away through the [[neon yellow archway|FNG-26060 More naked]] in the corner near the stage.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Unexpectedly, you're more on display than the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, most of the time.
Up on stage, they get naked every time. In that respect, you've got more dignity than them – nobody's seen you bend over on stage and spread your ass cheeks apart. All seven of the bargirls have done that, over and over. You feel like you've seen more of them than their gynaecologists.
But when they come out on the club floor, they're dressed. Dressed like sluts – but dressed. While you and Roxy and the others are //permanently// on display.
You can't even stop and drink a glass of water without men [[staring at you|FNG-27000 Kate's shift]] while you do it.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Time passes, quicker now you're busy. You <<if $katesGropingPolicy == "swat">>give up trying to stop<<else>>get used to<</if>> the customers feeling up your boobs at the bar.
No one touched you for the first few hours; now the club's busy and everybody's drinking, everybody's casually copping a feel of your tits while they shout in your ear.
At first you thought this might be a "hazing the new girl" kind of thing. But Roxy's customers are openly pawing her too, and you guess so are Ploy's and Káyk's around the other side.
If you hadn't experienced it, you'd never believe how quickly it feels...//normal// [[in this environment|FNG-27010 Turned on]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your pussy's hot and wet, your nipples are stiff and responsive.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
More men touch your naked breasts in the next forty minutes or so than have in your whole life before. After a while you have the strange realisation that you've literally lost count of how many – like not remembering every single handshake at a conference. And you just feel...okay about it.
And, well...turned on. Absurdly, distractingly turned on.
None of the guys you're bending over the bar for are the men you'd be attracted to in real life. But letting them all paw your breasts and shout in your ear and tug on your stiff nipples before you fix them a drink is making you fucking //wet.// Even though you're <<if hasVisited("FNG-21910 Follow me")>>[[playing it cool|FNG-27100 Return of Yacht Guy]].<<else>>[[playing it cool|FNG-28000 Girl/girl announcement]].<</if>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and lean over for your next customer – Yacht Guy, and his friend, the first men you coyoted into the Hard Cock Cafe.
He doesn't touch your breasts. "We're leaving," he shouts in your ear.
[[Seeya.|FNG-27200 Bye Yacht Guy][$kateSays to "seeya"]]
[[Everything okay?|FNG-27200 Bye Yacht Guy][$kateSays to "everythingOk"]]
[[What did you think of this place?|FNG-27200 Bye Yacht Guy][$kateSays to "whatdUThink"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "seeya">>\
"Seeya," you [[shout|FNG-27300 Yacht Guy's offer]].
<<elseif $kateSays == "everythingOk">>\
"Everything okay?" you [[shout|FNG-27300 Yacht Guy's offer]].
<<elseif $kateSays == "whatdUThink">>\
"What'd you think?" you [[shout|FNG-27300 Yacht Guy's offer]].
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<if $knickers.type == "thong">>
<<set _it to "it">>
<<else>>
<<set _it to "them">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I'll give you <div class="tooltip">3000 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> for that thong," he replies, shouting in your ear.
That's five nights pay. But it's your last scrap of modesty. You //can't// take it off.
[[Not allowed.|FNG-27310 Kate refuses][$kateSays to "iCant"]]
<<link "Want me to take _it off, take me to dinner." "FNG-27310 Kate refuses">><<set $kateSays to "takeMeOut">><</link>>
[[Not everything's for sale.|FNG-27310 Kate refuses][$kateSays to "notForSale"]]
<</page>><<silently>>
<<emote-mouth-open>>
<<if $knickers.type == "thong">>
<<set _it to "this">>
<<else>>
<<set _it to "these">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "iCant">>\
"No way," you shout in his ear. "I'm not allowed!"
<<elseif $kateSays == "notForSale">>\
"Not everything's for sale," you shout in his ear. //What a jackass.//
<<elseif $kateSays == "takeMeOut">>\
"If you want me to take _it off," you shout in his ear, "you gotta take me to dinner first!"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
He doesn't even reply – just <<if $kateSays == "takeMeOut">>laughs<<else>>smirks<</if>> and [[leaves|FNG-27320 Yacht Guy pitches Roxy]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
A minute later, you're leaning over the bar again. Two guys from the stag party are playing with your nipples, while one shouts drink orders in your ear.
From the corner of your eye, you see Yacht Guy again.
This time he's talking to Roxy. //Surely she won't...// You watch curiously as they take turns [[shouting into each other's ear|FNG-27330 Roxy goes commando]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She nods and straightens up behind the bar. Her fingers go up to the waistband of her strappy black thong. //No way...//
Even the booming rock music can't drown out the big male cheer that goes up around the bar when she peels it down. From your angle you can see her baring her curvy round ass, then bending down to step out of her last piece of clothing.
Now just down to stockings, boots and makeup, Roxy swaps the silky little scrap of underwear for <div class="tooltip">three brown foreign banknotes<span class="tooltiptext">฿3000 = <<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
Everybody's staring at her. Even the stags who were just fondling your boobs [[hardly notice|FNG-27340 Roxy on top]] when you serve their drinks.
Yacht Guy smiles and leaves; Roxy turns away and tucks the cash into a stocking top, an embarrassed grin on her face.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Roxy's bare shaven pussy acts like a magnet at her corner of the bar for the next few minutes; everyone wants to look at her, and everyone wants to be served by her.
You're not jealous. //Definitely// not.
It's just weird, being at the centre of attention [[then losing it|FNG-28000 Girl/girl announcement]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Boston's //More Than a Feeling// fades down, and the DJ's voice comes out on the PA.
"It ten o'clock, gen-tel-meh," he announces. "Time for famous girl/girl show at Har' Rock Cafe! They goo' friends, they //more// than friends, less hear it for [[Ping and Mem|FNG-280010 Girls on stage]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The music goes down; everyone's gaze shifts across to the pink neon stage.
Your ears ring in the sudden silence; there's a smattering of applause and a few male //whoops.//
Then the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> come strutting out onstage, [[hand in hand|FNG-280020 IKAG]]. They're wearing short, lacy négligées – Ping in white, Mem in black – and sky-high stripper heels.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A bouncy, familiar drumbeat kicks up; <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stride up to the front of the stage, hips swinging to the beat.
//This was ne-ver the way I planned
Not my in-ten-tion...//
Katy Perry starts singing //I Kissed A Girl// and the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> dance in close together, hands [[groping each other's hips and butts|FNG-280030 Stage makeout]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Hips swinging sensuously to the beat, their faces nuzzle in close. Their noses brush...then they're making out passionately, fingers running through each other's hair as their tongues dance.
From the bar, you watch the show like everybody else. For a long time they just dance close and kiss to the music.
Is this what a girl/girl show is? It's surprisingly...tame so far. Romantic, even. They're playing with each other's hair, looking into each other's eyes.
You didn't think guys were that into kissing, [[even when it's two girls|FNG-280040 Kiss kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You suddenly appreciate that the eyegazing isn't romantic. They're working.
<span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> aren't actually having a sexual encounter; they're dance partners improvising a performance, using eye contact to [[stay in sync|FNG-280050 Couch makeout]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They strut hand-in-hand to a red couch that's been set up onstage, climb on sensually, and carry on the show.
The girl/girl makeout gets spicier on the couch; still kissing, tugging and holding each other's hair instead of just stroking it. They pull up each other's négligées, flashing their toned and perfect golden-skinned asses to the audience.
Soon <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> négligée is lifted up off her body and tossed onto the stage. Clutching a handful of long pink hair, she pushes <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> down to her chest.
Her pretty face contorts in theatrical pleasure when Ping licks and sucks on her [[stiff brown nipples|FNG-280069]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//I Kissed A Girl// crossfades into t.A.T.u.'s //All the Things She Said.// <<Knickers>> come off, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> move into a sixty-nine position on the couch...and enthusiastically lick and tongue each other's pussy.
Legs spread, asses spread, mouths buried in each the other girl's shaved pussy, noses pressed into each other's butt; //Jesus Fucking Christ.//
They might be faking being lovers, but they're definitely not faking the [[absolute tongue lashing|FNG-280080 Dildo produced]] they're giving each other. A few guys near the stage yell encouragement.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Just when you think it can't get any lewder, the girls break apart.
There's a sex toy on the couch – a long, purple, double-ended dildo. The ends wobble and quiver when <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> picks it up by the middle.
They kneel up on the couch, and - holding it between them - each starts sucking and slurping on one end. <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches up behind Ping's head and pulls her deeper onto the dildo, making her gag; Ping reaches up and returns the favour.
It's so seedy, and you're in the same room. Topless, in high heels, watching two naked women on a stage [[slobber and choke on a sex toy|FNG-280090 Double dildo fuck (side on)]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They suck and slurp and make each other gag, until the song kicks back up for the last big chorus.
Then, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shift position on the couch. Propped up on their sides, bodies facing the audience with their legs spread open, each <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> guides a spit-smeared end of the dildo into her pussy.
//All the Things She Said// crossfades into Jessie J's //Do It Like A Dude,// and the girls rhythmically [[ride the dildo together|FNG-280100 Double dildo fuck (ass to ass)]], hips pumping, cupping their breasts, exaggerated "O" faces contorting their pretty features.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Finally they move round onto onto all fours, back to back, butt to butt on the couch.
Thrusting the big purple dildo back into both their pussies, they hump it doggystyle for the rest of the song, hips thrusting in time with the beat. Their heart shaped butts smack together, their hands reach back to touch each other on the hand or the ass.
The two girls hump the double-ended dildo all the way to the end of the song. Then the music fades...and [[the girl/girl show is over|FNG-280200 End of performance]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Do It Like A Dude// fades out; <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slide off the dildo one after another. Mem tosses it on the couch.
"Less hear for Ping and Mem, girl/girl show!" booms the DJ's voice on the PA. Some men clap and shout and wolf whistle; the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> ignore the audience, sharing a sisterly hug on the couch, and a look that's checking their friendship is still okay.
If you weren't sure of it before, you are in this moment: they're both straight. That whole thing was [["100% performance"|FNG-280300 Lewdest thing ever]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's one thing seeing this kind of thing in hardcore porn.
Seeing it in real life is different. That was absolutely the lewdest, most pornographic thing you've ever seen with your own eyes.
You just watched two straight women French kiss, and sixty-nine, and get on all fours and fuck a dildo on stage. Just to entertain a bunch of random men from the street.
//[[What the fuck am I doing in here.|FNG-290000 Rush at the bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You don't have time to ponder it, because at the end of the girl/girl show there's another rush at the bar.
The music fades back in, the keyboard intro to an old rock song. It's not so loud that you and Roxy have to bend over the bar to hear the first guy who lands between you.
"How much for [[you two to make out|FNG-290100 Nem]]?" he shouts.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Nem<span class="tooltiptext">No</span></div>," Roxy shouts immediately, shaking her head. "Not doing it."
"<div class="tooltip">Thousand Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," he shouts, pulling a brown banknote from his wallet and holding it up.
This side of the bar's quickly filling up with customers. Roxy shoots you an uncertain glance. That's nearly both your salaries for the whole shift.
[[Not happening!|FNG-290200 No way]]
//[[Shrug at Roxy. You're okay with it if she is.|FNG-290400 Shrug]]//
[[A thousand each!|FNG-290300 2k]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Not happening!" you echo her firmly.
<span class="greenHighlighter">Roxy ''liked'' that.</span>
Lynyrd Skynyrd's //Free Bird// kicks in, drowning out his disappointed reply.
You don't want to hear it in your ear, so you [[step up on the rail and bend over the bar|FNG-292000 Time passes]] for a different guy.
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Thousand each! <div class="tooltip">Two thousand!<span class="tooltiptext">฿2000 = <<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>" you shout, holding up two fingers.
<span class="greenHighlighter">Roxy ''respected'' that.</span>
"I can fuck a girl for that!" he protests.
"Not us!" Roxy shouts back.
Lynyrd Skynyrd's //Free Bird// kicks in as he consults with the other customers around him. A couple of them chip in, and soon <div class="tooltip">฿2000<span class="tooltiptext"><<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in mixed denominations is [[passed over the bar|FNG-290500 Agreeing to make out]] to Roxy.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shrug at her. //I'm okay with it if you are,// you signal.
<span class="redHighlighter">Roxy ''disliked'' that.</span>
She looks at you for a moment, like she's trying to picture what it'd be like...then turns back to the guy. "<div class="tooltip">Nem<span class="tooltiptext">No</span></div>," she shouts again.
//She really doesn't like me.//
Lynyrd Skynyrd's //Free Bird// kicks in, and she has to lean over the bar to hear his reply. And there are other guys to serve, so you [[step up on the rail and bend over the bar|FNG-292000 Time passes]] for one of them.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
She tucks it all in the tip jar. Connor said you'd get to keep half the tips, so you'll each earn...<div class="tooltip">฿500<span class="tooltiptext"><<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> for this, right? Nearly a whole night's pay for a kiss.
Roxy turns to face you, standing there awkwardly a little beyond arm's reach.
//[[Approach her.|FNG-290600 Kate approaches]]
[[Wait for her to come to you.|FNG-290650 Kate waits]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Everyone's watching you. You look at all the guys at the bar, then back at Roxy.
She's just standing there, uncertain how to start this, so you take the initiative and step forward a couple of paces. Now you're so close you can smell her perfume again. Citrus and flowers.
//[[Kiss her.|FNG-290700 Kate kisses Roxy]]
[[Be kissed.|FNG-290750 Roxy kisses Kate]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Everyone's watching you. You look at all the guys at the bar, then back at Roxy.
Neither of you know how to start this. You shrug a little, and so does she, mirroring your movement.
She glances at all the guys, takes a deep breath, and takes a step towards you. Now you're so close you can smell her perfume again. Citrus and flowers.
//[[Kiss her.|FNG-290700 Kate kisses Roxy]]
[[Be kissed.|FNG-290750 Roxy kisses Kate]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You look at each other for a moment. The guys at the bar watch raptly.
Then you part your lips, tilt your head, and [[go in for the kiss|FNG-290800 Kate/Roxy first kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You look at each other for a moment. The guys at the bar watch raptly.
Then, haltingly, Roxy tilts her head and [[moves in close towards you|FNG-290800 Kate/Roxy first kiss]], her hand resting on your upper arm.
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Your bare breasts brush together, a moment before your [[lips meet|FNG-290900 Tongue wrestling]]. A moment of tender, tentative contact...
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
Then your tongues are in each other's mouths, softly exploring. //Fuck.// After all the sexual tension of the night, it feels amazing being in someone's arms – even Roxy's.
Her big, firm tits squash <<if $kate.braSize == "large">>into yours<<elseif $kate.braSize == "medium">>against your breasts<<else>>into your chest<</if>>. Her thigh-length leather boots press against your bare legs. In the cold air-con her body feels hot and soft and feminine.
//[[Play with her hair.|FNG-291000 Roxy/Kate makeout][$kateSays to "hair"]]
[[Touch her tits.|FNG-291000 Roxy/Kate makeout][$kateSays to "tits"]]
[[Grab her ass.|FNG-291000 Roxy/Kate makeout][$kateSays to "ass"]]//
<</page>><<silently>>
<<set _roxyDecision to either("hair", "tits", "ass")>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hair">>\
You reach up and curl your fingers through her hair, just like you saw the girls on stage do. <<if _roxyDecision == "hair">>She does the same, playing with your hair while you kiss, a mini-reënactment of the girl/girl show behind the bar.<<elseif _roxyDecision == "tits">>Her hand cups your breast – about the hundredth person to do that tonight – squeezing it softly. Your nipple is hard in the palm of her hand.<<elseif _roxyDecision == "ass">>Her hand curls down your back, cups your bare ass, gives it a firm squeeze.<<else>>//[ERROR IN ROXYDECISION TEMP VAR]//<</if>>
<<elseif $kateSays == "tits">>\
You reach up between your bodies and cup a hand on her tit. <<if $kate.braSize == "small">>//Fuck, they're so big.//<<elseif $kate.braSize == "medium">>//Fuck, they're big.//<<else>>They feel like yours – big and heavy and yielding, her nipple stiff in the palm of your hand.<</if>> <<if _roxyDecision == "hair">>She curls her fingers through your hair, playing with it, a mini-reënactment of the girl/girl show behind the bar.<<elseif _roxyDecision == "tits">>She does the same, touching your breast – about the hundredth person to do that tonight – squeezing it softly.<<elseif _roxyDecision == "ass">>Her hand curls down your back, cups your bare ass, gives it a firm squeeze.<<else>>//[ERROR IN ROXYDECISION TEMP VAR]//<</if>>
<<elseif $kateSays == "ass">>\
You reach down and cup her <<if hasVisited("FNG-27330 Roxy goes commando")>>totally naked ass<<else>>bare butt cheek<</if>>, pulling her tightly into you. <<if _roxyDecision == "hair">>She curls her fingers through your hair, playing with it, a mini-reënactment of the girl/girl show behind the bar.<<elseif _roxyDecision == "tits">>Her hand cups your breast – about the hundredth person to do that tonight – squeezing it softly. Your nipple is hard in the palm of her hand.<<elseif _roxyDecision == "ass">>She does the same, reaching around to your bare ass, giving it a firm squeeze.<<else>>//[ERROR IN ROXYDECISION TEMP VAR]//<</if>>
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You have no idea how long you're kissing her for - making out, <<if $kateSays == "hair" and _roxyDecision == "hair">>playing with each other's hair like you're lovers<<elseif $kateSays == "tits" and _roxyDecision == "tits">>groping each other's boobs<<elseif $kateSays == "ass" and _roxyDecision == "ass">>groping each other's ass<<elseif $kateSays != "hair" and _roxyDecision != "hair">>fondling each other's tits and ass<<elseif $kateSays == "hair">>playing with her hair while she gropes your <<if _roxyDecision == "tits">>naked breasts<<else>>bare ass<</if>><<else>>groping her <<if $kateSays == "tits">>tits<<else>>bum<</if>> while she plays with your hair<</if>>. In your soaking wet thong, your clit feels like it's your heartbeat. You think how good it'd feel to [[grind your crotch against her thigh|FNG-291100 Roxy breaks it off]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
Just when you think you can't bear it anymore, she suddenly breaks it off. And turns away fast, so you can't see her face.
You feel momentarily stunned, then a cheer and applause from the men crowded on your side of the bar brings you back to reality. //Fuck, what am I doing.//
About twenty guys want beer. You have no idea who was first, so you [[step up on the rail and bend over the bar|FNG-292000 Time passes]] for the best looking one.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You serve ten different guys in rapid succession. Every single one of them gropes and fondles your tits. Then the rush at the bar dies back down to normal.
Time passes: old rock songs blare, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> rotate on the stage, when they're not entertaining in private.
After ten <small>P.M.,</small> they don't just get naked: every girl's stage act includes at least one dildo. In their pussies; in their mouths; and sometimes, if there's enough crowd encouragement, in their asses.
So it turns out you were wrong about <<Amanda>>. She //can// look more slutty and available if she tries. A lot more.
A [[stream of men|FNG-292100 No sign of DEVILFISH]] passes through the club, drinking and groping you and Roxy, and sometimes disappearing off with a bargirl through the yellow neon arch near the stage.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You've been keeping an eye open for DEVILFISH, of course. Not that anybody seriously expects him to just walk in on the first night you happen to be working – but stranger things have happened. You haven't seen anyone close to the artist's impression so far.
The next man to catch your eye at the bar isn't him, either – he's Thai and in his forties – but something about his appearance marks him as separate from everybody else you've served tonight. The quasi-military haircut, the windbreaker jacket, the rugged and hard //don't-fuck-with-me// look. Soldier or cop, definitely.
<span class="greyedOut">//[Bend over the bar]//</span> [[What can I get you?|FNG-292200 What can I get you?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Hi!" You smile and slither out [[over the bar|FNG-292300 Sgt Somchai]]. "What can I get you?"
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
He doesn't touch your naked breasts. He doesn't even answer you; just stares back hard with utter, palpable contempt.
You just look at each other for a moment; then Roxy clasps your shoulder, pulls you back over the bar.
"He's not here to drink," she shouts into your ear. Citrus and flowers when she gets close. "Take him to [[manager's office|FNG-292400 Escort mission starts]]. Next to dressing room, remember? I'll call ahead."
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Stepping out around the bar is daunting.
Even though the customers can touch you when you lean over it to talk to them, you can always just slither back out of their reach. Round on their side, you've got [[no such protection|FNG-292500 Vulnerable]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Game face, $kate.firstName.// You know instinctively that you can't show weakness when you do this.
You're a half-naked girl in a dark room full of drunk, horny men. Your only protection is a soaking wet thong and your attitude. //Where the fuck are the bouncers?// Nowhere to be seen. //Fuck.//
At least the stern Thai guy might help. You're supposed to be escorting him, but you feel immediately better when you [[make eye contact and he joins you|FNG-292600 Escorting Somchai]].
<</page>><<silently>>
<<set $header.line1 to "''DANCE FLOOR''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
He follows you towards the stage, towards the No Entry door.
You have to move past little clusters of guys in the darkness. Some notice you and stare. A couple of them have definitely had their hands on your tits already.
You keep a cool, in-control look on your face. Either that, or the stern-looking guy you're with, are enough to dissuade them from doing more than look as you cross over the [[dance floor|FNG-292700 No Entry door]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Approaching the No Entry door, the bouncer from earlier – with the long beard and the crossed eye and the tattoos – spots you.
He punches a code into the keypad, and holds open the door for you to [[pass through|FNG-292800 Backstage corridor]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You lead Stern Thai Man into the backstage corridor with the flickering tube light.
You feel a surge of relief when the door to the club closes behind you. //Made it.// The club noise drops to a muffled boom; all the carpet on the walls really helps. Your ears are ringing, though.
//[[Lead him to the manager's office.|FNG-292900 Walk to mgrs office]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Now alone and locked backstage with some strange foreign man, you feel a new sense of vulnerability. //What's to stop him...//
But he just follows along impassively. You turn right, go past the dressing room, arrive at the manager's office. <<if $kateSawTheOfficeDoorCode>>//6390.//<</if>>
//[[Knock and wait.|FNG-293000 Manager's office][$kateSays to "wait"]]//
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You rap on the door and wait.
After a moment, a male voice calls out from within: "<div class="tooltip">Kao ma<span class="tooltiptext">Come in</span></div>!"
You <<if $kateSays == "wait">>twist the handle and <</if>>step through into the manager's office. <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is here, sprawled in the office chair.
Through the one-way mirror you can see one of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, <span class="imageLink"><<link "Fah">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/fah.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, in the dressing room next door. She's naked and changing, clipping the straps of her <<if $kate.agency == "cia" or $kate.agency == "csis">>garter<<else>>suspender<</if>> belt onto her [[stockings|FNG-293100 CCTV]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The bank of TV screens is switched on now: a security system, like you suspected.
It's displaying black-and-white footage of several bedrooms, each decorated in a different style. <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is being fucked doggystyle by Hoarse Guy in one. In another, <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is on all fours on a bed, side on to some fat guy lying on his back, sucking his cock while he slaps her ass.
"<div class="tooltip">Ja<span class="tooltiptext">Sergeant Major</span></div> Somchai," Tid beams, a smile spreading across his bulging cheekbones. "<div class="tooltip">Yin dee tee dai jer krub<span class="tooltiptext">Good to see you</span></div>."
The older man just grunts.
"Thanks, New Girl," says Tid, [[dismissing you|FNG-293200 Corridors]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You leave and click the door shut. //Fuck.// It'd be good to listen in to that meeting, but you can't push it on your first night.
Confirming there's an internal surveillance system is a big deal, anyway. If you could hack it, you may not even //need// an agent in here to catch DEVILFISH: the task force could just monitor the hacked feeds, and swoop in when they get a positive ID.
You're not sure the picture quality was good enough for that, but it's definitely something you'll need to [[look into|FNG-293300 No Entry door]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You walk back through the corridors. At the No Entry door, you pause to psych yourself up: you've still got to make it back to the bar, and this time you won't have "<div class="tooltip">Ja<span class="tooltiptext">Sergeant Major</span></div> Somchai" to walk you there.
//[[Return to the club.|FNG-293400 Passing back into the underworld]]//
<</page>><<silently>>
<<set $header.line1 to "''DANCE FLOOR''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Pulling open the door, you're hit by a wave of noise, neon, club lights and darkness.
You step through to the dance floor; Cross Eye the bearded bouncer is lurking impassively nearby, and he nods to you as you exit.
Up on stage is <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, from the girl/girl show, performing alone now. She's sitting in the couch, one leg draped over an armrest, fucking herself with two dildos, rhythmically pumping her pussy and her mouth in time with an eighties rock song.
//[[Head straight back to the bar.|FNG-293500 Into darkness]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You head back towards the bar, a neon blue refuge on the other side of the dance floor.
//[[Not too far, I can make it...|FNG-293600 Ass smack]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
//Not too far, I can mak–//
''SMACK!'' Someone's hand slaps your ass as you pass through the customers. Stinging pain radiates out from your bare buttock; a wave of hot anger rushes up in your stomach.
//[[Turn around and see who did it.|FNG-293700 Who spanked me?]]
[[Keep walking!|FNG-240000 Kate keeps walking]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You turn to see a bunch of Asian guys in their thirties and forties, wearing business suits with their ties and jackets off.
It's not obvious which one spanked you, but it is obvious that they all thought it was hilarious.
The stingy pain where he smacked you builds up to a hot, smarting burn.
[[Don't fucking hit me!|FNG-293710 Not cool]]
//[[Walk away.|FNG-293800 Walk away]]//
[[What can I get you?|FNG-293900 What can I get you?]]
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Hey!" you shout. "Don't fucking //hit// me!"
They just laugh, right in your face. <<if $kate.agency == "cia" or $kate.agency == "csis">>//Assholes!//<<else>>//Dickheads!//<</if>> Not one of them would get a second glance out of you in real life, but in here you're just trash to them.
One of them shouts something that you can't hear over the music, but you're pretty sure is him telling you to [[fuck off|FNG-293800 Walk away]].
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-293710 Not cool")>>Where are the bouncers? <</if>>//Fuck.// Swallowing your anger, you [[turn on your heel and walk away|FNG-293810 Smacked again]].
<</page>><<silently>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
''SMACK!'' //Ow, fuck!// You get another hard, stinging slap across the butt [[as you go|FNG-240100 Thong ping]].
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// You swallow your anger and play nice instead. "What can I get you?" you shout.
"Nothing right now," shouts back one of the guys, holding up his beer.
"Yeah, we good!" agrees his friend.
[[Okay, have a good night!|FNG-293910 Okay have a good night]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, have a good night." You [[turn on your heel and walk away|FNG-293810 Smacked again]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<emote-brows-calm>>\
//Fuck.// Swallowing your anger, you \
<<linkreplace "turn your back and walk away">>\
<<showRear>>\
turn your back and walk away.
You get another stinging slap across the butt [[as you go|FNG-240100 Thong ping]]\
<</linkreplace>>.
<</page>><<silently>>
<<emote-mouth-open>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _modifiers to -4>>
<</silently>>\
<<header>>\
<<page>>\
"Hey!" you shout. "Not cool!"
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make an ''Intimidation check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Intimidation check.'' Target: 6. You rolled: (_kateD10<<= _modifiers>>) = <<= _kateD10 + _modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<replace "#avatar-container">>
<<emote-mouth-pout>>
<<avatar>>
<</replace>>
<<if _skillCheckSucceeded>>
Your sternness seems to surprise them. They throw their hands up placatingly – like they didn't know it's not okay to just slap a woman. <br />
<br />
//Little shits.// You glare at them hard before <<linkreplace "turning on your heel and continuing to the bar.">><<showRear>>turning on your heel and [[continuing to the bar|FNG-240100 Thong ping]].<</linkreplace>>
<<else>>
The little shits just burst out laughing. One of them shouts something that you can't hear over the music, but you're pretty sure is telling you to [[fuck off|FNG-293800 Walk away]].//
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10<<= _modifiers>><span class="tooltiptext">-1 naked, -1 female, -1 outnumbered, -1 sex worker</span></div> to chasten them.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Swallowing your anger, you keep [[going for the bar|FNG-240100 Thong ping]] without breaking your stride.
<</page>><<silently>>
<<showFront>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Another man gropes your ass as you pass him in the dark. Then, when you're nearly at the bar, a different hand curls up inside the waistband of the back of your thong - yanks it and lets go, pinging it against your butt.
You're nearly there. You cross back around the [[staff side of the bar gratefully|FNG-240100 Back at the bar]], tugging your thong back into place as you go.
<</page>><<silently>>
<<emote-brows-calm>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
That was so...casually demeaning. Smacked, pawed, your <<knickers>> twanged. By three different guys, just for walking across a room. You've never been treated anything like it.
You're not sure how you feel. You're not sure how you //should// feel. Your emotional disarray isn't helped by the fact that you're as turned on as you've ever been. Wet as fuck. In a place that's [[5% hot girls, 95% assholes|FNG-240200 Bar service]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and bend over the bar for your next customer, a dark-skinned south asian man.
Maybe it was him who pinged your thong; now he's cupping your breast in the pink palm of his hand, shouting his [[drinks order|FNG-240300 Time skip]] right into your ear.
<</page>><<silently>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Your shift continues like this for the next couple of hours; serving drinks and getting groped.
You're way past caring who's touching you and whether they're hot. Your body's been teased constantly for //hours.//
You play it cool, but you do sometimes linger in a customer's grasp a bit longer than you need to. Double checking orders, asking them where they're from, while all the time they're [[fondling your breasts|FNG-25000 Midnight]] in their hands.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Around midnight, <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> appears at the bar. He speaks with <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, the bar manager...then [[beckons you over|FNG-250100 Hey new girl]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and lean over the bar. "Hey New Girl," he shouts in your ear. "See that door?"
He points to a door in the opposite wall. You glance over then nod up at him.
"That's the VIP," he shouts. "My friends are in there. Ploy's gonna give you a drink, take it to them."
[[Got it.|FNG-250200 Got it]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Got it," you shout.
He nods and leaves the bar – heading towards the [[VIP room|FNG-250300 VIP prep]] himself.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You wait while <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fills up a silver bucket with ice.
There's a sudden tightness in your gut. Is this a setup? They can't //possibly// have figured out you're <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer, right?
//[[Right?|FNG-250400 No choice]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There'd have to be something //badly// wrong with the passport. Or...a mole in the task force? But how could a seedy little Thai sex club have a mole in a CIA task force?
Is it something you did? You replay tonight in your mind while you watch Ploy set everything up; a new bottle of Sangsom in the bucket, then the bucket and some glasses on a silver tray.
You can't //think// of anything that would have given you away. You certainly [[haven't behaved|FNG-250500 Sparklers]] like any intelligence officer you've ever heard of tonight.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tapes two sparklers to the inside of the bucket, and grabs a lighter from behind the bar.
You've gotta just go through with it, there's no choice.
If this does go bad...that whiskey bottle's your go-to weapon. And there's still the burst transmitter hidden in the ring on your finger. One full twist and Ian's in the mix.
Ploy lights up the sparklers. They fizzle into life with a brimstone smell and showers of crackling gold and silver sparks.
//[[Carry the tray to the VIP.|FNG-250600 Bucket walk]]//
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
//Here goes.// You lift up the heavy, loaded tray; <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lifts up the bar hatch for you to exit.
You step out into the customer side of the bar again. This time, although everybody notices you, none of them hassle you: it's as though the silver drinks tray and the fizzing, crackling sparklers are symbols of authority, marking a passage that [[must not be impeded|FNG-250700 Hot hot sparks]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The crackling gold and silver sparks zing your skin when they touch it; pinprick burns that sting, but only for a moment.
It's not //very// painful, more...stressful. A spark zings you every other step, and you never know whether it's going to be on your arm, breast, nipple or stomach.
You make it to the VIP door. There's nobody to open it for you, so you turn around and push it open with your [[back and butt|FNG-250800 VIP door]].
<</page>><<silently>>
<<set $header.line1 to "''VIP ROOM''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The door's //heavy// – you have to really push against it to get it open.
Backing up against it, you get your first look at the VIP as you slowly push it open and back your way inside. It's...just a room, really, similar to the rest of the club. Just separate.
There are three big flat screen TVs on the walls. One is...a colour HD feed of the stripper dressing room. //Oh, nice.// Another is tuned to MTV Thailand; the third is a feed of what looks like [[a porno set|FNG-250900 Occupants]]. An empty bed, with stage lights set up around it.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are six young Thai men in here, plus <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. All of them are casually sitting around; none of them lift a finger to help you with the door.
Tid smiles up at you while you struggle through holding the heavy, crackling tray. "Ahh, <div class="tooltip">Nee dek mai<span class="tooltiptext">here's the new girl</span></div>," he announces.
"<div class="tooltip">Ma jak nai<span class="tooltiptext">Where's she from</span></div>?" one of his friends asks.
"<<if $kate.agency == "csis">>Canada<<elseif $kate.agency == "nzsis">>New Zealand<<else>><div class="tooltip"><<if $kate.agency == "cia">>Amerikah<<elseif $kate.agency == "mi6">>Angkrit<<elseif $kate.agency == "asis">>Austreyliyah<<else>>ERROR IN KATE.AGENCY VAR<</if>><span class="tooltiptext"><<if $kate.agency == "cia">>America<<elseif $kate.agency == "mi6">>England<<elseif $kate.agency == "asis">>Australia<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><</if>>" he [[replies|FNG-251000 VIP entry]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You carry the tray in; the heavy door swings slowly shut behind you. Tid, sprawling in an armchair close to the door, points where you should set it down.
He smacks your ass when you carry it past him; not hard, like the guys on the dance floor did, just a casual swat.
//[[Set down the tray.|FNG-251100 Serving drinks]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You set it down on a surface. None of the guys move a muscle, so you guess you're here to serve drinks, too; you crack open the bottle of Songsam, and distribute seven tumblers of Thai whiskey on the rocks, one by one.
A couple of Tid's friends paw you when you're serving them; but they actually seem pretty chilled out, and they're all smiles.
Four of them are sat around a table, scraping out lines of white powder with a Thanachart Bank debit card. It looks like cocaine.
"Come over here and do a line," says one the one who's cutting it up. He's got bleached blond hair and a nose ring.
Narcotics use isn't permitted at HQ, but it's allowed in the field to support a cover.
[[No thanks.|FNG-251200 No thanks]]
[[Sure.|FNG-251400 Sure]]
<span class="greyedOut">//[Ask Tid]//</span> [[Is that okay?|FNG-251300 That okay boss?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "No thanks."
He shrugs amiably and gets back to scraping out the drug. Seven lines for seven guys: one by one, they sniff them up, laughing or sighing exultantly when they straighten up.
"Come on, New Girl," says Tid, after all the lines are gone. "Let's [[get you paid|FNG-252100 Return to the bar]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You look over to Tid. "That okay?" you ask your new boss.
<span class="greenHighlighter">Tid ''loved'' that.</span> <span class="greenHighlighter">Everybody else ''liked'' that.</span>
"Go for it." He gestures magnanimously for you to partake.
<<include "FNG-251500 Racking up">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," you reply.
<span class="greenHighlighter">Everybody ''liked'' that.</span>
<<include "FNG-251500 Racking up">>
<</page>>Nose Ring scrapes the lines on the table back into one big heap. Then he uses the bank card to scrape a bit more off of the fingertip-size block, and adds it to the heap.
You watch as he crushes it up with the card, mixes it all together. Then he carves it out into eight fat white lines of powder on the tabletop.
With a friendly smile, he passes you up the debit card.
//[[Lick the card.|FNG-251500 Lick]]//<<silently>>
<<emote-mouth-lick>>
<</silently>>\
<<header>>\
<<page>>\
You wet your lips, and lick up the edges of the card.
//Fuuuck.// The cocaine on your tongue makes your lips feel immediately tingly and numb. It's really good.
You give him his card back; he drops it on the table, and passes you a red <div class="tooltip">฿100<span class="tooltiptext"><<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> note.
//[[Roll it up.|FNG-251600 Roll up]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You roll the banknote into a tight little tube. Nose Ring pushes his chair back a little, and gestures for you to go ahead; ladies first.
//[[Sit in his lap.|FNG-251700 Lap line]]
[[Bend over the table.|FNG-251800 Bent over line]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There aren't any chairs, so, you decide that you have to sit in his lap. Nose Ring doesn't mind one bit.
<<if $kate.hairStyle != "short" and $kate.hairStyle != "bunWithBangs">>\
"Can you hold my hair?" you ask him.
"Mmhm." He scoops it up gently behind your head.
<</if>>\
An erection swells up in Nose Ring's <<trousers>>, pressing up into your thong as you bend over the table. Pushing the banknote into one nostril, you press the other one closed with a fingertip, and [[sniff up a line of coke|FNG-251900 Fat line]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There aren't any chairs. You bend down over the table, between Nose Ring and his fat friend.
You're not even surprised when both of them grab your butt, you were honestly expecting it. <<if $kate.hairStyle != "short" and $kate.hairStyle != "bunWithBangs">>"Um...can someone get my hair?" you ask.
One of the other guys jumps up, and sweeps your hair back behind your head, gently holding it up out of the way.<</if>>
With two young Thai guys fondling your ass<<if $kate.hairStyle != "short" and $kate.hairStyle != "bunWithBangs">>, and another holding your hair<</if>>, you lean down and [[sniff up a line of coke|FNG-251900 Fat line]]...
<</page>><<silently>>
<<emote-eyes-big>>
<<first>>
<<addNotification "Coke buzz (mild)" "+1 Adrenaline">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Boom.// A wave of edgy excitement bubbles up through your whole body; an adrenaline rush out of nowhere.
Maybe it's just because you haven't done this since <<university>>, but //fuuuck// it's so good.
You <<if hasVisited("FNG-251700 Lap line")>>stand<<else>>straighten<</if>> up, and everybody beams and grins at the look on your face. [[Cocaine camaraderie|FNG-252000 The gents take a turn]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
One by one, the guys all take turns snorting up a line. //Fuck, that was great.// Nose Ring gives you his glass of Songsam on the rocks; you take a big swig, hardly feeling it, then refill his drink and bring it back.
He sips it, his hand gliding up and down your inner thigh, while the fat guy on your other side paws your ass. //Fuck, I'm so turned on.//
"<div class="tooltip">Rob nar tong sood bon tua nang ni<span class="tooltiptext">We should do the next one off her</span></div>," one of the guys proposes.
"<div class="tooltip">Wai krao lung<span class="tooltiptext">Next time</span></div>," laughs Tid. Then, to you: "Come on, New Girl. Say [[goodbye to the boys|FNG-252100 Return to the bar]]."
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Tid leads you back out into the club. Like when you were with <div class="tooltip">Ja<span class="tooltiptext">Sergeant Major</span></div> Somchai: the customers look, but don't touch.
Tid picks up some cash from <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> at the bar, then leads you back across the dance floor, towards the [[No Entry|FNG-252200 No Entry door]] door.
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Cross Eye the bouncer holds open the door for the pair of you, and you pass through the [[backstage corridor|FNG-252210 Office door]] with the flickery tube light.
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSawTheOfficeDoorCode>>\
He punches the door code, 6390, into the keypad on the office door, and [[leads you inside|FNG-252300 Manager's office]].
<<else>>\
At the door to the office, he punches the code into the keypad.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 5>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 6. You rolled: (_kateD10+1) = <<= _kateD10+1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $kateSawTheOfficeDoorCode to true>>
You catch it this time, [["6-3-9-0"|FNG-252300 Manager's office]].
<<else>>
Like Lu, he blocks your view [[with his back|FNG-252300 Manager's office]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+1<span class="tooltiptext">+1 //Perception//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Tid gestures you to the couch in the manager's office, and you gratefully slump down in it. You've been standing and walking in new heels for more than seven hours now, and your feet are //killing// you.
"So," he asks, taking a seat in the desk chair. "First shift. We're gon' let you go little early tonight. How was it?"
[[Weird.|FNG-252400 Weird/degrading][$kateSays to "weird"]]
[[Degrading.|FNG-252400 Weird/degrading][$kateSays to "degrading"]]
[[How did I do?|FNG-252400 Weird/degrading][$kateSays to "howWasI"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "weird">>\
"Weird," you admit.
<<elseif $kateSays == "degrading">>\
"Kind of...degrading," you admit.
<<elseif $kateSays == "howWasI">>\
"How did I do?" you ask.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kateSays == "howWasI">>\
"Pretty good," he answers. "\
<<else>>\
He <<if $kateSays == "degrading">>laughs at that, genuinely amused<<else>>smirks<</if>>. "You get used to it. You did good. \
<</if>>Well done for bring in stag party."
[[Thanks.|FNG-252500 Kate takes the credit]]
<<link "That was <<Amanda>>, I just helped." "FNG-252600 Kate shares the credit with Amanda">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks."
<<include "FNG-252700 Kate gets paid">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"That was <<Amanda>>. I just helped."
<<include "FNG-252700 Kate gets paid">>
<</page>>"Uh huh." He counts out your money: ฿600 salary, plus ฿900 from the tip jar – a total of <div class="tooltip">฿1500<span class="tooltiptext"><<if $kate.agency == "cia">>$45<<elseif $kate.agency == "mi6">>£30<<elseif $kate.agency == "asis">>$60<<elseif $kate.agency == "csis">>$60<<elseif $kate.agency == "nzsis">>$60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in crumpled colourful banknotes. "Here you go," he says.
[[Thanks.|FNG-252800 Miss Lu][$kateSays to "thanks"]]
[[Am I hired?|FNG-252800 Miss Lu][$kateSays to "amIHired"]]
[[When's my next shift?|FNG-252800 Miss Lu][$kateSays to "nextShift"]]<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
You rise and walk to the desk, so you can scoop up the little pile of cash. "Thanks," you say.
<<elseif $kateSays == "amIHired">>\
You rise and walk to the desk, so you can scoop up the little pile of cash. "Am I hired?" you ask.
<<elseif $kateSays == "nextShift">>\
You rise and walk to the desk, so you can scoop up the little pile of cash. "When's my next shift?" you ask.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kateSays != "thanks">>Before he can answer, the<<else>>The<</if>> door opens behind you; you glance round to see Lu, the mamasan, bustle in. She's carrying some dresses on hangers, and beaming a big, scarlet smile.
"$kate.stripperName!" she coos. "I got good news. Big boss, Mr Kriangsak, he want to meet you!"
[[Tonight?|FNG-252900 Tonight?][$kateSays to "tonight"]]
[[I'm kinda tired...|FNG-252900 Tonight?][$kateSays to "kindaTired"]]
[[Why?|FNG-252900 Tonight?][$kateSays to "why"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "tonight">>\
"Tonight?"
"No, no, next few day," she says. "He take you dinner! You borrow dress from club to wear."
<<elseif $kateSays == "kindaTired">>\
"I'm kinda tired..." you protest.
"Not //tonigh',// silly, haha!" she chuckles. "Next few day. He take you dinner. You borrow dress from club to wear."
<<elseif $kateSays == "why">>\
"Why?"
"Get to know you," she smiles. "He take you dinner, next few day. You borrow dress from club to wear."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
She holds up the dresses. It's hard to tell what they'll look like on, but they're the slutty kind of things the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> wear when they're mingling with the customers.
You pick the...
//[[Black wetlook minidress with criss-cross cleavage.|FNG-253000 Dress choice][$borrowedDress to "kittenWetLookBlackCrissCrossDress"]]
[[Burgundy minidress with deep cowl neck cleavage.|FNG-253000 Dress choice][$borrowedDress to "onePieceCowlNeckBurgundyMiniDress"]]
[[Floor-length black gown with deep V cleavage and very high leg slashes.|FNG-253000 Dress choice][$borrowedDress to "blackDeepVDualSlitJerseyMaxi"]]
[[Purple long-sleeved minidress with horizontal slashes from neckline to navel.|FNG-253000 Dress choice][$borrowedDress to "purpleOpaqueLongSleeveCutOutFront"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Ooh, that //good// choice," Lu coos as she hands it over. "You gon' look //so// nice."
You're not so sure. It's nothing like <<if hasVisited("MALAY-48000 Max date dressup")>>the glamorous dress you wore on your dinner date with Max.<<else>>a dress you'd normally wear to a restaurant.<</if>> The material is thin, stretchy, unforgiving and cheap.
"Okay," says Tid, "[[Get change, go home|FNG-254000 Get change, go home]]. We call you few day about more work."
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You carry the dress and the money through to the dressing room next door.
//[[Get out of these fucking shoes.|FNG-254100 Shoes off]]//
<</page>><<silently>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
Kicking them off feels like bliss.
There are cheap massage parlours everywhere in Bangkok. //Tomorrow I'm definitely gonna get a foot massage.// If you can even walk tomorrow.
You get your bag from <<if hasVisited("FNG-12300 Amanda's locker")>><<Amanda>>'s<<else>>Roxy's<</if>> locker, and get changed back into your street clothes.
You're just about to peel off your thong when you remember the camera feed into the VIP room. None of the customers have seen you without your thong; flimsy and tiny as it is, it's the only thing that gave you any more modesty than the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> tonight.
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">//[Not available to Exhibitionists] Wear the thong home.//</span>
<<else>>\
//<span class="greyedOut">[Not available to Exhibitionists]</span> [[Wear the thong home.|FNG-255000 Kate keeps her modesty]]//
<</if>>\
//[[Take it off, on camera.|FNG-256000 Girl on film]]//
<</page>><<silently>>
<<remove-shoes-blackStrappyGladiatorStilettoSandals>>
<</silently>>\
<<header>>\
<<page>>\
//Glad I remembered that.// You let them watch you kick off your heels instead...oh God, getting out of them feels like bliss.
There are cheap massage parlours everywhere in Bangkok. //Tomorrow I'm definitely gonna get a foot massage.// If you can even walk tomorrow.
//[[Pull on your street clothes.|FNG-257000 Leaving the club]]//
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
Down it comes. You make sure you're facing the camera when you peel the little scrap of fabric down your legs. If the boys in the VIP are watching the screen, they're the first bar customers to see you naked.
Something tells you they're not going to be the only ones. At least, you don't want them to be, anyway. //Fuck why am I so turned on.//
You need to get [[back to the hostel|FNG-257000 Leaving the club]] before your libido gets you in trouble.
<</page>><<silently>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
Kicking your heels off feels like bliss.
There are cheap massage parlours everywhere in Bangkok. //Tomorrow I'm definitely gonna get a foot massage.// If you can even walk tomorrow.
//[[Pull on your street clothes.|FNG-257000 Leaving the club]]//
<</page>><<silently>>
<<if hasVisited("FNG-256000 Girl on film")>>
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>
<</if>>
<<wear-bra-nudeStrapless>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-whiteRibbedButtonUpCroppedTShirt>>
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You double check that <<if hasVisited("FNG-12300 Amanda's locker")>><<Amanda>>'s<<else>>Roxy's<</if>> locker is sealed up tight, and head back out through the club.
It's not yet 1 <small>A.M.</small> and the club's still busy. But your street clothes are like armour: nobody slaps you or gropes you on your [[way out|FNG-258000 Patpong]]. A few guys even nod to you as you're leaving, like normal people saying goodbye to a normal barmaid.
<</page>><<silently>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/nightMarketMidnight.jpg" 75 1000 620 0>>\
Outside, the night market's slowing down. There are fewer tourists; some of the vendors are packing up their stalls.
You'd originally planned to get the skytrain back, but your feet are in such ruins that you can't face walking to the station.
//[[Take a taxi.|FNG-259000 Title card][$modeOfTransport to "taxi"]] <span class="greyedOut">(฿)</span>
[[Ride a tuk-tuk.|FNG-259000 Title card][$modeOfTransport to "tuk-tuk"]] <span class="greyedOut">(฿฿)</span>//
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<a data-passage="FNG-260000 Courtyard">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<</silently>>\
<<header>>\
<<page>>\
You send a codeword to Ian as soon as you're moving, letting him know you're clear and he can stand down.
<<if hasVisited("FNG-18200 Kate gives Adie her number")>>\
Sam – Beardy – has already messaged you twice about booking in for a photoshoot at his studio. Giving him your number was probably a bad idea.
<</if>>\
The $modeOfTransport drops you right at the hostel's front gate. An elderly Swiss couple you've seen around the hostel are sitting out in the courtyard, drinking 7/11 wine and talking; they smile up at you [[as you pass|FNG-260100 Noodle]].
<<unset $modeOfTransport>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Mrs Chu has gone to bed; her son Wun Sen is manning the lobby, sprawled in a couch, playing with his phone.
He looks up when you enter. "Hi $kate.cover.firstName. You look nice."
[[Thanks Wun Sen.|FNG-260200 Hi Noodle][$kateSays to "Wun Sen"]]
[[Thanks Noodle.|FNG-260200 Hi Noodle][$kateSays to "Noodle"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, $kateSays."
You go past him, up the creaky stairs, straight to [[your room|FNG-260300 Kate's room]].
<</page>><<silently>>
<<emote-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
Back in your room, you've got a lot to do. You've got to write a full report on your first night undercover in the Hard Cock Cafe: what you saw, what you learned.
You //have// to do a good job on this, you just have to. It'll be seen by //everybody// who's <div class="tooltip">read into<span class="tooltiptext">been granted access to</span></div> the operation – passed around, discussed, debated.
It's your chance to prove the mission is worthwhile, that it's going to produce the intel picture the Task Force wants. And that you're the officer who can pull it off.
<span class="greyedOut">//[Arousal too high] Start on the report.//</span>
//[[Strip off all your clothes and fingerfuck yourself.|FNG-260400 Report's gotta wait]]//
<</page>><<silently>>
<<remove-top-whiteRibbedButtonUpCroppedTShirt>>
<<remove-shoes-brownAnkleHighStrappyFlatSandals>>
<</silently>>\
<<header>>\
<<page>>\
//Report's gotta wait.// You kick off your sandals, peel off your t-shirt.
//[[Keep stripping.|FNG-260500 Keep stripping]]//
<</page>><<silently>>
<<remove-bra-nudeStrapless>>
<<remove-shorts-blueDenimDaisyDukes>>
<</silently>>\
<<header>>\
<<page>>\
Your body's been teased and touched and stared at for hours. So many men had their hands on you tonight that you couldn't even keep count of them all. You just kept bending over the bar for them, putting your tits in their hands.
<<link "//<<Knickers>> off.//" "FNG-260600 Knickers off">><</link>>
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
You peel them off, and toss them onto the floor with your other scattered clothes.
//[[Get in bed.|FNG-260700 Kates fantasy]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("teenRom/50_katesBedsheets2")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You slip under the covers and reach between your legs. Your pussy's hot, wet, and so ready for this.
You close your eyes and picture yourself...
//
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[Lapdancing for that first group of Thai office guys.|FNG-261000 Private lapdance fantasy]]
<<else>>\
<span class="greyedOut">[Exhibitionist] Lapdancing for that first group of Thai office guys.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[Getting stopped and fucked on the way back from the office.|FNG-262000 Stopped on the dance floor]]
<<else>>\
<span class="greyedOut">[Masochist] Getting stopped and fucked on the way back from the office.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[Sexually serving the VIPs.|FNG-263000 VIP room fantasy]]
<<else>>\
<span class="greyedOut">[Submissive] Sexually serving the VIPs.</span>
<</if>>\
//\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//In your fantasy, you've agreed to give your first customers a private lapdance.
You walk them over to a private table. They're wearing their office suits, you're wearing high heels and a thong. Everybody's dressed professionally and appropriately for their job.
The new guy sits in a chair and you dance for him, confidently and sexily, rolling your hips, grinding your pussy against his crotch. Through the flimsy thong you can feel his cock bulging and stirring in his suit <<trousers>>.
Then...
[[I unzip it.|FNG-261100 Unzipped][$unzipper to "kate"]]
[[He unzips it.|FNG-261100 Unzipped][$unzipper to "thaiGuy"]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//\
<<if $unzipper == "kate">>\
His friends coo in approval as you peel down the zipper, slowly and sensually. You draw his cock out into the room. It's big and hard and golden tanned like the rest of his skin.
<<else>>\
Overcome with desire, he unzips his <<trousers>>, pulling out his cock. It's big and hard and golden tanned like the rest of his skin.
<</if>>\
//With your fingertip skilfully strumming your stiff little clit, your orgasm is building up //fast.// You shimmy your body a little, making your stiff nipples brush against the bedsheets.
//[[Imagine sucking his cock.|FNG-261200 Cock sucker]]
[[Imagine fucking him.|FNG-261300 Lapdance fuck]]
//\
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//Right there, in front of all his friends, you sink sensually down between his splayed-out legs and take his big, fat cock in your mouth.
One of them holds up a camera phone, bathing your face in bright white light. <<if $kate.hairStyle == "short">>Your short, practical haircut gives you //no// modesty from the camera.<<else>>You reach up and hold your hair out of your face so the camera doesn't miss a thing.<</if>>
You know this is going to end up on the internet, but you don't care, you just keep sucking on his dick, your face lit up on camera as his dick gets stiffer and stiffer, about to [[come in your mouth|FNG-264000 Kate orgasm]], on video...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//You straddle him, your long naked legs apart as you tug your thong to one side, and guide the tip of his dick between your soaking wet lips.
Right there, in front of all his friends, you sink down on his fat cock, letting it fill you up totally. They whoop and cheer as you start to [[ride him|FNG-261400 Lapdance fucked and filmed]], right there in the club, rocking gently up and down on his shaft...//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//One of the friends holds up a camera phone, bathing your face and body in bright white light.
You know this is going to end up on the internet, but you don't care, you just keep bouncing on his dick, your face lit up on camera as his dick gets stiffer and stiffer, about to [[come inside you|FNG-264000 Kate orgasm]], on video...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//You remember how you felt coming back alone from the manager's office, naked and vulnerable. Men in the dark spanked you, and groped you, and tugged on your <<knickers>>.
In your fantasy, you don't make it back to the bar. A man grabs your wrist in the darkness, tugs you aside to some dark alcove, where the bouncers are nowhere to be seen.
Then...
[[He casually bends me over a table.|FNG-262100 Bent over table fuck]]
[[He and his friends throw me on the table.|FNG-262300 The gang's all here]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//No talking, no theatrics. He just bends you over the table and yanks down your thong.
You try to tell him to stop but either he can't hear you over the loud music, or he doesn't care. With one big strong hand pressing you down, you feel the tip of his cock nudging at the hot wet entrance of your <<if $kate.bikiniLine == "hollywood">>shaved<<else>>naked<</if>> vagina.//
With your fingertip skilfully strumming your stiff little clit, your orgasm is building up //fast.// With your free hand you cup a<<if $kate.braSize == "large">> big, heavy <</if>> breast, squeezing it and teasing a nipple, as you imagine [[being bent over and fucked|FNG-262200 Penetration]] by a stranger.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//There's nothing you can do. His cock pushes in you, all the way, and you're being fucked by some random hot guy, your <<knickers>> round your knees.
Not that you even know he's hot. It could be anyone. Even that gross guy with the grey ponytail, just deciding to //take// you, and [[who cares what you have to say|FNG-264000 Kate orgasm]] about it...//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//His friends are waiting like hungry wolves, grinning when they see the morsel he's dragged over.
Stripped down to a thong, you're totally defenceless. You couldn't even run away in these heels. The bouncers are nowhere.//
With your fingertip skilfully strumming your stiff little clit, your orgasm is building up //fast.// You shimmy your body a little, making your stiff nipples brush against the bedsheets.
//"Um, hi," you smile ingratiatingly at the men. "You guys [[want drinks|FNG-262400 Not thirsty]]?"//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//But they're not thirsty. They pick you up and throw you onto the table, on your back. Two of them pin down your wrists, two of them hold your ankles apart.
You try to protest, but none of them take you seriously. Your thong's peeled off, then the first one of the guys moves in between your legs, his cock nudging up inside your hot wet pussy as the others [[hold you down and wait their turn|FNG-264000 Kate orgasm]]...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//You were so turned on in the VIP. Something about being the only girl in the room, topless and in heels amidst all that masculine energy<<if hasVisited("FNG-251800 Bent over line")>>. Then bending over the table to do a line, with two different men fondling your <<if $kate.agency == "cia" or $kate.agency == "csis">>ass<<else>>bum<</if>>...<<elseif hasVisited("FNG-251700 Lap line")>>. Then sitting in Nose Ring's lap, his erection bulging against your wet thong while you bent over to do a line...<<else>>...<</if>>
In your fantasy you're not just there to serve drinks, you're there to serve them. You click around the room, getting pawed and fondled as you hand out big tumblers of neat Thai whiskey on ice.
"New Girl's hot, Tid," one of them murmurs approvingly. "Does she [[suck cock|FNG-263100 Click]]?"//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Of course you do, they're VIPs. Tid snaps his fingers and you crawl obediently between the guy's knees, tugging his erection free from his jeans and boxers.
It's big and hard and golden tanned like the rest of his skin. You take it between your lips and start bobbing up and down on it, fingers curled around the base, jerking him off into your mouth.//
With your fingertip skilfully strumming your stiff little clit, your orgasm is building up //fast.// You shimmy your body a little, making your stiff nipples brush against the bedsheets.
//[[Imagine sucking them off while they ignore you.|FNG-263200 Under the table]]
[[Imagine being fucked on one of the leather couches.|FNG-263300 Couch fuck]]//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//You imagine crawling under the table, sucking their cocks in turn while they talk and laugh and do drugs above you. Crawling on your knees between each man, your butt resting on your high heels when you suck his cock, your pussy soaking wet in your thong and [[totally ignored|FNG-264000 Kate orgasm]]...//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//You imagine staying in the VIP the whole night. Not part of the group, just one of the amenities; topping up whiskies and sucking cock and, from time to time, being casually fucked on one of the big leather couches.
In your fantasy each one of them takes a turn with you on the couch, casually taking you in whatever positions they like, not even talking to you except when they're telling you to do something. [[Using your body like a toy|FNG-264000 Kate orgasm]]...//
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
That vivid mental image pushes you over the edge. Fingering your pussy, tugging on a nipple, your body is gripped by a spasm of tension, then waves and waves of shuddering release.
Your orgasm rocks you like an earthquake...followed by aftershocks, smaller and smaller until your senses [[return to normal|FNG-264100 Post orgasmic chill]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.clothing.delete("teenRom/50_katesBedsheets2")>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck. I really needed that.//
Kicking away the bedsheets, you can hear conversation in the courtyard below your window. //Hope I wasn't too noisy.//
//[[Get started on the report.|FNG-264200 Report]]//
<</page>><<silently>>
<<wear-bathRobe-whiteBathRobe>>
<<emote-calm>>
<<emote-chest-flush>>
<<emote-cheeks-blush>>
<</silently>>\
<<header>>\
<<page>>\
//Okay. Fuck.// You pull on your robe and get started on your work.
This report's critical, so you want to organise your thoughts before you start writing. You tear out a sheet of paper from your notepad, and [[start by sketching out a mind map|FNG-265000 Title card]] of everything you want to cover...
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<page>>\
//[[LATER...|FNG-265100 Submitting the report]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
By about 3 <small>A.M.</small> you're done. You read over it one more time, tweak a few pieces of grammar, then hit //SEND// in Signal.
It's hard not to be excited about it; you know it's a solid piece of work. You saw a good part of the club's layout<<if $kateSawTheDoorCode and $kateSawTheOfficeDoorCode>>...picked up a couple of door codes<<elseif $kateSawTheDoorCode or $kateSawTheOfficeDoorCode>>...picked up a door code<</if>>...identified a whole spread of potential agents...found an internal CCTV system...confirmed they've got dealings with either the police or the military through <div class="tooltip">Ja<span class="tooltiptext">Sergeant Major</span></div> Somchai...//and// booked a follow-up meeting with the club's owner, Mr Kriangsak.
Not bad for one night's work. Not bad at all. It's honestly a lot better than most of the field reports you've read, even the ones written by senior officers.
//Maybe I'm actually really good at this.// Anyway, there's no way the Task Force won't [[be impressed|FNG-265200 Redactions]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Knowing the report will be pored over and discussed in meetings by Ian, Clark, <<Olivia>> and god knows who else, you described the sexy parts as dispassionately and professionally as you could.
Stripping down into a thong and heels to serve drinks was "changing for work". Ping and Mem's double dildo stage show was "a tacky lesbian performance". And there's zero mention of <<if hasVisited("FNG-290800 Kate/Roxy first kiss")>>you making out with Roxy, or <</if>>how many different men fondled your breasts and played with your nipples tonight.
Or the guys who spanked and groped your ass on the dancefloor. <<if hasVisited("FNG-251800 Bent over line")>>Or the bit where you bent over the table in the VIP, one guy holding your hair and two others groping your ass and your thigh while you snorted a line...<<elseif hasVisited("FNG-251700 Lap line")>>Or the bit where you bent over the table in the VIP, grinding your pussy on Nose Ring's hard-on while you snorted a line...<<else>>Or how hot you found it, bending topless over the bar for guy after guy after guy...<</if>>
//[[Fuck.|FNG-265300 Jill off II]]//
<</page>><<silently>>
<<remove-bathRobe-whiteBathRobe>>
<<emote-eyes-closed>>
<<emote-mouth-sexy>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<<set $avatar.clothing.push("teenRom/50_katesBedsheets2")>>
<</silently>>\
<<header>>\
<<page>>\
Just thinking about it turns you on again. //I can't believe I did all that.//
You slip back under the covers for a second little //ménage à moi,// before you finally [[drift off to sleep|DINBOSS-2500 Title card]]...
<</page>><<silently>>
Your shimmy your body a little, making your stiff nipples brush against the bedsheets.
<</silently>>\
<<header>>\
<<page>>\
//In your fantasy, you've agreed to give a private dance to your first customers.
You walk them over to a private table. They're wearing their office suits, you're wearing high heels and a thong. Everybody's dressed professionally and appropriately for their work.
The new guy sits in a chair and you dance for him, confidently and sexily, bending over to drape your naked breasts on his body, your ass up and gyrating for his friends.
Then...
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[I peel down my thong.|FNG-261100 Exhib Kate]]
<<else>>\
<span class="greyedOut">[Exhibitionist] I peel down my thong.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[One of his friends yanks down my thong.|FNG-261500 Thong yanked down]]
<<else>>\
<span class="greyedOut">[Masochist] One of his friends yanks down my thong.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[I suck his cock.|FNG-261900 Lapdance BJ]]
<<else>>\
<span class="greyedOut">[Submissive] I suck his cock.</span>
<</if>>\
//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Everyone stares while you peel your thong down, let it slip to your ankles, step out of it and kick it away. You're totally naked, totally accessible, totally on display.
You spread your legs apart and straddle New Guy, hips gyrating, your wet pussy rubbing against his erection, bulging in his suit <<trousers>>.
Then...
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[He fucks me in front of all of his friends.|FNG-261200 Fucked in front of friends]]
<<else>>\
<span class="greyedOut">[Exhibitionist] He fucks me in front of all of his friends.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[They throw me on the table and fuck me.|FNG-261300 Over the table]]
<<else>>\
<span class="greyedOut">[Masochist] They throw me on the table and fuck me.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[I get put over his knee and spanked.|FNG-261400 Spanked]]
<<else>>\
<span class="greyedOut">[Submissive] I get put over his knee and spanked.</span>
<</if>>\
//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//He unzips his cock. You guide it inside you, and sink down on it.
Right there in the bar, fucking some guy you just met at work, in front of all his friends.
They get their camera phones out and start filming. You //know// this is going to end up on the internet, but you don't care, you just keep riding up and down on his stiff cock, your nipples in his mouth, bathed in white light as you...[[as you|FNG-263000 Kate orgasm]]...
//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//You've teased them enough. <<if hasVisited("FNG-261900 Lapdance BJ")>>His friends lift you up by your hair and your wrists, tugging you up on your feet.<<else>>Male hands on your wrists and hips, pulling you up out of your stupid lapdance.<</if>>
The throw you up onto the table, on your back. Two of them pin down your wrists, another one steps up between your legs, swatting your knees apart.
You tell them to stop but they just laugh. You're just a bar slut, and they're all going to take turns [[fucking you|FNG-263000 Kate orgasm]]...//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//You've done something wrong and it's time for you to go over his knee and get spanked.
You're draped over him, your naked butt in the air and on show. Crack! Crack! He smacks your ass like your body's property, not caring how much you writhe and protest.
"Shut her up." A cock goes in your open mouth, and you suck on it softly as sharp stinging smacks rain down mercilessly on your ass.
Then the spanking stops, and a cock thrusts unceremoniously [[into your pussy|FNG-263000 Kate orgasm]]...//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//One of them steps up behind you and yanks your thong roughly down.
You try to protest, but soon you're naked and bent over the table, a hand pressing down on your back.
Then...
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[His friends film him fucking me.|FNG-261600 Fucked on film]]
<<else>>\
<span class="greyedOut">[Exhibitionist] His friends film him fucking me.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[They all take turns fucking me.|FNG-261700 Running a train]]
<<else>>\
<span class="greyedOut">[Masochist] They all take turns fucking me.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[He spanks me.|FNG-261800 Spanked]]
<<else>>\
<span class="greyedOut">[Submissive] He spanks me.</span>
<</if>>\
//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//A camera phone's held up in your face, bathing it in white light. You turn away – the man grabs your hair and turns you back, making you face the camera.
You bite your lip as his cock eases inside you. Half a dozen camera phones record the fuck from every angle.
You know this is going on the internet, you just know it, but there's nothing you can do to stop it as his cock starts [[thrusting vigorously inside you|FNG-263000 Kate orgasm]], <<if hasVisited("MALAY-300000 Doggy style fuck")>>his prickly, shaved balls thwapping against your wet clit<<else>>hard and fast<</if>>...//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//His cock thrusts up inside you, hard and fast. //Ohmygod.// There's nothing tender or caring about it, just a stranger's rock-hard cock pistoning inside you hard and fast until he floods your pussy with cum.
He pulls out, and you think it's over. You straighten up...then the next guy is behind you, pushing you back down. Another stiff cock [[slips inside your pussy|FNG-263000 Kate orgasm]]...//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//With one hand pressing you down against the table, he starts spanking you hard.
You kick and struggle but it's no good, he's much too strong. He spanks your wiggling ass until it's burning red. His friends all sip their drinks and watch him totally dominate the hot <div class="tooltip">farang<span class="tooltiptext">foreign</span></div> girl.
When he finally stops, it's just to unzip his cock. You gasp as it [[thrusts briskly into|FNG-263000 Kate orgasm]] your soft, wet pussy...//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//You shimmy down between his legs, moving on to the next part of the lapdance. He's worked hard on his first day in a new job, and now you have to, too.
You unzip his cock and take it in your mouth, slurping up and down on it. His cock gets stiffer and stiffer in your mouth as you do your job.
Then...
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[One of his friends starts filming.|FNG-262000 Filmed BJ]]
<<else>>\
<span class="greyedOut">[Exhibitionist] One of his friends starts filming.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[They throw me on the table and fuck me.|FNG-261300 Over the table]]
<<else>>\
<span class="greyedOut">[Masochist] They throw me on the table and fuck me.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[They all want lapdances.|FNG-262100 Lapdance queen]]
<<else>>\
<span class="greyedOut">[Submissive] They all want lapdances.</span>
<</if>>\
//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//White light bathes your face as a camera phone is pointed into it.
You keep sucking cock. It's too late to stop now, who cares if you end up on the internet. You pick up the pace, trying to make the blowjob and the video as entertaining as you possibly can.
Soon his cock twitches and squirts in your mouth. You open up and show off the load to the camera before gulping it down, on film. Then you smile. "Okay," you say, and you're speaking both to the guys and to your audience on the world wide web. "[[Who's next...|FNG-263000 Kate orgasm]]"//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//His cock twitches and squirts in your mouth. You swallow it down, all part of the service.
It's time to get back behind the bar. But first, all his friends want lapdances too. You move onto the next guy, dancing over him in his chair, letting him suck your tits and grope your butt.
Then it's time to get down on your knees and suck again. No, wait – //bend over// and suck. That way another guy can come up behind you, tug your thong to one side, and [[fuck you hard|FNG-263000 Kate orgasm]] while you work...//
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
That vivid mental image pushes you over the edge. Fingering your pussy, tugging on a nipple, your body is gripped by a spasm of tension, then waves and waves of shuddering release.
Your orgasm runs through you like an earthquake...followed by aftershocks, smaller and smaller until your senses [[return to normal|FNG-263100 Post orgasmic chill]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
When you wake up, daylight's trickling in through your shutters and cutlery is clinking downstairs.
You need to eat breakfast, but after your session with Kriangsak last night, you're not sure you feel like taking a walk of shame down to the breakfast buffet.
//[[Woman up and go down there.|GOF-400 Woman up]]
[[Call down and ask Wun Sen to bring something up to your room.|GOF-150 Dial down]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You grab your <<if $kate.agency == "cia" or $kate.agency == "csis">>cell phone<<else>>mobile<</if>> and call the number for the hostel.
After a few rings, a familiar young male voice answers. "Hallo Baan Krung Thep?"
<<link "Wun Sen, it's $kate.cover.firstName. Can you bring me some breakfast?" "GOF-200 Room service request">><<set $kate.nameForNoodle to "Wun Sen">><</link>>
<<link "Noodle, it's $kate.cover.firstName. Can you bring me some breakfast?" "GOF-200 Room service request">><<set $kate.nameForNoodle to "Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey $kate.nameForNoodle, it's $kate.cover.firstName."
"Oh hi $kate.cover.firstName, good morning."
"Good morning. Could you bring me up some breakfast?"
"Sure thing, what you like?"
<<if $kate.agency == "mi6">>\
[[Bacon, eggs, toast, tea.|GOF-230 Kate orders western breakfast]]
<<else>>\
[[Bacon, eggs, toast, coffee.|GOF-230 Kate orders western breakfast]]
<</if>>\
[[Thai breakfast porridge.|GOF-240 Kate orders Thai breakfast]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bacon, eggs, toast. And a pot of <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>>."
<<include "GOF-250 I bring to you">>
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Is there any <div class="tooltip">jok<span class="tooltiptext">savoury rice porridge, a Thai breakfast delicacy</span></div>?"
<<include "GOF-250 I bring to you">>
<</page>>"Uh huh. I bring to you."
"Thanks $kate.nameForNoodle."
You've got a couple of minutes before he comes up.
<<link "//Put on a robe.//" "GOF-300 Noodle arrives">><<wear-bathRobe-whiteBathRobe>><</link>>
//[[Don't bother.|GOF-300 Noodle arrives]]//<<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Soon there's a soft //tap-tap-tap// at your door. $kate.nameForNoodle arrives, bearing your breakfast on a <<if hasVisited("GOF-230 Kate orders western breakfast")>>cream-coloured<<else>>blue<</if>> plastic tray.
"Here you go $kate.cover.firstName," he says, his big dark eyes <<if $kate.isWearing.includes("bathrobe")>>flickering down to your bare legs<<else>>drinking in the sight of you in your underwear<</if>>. "Um...you look nice last night."
<<link "Thanks, $kate.nameForNoodle. Bye." "GOF-350 Breakfast in bed">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, $kate.nameForNoodle. See you later."
When he's gone, you sit up on the bed and tuck into your breakfast<<if hasVisited("GOF-230 Kate orders western breakfast")>> – [[bacon, eggs and toast|GOF-800 Low profile]], washed down with a few cups of <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>>.<<else>>, a bowl of //jok.// This savoury rice soup is spruced up with juicy pork meatballs, poached egg, ginger and <<if $kate.agency == "mi6">>spring<<else>>green<</if>> onions.
Mrs Chu the landlady makes it every morning; you have no idea how her son [[stays skinny|GOF-800 Low profile]].<</if>>
<<if hasVisited("GOF-230 Kate orders western breakfast")>>\
<<image "/locationPhotos/thailand/hostel/bacon.jpg" 150 1000 550 0>>\
<<else>>\
<<image "/locationPhotos/thailand/hostel/joke.jpg" 150 1000 550 0>>\
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-mustardMaxiSkirt>>
<<wear-top-whiteTShirtWithRuffledSleevesKnottedAtWaist>>
<<wear-shoes-whiteFlatEspadrilles>>
<</silently>>\
<<header>>\
<<page>>\
You change in your room, and go down to the breakfast buffet.
You could be imagining it, but it feels like everybody notices when you walk into the room. Knowing eyes and muttered comments, making you feel judged and exposed.
Like when you went topless in the club, you instinctively know that showing weakness will make it worse. You keep your chin up and your expression carefree, adding a taste of [[cool defiance|GOF-450 Welcome to Defiance]] to everybody's breakfast.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Some of the Italian backpackers are down here. Last night they were in the courtyard below your window, laughing at the sound of your bed bumping hard and fast against the wall.
"'eyy, Zoccoletta!" one cheers when he sees you. Another makes a sound like a creaky bed.
You ignore them and get some breakfast from the buffet.
//[[Bacon and eggs.|GOF-480 Kate gets western breakfast]]
[[Thai breakfast porridge.|GOF-490 Kate gets Thai breakfast]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/bacon.jpg" 150 1000 550 0>>\
You load up a plate with bacon, eggs and toast, and grab a pot of <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>>.
"'eyy, [[ascuse me|GOF-500 Ascuse me]]. It's-a $kate.cover.firstName, right?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/joke.jpg" 150 1000 550 0>>\
You load up a bowl of //jok,// a Thai breakfast delicacy. This savoury rice soup is spruced up with pork meatballs, poached egg and ginger and <<if $kate.agency == "mi6">>spring<<else>>green<</if>> onions; Mrs Chu the landlady makes it every morning, and you have no idea how her son stays skinny.
"'eyy, [[ascuse me|GOF-500 Ascuse me]]. It's-a $kate.cover.firstName, right?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One of the Italians has come over. Not the //drop dead gorgeous// one with the long hair – he must still be up in his room – but you could still call this guy <span class="imageLink"><<link "tall dark and handsome">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/giulio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, in a rugged kind of way.
"I'm Giulio," he says, offering a handshake.
[[Hi, Giulio.|GOF-550 Hi Giulio][$kateSays to "hiGiulio"]]
[[Why do you know my name?|GOF-550 Hi Giulio][$kateSays to "youKnowMyName"]]
[[Don't hit on me, okay?|GOF-550 Hi Giulio][$kateSays to "dontHitOnMe"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hiGiulio">>\
"Hi Giulio."
"Nice to meet you," <span class="imageLink"><<link "Giulio">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/giulio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beams. "Sorry about those guys. Come, 'ave breakfast with us. Make some new friends, huh?"
<<elseif $kateSays == "youKnowMyName">>\
"Why do you know my name?"
"I ask the keed," <span class="imageLink"><<link "Giulio">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/giulio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. //The kid// – he must mean Wun Sen. "You want to 'ave breakfast with us?"
<<elseif $kateSays == "dontHitOnMe">>\
"Look, don't hit on me, okay?" You just came down to eat.
"I wouldn't dream about it," <span class="imageLink"><<link "Giulio">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/giulio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> assures you. "Just wanted to say you to 'ave breakfast with us. Make some new friends, huh?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You notice that his friends are watching intently. And that Jaya and Vish are out in the courtyard – you could go sit with them instead.
//[[Eat with Giulio and his friends.|GOF-700 Italian breakfast]]
[[Eat with Jaya and Vish.|GOF-600 Indian breakfast]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry. I'm meeting those guys."
You take your food into the courtyard to join your Indian friends.
"$kate.cover.firstName!" Jaya exclaims. "Who was that guy last night?"
[[Just a guy.|GOF-610 Just a guy]]
[[Can we talk about something else?|GOF-650 Don't wanna talk about it]]
[[I got a job in a club, he's the boss.|GOF-670 Kriangsak is my new boss]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Just a guy," you shrug, starting on your breakfast. "What's the big deal?"
"Well...the car. And your dress! You looked very...sexy." That last part isn't delivered entirely approvingly.
[[Thanks!|GOF-620 Thanks!]]
[[He's a millionaire, I'm his mistress.|GOF-660 Millionaire]]
[[I got a job in a club, he's the boss.|GOF-670 Kriangsak is my new boss]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks!" you smile, ignoring her subtext.
"So, uh...who is he?" Jaya tries again.
[[I really don't wanna talk about it, Jaya.|GOF-630 Kate clams up]]
[[A millionaire, I'm his mistress.|GOF-660 Millionaire]]
[[I got a job in a club, he's the boss.|GOF-670 Kriangsak is my new boss]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I really don't wanna talk about it."
"Is that...because it was bad? Or because..."
"Jaya." Her husband Vish interrupts. "She doesn't want to talk of it."
"But–"
//"Jaya."// His stern tone cuts her off. "Be quiet. $kate.cover.firstName, [[how is your breakfast|GOF-640 Vish disciplines Jaya]]..."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Jaya hardly says another word through breakfast, just pokes her fruit and yoghurt sullenly around with a fork.
You have the feeling the newlyweds are going to have an argument back in their room, but you're grateful to Vish for cutting her off.
You chat with him over breakfast, then [[head back up to your room|GOF-800 Low profile]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Can we talk about something else? I've already had this from those guys," you say, nodding over your shoulder towards the Italian backpackers.
"Yeah, they asked us about you," Jaya says. "I think that dress you wore got their attention. Well, everyone's attention. You looked very...sexy." That last part isn't delivered entirely approvingly.
[[Thanks!|GOF-620 Thanks!]]
[[OK, he's a millionaire, I'm his mistress.|GOF-660 Millionaire]]
[[OK, I got a job in a club, he's the boss.|GOF-670 Kriangsak is my new boss]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GOF-650 Don't wanna talk about it")>>\
"Okay...he's a millionaire, I'm his mistress."
<<else>>\
"He's a millionaire, I'm his mistress.""
<</if>>\
"Really? But...wow," Jaya says. "He's a...Thai millionaire? You met him here?"
[[Yeah, he's a friend of the Royal Family.|GOF-662 Kriangsak is my sugar daddy][$kateSays to "royalFriend"]]
[[No, he has businesses all over Asia.|GOF-662 Kriangsak is my sugar daddy][$kateSays to "asianMagnate"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "royalFriend">>\
"Yeah. You can't tell anyone, but he's a friend of the Royal Family."
<<elseif $kateSays == "asianMagnate">>\
"He has businesses all over Asia. Hong Kong, Tokyo, Beijing, Singapore."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
//"Wow."// Jaya mulls this over. "Are you his...sugarbaby?" The word sounds adorable in her thick Indian accent.
[[Yeah, he's obsessed with me though.|GOF-664 Sugarbaby][$kateSays to "obsession"]]
[[No, it's true love.|GOF-664 Sugarbaby][$kateSays to "romance"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "obsession">>\
"Kind of. He's obsessed with me, but I just want to keep it casual."
<<elseif $kateSays == "romance">>\
"No, we're in love. We'll be together one day."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Wow," marvels Jaya. She interrogates you on this all the way through breakfast, doubtlessly eager to [[pass this gossip on|GOF-800 Low profile]] to Shira later.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-4230 I'm broke")>>\
"Remember I told you I was broke? Well...I got a job. In a club. He's the boss."
<<else>>\
"Well...I got a job in a club. He's the boss.""
<</if>>\
"That's your //boss?"// Jaya's eyes are saucer wide as she processes that. "Whoa."
"You're a...hostess?" Her husband cuts in.
[[Barmaid.|GOF-672 Barmaid]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Barmaid," you clarify.
"Wow. What club?"
[[Just a club.|GOF-674 Just a club]]
[[An overpriced skybar, you'd hate it.|GOF-676 Skybar]]
[[The kind of place that rips off tourists. You should stay away.|GOF-678 Tourist ripoff]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Just a club."
"What club?" Vish asks hopefully.
"Never you mind," Jaya cuts in possessively. "So...you //work// for that guy?" She interrogates you on this all the way through breakfast, doubtlessly eager to [[pass this gossip on|GOF-800 Low profile]] to Shira later.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"A skybar. Very overpriced. You'd hate it."
"Which one?" Vish asks hopefully.
"Never you mind," Jaya cuts in possessively. "So...you //work// for that guy?" She interrogates you on this all the way through breakfast, doubtlessly eager to [[pass this gossip on|GOF-800 Low profile]] to Shira later.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"The kind of place that rips off tourists. You guys should stay away."
"Where is it?" Vish asks hopefully.
"Never you mind," Jaya cuts in possessively. "So...you //work// for that guy?" She interrogates you on this all the way through breakfast, doubtlessly eager to [[pass this gossip on|GOF-800 Low profile]] to Shira later.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//What the hell.// You take your food over to the Italian table, and shake hands with a bunch of guys whose names all end in vowels.
They're surfers, from a part of Italy called Liguria: colourful towns and beautiful beaches by their account. They're all around your age, except for Giulio, who's the elder brother of Enzo.
You eat breakfast and listen to them bantering with each other, in charmingly imperfect English. Their relationship dynamic is aggressively masculine – fondness expressed through [[brutally funny taunts|GOF-750 Zoccoletta]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They give you the nickname Zoccoletta – <<if $kate.hairColour == "Brown">>//because your 'air is like-a the chocolate//<<elseif $kate.eyeColour == "chestnut" or $kate.eyeColour == "hazelnut">>//because your eyes are like-a the chocolate//<<else>>//because you are sweet, like-a the chocolate//<</if>> – and it sticks all through breakfast. //'ey, Zoccoletta, is nice to meet you. 'ey, Zoccoletta, please pass the salt.//
Giulio tells you they're visiting the islands for a few days, and invites you along – but you can't leave the city, and there's no way you'd get on a boat with a bunch of guys you just met anyway.
"Ciao Zoccoletta," they chorus as you leave breakfast and go [[back to your room|GOF-800 Low profile]].
<</page>><<silently>>
<<removeShoes>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You keep a low profile for the rest of the day, sitting on your bed reading an <span class="imageLink"><<link "old novel about Buddhism">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/siddhartha.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> you borrowed from the book exchange downstairs.
Early in the afternoon, your phone rings. You recognise the number on screen; it's the Hard Cock Cafe.
<span class="greyedOut">//[Answer it]//</span> [[Hello?|GOF-850 Hi River it Lu]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hello?"
"Hi $kate.stripperName, it Lu. You have nice time last nigh'?"
[[Wonderful.|GOF-900 Lu books Kate][$kateSays to "wonderful"]]
[[Have you spoken with him?|GOF-900 Lu books Kate][$kateSays to "haveYouTalked"]]
[[He said I can have more shifts?|GOF-900 Lu books Kate][$kateSays to "moreShifts"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "wonderful">>\
<<emote-brows-rogerMoore>>\
"Wonderful," you dryly reply.
<span class="greenHighlighter">Miss Lu ''liked'' that.</span>
She laughs throatily at that. "Ha! Good girl. He say you can have more shif'..."
<<elseif $kateSays == "haveYouTalked">>\
"Have you spoken with him?"
"Yeah, that why I call. He say you can have more shif'..."
<<elseif $kateSays == "moreShifts">>\
"He said I can have more shifts?"
"Yeah, that why I call..."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
She offers you three more shifts next week. Your first thought is that your feet are going to be killing you by Saturday. But you'll probably have [[bigger things to worry about|GOF-999 Monday title card]]...
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-top-whiteTShirtWithRuffledSleevesKnottedAtWaist>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-ring-transmitterRing>>
<</silently>>\
<a data-passage="GOF-1000 Monday arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/mondayTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $kate.isUsingHerStripperName to true>>
<</silently>>\
<<header>>\
<<page>>\
Monday's shift starts with a drama in the <span class="imageLink"><<link "dressing room">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/dressingRoomDragon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. An American <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>, Zoe, hasn't turned up for her shift.
Connor and Miss Lu storm into the dressing room. They make several bargirls call Zoe with their own phones: but she's not picking up to anybody.
"Why you book her on Monday?" Lu snaps at Connor, while you [[sit quietly and do your makeup|GOF-1050 Makeup]]. "You know what she like!"
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "GOF-1080 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "GOF-1070 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "GOF-1090 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "GOF-1060 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "GOF-1095 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GOF-1099 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GOF-1060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GOF-1070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-1080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GOF-1090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-1095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeshadow", "eyeliner", "lipstick")>>\
If you're happy with your look, you should [[change into your "uniform"|GOF-1100 Monday dressup]].
<</if>>\<<silently>>
<<remove-knickers-whiteBrazilianCutWithLaceHem>>
<<remove-bra-whiteHalfCupCentralDart>>
<<remove-top-whiteTShirtWithRuffledSleevesKnottedAtWaist>>
<<remove-shorts-blueDenimDaisyDukes>>
<<remove-shoes-tanAnkleHighStrappyFlatSandals>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your clothes and get into your work outfit for tonight.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Thongs</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "GOF-1120 Thongs">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "GOF-1110 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GOF-1130 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackElegantPumps/15_shoes-blackElegantPumps")>>\
<<link "Elegant black pumps">>\
<<wear-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elegant black pumps">>\
<<remove-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/leopardStrappyHighHeelSandals/15_shoes-blackElegantPumps")>>\
<<link "Leopard strappy high heel sandals">>\
<<wear-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard strappy high heel sandals">>\
<<remove-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/pinkStrappyStilettoHeelSandals/15_shoes-pinkStrappyStilettoHeelSandals")>>\
<<link "Pink strappy stiletto heel sandals">>\
<<wear-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink strappy stiletto heel sandals">>\
<<remove-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/nudePeepToeHeels/15_shoes-nudePeepToeHeels")>>\
<<link "Nude peeptoe heels">>\
<<wear-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude peeptoe heels">>\
<<remove-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redValentinoStilettos/15_shoes-redValentinoStilettos")>>\
<<link "Red Valentino stilettos">>\
<<wear-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Valentino stilettos">>\
<<remove-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals")>>\
<<link "Red velvet criss cross strappy stiletto heel sandals">>\
<<wear-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red velvet criss cross strappy stiletto heel sandals">>\
<<remove-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-1110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.underwear.includes("clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/30_knickers-blackAndLimeGreenThreeSideStrapGanjaString")>>\
<<link "Ganja leaf g-string">>\
<<wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ganja leaf g-string">>\
<<remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/30_knickers-blackMeshWithHotPinkBowsCrotchlessString")>>\
<<link "Black mesh crotchless g-string with hot pink bows">>\
<<wear-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black mesh crotchless g-string with hot pink bows">>\
<<remove-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-cherryRedTwoSideStrapWithGoldLoopsString")>>\
<<link "Cherry red strappy thong with gold loops">>\
<<wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red strappy thong with gold loops">>\
<<remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-vsPinkHeartsKnickers")>>\
<<link "VS Sheer Pink hearts <<knickers>>">>\
<<wear-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// VS Sheer Pink hearts <<knickers>>">>\
<<remove-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-maroonGlitterString")>>\
<<link "Maroon glitter thong">>\
<<wear-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Maroon glitter thong">>\
<<remove-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-ivoryStrappyString")>>\
<<link "Strappy ivory g-string">>\
<<wear-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Strappy ivory g-string">>\
<<remove-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GOF-1120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-1130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("knickers", "shoes")>>\
You bought a combination padlock, so you can [[pack away your stuff|GOF-1150 Ilsa saves the day]] when you're ready.
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.lastWornKnickers == "blackMeshWithHotPinkBowsCrotchlessString" or $kate.lastWornKnickers == "vsPinkHeartsKnickers">>\
<<set $kateHasWornASheerThongToWork to true>>\
//Fuck.// This thong is so revealing that you feel unsure about going out into the club in it. But nobody else seems to have noticed.
<</if>>\
The staffing crisis is resolved when <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a strikingly attractive Slavic girl with bleached blonde hair and chocolate brown eyes, is called in at short notice to replace Zoe.
You've never seen a woman [[put on makeup and change into lingerie|GOF-1200 At the bar]] so angrily in your entire life.
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Out behind the bar, your second shift starts the same as before: slow at first, picking up later.
You'd wondered if doing it a second time would turn you on again; maybe it was just the novelty?
But your body responds to the male gaze in just the same way it did before: [[nipples stiff, pussy wet|GOF-1210 Coping with groping]] while you serve drinks and bank cash.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy's wet.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
At around eight, the music gets cranked up so it's too loud to talk. All the barmaids have to step up on the rail and lean over the bar to hear orders.
//Some o' the punters'll get a wee bit handsy,// Connor warned you in the interview, and he was right. As the bar patrons get drunker and bolder, they touch and grope your breasts when you bend over the bar.
Last week it was a shock, this time you know it's coming.
//[[Let them grope you.|GOF-1350 Groping allowed]]
[[Try to minimise it.|GOF-1250 Groping defence]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's part of the job, but you don't have to encourage it. Sometimes you don't have to lean out over the bar at all – you can figure out what someone wants by pointing and reading lips.
When you do have to drape yourself over the bar – if someone wants a cocktail or a mixer, or just if they're being bloody-minded – by crossing your arms and leaning on your elbows you can discourage all but the [[most determined gropers|GOF-1300 Cracks in the armour]].
<</page>><<silently>>
<<set _randomKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
It mostly works, but a few people complain to you that you're less fun than Roxy.
<span class="redHighlighter">Bar patrons ''disliked'' that.</span>
A few of the regulars seem to like you presenting a challenge. They're the ones who insist on beckoning you over the bar to give you their order, and they're the ones who just reach around your arms to grope your breasts and tweak your nipples.
<<if _randomKink == "masochist">>\
They're not always gentle when they do it. Having your nipples casually squashed by a pissed-off older man is actually kind of a turn-on, though you'd never admit it.\
<<elseif _randomKink == "exhibitionist">>\
There's something surprisingly hot about this because, when they do it, you catch other men looking on with something like envy. Something about men watching you getting molested turns you on...though you'd never admit it.\
<<elseif _randomKink == "submissive">>\
You'd never admit it, but there's honestly something kind of hot about setting obvious boundaries...and men ignoring them.\
<</if>> After a while you find that your defences have become a little bit [[less zealous|GOF-1550 Out on the club floor]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The whole mission depends on you keeping this job. So you put up with it and let them paw you, just like Roxy and Ploy.
<span class="greenHighlighter">Bar patrons ''liked'' that.</span>
Not everybody does it: some guys are too respectful, or too shy, or too distracted by a bargirl to feel you up.
The guys that do it all have different touches. Some cup and squeeze your breasts; some honk them and laugh; some fondle them tantalisingly, [[tweaking and tugging your nipples|GOF-1400 Groping allowed 2]] while they tell you what drink to fix them.
<</page>><<silently>>
<<set _randomKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
When you imagined what this job would be like, you mainly pictured something embarrassing or degrading that you'd have to endure.
You never expected it would turn you on so much, but your body just responds to all the attention. <<if _randomKink == "masochist">>//Especially// when a customer isn't particularly gentle.<<elseif _randomKink == "submissive">>There's something seriously hot about stripping naked and getting bossed around.<<elseif _randomKink == "exhibitionist">>There's something seriously hot about being naked on display.<</if>>
By 9 PM, your <<knickers>> are [[soaking wet|GOF-1550 Out on the club floor]] and you catch yourself feeling disappointed when a hot guy at the bar doesn't touch you.
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Time passes by, measured in loud old rock songs and <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> taking turns to dance naked on stage.
The big glowing blue bar gives you a sense of protection, a physical barrier you can retreat behind. But sometimes you have to venture out from behind it on some errand or other.
Early in the evening, it [[isn't much of a problem|GOF-1600 They mostly come out at night, mostly]]. It's just weird to walk through a room of fully-clothed men, your bare breasts <<if $kate.braSize == "small">>fully on display<<elseif $kate.braSize == "medium">>jiggling with every step<<elseif $kate.braSize == "large">>bouncing distractingly<<else>>//ERROR IN KATE.BRASIZE VAR//<</if>> every time you go and fetch a mop, or a manager, or something.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Later in the night, though, when the dark room is crowded and everybody's been drinking, each journey feels much more dicey.
The men leave you alone if you've got a male escort. Otherwise you can't get across the room without getting at least one [[smack on the ass|GOF-1650 Smacked!]], someone twanging or tugging down your knickers, or someone pinching your ass.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
''//Crack!//'' A big male hand smacks your bare buttock so hard that you almost drop a tray full of empty glasses.
You suck in a startled gasp of air; a hot rush of anger blazes up in your stomach.
[[Complain to the bouncers.|GOF-1700 Don't hit me!]]
[[Put up with it.|GOF-1900 Kate puts up with it]]
[[Service with a smile.|GOF-1950 Service with a smile]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
You whirl around and glare at the culprits, a group of fat Aussies on a stag week. They all think the look on your face is hilarious, so you storm off to find some backup.
You find Cross Eye the bouncer nearby. He listens to your shouted complaint impassively, then holds up a finger and twirls it round; he wants to see your ass.
//[[Show him the mark.|GOF-1750 Kate shows her injury]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn around and show him your butt cheek, tilting it up so he can get a clear look at the red, blotchy mark.
A flicker of annoyance crosses his face. Without a word, he sets off to track down the Aussies.
//[[Follow him.|GOF-1800 Showdown at the Hard Cock Cafe]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
There are six of them and one of Cross Eye.
You can tell by their saucer eyes and meek expressions that the Aussies //do not like these odds,// not one bit.
"Who hit you?" Cross Eye asks you.
//[[Point out the ringleader.|GOF-1850 Kate lases a target]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You point to the culprit. He gulps nervously.
Cross Eye saunters up in his face, leans in close, and shouts something in his ear. The Aussie looks frightened and swallows again before he can shout a reply. "S-sorry mate!"
"Not on //me!"// Contempt shines out of the bouncer's one good eye like a death ray. "Apology on //her!"//
The Aussie looks desperately over to you, throwing up the fleshy hands he hit you with. "Sorry darlin'. Didn't mean it!"
<span class="greenHighlighter">Cross Eye ''liked'' that.</span> <span class="redHighlighter">Bar patrons ''disliked'' that.</span>
They <<if hasVisited("GOF-1250 Groping defence")>>[[drink up and leave|GOF-2200 Connor manages Kate]]<<else>>[[drink up and leave|GOF-2650 Connor flirts with Kate]]<</if>> shortly after.
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
The glasses jingle on the tray, but you manage to keep it upright. //Ow.//
You take a deep breath to force down your anger, and just [[carry the tray back to the bar|GOF-2150 Back to the bar]] without a further reaction.
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
The glasses jingle on the tray, but you manage to keep it upright. //Ow.//
You take a deep breath to push down your anger, and [[force a smile onto your face|GOF-2000 What can I get you?]] before you turn around.
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You turn and face the culprits, a group of fat Aussies here on a stag week, a smile plastered on your face.
<span class="greenHighlighter">Bar patrons ''liked'' that.</span>
[[Having fun tonight, guys?|GOF-2050 Friendly Kate conclusion][$kateSays to "havingFun"]]
[[What can I get you?|GOF-2050 Friendly Kate conclusion][$kateSays to "whatCanIGetYou"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "havingFun">>\
"Having fun tonight, guys?" you shout, ignoring the [[hot red sting|GOF-2052 When's the lesbian show]] radiating out of your buttock.
<<elseif $kateSays == "whatCanIGetYou">>\
"What can I get you?" you shout, ignoring the [[hot red sting|GOF-2052 When's the lesbian show]] radiating out of your buttock.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"What time's the lezzie show?" one shouts.
Lesbianism is just a type of entertainment here.
[[Ten o'clock.|GOF-2054 Ten]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Ten o'clock!" you shout helpfully.
"Alright, [[thanks|GOF-2150 Back to the bar]]."
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You head back to the bar, carrying the tray of empties. You're not sure it's a smart idea to just let people hit you, but <<if hasVisited("GOF-1250 Groping defence")>>[[what else can you do?|GOF-2200 Connor manages Kate]]<<else>>[[what else can you do?|GOF-2650 Connor flirts with Kate]]<</if>>
<</page>><<silently>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You slip back behind the safety of the bar, and get back to serving drinks and banking Baht.
Connor is the most visible of all the managers. He frequently comes out to the bar to chat with patrons, check the cash registers, or just grab a drink.
During one such visit, he beckons you over after you finish serving a customer. You step up on the rail and bend over the bar, curling your hair behind your ear. "Hey," he shouts, "can I [[see you in the office|GOF-2250 Dance floor walk]] a wee sec?"
<</page>><<silently>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step out from behind the bar, and follow him through the club.
With Connor escorting you, nobody touches you on your way to the No Entry Door. Cross Eye the bouncer holds it open, and the two of you [[pass backstage|GOF-2300 Backstage corridors]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set $header.line1 to "''BACKSTAGE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSawTheOfficeDoorCode>>\
Back here the music's muffled, but your ears are ringing.
Connor tries the office door, but finds it locked; he punches in the door code, and [[beckons you in|GOF-2350 Dressed down]].
<<else>>\
Back here the music's muffled, but your ears are ringing.
Connor tries the office door, but finds it locked; he punches in the door code.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 5>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 6. You rolled: (_kateD10+1) = <<= _kateD10+1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $kateSawTheOfficeDoorCode to true>>
You catch it this time, [["6-3-9-0"|GOF-2350 Dressed down]].
<<else>>
He blocks your view [[with his back|GOF-2350 Dressed down]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+1<span class="tooltiptext">+1 //Perception//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''MANAGER'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
He perches on the desk. "Dinnay sit down, this'll just take a wee sec." That's disappointing because your feet are killing you.
"Listen, the boys at the bar are saying yer no fun, you don't flirt. That's no good to us, okay? Remember what I told you in the interview?"
[[Some of the customers will get handsy.|GOF-2400 Ramona come closer][$kateSays to "handsy"]]
[[Don't freak out about getting groped.|GOF-2400 Ramona come closer][$kateSays to "groped"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "handsy">>\
"Some of the customers will get handsy."
<<elseif $kateSays == "groped">>\
"Not to freak out about being groped."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Aye, that's right. C'mere." He beckons you closer.
The last time he touched you was when he was fucking you in his apartment, and the sensation of his hands cupping your breasts is startlingly erotic.
He gently pinches your stiff nipples, tugs them in a way that sends a [[little thrill|GOF-2450 Management intervention]] running down to your groin.
<</page>><<silently>>
<<emote-mouth-sexy>>
<<first>>
<<addNotification "Arousal +1" "Your thong is soaked.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Aye, that's it," he says. Your hands hang limply by your sides while he toys with your nipples. Your crotch tingles, hot and wet. "Now...get back out there and let the boys play with these. Or we're gonna have to let you go at the end of the shift, okay?"
You can't quite believe that your boss is threatening to fire you while he's playing with your breasts. Is he serious?
[[Okay.|GOF-2500 Okay]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you nod.
"Good girl. Now get back to work."
He gives your ass a little smack as you leave the office; it's not the last one you get before you make it [[back behind the bar|GOF-2550 Bar service]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Hey $kate.stripperName!" shouts one of the regulars. "Two Changs!" he taps the Chang Beer pump and holds up two fingers.
This is how you've trained him that you serve drinks tonight; shouting across the bar, not bending over it like the other girls.
<span class="greyedOut">//[Bend over the bar for him.]//</span> [[Huh?|GOF-2600 Lean In]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//If I get fired this whole mission is scrubbed.// And everything you've done so far – including having sex with Connor and Kriangsak – was for nothing.
You step up on the footrail and bend over the bar, making your breasts easy to access. "Huh?" you shout. He doesn't get the hint, but the other guys at the bar quickly grasp the new rules.
<span class="greenHighlighter">Bar patrons ''liked'' that.</span>
When Connor next comes out to the bar, you make sure he can see your <<if hasVisited("GOF-1800 Showdown at the Hard Cock Cafe")>>[[breasts are in someone's hands|GOF-3000 Ring ring]]<<else>>[[breasts are in someone's hands|GOF-3500 VIP order]]<</if>>...he gives you a little wink and a smile.
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You slip back behind the safety of the bar, and get back to serving drinks and banking Baht.
Connor is the most visible of all the managers. He frequently comes out to the bar to chat with patrons, [[check the cash registers|GOF-2700 Connor moves Kate]], or just grab a drink.
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You didn't see him come up this time; with your back to the room, you're crushing up mint leaves with a mortar and pestle so you can make some Spanish guy a mojito.
The first moment you realise Connor's here is when you glimpse his reflection in the mirrored backbar, close behind you.
Then his hands touch your sides. He gently but firmly [[pushes you to one side|GOF-2750 Turned on]], so he can get to the cash register. Your heels clop on the rubber floor as you adjust your position.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy's wet.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
The last time he touched you, he was //fucking// you. The familiar sensation of his hands on your bare skin is startlingly erotic. Instant intimacy.
//[[Conceal your reaction.|GOF-2800 Aloof]]
[[Apologise for being in the way.|GOF-2850 Sorry]]
[["Annoyed" hip bump.|GOF-2900 Hip bump]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You keep crushing up the mint leaves, studiously avoiding eye contact with Connor in the mirrored backbar.
//I don't even like him, for god's sake,// you think, grinding the mint leaves down hard and fast with the chunky pestle in your hand. //Something about this place is making me// <<if hasVisited("GOF-1800 Showdown at the Hard Cock Cafe")>>//[[crazy|GOF-3000 Ring ring]]//<<else>>//[[crazy|GOF-3500 VIP order]]//<</if>>//...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry." You have to lean up to shout in his ear; that reminds you of how good he smells up close, that woody, spicy cologne you could still smell on your body after you left his apartment.
"No problem, chick," he shouts back cheerily.
//Fuck. I'm //<<if hasVisited("GOF-1800 Showdown at the Hard Cock Cafe")>>//[[really turned on|GOF-3000 Ring ring]].//<<else>>//[[really turned on|GOF-3500 VIP order]].//<</if>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You give him an "annoyed" bump with your naked hip. He glances round; "Don't push me," you shout, your tone playfully scolding.
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Sorry, princess," he shouts back cheerily. You grin at each other and <<if hasVisited("GOF-1800 Showdown at the Hard Cock Cafe")>>[[go back to your tasks|GOF-3000 Ring ring]].<<else>>[[go back to your tasks|GOF-3500 VIP order]].<</if>>
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
A little later, the phone rings behind the bar.
//[[Answer it.|GOF-3050 Kate answers]]
[[Leave it.|GOF-3100 Ploy answers]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Hello, Hard Cock Cafe." You have to shout into it and stick a finger in your ear.
"$kate.stripperName? It Tid. Come to office, now."
[[On my way.|GOF-3200 Journey through the underworld]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ploy grabs it, sticking her finger in her ear to hear whoever's at the other end of the line.
"$kate.stripperName," she tells you after she hangs up. "Tid want you. In office."
[[Okay.|GOF-3150 Why][$kateSays to "ok"]]
[[Why?|GOF-3150 Why][$kateSays to "why"]]
[[What does he want?|GOF-3150 Why][$kateSays to "whatFor"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "ok">>\
"Okay," you shout.
<<elseif $kateSays == "why">>\
"Why?" you shout.
"He not say."
<<elseif $kateSays == "whatFor">>\
"What does he want?" you shout.
Ploy shrugs. "You."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
//[[Report to the office.|GOF-3200 Journey through the underworld]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You reluctantly leave the safety of the bar, and steel yourself for a journey through the drunken darkness.
Asian men and <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> sexpats preen and smile hopefully as you pass. A guy squeezes your boob and another slaps your ass, although not as hard as those <<if $kate.agency == "asis">>wankers<<else>>Aussie <<if $kate.agency == "cia" or $kate.agency == "csis">>jerks<<else>>wankers<</if>><</if>> did earlier.
Cross Eye the bouncer smiles when he sees you, and holds open the No Entry Door for you to [[pass backstage|GOF-3250 Backstage corridor]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You walk alone through the backstage corridor with the flickery, buzzing tube light, and knock on the office door.
"<div class="tooltip">Kao ma<span class="tooltiptext">Come in</span></div>!" comes a curt shout from [[within|GOF-3300 Office]].
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
You haven't figured out what to make of Tid yet. Maybe 21 years old, he's been mostly surly and distant during his dealings with you. At the end of your last shift it felt like he'd warmed to you a little.
Now, though, there's a stern look written across his <span class="imageLink"><<link "unusual features">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Come," he [[beckons you to the desk|GOF-3350 Circling]] with a finger.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Being gruffly called into the office by a manager would make anybody anxious; wearing just high heels and a flimsy scrap of underwear, you feel absurdly vulnerable as you step up to the desk.
Tid stands and circles around to your side. He's younger than you and bone thin, but you know from experience that even small men can be dangerous. You shouldn't underestimate him.
"Know why you here?" he asks.
Something about the way he says it makes your skin prickle. //They can't possibly have worked out I'm <<= $kate.agency.toUpperCase()>>.//
[[No.|GOF-3400 Little birdy][$kateSays to "no"]]
[[Am I in trouble?|GOF-3400 Little birdy][$kateSays to "amIInTrouble"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "no">>\
<<emote-mouth-talking>>\
"No." You do your best to keep a poker face.
<<elseif $kateSays == "amIInTrouble">>\
<<emote-mouth-talking>>\
<<emote-brows-raised>>\
"Am I in trouble?" you do your best to look innocent.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Yeah you do."
//They went through my locker, and found something on my phone?// But the only unusual app on it is Signal, and you triple-checked that it's set to delete messages immediately. //So what could...//
Tid reaches up to your hair. You flinch as he casually [[runs his fingers through it|GOF-3440 Bend over]], curling round your ear.
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Ben over desk."
He takes hold of a handful of your hair, tight, painful.
With a firm, insistent push, he guides you down into position, [[bent over the desk|GOF-3550 Tid spanks Kate]]. //What the fuck...//
<</page>><<silently>>
<<showRear>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Holding a fistful of your hair, <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> //spanks// you, four sharp slaps on the ass.
"Don'!" – //smack!//
"Waste!" – //smack!//
"Bouncer's!" – //smack!//
"Time!" – //smack!//
Your <<if $kate.agency == "cia" or $kate.agency == "csis">>butt<<else>>bum<</if>> feels red hot. Your breath comes out in a quivery, startled gasp.
He hits you one more time, then [[lets go of your hair|GOF-3560 Back to work]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-brows-raised>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//Jesus Christ I just got spanked by my manager.//
You straighten up uncertainly, clutching your butt. "Silly girl," tuts <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, making a shooïng motion with his hand. "Go [[back to work|GOF-4000 Closing time]]."
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
A little later, you're mopping up spilled beer on the bar counter when Ploy pulls you around to her side of the bar. "$kate.stripperName!" she shouts. "I need help with VIP!"
It's Kàyk's night off, so Ploy is running her side of the bar alone. You help her load up a big silver tray with various glasses and cocktail ingredients, including a bottle of vodka in an ice bucket.
Ploy tapes two big crackly sparklers to the ice bucket, and lights them up. "[[Take to VIP|GOF-3550 Sparkly walk]], <div class="tooltip">kop khun ka<span class="tooltiptext">thanks</span></div>!"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She goes back to serving drinks; you lift up the heavy tray and carry it to the VIP room.
Like last time, the crackling gold sparklers zing your body with hot little sparks; a sharp sting that instantly fades, but keeps you on edge all the way because you can never tell if your arms, breasts or belly are about to get zapped.
The upside is that nobody hassles you [[when you're carrying a VIP tray|GOF-3600 VIP room]]. Everybody just seems to sense that they're not allowed to impede it.
<</page>><<silently>>
<<set $header.line1 to "''VIP ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Balancing carefully on your high heels, you press your back up against the heavy VIP door, and push it open.
Inside, it's the same as you remember, leather couches and armchairs, and three big TV screens on the wall. One is tuned to MTV Thailand; one to a room with a bed that looks like a deserted porno set; one to the stripper dressing room.
There are five men in here, fit <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div> with Slavic accents and trendy haircuts, all in their thirties.
Four are glued to the dressing room feed, watching a <span class="imageLink"><<link "tattooed Thai bargirl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ami.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, wearing only black vinyl thigh-high boots, [[smear lube on a buttplug|GOF-3650 Ilsa entertains]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Sprawled in a leather armchair, the fifth man is fully occupied – his shorts are around his ankles and <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is bouncing up and down on his cock, crying out noisily as she [[fucks him|GOF-3655 Deer in the headlights]] in front of all his friends.
Totally naked except for fishnets and spiky platform heels, she doesn't react at all to your entrance.
<</page>><<silently>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
It's probably a normal Monday night for <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, but walking in to a busy room with a girl being fucked is a startling sight to you.
Her butt jiggles as she bounces fast on a latex-sheathed cock, mewing and gasping theatrically. "Da, da," she moans, "<div class="tooltip">skazhi mne chto ya shlyukha<span class="tooltiptext">tell me I'm a dirty bitch</span></div>..."
Looking around from the TV screen, one of the other VIPs laughs when he sees the look on your face. "Don't worry," he chuckles, "you can join in."
[[I've got two Moscow Mules?|GOF-3660 VIP service 1][$kateSays to "moscowMules"]]
[[Two Black Russians?|GOF-3660 VIP service 1][$kateSays to "blackRussians"]]
[[Who ordered the Greyhound?|GOF-3660 VIP service 1][$kateSays to "greyhound"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "moscowMules">>\
"Um," you swallow and force a bright smile. "I've got two Moscow Mules?"
<<elseif $kateSays == "blackRussians">>\
"Um," you swallow and force a bright smile. "Two Black Russians?"
<<elseif $kateSays == "greyhound">>\
"Um," you swallow and force a bright smile. "Who's the Greyhound?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Da." The guy who spoke beckons you over. "<<if $kateSays == "greyhound">>Over<<else>>Both<</if>> here. Where are you from, cutie?"
<<if $kate.agency == "cia">>\
[[USA.|GOF-3670 First drink]]
<<elseif $kate.agency == "mi6">>\
[[England.|GOF-3670 First drink]]
<<elseif $kate.agency == "asis">>\
[[Australia.|GOF-3670 First drink]]
<<elseif $kate.agency == "csis">>\
[[Canada.|GOF-3670 First drink]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand.|GOF-3670 First drink]]
<<else>>\
//ERROR IN KATE.AGENCY VAR// [[continue anyway|GOF-3670 First drink]]
<</if>>\
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<<if $kate.agency == "cia">>The US<<elseif $kate.agency == "mi6">>England<<elseif $kate.agency == "asis">>Australia<<elseif $kate.agency == "csis">>Canada<<elseif $kate.agency == "nzsis">>New Zealand<<else>>ERROR IN KATE.AGENCY VAR<</if>>," you tell him, setting down the tray so you can make the first <<if $kateSays == "greyhound">>drink<<else>>drinks<</if>>.
"Oh yeah? My dad has apartment in <<if $kate.agency == "cia">>Miami<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Sydney<<elseif $kate.agency == "csis">>Toronto<<elseif $kate.agency == "nzsis">>Auckland<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Maybe you come by sometime, uh?"
You don't have to reply because his attention drifts back to the screen, where the <span class="imageLink"><<link "tattooed Thai bargirl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ami.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is bending slightly forward over a makeup bench, gently wiggling and pushing the buttplug into her resisting asshole.
<<if $kateSays == "moscowMules">>\
A mocking cheer goes up from the VIPs when she finally eases it into place. Meanwhile, you crack open the chilled bottle of vodka, and pour large measures into two [[copper mugs|GOF-3680 All eyes on Kate]].
<<elseif $kateSays == "blackRussians">>\
A mocking cheer goes up from the VIPs when she finally eases it into place. Meanwhile, you crack open the chilled bottle of vodka, and pour large measures into two [[lowball glasses|GOF-3680 All eyes on Kate]].
<<elseif $kateSays == "greyhound">>\
A mocking cheer goes up from the VIPs when she finally eases it into place. Meanwhile, you crack open the chilled bottle of vodka, and pour a large measure into a [[highball glass|GOF-3680 All eyes on Kate]].
<<else>>\
(ERROR IN KATESAYS VAR) [[continue anyway|GOF-3680 All eyes on Kate]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "moscowMules">>\
You fill up the mugs with ginger beer, lime and ice. "Two Moscow Mules," you announce,\
<<elseif $kateSays == "blackRussians">>\
You fill up the glasses with Kahlúa and ice. "Two Black Russians," you announce,\
<<elseif $kateSays == "greyhound">>\
You fill up the glass with grapefruit juice and ice. "One Greyhound," you announce,\
<<else>>\
(ERROR IN KATESAYS VAR) [[continue anyway|GOF-3680 All eyes on Kate]]
<</if>> raising your voice above the //slap-slap-slap// of skin on skin and <span class="imageLink"><<link "Ilsa's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> noisy theatrical cries.
<<if $kateSays == "moscowMules">>\
"Right here, gorgeous," one of them says. One of his buddies also raises a hand.
<<elseif $kateSays == "blackRussians">>\
"Right here, gorgeous," one of them says. One of his buddies also raises a hand.
<<elseif $kateSays == "greyhound">>\
"Right here, gorgeous," one of them says.
<<else>>\
(ERROR IN KATESAYS VAR) [[continue anyway|GOF-3680 All eyes on Kate]]
<</if>>\
<<if $kateSays == "greyhound">>\
//[[Serve his drink.|GOF-3680 First service]]//
<<else>>\
//[[Serve their drinks.|GOF-3680 First service]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "moscowMules">>\
<<set $drinksServedInVIP to ["moscowMules"]>>\
You carry them their drinks, and hand them over with a smile.
<<elseif $kateSays == "blackRussians">>\
<<set $drinksServedInVIP to ["blackRussians"]>>\
You carry them their drinks, and hand them over with a smile.
<<elseif $kateSays == "greyhound">>\
<<set $drinksServedInVIP to ["greyhound"]>>\
You carry him his drink, and hand it over with a smile.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kate.braSize == "large">>"Nice tits,"<<else>>"Cute,"<</if>> <<if $kateSays == "greyhound">>he<<else>>one<</if>> murmurs, eyeing your body.
"Da," his buddy agrees, running a hand up your thigh.
"<div class="tooltip">Ty gryaznaya shlyukha<span class="tooltiptext">You dirty whore</span></div>..." groans the one fucking <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<if $kateSays != "moscowMules">>\
[[Two Moscow Mules?|GOF-3690 Second drink][$kateSays to "moscowMules"]]
<</if>>\
<<if $kateSays != "blackRussians">>\
[[Two Black Russians?|GOF-3690 Second drink][$kateSays to "blackRussians"]]
<</if>>\
<<if $kateSays != "greyhound">>\
[[Who's the Greyhound?|GOF-3690 Second drink][$kateSays to "greyhound"]]
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "moscowMules">>\
<<set $drinksServedInVIP.push("moscowMules")>>\
"Uh...two Moscow Mules?" you ask, extricating yourself from the guy pawing your leg.
<<elseif $kateSays == "blackRussians">>\
<<set $drinksServedInVIP.push("blackRussians")>>\
"Uh...two Black Russians?" you ask, extricating yourself from the guy pawing your leg.
<<elseif $kateSays == "greyhound">>\
<<set $drinksServedInVIP.push("greyhound")>>\
"Uh...who's the Greyhound?" you ask, extricating yourself from the guy pawing your leg.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"<div class="tooltip">Suda<span class="tooltiptext">Right here</span></div>," another VIP raises his hand.
Back at your tray, you pour out <<if $kateSays == "greyhound">>a big splash<<else>>big splashes<</if>> of vodka into <<if $kateSays == "moscowMules">>two copper mugs<<elseif $kateSays == "blackRussians">>two lowball glasses<<else>>a highball glass<</if>>. "Hey," says the first guy who spoke to you. "Can we fuck you, cutie?"
"Da, da, da!" mews <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[Uh, no.|GOF-3700 I just serve drinks][$kateSays to "uhNo"]]
[[I just serve drinks.|GOF-3700 I just serve drinks][$kateSays to "iJustServeDrinks"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "uhNo">>\
"Uh...no," you say,\
<<elseif $kateSays == "iJustServeDrinks">>\
"I, uh, just serve drinks," you say,\
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>> <<if $drinksServedInVIP[1] == "moscowMules">>filling up the mugs with ginger beer, lime and ice<<elseif $drinksServedInVIP[1] == "blackRussians">>filling up the glasses with Kahlúa and ice<<elseif $drinksServedInVIP[1] == "greyhound">>filling up the glass with grapefruit juice and ice<</if>>.
"Aw, c'mon, we're very generous," he says, his pale blue eyes fixed on you. "And this is VIP."
"<div class="tooltip">Ya khochu zubami snyat'eti chertovy trusiki<span class="tooltiptext">I want to take off those fucking panties with my teeth</span></div>," murmurs <<if $drinksServedInVIP[0] == "greyhound">>the guy<<else>>one of the guys<</if>> you served first, staring at your crotch.
"We don't like your panties," says Blue Eyes. He pronounces it //peynties.// "Take them off."
[[They're staying on.|GOF-3710 No way]]
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[Umm...|GOF-3702 Ummm...]]
<<else>>\
<span class="greyedOut">[Submissive] Ummm...</span>
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
A prickle of heat rises up in your cheeks as you consider actually //doing// it, actually peeling your <<knickers>> off right there. "Ummm..."
The gleam in his blue eyes makes you pause. //If I take them off I'm getting raped. Get a grip, $kate.firstName.//
[[They're staying on.|GOF-3710 No way]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"They're staying on," you assure them. That gets a laugh from the VIPs.
"Okay, serious now," says Blue Eyes. "What's your name, cutie?"
<<link "$kate.stripperName." "GOF-3720 My name is River">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName," you say, finishing the <<if $drinksServedInVIP[1] == "moscowMules">>cocktails<<elseif $drinksServedInVIP[1] == "blackRussians">>cocktails<<elseif $drinksServedInVIP[1] == "greyhound">>cocktail<</if>>.
"$kate.stripperName," he repeats. "Okay, Waitress $kate.stripperName. What kind of tip do we have to put down to get blowjobs? All four of us."
"<div class="tooltip">Voydi v mne, detka<span class="tooltiptext">Come inside me, baby</span></div>..." groans <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<if $drinksServedInVIP[1] == "moscowMules">>\
[[Two Moscow Mules.|GOF-3730 Second service]]
<<elseif $drinksServedInVIP[1] == "blackRussians">>\
[[Two Black Russians.|GOF-3730 Second service]]
<<elseif $drinksServedInVIP[1] == "greyhound">>\
[[One Greyhound.|GOF-3730 Second service]]
<<else>>
//[ERROR IN DRINKSSERVEDINVIP ARRAY! [[CONTINUE ANYWAY|GOF-3730 Second service]]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $drinksServedInVIP[1] == "moscowMules">>\
"Two Moscow Mules," you reply coolly, steeling yourself as you carry them to the VIPs. There's no bar to protect you here.
<<elseif $drinksServedInVIP[1] == "blackRussians">>\
"Two Black Russians," you reply coolly, steeling yourself as you carry them to the VIPs. There's no bar to protect you here.
<<elseif $drinksServedInVIP[1] == "greyhound">>\
"One Greyhound," you reply coolly, steeling yourself as you carry it to the VIPs. There's no bar to protect you here.
<<else>>
//[ERROR IN DRINKSSERVEDINVIP ARRAY]//
<</if>>\
"<div class="tooltip">Aw, ona zastenchiva<span class="tooltiptext">Aw, she's shy</span></div>," laughs a VIP.
"<div class="tooltip">Perestan draznit yeye<span class="tooltiptext">Stop teasing her</span></div>," the eldest chides.
"<div class="tooltip">Yerunda, ona nas draznit<span class="tooltiptext">Bullshit, she's teasing us</span></div>." Blue Eyes plucks at the waistband of your <<= $knickers.description.random()>> as you serve his friend. "C'mon," he says in English, "[[take them off|GOF-3740 Final mixology]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You gently push his hand away, and click back over to your tray to mix up <<if not $drinksServedInVIP.includes("moscowMules")>>two Moscow Mules<<elseif not $drinksServedInVIP.includes("blackRussians")>>two Black Russians<<elseif not $drinksServedInVIP.includes("greyhound")>>a Greyhound<<else>>//[ERROR IN DRINKSSERVEDINVIP ARRAY]//<</if>>.
A crescendo of frantic thrusting signals the climax of the guy fucking <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"<div class="tooltip">Okhuyet<span class="tooltiptext">Fuck</span></div>," he groans, casually pushing her off of him. A spike heel turns under her weight, and she falls to the floor with a yelp.
<<if not $drinksServedInVIP.includes("moscowMules")>>\
[[And two Moscow Mules. That's ฿2000.|GOF-3750 Final service]]
<<elseif not $drinksServedInVIP.includes("blackRussians")>>\
[[And two Black Russians. That's ฿2000.|GOF-3750 Final service]]
<<elseif not $drinksServedInVIP.includes("greyhound")>>\
[[And one Greyhound. That's ฿2000.|GOF-3750 Final service]]
<<else>>\
//[ERROR IN DRINKSSERVEDINVIP ARRAY. [[CONTINUE ANYWAY|GOF-3750 Final service]]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if not $drinksServedInVIP.includes("moscowMules")>>\
"And two Moscow Mules," you say, carrying them over to the group. "That's <div class="tooltip">2000<span class="tooltiptext"><<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please."
<<elseif not $drinksServedInVIP.includes("blackRussians")>>\
"And two Black Russians," you say, carrying them over to the group. "That's <div class="tooltip">2000<span class="tooltiptext"><<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please."
<<elseif not $drinksServedInVIP.includes("greyhound")>>\
"And one Greyhound," you say, carrying it over to the group. "That's <div class="tooltip">2000<span class="tooltiptext"><<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please."
<<else>>\
//[ERROR IN DRINKSSERVEDINVIP ARRAY.]//
<</if>>\
One of them pinches your nipple, and another gropes your ass, while Blue Eyes counts colourful banknotes out of his wallet and tucks them one by one into the waistband of your <<= $knickers.description.random()>>.
<span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes clicking over, flicking her hair. "<div class="tooltip">Kto iz vas grebanykh izvrashchentsev sleduyushchiy?<span class="tooltiptext">Which one of you fucking perverts is next?</span></div>" she [[demands|GOF-3760 Fingerbang]].
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
A hand presses up into your crotch, feeling your wet pussy through a flimsy scrap of <<= $knickers.material>>. You swat it away and get back to your tray.
"<div class="tooltip">Ona chertovski mokraya<span class="tooltiptext">She's fucking soaking</span></div>," he laughs, as you [[get out of there|GOF-3950 Return to the bar]].
<</page>><<silently>>
<<unset $drinksServedInVIP>>
<<emote-calm>>
<<emote-eyes-big>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You clip clop back to the bar as fast as your heels will carry you. //I nearly got //raped// in there. Jesus.// God knows what they're doing to Ilsa, although honestly she didn't seem to mind.
//I guess you can get used to anything,// you think as you duck behind the safety of the bar. <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a grin and a thumbs up as you load cash into the register and tuck <div class="tooltip">฿500<span class="tooltiptext"><<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> into the [[tip jar|GOF-4000 Closing time]].
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<showFront>>
<<emote-mouth-smile>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Last time, they let you go early. Tonight you have to stay all the way to closing time, 2AM.
After midnight, the club slows down and the music comes down a few decibels; past 1AM, the place is slowly emptying out.
Some of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> go home early; you see them trickle out in their street clothes, normal girls once again.
A few stay on, competing for the last few clients. <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> spends ages draped over a moustachioed <<if $kate.agency == "cia">>Californian<<else>>American<</if>>, trying to [[coax him upstairs|GOF-4010 Bar BJ]] with her.
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
After some intense cooing in his ear, Moustache Man pulls out his wallet. Your first thought is that she's closed the deal, but when he hands over some cash to <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, she doesn't lead him off to the neon yellow archway.
She pulls her clingy dress off right there, drapes it over the bar. //Surely she won't...//but she does, the topless blonde vanishing from your sight as she [[gets down on her knees|GOF-4020 Long BJ]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Moustache Man looks down to watch her. Then he casually gazes at the bar, sipping his bourbon like being fellated in public is the most normal thing in the world.
It goes on for more than ten minutes. At one point he beckons you over the bar, cupping your breast as he orders another large JD on the rocks.
That's when you get a glimpse of <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, or the top of her head anyway, bobbing up and down in his lap, one hand pumping his cock vigorously. Two banknotes are tucked into the waistband of her thong – one red, one purple. <div class="tooltip">600 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$18<<elseif $kate.agency == "mi6">>£12<<elseif $kate.agency == "asis">>$24<<elseif $kate.agency == "csis">>$24<<elseif $kate.agency == "nzsis">>$24<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, the same as your pay for a shift.
//[[It's so cheap.|GOF-4030 Bargirling is cheap]]
[[I can see how barmaids get tempted by the money.|GOF-4040 Bargirling is lucrative]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<<if $kate.agency == "cia">>$18<<elseif $kate.agency == "mi6">>£12<<elseif $kate.agency == "asis">>$24<<elseif $kate.agency == "csis">>$24<<elseif $kate.agency == "nzsis">>$24<<else>>ERROR IN KATE.AGENCY VAR<</if>> for a blowjob.// Minus whatever cut the club takes. Whatever Ilsa and <<Amanda>> and the others thought they'd end up doing in Thailand...it can't have been this.
<<include "GOF-4050 Cleaning down">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ten hours in heels versus ten minutes on your knees. You can see how the economic argument stacks up.
<<include "GOF-4050 Cleaning down">>
<</page>>With the bar quiet, Roxy shows you how to clean down the bar and stock everything up for tomorrow's shift. Like when she showed you how the cash registers and the soda gun worked, you're struck by how bizarre workplace training feels when it's being carried out by two nearly naked women.
Around 1.30AM, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes out to the bar to collect up the excess cash. He stuffs a money bag full of colourful Thai banknotes, and jots something down in a [[ledger book|GOF-4100 River wins the barmaid lottery]] that's kept behind the bar.<<silently>>
<<first>>
<<addNotification "Arousal +1" "You're turned on and ready to fuck.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
He counts up the cash in the tip jar, makes another note in the ledger book, picks up the money bag.
It's nearly the end of the shift and, <<if hasVisited("GOF-3950 Return to the bar")>>despite your close call in the VIP<<else>>just like last time<</if>>, you're as turned on as you've ever been. Hours and hours of being teased, groped, fondled and watched has made your body wet and sensitive and ready.
You're seriously looking forward to two things: kicking off these heels, and slipping into bed at the hostel for some much needed 'me time'.
"$kate.stripperName." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beckons you with a tilt of his chin. "Come with me."
"[[Have fun|GOF-4150 Journey to the office]]," Roxy chirps, just loud enough for you to hear.
<</page>><<silently>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step out from behind the bar, and follow <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> across the now quiet dancefloor. The stripper poles glint on the big empty stage.
You're not //exactly// sure why Connor's taking you back to the office...but you doubt it's to help count the money. //I had to have sex with him to get the job...do I have to have sex with him to keep it?//
//[[Probably.|GOF-4160 Probably]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Probably.// You're not sure how to play it – how would "$kate.cover.firstName $kate.cover.surname" play it?
Her goal's the same as yours – //keep the job// – just for different reasons. She's already demonstrated she's willing to trade sex for work. And right now she's very, very turned on, once he touches you there'll be no doubt in his mind about that.
Cross Eye the bouncer holds open the No Entry Door for you and <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to [[pass backstage|GOF-4170 Corridors]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The door closes behind you, muffling the noise from the club. Your ears ring and your spike heels thump on the carpet.
This is it; <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you straight to the [[manager's office|GOF-4250 Office]].
<</page>><<silently>>
<<set $header.line1 to "''MANAGER'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
It's empty; so's the dressing room next door. The screens from the internal CCTV system just show empty bedrooms, except one, where Miss Lu is changing the bedsheets.
//Where exactly are all the cameras?// You'll need to figure that out – if the Combined Task Force does end up raiding this place to catch <small>DEVILFISH,</small> they won't want it on video. //[[No camera visible in here|GOF-4260 C'mere you]]...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> locks the door, and tosses the money bag carelessly onto the couch. A rainbow of red and green and blue and purple banknotes gushes out.
"C'mere you." He curls a hand around your bare ass, and pulls you in close.
//[[Reluctant.|GOF-4275 Connor/Kate reluctant makeout]]
[[Enthusiastic.|GOF-4270 Connor/Kate enthusiastic makeout]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
That familiar smell washes over you as he pulls you in close. Woody, spicy, compatible...//I'm so turned on.//
You kiss him back feverishly, your tongue chasing his, your fingers in his hair while he gropes your bare ass and breasts.
<span class="greenHighlighter">Connor ''liked'' that.</span>
His fingers tease your nipples in a way that makes your clit //tingle.// He's not unattractive, just...//not my type.//
Maybe the //other// girls here think he's hot. But they're sex workers with daddy issues; you're educated, intelligent, <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer for god's sake.
A guy like Connor wouldn't have a chance with you in real life, [[not in a million years|GOF-4280 Connor tests the waters]]...
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
That familiar smell washes over you as he pulls you in close. Woody, spicy, like in his apartment.
You turn your lips away from his, getting stubbly hungry kisses on your cheek and your neck instead. His erection presses into your belly while he gropes your bare ass and breasts.
//Fuck, why am I so turned on.// It's not because you're into him, definitely not, [[it's just|GOF-4280 Connor tests the waters]]...
<</page>><<silently>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
His hand presses up between your legs, feeling your hot wet pussy through the flimsy scrap of $knickers.material.
<span class="greenHighlighter">Connor ''loved'' that.</span>
"Fuck me," he murmurs.
<<if hasVisited("GOF-4275 Connor/Kate reluctant makeout")>>\
//[[Not in a million years.|GOF-4295 Not in a million years (ice queen path)]]//
<<else>>\
//[[Not in a million years.|GOF-4290 Not in a million years]]//
<</if>>\
<</page>><<silently>>
<<showRear>>
<<set _knickers to $knickers.description.random()>>
<<removeKnickers>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
//Not in a million years,// you think as you let him bend you over the desk. //Not if I weren't undercover.//
He tugs your _knickers down, grabs your hip with one hand, guides the tip of his erection inside you with the other.
You're so wet that it sinks fully inside you in one [[long, deep thrust|GOF-4300 Fill 'er up]].
<</page>><<silently>>
<<showRear>>
<<set _knickers to $knickers.description.random()>>
<<removeKnickers>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
//Not in a million years,// you think. //Not if I weren't undercover.//
But once he's felt how wet you are, he doesn't care what you think. He just bends you over the desk with a little chuckle. //Am I really gonna put up with thi–//
Your <<knickers>> come down while you're thinking about it. He grabs your hip with one hand, guides the tip of his erection inside you with the other.
You're so wet that it sinks fully inside you in one [[long, deep thrust|GOF-4300 Fill 'er up]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You <<if hasVisited("GOF-4275 Connor/Kate reluctant makeout")>>bite your lip<<else>>gasp<</if>> as his cock fills you up, stretching you around him. The tip nudges your cervix, his balls press your clit. //Fuck, I'm so turned on.//
"Aye, that's it, ya dirty little slut..." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> squeezes your hips as he thrusts inside you, [[fast and urgent|GOF-4310 Kate orgasm]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
After what feels like ten hours of foreplay, your body responds //fast// to being bent over a desk and <<if _katesFantasy == "exhibitionist">>fucked, right there in the office<<elseif _katesFantasy == "submissive">>fucked by your boss<<elseif _katesFantasy == "masochist">>fucked, with no say in the matter<<else>>//[ERROR IN KATESFANTASY TEMP VAR!]//<</if>>.
"That's it, ya dirty little bitch," he growls, "you fuckin' love it. Ohfuck."
<<if hasVisited("GOF-4275 Connor/Kate reluctant makeout")>>\
<<emote-mouth-pout>>\
He's gonna come fast, you can tell. But so are you, if you let yourself.
//[[Let yourself orgasm.|GOF-4320 The ice queen cometh]]
[[Resist it.|GOF-4330 Resistance]]//
<<else>>\
<<emote-cheeks-blush>>\
<<emote-chest-flush>>\
His hands are all over you, gripping your hips, grabbing your breasts, squeezing your ass cheeks and spreading them apart while his hard cock thrusts inside your pussy.
The sensation of being fucked while your ass is spread apart like that is so physically intense that you almost can't bear it. Your orgasm rushes up inside you and rocks your body, your soft cries ringing out over the //slap-slap-slap// of [[skin on skin|GOF-4520 Connor orgasm]].
<</if>>\
<</page>><<silently>>
<<emote-cheeks-blush>>\
<<emote-chest-flush>>\
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
His hands are all over you, gripping your hips, grabbing your breasts, squeezing your ass cheeks and spreading them apart while his hard cock thrusts inside your pussy.
The sensation of being fucked while your ass is spread apart like that is so physically intense that you almost can't bear it. Your orgasm rushes up inside you and rocks your body, your soft cries ringing out over the //slap-slap-slap// of [[skin on skin|GOF-4520 Connor orgasm]].
<</page>><<silently>>
/* npc sexual stamina check TK update this later to reflect arousal, stamina, condom modifiers */
<<set _npcD10 to random(1,10)>> /* npc rolls a d10 */
<<set _npcModifiers to 3>>
<<if _npcD10 + _npcModifiers gte 6>> /* npc succeeded the performance roll */
<<set _npcIsGoodInBed to true>>
<</if>>
<<if (_npcD10 + _npcModifiers) - 6 gte 3>>
<<set _resultDescription to "Easy success.">>
<<elseif (_npcD10 + _npcModifiers) - 6 gte 1>>
<<set _resultDescription to "Success.">>
<<elseif (_npcD10 + _npcModifiers) - 6 == 0>>
<<set _resultDescription to "Narrow success.">>
<<elseif (_npcD10 + _npcModifiers) - 6 == -1>>
<<set _resultDescription to "Narrow failure.">>
<<elseif (_npcD10 + _npcModifiers) - 6 gte -2>>
<<set _resultDescription to "Failure.">>
<<else>>
<<set _resultDescription to "Total failure.">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Your orgasm's building up inside you fast. You do your best to resist it.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>\
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''Sexual stamina check.'' Connor rolls <div class="tooltip">1D10<<if _npcModifiers gte 0>>+<</if>>_npcModifiers<span class="tooltiptext"><small>Connor Sexpertise (+2) + Connor Stamina (-1) + $kate.firstName Arousal (+3) + $kate.firstName resisting (-1) = +_npcModifiers</small></span></div> to delay orgasm.
Target: 6. Result.......<<= _npcD10 + _npcModifiers >>. \
<<if _npcIsGoodInBed>>\
<<link "_resultDescription" "GOF-4320 The ice queen cometh">><</link>>
<<else>>\
<<link "_resultDescription" "GOF-4340 A small victory">><</link>>
<</if>>\
</div>\
</td>\
</tr>\
</table>\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His hands are all over you, gripping your hips, grabbing your breasts, squeezing your ass cheeks and spreading them apart while his hard cock thrusts inside your pussy.
Your body could come. //Will// come if he keeps this up for much longer, you can't...
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> groans as he twitches and spurts deep inside you. "Fuck," he gasps. "Fuck."
For a long moment your bodies stay connected. He squeezes your shoulder with something like affection. Then, slowly, reluctantly, he pulls out.
"Holy shit," he murmurs. "You fuck like a rattlesnake."
[[Thanks.|GOF-4600 Cleanup][$kateSays to "thanks"]]
[[No one's ever told me that before.|GOF-4600 Cleanup][$kateSays to "thatsNew"]]
[[How would you know?|GOF-4600 Cleanup][$kateSays to "howWouldYouKnow"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
Your pussy trembles and flutters on his cock as it pistons inside you. //He must be close,// you think as your senses return to reality.
Then he groans as he twitches and spurts deep inside you. "Fuck," he gasps. "Fuck."
For a long moment your bodies stay connected. He squeezes your shoulder with something like affection. Then, slowly, reluctantly, he pulls out.
"Holy shit," he murmurs. "You fuck like a rattlesnake."
[[Thanks.|GOF-4600 Cleanup][$kateSays to "thanks"]]
[[No one's ever told me that before.|GOF-4600 Cleanup][$kateSays to "thatsNew"]]
[[How would you know?|GOF-4600 Cleanup][$kateSays to "howWouldYouKnow"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<<showFront>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"Thanks," you say, tugging your <<knickers>> back up. "I think."
<<elseif $kateSays == "thatsNew">>\
"No one's ever told me //that// before," you say, tugging your <<knickers>> back up.
<<elseif $kateSays == "howWouldYouKnow">>\
"How would you know?" you ask, tugging your <<knickers>> back up.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
His face is flushed and he's not really listening. He opens a desk drawer and tosses you a pack of baby wipes to clean yourself up with.
He also gives you <div class="tooltip">2000 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> out of the money bag. "Yer gonna fit in fine," he grins. "Here's yer pay, plus a wee bonus. Dinnay tell anyone," he warns. "Alright, go get changed and fuck off, we'll see ya [[Wednesday|GOF-4999 Wednesday title card]]."
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-top-rustVNeckShortCrinkleSleevedTop>>
<<wear-shorts-blackDenimDaisyDukes>>
<<wear-shoes-blackStrappyGladiatorFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-ring-transmitterRing>>
<</silently>>\
<a data-passage="GOF-5000 Wednesday arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/wednesdayTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
On Wednesday, you have to get to work early.
There's a training session for barmaids today, but you need to be [[made up|GOF-5050 Wednesday makeover]] and in "uniform" before it starts.
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "GOF-5080 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "GOF-5070 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "GOF-5090 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "GOF-5060 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "GOF-5095 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GOF-5099 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GOF-5060 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GOF-5070 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-5080 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GOF-5090 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-5095 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5099 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeshadow", "eyeliner", "lipstick")>>\
Time to [[change into your "uniform"|GOF-5100 Wednesday dressup]].
<</if>>\<<silently>>
<<remove-knickers-whiteBrazilianCutWithLaceHem>>
<<remove-bra-whiteHalfCupCentralDart>>
<<remove-top-rustVNeckShortCrinkleSleevedTop>>
<<remove-shorts-blackDenimDaisyDukes>>
<<remove-shoes-blackStrappyGladiatorFlatSandals>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your clothes and get into your work outfit for tonight.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Thongs</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "GOF-5120 Thongs">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "GOF-5110 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GOF-5130 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackElegantPumps/15_shoes-blackElegantPumps")>>\
<<link "Elegant black pumps">>\
<<wear-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elegant black pumps">>\
<<remove-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/leopardStrappyHighHeelSandals/15_shoes-blackElegantPumps")>>\
<<link "Leopard strappy high heel sandals">>\
<<wear-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard strappy high heel sandals">>\
<<remove-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/pinkStrappyStilettoHeelSandals/15_shoes-pinkStrappyStilettoHeelSandals")>>\
<<link "Pink strappy stiletto heel sandals">>\
<<wear-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink strappy stiletto heel sandals">>\
<<remove-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/nudePeepToeHeels/15_shoes-nudePeepToeHeels")>>\
<<link "Nude peeptoe heels">>\
<<wear-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude peeptoe heels">>\
<<remove-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redValentinoStilettos/15_shoes-redValentinoStilettos")>>\
<<link "Red Valentino stilettos">>\
<<wear-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Valentino stilettos">>\
<<remove-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals")>>\
<<link "Red velvet criss cross strappy stiletto heel sandals">>\
<<wear-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red velvet criss cross strappy stiletto heel sandals">>\
<<remove-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-5110 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.underwear.includes("clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/30_knickers-blackAndLimeGreenThreeSideStrapGanjaString")>>\
<<link "Ganja leaf g-string">>\
<<wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ganja leaf g-string">>\
<<remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/30_knickers-blackMeshWithHotPinkBowsCrotchlessString")>>\
<<link "Black mesh crotchless g-string with hot pink bows">>\
<<wear-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black mesh crotchless g-string with hot pink bows">>\
<<remove-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-cherryRedTwoSideStrapWithGoldLoopsString")>>\
<<link "Cherry red strappy thong with gold loops">>\
<<wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red strappy thong with gold loops">>\
<<remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-vsPinkHeartsKnickers")>>\
<<link "VS Sheer Pink hearts <<knickers>>">>\
<<wear-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// VS Sheer Pink hearts <<knickers>>">>\
<<remove-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-maroonGlitterString")>>\
<<link "Maroon glitter thong">>\
<<wear-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Maroon glitter thong">>\
<<remove-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-ivoryStrappyString")>>\
<<link "Strappy ivory g-string">>\
<<wear-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Strappy ivory g-string">>\
<<remove-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GOF-5120 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-5130 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("knickers", "shoes")>>\
When you're ready, you can go to the [[training session|GOF-5150 Waiting for Bonaht]] with Roxy, Ploy and Kàyk.
<</if>>\<<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.lastWornKnickers == "blackMeshWithHotPinkBowsCrotchlessString" or $kate.lastWornKnickers == "vsPinkHeartsKnickers" and not $kateHasWornASheerThongToWork>>\
<<set $kateHasWornASheerThongToWork to true>>\
//Fuck.// This thong is so revealing that you feel unsure about going out into the club in it. But nobody else seems to have noticed. You follow the others out to the bar.
<<else>>\
You follow the girls out to the bar.
<</if>>\
Although you're getting more comfortable about working topless, you find yourself feeling nervous as you wait for the trainer to arrive.
Serving customers dressed like this is one thing; turning up for a supposedly professional meeting in just your <<knickers>> feels [[embarrassing|GOF-5160 Meeting Bonaht]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You swallow nervously as the swing door creaks open, and in walks <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
He's a slick looking Thai who, Connor told you, is a head bartender and cocktail consultant renowned all across Bangkok. His name rhymes with "doughnut".
Once or twice a month, he trains Hard Cock barmaids in mixology: "Be //nice// to him," Connor told you on Monday, "he comes in and trains you gals fer [[fuck all|GOF-5200 Hi Bonaht]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hi Bonaht." Roxy favours him with a rare smile and a long, lingering hug, her big naked boobs squashed up against his shirt.
"Sawatdee kha khun Bonaht." Ploy does the same, hugging him like a long-lost lover.
"Sabai dee mai, khun Bonaht." Kàyk takes a turn, the topless teenager wrapping herself around him.
"This is $kate.stripperName," Roxy says. <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles patronisingly, his eyes roaming down your almost naked body with obvious approval.
//[[Shake his hand.|GOF-5250 Handshake]]
[[Brief hug.|GOF-5300 Brief hug]]
[[Long hug.|GOF-5350 Long hug]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hello." You offer your hand; he shakes it with a bemused tilt of his head.
<span class="redHighlighter">Bonaht ''disliked'' that.</span>
"Sawatdee khrup, $kate.stripperName," he greets you. "[[Let's start|GOF-5400 Mixology class]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi." You give him a brief hug; the kind of hug you'd give a friend, if you had clothes on. Your bare breasts squash briefly against his firm chest. //God, that was fucking awkward,// you think.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Sawatdee khrup, $kate.stripperName," he greets you. "[[Let's start|GOF-5400 Mixology class]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi Bonaht." //I get how this works.// Copying the other girls, you curl your arms around him for a long, lingering hug.
Your bare breasts squash against his firm chest. A swelling in his <<trousers>> presses against your belly.
<span class="greenHighlighter">Bonaht ''loved'' that.</span>
"Sawatdee khrup, $kate.stripperName," he greets you. "[[Let's start|GOF-5400 Mixology class]]..."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"We gonna do some flair training today," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> announces. "$kate.stripperName, any cocktail bar experience?"
[[No.|GOF-5410 Just the basics]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "Okay," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "First trick: palm spin. Girls, you practice while I show $kate.stripperName."
Behind the bar, Bonaht picks up a chrome mixing tin and spins it in one hand. You've seen Roxy do this trick a few times and it always looks cool.
"You can do this with glass, or closed bottle," Bonaht says. "First step to prepare, open your palm, and [[bend your fingers to maximum how you can|GOF-5420 Baby steps]]..."
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
The other girls are all spinning their tins one-handed; <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shows you the baby version of the trick, where you use two hands.
//This is going to look so cool if I can do this first time.//
//[[Try to spin the mixing tin in your palm.|GOF-5430 Clonk]]//
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You stretch out your palm, bending your fingers back, and spin the tin.
It rolls over your wrist, and hits the rubber floor with a //clonk.//
"Don't worry," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "it takes practice! [[Keep trying that|GOF-5440 Practice]], I show the girls something cool..."
<</page>><<silently>>
<<emote-brows-attentive>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
While <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> teaches the others a cool trick that involves tossing the tin from hand to hand, you practice the palm spin.
He made it look effortless, but it's frustratingly hard. You drop the tin over, and over, and over again. //Clonk, clonk, clonk.//
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: (_kateD10) = <<= _kateD10>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
It's hard fighting your own instincts. With an object spinning loose in your right hand, your body wants to grab it with the left, or tuck it into your body so it doesn't fall.<br />
<br />
//Clonk. Clonk. Clonk.// Then...you do it! And again. And [[again|GOF-5480 U got it!]].
<<else>>
//Clonk. Clonk. Clonk.// <br />
<br />
Bonaht comes over when he sees you're not learning it. "No no no," he says, "like [[this|GOF-5450 Like this]]..."
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Don't squeeze your fingers before full rotation," he advises. "Just open your palm...and wait."
He spins it flawlessly before handing it back to you.
//[[Try again.|GOF-5460 Clonk clonk clonk]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
//Clonk. Clonk. Clonk.//
"Better!" grins <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "[[Keep trying|GOF-5470 Kate is a slow learner]]. You'll get it!"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's slow and frustrating, but by the end of the lesson you //can// spin it with two hands. Most of the time.
"Good work, girls," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says as 5 <small>P.M.</small> approaches. "$kate.stripperName – [[lots of practice|GOF-5500 End of lesson]] needed, I think. Take tin home tonight."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, you got it!" <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, coming over. "Now try one handed. Like this..."
He twirls the tin effortlessly in the palm of one hand.
//[[Try it.|GOF-5490 Clonk]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
//Clonk. Clonk. Clonk.// God damn it.
It's slow and frustrating, but by the end of the lesson you //can// spin it one-handed, and catch it. Some of the time.
"Good work, girls," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says as 5 <small>P.M.</small> approaches. "$kate.stripperName – good start, [[keep practising|GOF-5500 End of lesson]] this week. Take tin home tonight."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes out to the bar, smiling widely. "<div class="tooltip">Sawatdee khrup<span class="tooltiptext">Hello</span></div>, Bonaht. How it go?"
"Yeah, they good girls. I think I come back next week, $kate.stripperName needs work."
Tid shoots you a warning look. "Cool," he says to Bonaht. "Alright, <div class="tooltip">Thai Thai Thai<span class="tooltiptext">let's go to office</span></div>, [[get bar open|GOF-5510 Get bar open]] girls."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Roxy and Kàyk both give the cocktail consultant a long goodbye hug.
//[[Shake his hand.|GOF-5550 Handshake]]
[[Brief hug.|GOF-5600 Brief hug]]
[[Long hug.|GOF-5650 Long hug]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Bye, Bonaht." You offer <<if hasVisited("GOF-5250 Handshake")>>another<<else>>a<</if>> handshake.
<span class="redHighlighter">Tid ''disliked'' that.</span>
"Say gooh-bye [[properly|GOF-5650 Long hug]], $kate.stripperName," Tid clucks.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Bye, Bonaht." You press yourself up against him briefly.
<span class="redHighlighter">Tid ''disliked'' that.</span>
"Say gooh-bye [[properly|GOF-5650 Long hug]], $kate.stripperName," Tid clucks.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You curl your arms around Bonaht and give him a long hug goodbye. You can feel an erection stirring in his pants.
<<if not hasVisited("GOF-5550 Handshake") and not hasVisited("GOF-5600 Brief hug")>>\
<span class="greenHighlighter">Tid ''liked'' that.</span>
<</if>>\
"Okay," <<if hasVisited("GOF-5550 Handshake") or hasVisited("GOF-5600 Brief hug")>>Tid<<else>>he<</if>> says. "Ploy, thai thai thai thai thai thai. Kàyk, you in charge til she get back. [[Go get bar open|GOF-5750 Bar open]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Bonaht and Tid head backstage; you and the others get the bar ready for service.
The night starts slowly as men trickle into the bar, alone or in pairs. After two shifts, you're feeling a lot more confident about your work here, and a lot less worried about who's going to [[walk in through the door|GOF-6000 Bargirls]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You take orders and serve drinks, practising your palm spin when you're not busy. //Clonk. Clonk.// A guy at the bar tells you that he hopes you never get better at it, because he likes watching you bend over and pick up the tin.
At six <small>P.M.,</small> the stage shows start. First out is <span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a thirtysomething Slavic blonde with short hair and piercing eyes behind dark, slutty eyeliner.
The early birds at the bar twist in their stools to watch her strut out on the glowing, hot pink stage. She's wearing the [[dress you borrowed|GOF-6050 Strip show]], <<if $borrowedDress == "kittenWetLookBlackCrissCrossDress">>the short clingy wetlook one<<elseif $borrowedDress == "onePieceCowlNeckBurgundyMiniDress">>the burgundy one with a neckline down to the navel<<elseif $borrowedDress == "blackDeepVDualSlitJerseyMaxi">>the long black one with deep cleavage and hip-high slashes<<elseif $borrowedDress == "purpleOpaqueLongSleeveCutOutFront">>the purple one with the slashes all across the front<<else>>//ERROR IN BORROWEDDRESS VAR//<</if>>.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
She peels it off to the casually misogynistic lyrics of <<if hasVisited("DINBOSS-16760 Rock chick")>>some old glam rock song.<<else>>some ancient 80s rock song.<</if>>
//That's, what, girls are for /
That's what girls are for!//
You can't quite catch what it is the singer thinks girls //are// for. But you doubt it's [[working in STEM|GOF-6100 Thong off]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s an ace on the pole. You think her acrobatics are amazing; but the guys don't seem that interested. All they want to see is her thong coming off.
She peels it down during the guitar solo, sliding it sensuously down her swinging hips.
Then comes the move that isn't taught in any dance class, but the one that every <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> does: bending over and spreading apart her ass cheeks. Everyone in the club gets a good look at her shaved naked vagina, and the sparkly hilt of a buttplug.
//[[What on earth is the appeal of those things.|GOF-6150 Outtro]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grinds her pussy on the pole as the song hits its big outtro.
//That's, what, girls are for /
That's what girls are for!//
Then, with a smattering of applause from the audience, it's all over. The naked woman on stage gathers up her skimpy clothes, and the men at the bar all [[turn back to you|GOF-6300 Hot guy from home]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<if $kate.agency == "cia">>
<<set _anEnglish to "a US">>
<<elseif $kate.agency == "mi6">>
<<set _anEnglish to "an English">>
<<elseif $kate.agency == "asis">>
<<set _anEnglish to "an Australian">>
<<elseif $kate.agency == "csis">>
<<set _anEnglish to "a Canadian">>
<<elseif $kate.agency == "nzsis">>
<<set _anEnglish to "a Kiwi">>
<<else>>
<<set _anEnglish to "ERROR IN ANENGLISH TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"You new here?"
The <span class="imageLink"><<link "guy leaning over the bar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/andrew.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has an easy smile and _anEnglish accent.
Something about him is familiar and that's alarming.
<<link "Yeah, hi, I'm $kate.stripperName." "GOF-6310 Hi I'm River">><</link>>
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, hi," you shout, trying to place him. "I'm $kate.stripperName."
"Andrew," he shouts back, offering his [[hand|GOF-6320 Handshake]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You shake it, realising what was bothering you: <span class="imageLink"><<link "he looks like">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/andrew.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> one of the recruits you trained with <<if $kate.agency == "cia">>at The Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Camp Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>. But it's not him.
"You're <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>from Oz<<elseif $kate.agency == "csis">><<if $kate.ethnicity == "French Canadian">>Quebecois<<else>>Canadian<</if>><<elseif $kate.agency == "nzsis">>a Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>>?" he asks. "How long you been in Thailand?"
[[Ten months.|GOF-6340 Ten months]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Ten months," you lie.
"Oh, cool," he shouts back. "You come out here [[alone, or with friends, or...|GOF-6350 Flirty]]"
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
It's the kind of normal, mildly flirty conversation you could strike up with a <span class="imageLink"><<link "random decent looking guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/andrew.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> anywhere.
You could have met him on the Khao San Road, or at a bar or in a club back home in <<if $kate.agency == "cia">>DC<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>. He tells you he's a schoolteacher; he buys you a drink.
[[Totally normal.|GOF-6360 Except]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Except you're doing it in <<knickers>> and heels. Something about that feels //seriously// erotic. You serve him drinks, and chat casually about Thailand, with stiff nipples and a wet pussy.
It's probably a good thing that <span class="imageLink"><<link "one of the Thai bargirls">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/fah.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> manages to seduce him away through the neon yellow archway, just after nine. You were letting your imagination run a little wild about what might happen if he stayed 'til [[closing time|GOF-7000 Beer show]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Every night at ten o'clock there's a "main event" on stage. On Monday it was another hardcore girl/girl show – like to the one you saw on your first night, just with different bargirls.
Tonight the DJ keeps announcing something different – a "beer show", whatever the hell that is.
At 10PM, the DJ makes an announcement, and everybody's attention [[turns to the stage|GOF-7050 Beer show]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes strutting out alone on the stage, wearing a blue denim minidress with <<if $kate.agency == "cia" or $kate.agency == "csis">>snap fasteners<<else>>poppers<</if>> down the front. She's carrying two bottles of Leo beer.
Hips swinging to the loud perky beat of an old ZZ Top song, she guzzles down beer while [[popping open her dress|GOF-7100 Undressed]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The room watches <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> drink and strip. First her dress comes off and hits the deck, then two pretty scraps of sheer chocolate-coloured lingerie follow it.
The stage shows always feel like a respite for you. The drink orders slow down, and most of the male gaze turns to [[the performance|GOF-7150 Surely she won't]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You've seen so many women get up on that stage and strip to their shoes and tattoos that it's starting to feel tame now. Funny how you can get used to something so objectifying so quickly.
The new thing in <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s show tonight is the beer bottles. //Surely she won't...//but as soon as you think that, you realise [[she will|GOF-7160 Bottle fuck]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You've seen all the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> suck and hump dildos onstage. But, for some reason, it's so much more demeaning to watch a woman fuck herself with beer bottles. //Maybe because they're supposed to go in the trash.// But they're going in Moo.
Down on all fours, propped up on one elbow, <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sucks one empty bottle like a cock, and fucks her pussy with the other, vigorously thrusting in time with the nineties hit //Genie in a Bottle.//
The men in the crowd watch approvingly; it's the [[tackiest thing you've ever seen|GOF-7170 Trashy hot]], worse than the girl/girl shows.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaked.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Why the fuck is it making me wet?//
You've noticed your arousal comes in peaks through a shift – and you're feeling one right now, watching <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> play Hide The Bottles.
Is it something about the motion? Is it possible to get //sympathetically// turned on by watching...
You're distracted by one of the regulars, beckoning you over the bar.
[[What can I get you?|GOF-7180 What can I get you?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail and lean over the bar. "Hi, what can I get you?" you [[shout|GOF-7190 Hot nipple tweak]].
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You <<if $kate.hairStyle == "superShort">>tilt your head and offer him your ear<<else>>curl your hair behind your ear<</if>> to listen to his order.
Reaching up under you, his fingers take a light pinching hold on both your nipples. "Hong Thong and Coke," he shouts. //Fuuuck.// Inside your thong, your pussy tingles in response.
[[Coming up.|GOF-7200 Coming up]]
[[You want ice?|GOF-7210 You want ice?]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Coming up!"
You slither out of his grasp and mix him a Hong Thong and Coke. This is the cheapest liquor in the club, only ordered by the regulars. The label says it's //the premium spirits blended by a number of raw materials well accepted internationally.//
"Thanks $kate.stripperName," he says when you serve him, giving your nipples an affectionate tweak before turning back to [[watch the show|GOF-7500 Kayk wins the barmaid lottery]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"You want ice with that?" you ask, lingering in his grasp with your ass in the air, and letting him tug your stiff nipples some more.
"Yes please, $kate.stripperName," he shouts in your ear.
[[Coming up.|GOF-7200 Coming up]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Propped up on one elbow, she slips one bottle into her mouth like it's a cock. Her pretty face contorts as she reaches back and pushes the other one inside her pussy.
You've seen lots of bargirls – including <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – dildo themselves up on stage before. But for some reason it's so much more demeaning with [[beer bottles|GOF-7250 Genie in a bottle]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Part of the shock value is how long the show goes on for. Her clothes are off and both bottles are inside her before the ZZ Top song hits its guitar solo. For the rest of that song – and all 3 minutes 37 seconds of //Genie in a Bottle// by Christina Aguilera – Moo sucks and fucks the empties.
A few times she gracefully changes position – sitting up with her legs spread, rolling onto her back – and each time she [[swaps the bottles|GOF-7300 Message in a Bottle]], so the one that was just in her pussy is the one that goes into her mouth.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Finally, to the driving beat of //Message in a Bottle// by The Police, Moo sets aside one of the bottles and focuses on making herself come with the other bottle and her fingers strumming her clit.
You're distracted by one of the regulars, beckoning you over the bar.
[[What can I get you?|GOF-7350 What can I get you?]]
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaked.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Stepping up on the rail, you lean out over the bar. "What can I get you?" you shout.
Reaching up under you, his fingertips take a light pinching hold on both your nipples. //Fuuuck.// Inside your thong, your pussy tingles in response.
[ TK [[wrap this scene|GOF-7500 Kayk wins the barmaid lottery]] ]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Things slow down again after midnight, and you start cleaning down and restocking after about 1 <small>A.M.</small>
It's Connor's night off, so Tid is the one who comes out to collect the cash from the bar. He loads it into a money bag, and makes a note in the ledger book.
"$kate.stripperName," he snaps, and your [[stomach flips|GOF-7550 Barfly]] – //is he going to take me back to the// – "good taking tonigh', well done. Kàyk, thai thai."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She obediently follows him out from behind the bar. The stark contrast in their work clothes is even more pronounced when they're side by side; Tid in a shirt and trousers, Kàyk in a white thong that glows in the club lights.
Roxy swats at a fly that's been swooping round the bar all night. "$kate.stripperName, [[clean all the sinks|GOF-7600 Clean up]], okay? There's some spray under here…"
<</page>><<silently>>
<<emote-calm>>
<<wear-blueLatexSurgicalGloves>>
<</silently>>\
<<header>>\
<<page>>\
You glove up and scrub down the sinks on both sides, using the <span class="imageLink"><<link "local equivalent">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/kitchenSpray.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> of <<if $kate.agency == "cia">>Easy Off<<elseif $kate.agency == "mi6">>Cillit Bang<<elseif $kate.agency == "asis">>Ajax<<elseif $kate.agency == "csis">>Lysol<<elseif $kate.agency == "nzsis">>Ajax<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
The late night drinkers still propping up the bar take a surprising interest in this. You know they like watching you, but you didn't expect they'd find the sight of you scrubbing a sink to be erotic.
A couple of them beckon you over the bar to speak to you about it. One fondles your tits and says you're welcome to go back to his condo and clean it up for him; the other fondles your tits and says he likes watching women do domestic chores.
You tell them both they need to drink up soon. It's nearly [[closing time|GOF-7650 Hometime]]!
<</page>><<silently>>
<<remove-blueLatexSurgicalGloves>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-top-rustVNeckShortCrinkleSleevedTop>>
<<wear-shorts-blackDenimDaisyDukes>>
<<wear-shoes-blackStrappyGladiatorFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The customers are all kicked out by 2 AM; you, Roxy, Ploy and Tid leave shortly afterwards.
Tid sets the burglar alarm, using a remote control keyfob, then [[locks up the front door|GOF-7700 Night market]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"See you Friday, $kate.stripperName."
The night air feels warm and balmy after hours and hours in the chilled air of the club.
A group of about thirty men are busily packing down the night market. Most of the bars and clubs have closed, but a few little shops are still open.
A street food stall nearby is doing a roaring trade, selling <span class="imageLink"><<link "katsu curries">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/patpong/chickenKatsu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to hungry strippers and prostitutes [[coming off their shifts|GOF-7750 Title card]]. //Hungry Hungry Hookers.//
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="GOF-7800 Back at the hostel">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<</silently>>\
<<header>>\
<<page>>\
Back at the hostel, <<if def $kate.nameForNoodle>>$kate.nameForNoodle<<else>>the landlady's son Wun Sen<</if>> is getting used to seeing you roll back in the early hours wearing makeup.
"Oh hi $kate.cover.firstName," he beams.
[[Oh hi Wun Sen.|GOF-7850 Hi Noodle][$kate.nameForNoodle to "Wun Sen"]]
[[Oh hi Noodle.|GOF-7850 Hi Noodle][$kate.nameForNoodle to "Noodle"]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Oh hi $kate.nameForNoodle." You breeze past him and go [[up to your room|GOF-7900 Menage a moi]].
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("teenRom/50_katesBedsheets2")>>
<<emote-eyes-closed>>
<<remove-knickers-whiteBrazilianCutWithLaceHem>>
<<remove-bra-whiteHalfCupCentralDart>>
<<remove-top-rustVNeckShortCrinkleSleevedTop>>
<<remove-shorts-blackDenimDaisyDukes>>
<<remove-shoes-blackStrappyGladiatorFlatSandals>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
You lock your door, peel off your clothes, and slip between the sheets.
Just like every time you work there, hours of touching and teasing has made your body //hot// and //wet// and //totally ready.//
//[[Fantasise about Andrew.|GOF-7910 Andrew fantasy]]
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[Fantasise about stripping on the stage.|GOF-7950 Stripper fantasy]]
<<else>>\
<span class="greyedOut">[Exhibitionist] Fantasise about stripping on the stage.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[Fantasise about being grabbed and fucked by a customer.|GOF-8010 Grabbed and fucked fantasy]]
<<else>>\
<span class="greyedOut">[Masochist] Fantasise about being grabbed and fucked by a customer.</span>
<</if>>\
<<if hasVisited("GOF-3550 Tid spanks Kate")>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[Fantasise about letting the managers spank you.|GOF-8060 Office spank fantasy]]
<<else>>\
<span class="greyedOut">[Submissive] Fantasise about letting the managers spank you.</span>
<</if>>\
<<else>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[Fantasise about having to fuck the VIPs from Monday.|GOF-8090 VIP fantasy]]
<<else>>\
<span class="greyedOut">[Submissive] Fantasise about having to fuck the VIPs from Monday.</span>
<</if>>\
<</if>>// \
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the past when you've flirted with a guy you met in a bar, you've often fantasised about what it would have been like to go home with them at the end of the night, instead of saying goodbye.
You picture doing that with Andrew, but something about that scenario isn't doing it for you tonight. It feels too...tame.
//<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[Fantasise about stripping on the stage.|GOF-7950 Stripper fantasy]]
<<else>>\
<span class="greyedOut">[Exhibitionist] Fantasise about stripping on the stage.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[Fantasise about being grabbed and fucked by a customer.|GOF-8010 Grabbed and fucked fantasy]]
<<else>>\
<span class="greyedOut">[Masochist] Fantasise about being grabbed and fucked by a customer.</span>
<</if>>\
<<if hasVisited("GOF-3550 Tid spanks Kate")>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[Fantasise about letting the managers spank you.|GOF-8060 Office spank fantasy]]
<<else>>\
<span class="greyedOut">[Submissive] Fantasise about letting the managers spank you.</span>
<</if>>\
<<else>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[Fantasise about having to fuck the VIPs from Monday.|GOF-8090 VIP fantasy]]
<<else>>\
<span class="greyedOut">[Submissive] Fantasise about having to fuck the VIPs from Monday.</span>
<</if>>\
<</if>>// \
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GOF-7910 Andrew fantasy")>>Your mind drifts back to the Hard Cock Cafe, and different men. <</if>>In your fantasy, there's a staff shortage at the club, and one of the barmaids has to take a turn on the stage. Everyone cheers when the DJ announces [[you've volunteered|GOF-7960 Stripper dress]]...
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You imagine walking out onstage in a stripper dress and heels, the centre of the club's attention. Dancing sexily around the pole <<if hasVisited("DINBOSS-16760 Rock chick")>>to one of your favourite rock songs<<else>>to the pulsing beat of a rock song that's older than you<</if>>.
You peel off the dress fast, getting back to how everybody's used to seeing you in here: topless. But now your last little scrap of modesty has to come off, too. You know it, everybody knows it.
Up on a stage, you slide down your thong and...
//[[...perform a dildo show.|GOF-7970 Dildo show fantasy]]
[[...show them you're wearing a buttplug.|GOF-8000 Buttplug fantasy]]//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Early in the evening, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> just strip. But in your fantasy it's 11 o'clock. That means $kate.stripperName's doing a dildo show. No choice in the matter. Not up to her.
Onstage in your mind, you get down on your knees and suck on a plastic cock. Just like you've seen the other bargirls do it, slow and sexy, getting it nice and wet. Not that you need any more lubrication.
You imagine spreading your legs and fucking yourself it, all the men in the club watching your face and body as you bring yourself to orgasm, your most intimate moment in the [[heat of a hundred stares|GOF-8200 Release]]...
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//God.// You imagine how vulnerable you'd feel, your thong peeled down, bending over to show the crowd your pussy. //Fuck.//
In your fantasy, you imagine doing what you've seen the other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> do. Spread apart your buttocks, and show everybody the pretty rhinetone hilt of the buttplug you're wearing. Dancing naked on a stage in Bangkok, with a cheap sextoy in your ass. //Just like all those other [[tacky bitches|GOF-8200 Release]]...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GOF-7910 Andrew fantasy")>>Your mind drifts back to the Hard Cock Cafe, and different men. <</if>>You're //so vulnerable// out on the dancefloor. The customers just grab you and grope you and smack you as much as they like. <<if hasVisited("GOF-3550 Tid spanks Kate")>>And Tid spanks you when you complain.<</if>>
In your fantasy, you're out in the club, bending over a table to clean up a spill. In your tiny thong, you don't even realise how much of a show you're putting on for the horny men behind you, until one of them comes over and...
//[[...fucks you over the table.|GOF-8020 Bent over fuck]]
<<link "...makes you clean the spill with your <<knickers>>." "GOF-8040 KJ's Tumbledown fantasy">><</link>>//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
No foreplay, no seduction, no preamble...just your <<knickers>> yanked down, and a big hand pressing you down onto the wet table.
You can't even see the face of the guy behind you, you just feel his //big// cock thrusting unceremoniously inside you, [[filling you up totally|GOF-8030 Take a number]].
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
His friends pin your wrists on the table while he fucks you hard and fast.
A frantic crescendo as he comes inside your snug pussy. Emptiness as he pulls out...then new hands grip your hips, and the next strange cock [[slips inside you|GOF-8200 Release]]...
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Not with that," he shouts, taking the cloth from you and pointing to your skimpy <<knickers>>. "Use those."
The bouncers are nowhere to be seen – what choice do you have? Reluctantly you [[peel them down|GOF-8050 Cleanup]] and get back to cleaning...
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You bend naked over the table, and start trying to mop up a puddle of spilled beer with a tiny scrap of lace.
Your thong's sodden wet and useless, but you keep mopping the table with it, even when you feel hands grasping your hips, and the first strange cock [[pushing up inside you from behind|GOF-8200 Release]] while you work...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GOF-7910 Andrew fantasy")>>Your mind drifts back to the Hard Cock Cafe. <</if>>You can't believe you let that little monster Tid bend you over the desk and spank you on Monday. It was [[so humiliating|GOF-8070 Self spanking]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You're intelligent...<<university>> educated...a feminist. And he just...bent you over the desk and //spanked// you, like none of that matters.
//Fuck.// You push your ass up off the bed, give yourself a few experimental slaps with your free hand.
//[[Harder.|GOF-8080 Harder]]//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You twist onto your side, one hand strumming and tapping and squashing your clit, one slapping your butt.
//Crack. Crack.// It's noisy and it stings, but you don't care.
//I need to get used to it,// you tell yourself. //That's not the last time I'm gonna get spanked for misbehaving at work.//
A vision of yourself in your office clothes flashes into your head, bent over your desk at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>R.G. Casey House<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>//ERROR IN KATE.AGENCY VAR//<</if>> [[with your skirt pulled up|GOF-8200 Release]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GOF-7910 Andrew fantasy")>>Your mind drifts back to the Hard Cock Cafe, and different men. <</if>>//We don't like your panties. Take them off.//
You kept them on in reality. But in your fantasy: they're VIPs, they get what they want.
//[[Take them off.|GOF-8100 Knickers off]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You imagine your hands fluttering up to the waistband of your <<knickers>>, pushing them down, sliding them off. Now you're just as naked as Ilsa, just as available.
When you serve their drinks they paw you, finger you, make you sit in their laps and kiss them. Then...
//[[...they fuck you and Ilsa.|GOF-8110 Sofa fuck]]
[[...they make you suck their cocks while they wait for Ilsa.|GOF-8120 Fluffer fantasy]]//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You picture yourself and Ilsa, bent over the back of the same leather couch, as rough Russian men take turns fucking you.
In reality you could hardly imagine something more embarrassing than being fucked in front of another woman. But in your fantasy Ilsa's totally unashamed, crying out noisily, talking dirty as your naked arms and hips press and jostle together.
You're not in here to judge each other. You're here to get fucked, side by side. It's liberating. You find your own voice, your orgasmic cries mingling in a [[kind of slutty harmony|GOF-8200 Release]]...
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Their cocks come out and you slither down to your knees, crawling between them, sucking them in turn to keep them hard.
The VIPs drink and talk and snap their fingers at you when it's time to move from cock to cock, sucking and slurping on them urgently to keep them wet and ready for Ilsa.
Then the first guy comes inside her, bareback, filling her shaved pussy with his sperm.
"$kate.stripperName." Ilsa snaps her fingers and spreads her legs. "[[Clean this up|GOF-8200 Release]]."
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
That mental image pushes you over the edge, into a gasping, clenching orgasm in your hostel bed.
You're normally quiet when you masturbate, but your orgasm is so all consuming tonight that you can't help but find your voice.
It escapes your lips in feminine little cries as you writhe on your bed. You roll onto your front and bury your face into the pillow to [[muffle yourself|GOF-8250 Post orgasmic chill]]. //Fuck. Fuck.//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<<set $avatar.clothing.delete("teenRom/50_katesBedsheets2")>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// That was such a dirty fantasy. You kick away the hot bedsheets, and tell yourself that nobody heard you.
You lie there for a while, just recovering, until your mind's clear enough to think about work again. //I need to [[report in|GOF-8260 Reporting in]].//
<</page>><<silently>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
Lying naked on your bed, you open Signal on your phone, and tap out a report to Ian.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 02:54
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. They use <div class="tooltip">RF<span class="tooltiptext">radio frequency</span></div> keyfobs to control the alarm system. Tid has one, don't know about the other managers.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
GREAT. Can u <div class="tooltip">skim it<span class="tooltiptext">intercept and decode the RF signal</span></div>?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Negative, can't conceal a scanner.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
Rgr, no problem, I can do it. EXCELLENT work 👌🏼
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
The message thread will automatically delete itself when you [[close the app|GOF-8999 Friday title card]].
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-whiteFrillySpaghettiStrapVest>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-ring-transmitterRing>>
<</silently>>\
<a data-passage="GOF-9000 Friday arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/fridayTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $kate.isUsingHerStripperName to true>>
<</silently>>\
<<header>>\
<<page>>\
"Hi $kate.stripperName."
"Hi $kate.stripperName."
"Sawatdee kha, $kate.stripperName."
On Friday night, the dressing room is bustling with more girls than usual, in various states of makeup and undress.
You squeeze into an empty space at the bench between <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and unpack your [[makeup and work clothes|GOF-9050 Third world problems]] from your bag.
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
You tune into the gossip as it resumes in two languages.
You're hoping for intel, but tonight's drama is centred around <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's worried because her family's buffalo is sick.
On her phone she shows you some <span class="imageLink"><<link "photos of the beast">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/pingTheBuffalo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. She tells you his name is //also// Ping, "because he ping."
//Ohhhhh. Her stage name is [[Pink|GOF-9100 Friday makeover]].//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "GOF-9110 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "GOF-9120 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "GOF-9130 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "GOF-9140 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "GOF-9195 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GOF-9199 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GOF-9140 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GOF-9120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GOF-9110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GOF-9130 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GOF-9195 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeshadow", "eyeliner", "lipstick")>>\
You can [[change into your bar clothes|GOF-9200 Friday dressup]] when you're ready.
<</if>>\<<silently>>
<<remove-shorts-blueDenimDaisyDukes>>
<<remove-top-whiteFrillySpaghettiStrapVest>>
<<remove-shoes-tanAnkleHighStrappyFlatSandals>>
<</silently>>\
<<header>>\
<<page>>\
Peeling off your street clothes, you realise that you'd momentarily forgotten the big mirror on the far wall is only a mirror on this side.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Thongs</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "GOF-9210 Thongs">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "GOF-9220 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GOF-9299 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackElegantPumps/15_shoes-blackElegantPumps")>>\
<<link "Elegant black pumps">>\
<<wear-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elegant black pumps">>\
<<remove-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/leopardStrappyHighHeelSandals/15_shoes-blackElegantPumps")>>\
<<link "Leopard strappy high heel sandals">>\
<<wear-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard strappy high heel sandals">>\
<<remove-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/pinkStrappyStilettoHeelSandals/15_shoes-pinkStrappyStilettoHeelSandals")>>\
<<link "Pink strappy stiletto heel sandals">>\
<<wear-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink strappy stiletto heel sandals">>\
<<remove-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/nudePeepToeHeels/15_shoes-nudePeepToeHeels")>>\
<<link "Nude peeptoe heels">>\
<<wear-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude peeptoe heels">>\
<<remove-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redValentinoStilettos/15_shoes-redValentinoStilettos")>>\
<<link "Red Valentino stilettos">>\
<<wear-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Valentino stilettos">>\
<<remove-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals")>>\
<<link "Red velvet criss cross strappy stiletto heel sandals">>\
<<wear-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red velvet criss cross strappy stiletto heel sandals">>\
<<remove-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GOF-9220 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.underwear.includes("clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/30_knickers-blackAndLimeGreenThreeSideStrapGanjaString")>>\
<<link "Ganja leaf g-string">>\
<<wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ganja leaf g-string">>\
<<remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/30_knickers-blackMeshWithHotPinkBowsCrotchlessString")>>\
<<link "Black mesh crotchless g-string with hot pink bows">>\
<<wear-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black mesh crotchless g-string with hot pink bows">>\
<<remove-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-cherryRedTwoSideStrapWithGoldLoopsString")>>\
<<link "Cherry red strappy thong with gold loops">>\
<<wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red strappy thong with gold loops">>\
<<remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-vsPinkHeartsKnickers")>>\
<<link "VS Sheer Pink hearts <<knickers>>">>\
<<wear-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// VS Sheer Pink hearts <<knickers>>">>\
<<remove-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-maroonGlitterString")>>\
<<link "Maroon glitter thong">>\
<<wear-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Maroon glitter thong">>\
<<remove-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-ivoryStrappyString")>>\
<<link "Strappy ivory g-string">>\
<<wear-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Strappy ivory g-string">>\
<<remove-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GOF-9210 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GOF-9299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("knickers", "shoes")>>\
As you're packing your things into your locker, [[two more bargirls|GOF-9300 Zoe]] arrive.
<</if>>\<<silently>>
/* TK remember to set kate.isUsingHerStripperName throughout */
<<if $kate.firstName != "Amanda">>
<<set _Amanda to "Amanda">>
<<else>>
<<set _Amanda to "Samantha">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.lastWornKnickers == "blackMeshWithHotPinkBowsCrotchlessString" or $kate.lastWornKnickers == "vsPinkHeartsKnickers" and not $kateHasWornASheerThongToWork>>\
<<set $kateHasWornASheerThongToWork to true>>\
You're checking out your reflection uncertainly when they come in. This thong is so revealing that you feel unsure about going out into the club in it. But nobody else seems to have noticed....
<</if>>\
"I //know,// right? //Fuuuck!// Hey bitches."
First through the door is a mixed race American girl with curly hair, caramel skin and a curvy, feminine figure – big tits, wide hips. "Hi <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>," a couple of the other girls reply.
"Oh oh oh," says <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, following her in. "You gotta meet the new girl. What's up, $kate.stripperName?"
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
<<link "G'day <<Amanda>>." "GOF-9250 That accent right">><<set $kateSays to "gDay">><</link>>
<<else>>\
<<link "Hey <<Amanda>>." "GOF-9250 That accent right">><<set $kateSays to "hey">><</link>>
<</if>>\
<<link "How's it going, <<Amanda>>." "GOF-9250 That accent right">><<set $kateSays to "howsItGoing">><</link>>
<<link "I'm good, how are you?" "GOF-9250 That accent right">><<set $kateSays to "imGood">><</link>>
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "gDay">>\
"G'day <<Amanda>>."
<<elseif $kateSays == "hey">>\
"Hey <<Amanda>>."
<<elseif $kateSays == "howsItGoing">>\
"How's it going, <<Amanda>>."
<<elseif $kateSays == "imGood">>\
"I'm good, how are you?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kate.agency == "cia">>\
"American!" The new girl looks surprised and pleased. "Hey $kate.stripperName, I'm <<Zoe>>."
<<elseif $kate.agency == "csis">>\
"She's Canadian," <<Amanda>> explains.
"Well how //aboot// that. Got away from the snow, uh. I'm <<Zoe>>."
<<else>>\
"Ohmygod, that accent, right?" <<Amanda>> coos.
"Gorgeous," her friend agrees. "Hey $kate.stripperName, I'm <<Zoe>>."
<</if>>\
"We are gonna be fucking //late,"// <<Amanda>> warns. The two American girls quickly unsling their <<handbag>>s on empty benches, and start [[getting ready|GOF-9400 River's fan club]].
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You head out to the club with Roxy, Ploy and Kàyk, and get the bar open.
Men start drifting in from the street: new faces, and some you've come to recognise as regulars.
The young Thai office workers, who were your very first customers here, swing by most nights. You've learned they work for a small telecoms business on the nearby Silom Road; they come here after work, drink a beer or two, then move on somewhere else.
You think they just like talking with a topless <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girl. They're probably the nicest of your [[regulars|GOF-9410 Regulars]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The others are mostly <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> sexpats, aged 50+. They've come from all over the world to prop up the bar at the Hard Cock Cafe, and bend your ear about their lives.
At the start of the shift, when it's quiet, they normally just want to drink and chat with you or a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>. It's just like a normal bar job – serving drinks and chatting with people you wouldn't normally talk to.
Of course, the fact that you're doing it topless in <<knickers>> adds a certain [[frisson|GOF-9420 Frisson]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Sometimes teasing is a turn on.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Once you get over the embarrassment of it, there is something kinda fun about working naked.
Not that you'd actually want to do it for a living, of course.
Just...there's a part of you that does enjoy the attention. Even from a bunch of guys who have even less of a chance with you than <<if def $kate.nameForNoodle>>$kate.nameForNoodle<<else>>Noodle<</if>>.
You pretend you're being [[effortless and natural|GOF-9500 Let's go fish]], but it's interesting to learn that when two guys are having a conversation, you can stop it dead just by flicking your hair.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You serve drinks and chat and subtly pose as the bar gradually fills up.
After a while, <<Amanda>> and <<Zoe>> come out to the bar, wearing their coyoting uniforms of tight skimpy club tops and hotpants.
<<Zoe>> chats to one of your regulars while <<Amanda>> tosses you some shorts and a tight stretchy top. "C'mon," she shouts, leaning over the bar. "Let's go fish."
//[[Put on the top.|GOF-9550 Top on]]
[[Put on the shorts.|GOF-9600 Shorty]]//
<</page>><<silently>>
<<emote-calm>>
<<wear-top-blackHardCockCafeCropTop>>
<</silently>>\
<<header>>\
<<page>>\
You pull on the top. It's skimpy, stretchy and <<if $kate.braSize == "small">>unforgiving<<else>>unsupportive<</if>>, but wearing it restores a lot of your modesty anyway.
<<if hasVisited("GOF-9600 Shorty")>>\
Aaand...you're dressed for the street.
//[[Go coyoting.|GOF-9650 Coyotes]]//
<<else>>\
//[[Put on the shorts.|GOF-9600 Shorty]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<wear-shorts-blackStripperBootyShorts>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle into a pair of tight and stretchy black booty shorts.
<<if hasVisited("GOF-9550 Top on")>>\
Aaand...you're dressed for the street.
//[[Go coyoting.|GOF-9650 Coyotes]]//
<<else>>\
//[[Put on the top.|GOF-9550 Top on]]//
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You follow the girls out through the <span class="imageLink"><<link "naked popstar corridor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/demiLovato.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Both of them slip on wristbands with numbers on them – Zoe is 16, Amanda is 10 – before they get outside.
<<if hasVisited("FNG-21005 Wristband")>>You remember <<Amanda>> telling you that all <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> have to wear these in the<<else>><<Amanda>> wore a wristband like this last time you came out into the<</if>> street. You've seen girls from the other clubs wearing them, too.
Some kind of...whorish badge of office, you guess. You feel like your <<= $kate.agency.toUpperCase()>> headquarters pass is [[cooler|GOF-9700 Night market]].
<</page>><<silently>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/patpongMangoSunset.jpg" 100 1000 666 0>>\
You step outside into a [[hot, mango-coloured sunset|GOF-9710 Can you keep a secret]]. The street market is bustling, sizzling smells of street food and music playing from dozens of small speakers carried on the balmy air.
//Gucci handbag, you want the Gucci handbag, half pry I give to you...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/skyfallBargirls.jpg" 30 1000 537 0>>\
Lining both sides of the busy street, young Thai women wearing skimpy clubwear and numbered wristbands try to catch the eyes of male tourists as they pass.
"Can you keep a secret?" <<Amanda>> asks.
[[Uh huh.|GOF-9750 Sure][$kateSays to "Uh huh"]]
[[Sure.|GOF-9750 Sure][$kateSays to "Sure"]]
[[Absolutely.|GOF-9750 Sure][$kateSays to "Absolutely"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
//Better than you could possibly imagine,// you think. "$kateSays," you say.
"It's <<Zo>>'s birthday next week. We're gonna have a party but..."
"Good evening, my beauties!" Beardy – the fat, <<if $kate.agency == "mi6">>middle-aged<<else>>British<</if>> regular, the one who told you he's a freelance photographer – arrives, wearing a lecherous smile and an expensive-looking camera round his neck.
"Hi Sam!" <<Amanda>> and <<Zoe>> coo in unison.
[[Hi Sam!|GOF-9800 Hi Sam][$kateSays to "paragon"]]
[[Hi, Sam.|GOF-9800 Hi Sam][$kateSays to "paragade"]]
[[Fuck off, Sam.|GOF-9800 Hi Sam][$kateSays to "renegade"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "paragon">>\
<<emote-mouth-smile>>\
"Hi Sam!" you coo along.
"Hi lovely! So...who's catfighting tonight?"
<<elseif $kateSays == "paragade">>\
<<emote-mouth-talking>>\
"Hi, Sam," you say, with considerably less fake enthusiasm.
"Hi $kate.stripperName. So...who's catfighting tonight?"
<<elseif $kateSays == "renegade">>\
<<emote-mouth-talking>>\
"Fuck off, Sam."
"Hahahah!" He snorts and giggles, a fleck of spit shooting out and hitting you in the face. "You do make me laugh, $kate.stripperName. So...who's catfighting tonight?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
He throws a few mock punches in the air, like the world's slowest, least dangerous boxer.
"<<link "Me and <<Zo>>" "GOF-9850 Oh goody">><</link>>," <<Amanda>> replies.
<</page>><<silently>>
<<if $kateSays != "paragon">>\
<<emote-calm>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Oh goody!" His face lights up and he pats his camera. "Just bought a new memory card. Better check it works, actually. Let's get a test shot of you stunning beauties."
He lifts his camera; <<Amanda>> curls an arm around your waist and pulls you in for a group shot.
Both <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> strike photogenic poses, <<Amanda>> putting a foot forward and tilting her head, <<Zoe>> throwing up a peace sign.
//[[Strike a pose.|GOF-9900 Strike a pose]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<<set _kateD10 to random(1,10)>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You turn slightly in towards Amanda, tilting your hips to show off your curves. //Flash-click!//
"Quick one with your tits out," says Beardy.
//"Saaam!"// <<Amanda>> chides; he just leers.
Both girls cast quick glances around the busy night market – then simultaneously reach for their tops, like they're going to [[flash their breasts|GOF-9905 Trained observer]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Something they probably haven't noticed – but that you've been trained to pay attention to – is the police CCTV camera mounted on a tall pole nearby.
You could try to warn them – but would "$kate.stripperName" really have spotted a CCTV camera? And if she hadn't, would she flash with the others, or keep her top on?
This all races through your mind in a split second, a confusing rush of mixed impulses. //Warn, flash, don't flash?// You don't have time to process it, you just have to pick the one that feels the most right.
<<if $kate.kinks.includes("exhibitionist")>>\
//<span class="greyedOut">Warn.</span>//
<span class="greyedOut">[Exhibitionist]</span> //[[Flash.|GOF-9950 Kate flashes her boobs]]//
//<span class="greyedOut">Don't flash.</span>//
<<else>>\
//[[Warn.|GOF-10050 Life is a panopticon]]//
//<span class="greyedOut">[Exhibitionist] Flash.</span>//
//[[Don't flash.|GOF-10000 OMG]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<remove-top-blackHardCockCafeCropTop>>
<<set $avatar.clothing.pushUnique("clothing/tops/blackHardCockCafeCropTop/20_top-blackHardCockCafeCropTop-pulledUp-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/blackHardCockCafeCropTop/20_top-blackHardCockCafeCropTop-pulledUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<Amanda>> and <<Zoe>> flash their boobs unhesitatingly: you join in a half-second later, pulling your clingy little crop top up to your collarbone.
<span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter">Sam ''liked'' that.</span>
//Flash-click!//
Beardy gets a shot of the three of you [[flashing your breasts|GOF-10100 Get in the club ya perv]] in the night market.
<</page>><<silently>>
<<emote-mouth-smirk>>
<<emote-eyes-calm>>
<<emote-nose-scrunch>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Ohmygod, seriously?"
//Flash-click!// The camera captures a shot of Zoe and Amanda, holding their clingy tops up to their collarbones to flash their bare breasts, while you smirk and keep your modesty.
"Join in, $kate.stripperName!" Beardy cajoles: but the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are already tugging their tops back down, and the [[moment's passed|GOF-10100 Get in the club ya perv]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Wait, there's a CCT–"
//Flash-click!// The camera captures a shot of <<Zoe>> and <<Amanda>>, holding their clingy tops up to their collarbones to flash their bare breasts, while you try to warn them.
"Join in, $kate.stripperName!" Beardy cajoles: but the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are already tugging their tops back down, and the [[moment's passed|GOF-10100 Get in the club ya perv]].
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GOF-9950 Kate flashes her boobs")>>
<<set $avatar.clothing.delete("clothing/tops/blackHardCockCafeCropTop/20_top-blackHardCockCafeCropTop-pulledUp-" + $kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/blackHardCockCafeCropTop/20_top-blackHardCockCafeCropTop-pulledUp-rear")>>
<<wear-top-blackHardCockCafeCropTop>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Lovely," Beardy murmurs, looking at the screen on the back of his camera.
"Get in the club, ya perv," says <<Zoe>>, thumbing over her shoulder. He [[goes through|GOF-10150 Aaanyway]] with a spring in his step.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Aaanyway," <<Amanda>> resumes. "<<Zo>>'s party. Wanna come?"
[[Yeah, great!|GOF-10200 Zoe's party][$kateSays to "yeahGreat"]]
[[Where is it?|GOF-10200 Zoe's party][$kateSays to "whereIsIt"]]
[[What kinda party?|GOF-10200 Zoe's party][$kateSays to "whatKindaParty"]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yeahGreat">>\
<<emote-mouth-smile>>\
"Yeah, great!"
"Cool," <<Amanda>> smiles. "Just keep it to yourself, we don't want any bitches showing up."
<<elseif $kateSays == "whereIsIt">>\
<<emote-brows-raised>>\
"Where is it?"
"Oh, in town. We know some cool places we can drink and dance."
"Just not on a stage," <<Zoe>> chimes in, with a low melodious chuckle.
"Keep it to yourself, okay?" says <<Amanda>>. "We don't want any bitches showing up."
<<elseif $kateSays == "whatKindaParty">>\
<<emote-brows-raised>>\
"What kinda party?"
"Girls night out," <<Amanda>> shrugs and smiles. "Just keep it to yourself, we don't want any bitches showing up."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Hey, girls." Three <<if $kate.agency == "asis" or $kate.agency == "nzsis">>British lads<<else>>Aussie guys<</if>> in muscle shirts and board shorts sidle up. "Can we get a photo of ya?"
"If you go in the club for a beer after, sure," <<link "<<Zoe>> says" "GOF-10210 Zoe and Amanda pitch">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"How much are beers?" he asks warily.
"<div class="tooltip">200 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$6<<elseif $kate.agency == "mi6">>£4<<elseif $kate.agency == "asis">>$8<<elseif $kate.agency == "csis">>$8<<elseif $kate.agency == "nzsis">>$8<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," chirps <<Amanda>>. "And we got girls stripping for free."
"We got Thai babes, and we're the only club that hires backpackers," says <<Zoe>>. "Might see someone you know from your hostel, huh?"
"You never know," shrugs <<link "<<Amanda>>" "GOF-10220 Smile">><</link>>.
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
After a short conference, the <<if $kate.agency == "asis" or $kate.agency == "nzsis">>Brits<<else>>Aussies<</if>> agree to check out the club. You find yourself pulled into another group photo with <<Zoe>> and <<Amanda>>, posing in skimpy street clothes for some strangers to take pictures.
//Flash-click! Flash-click! Flash-click!//
"Niiice," says <<if $kate.agency == "asis" or $kate.agency == "nzsis">>a Brit<<else>>an Aussie<</if>>. "Let's see the tits."
"We're not really allowed," says <<Amanda>>.
"We can [[do it inside|GOF-10350 Nude Spice]]," says <<Zoe>>.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No photos," you shake your head.
"It's not allowed in the night market," adds <<Amanda>>.
"But you just let that old <<if $kate.agency == "asis" or $kate.agency == "nzsis">>bloke<<else>>fella<</if>> take one."
"He's a regular," explains <<Zoe>>. //Flash-click!// One of the <<if $kate.agency == "asis" or $kate.agency == "nzsis">>Brits<<else>>Aussies<</if>> snaps a photo of you with his camera phone.
"Let's get outta here," he tells his mates. "Bye, twats."
[[Bye, assholes.|]]
//[[Ignore them.|]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"If you go in the club for a beer, sure."
"How much are beers?" he asks warily.
"<div class="tooltip">200 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$6<<elseif $kate.agency == "mi6">>£4<<elseif $kate.agency == "asis">>$8<<elseif $kate.agency == "csis">>$8<<elseif $kate.agency == "nzsis">>$8<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," chirps <<Amanda>>. "And we got girls stripping for free."
"<div class="tooltip">200 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$6<<elseif $kate.agency == "mi6">>£4<<elseif $kate.agency == "asis">>$8<<elseif $kate.agency == "csis">>$8<<elseif $kate.agency == "nzsis">>$8<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," you chime in.<<if $kateSays == "servedTopless">> "And the barmaids are topless."<</if>>
TK they think this over and agree. One of them [[takes the photo|GOF-10300 Flash-click!]], with his two friends in the group shot – your hand curled around the blond one's waist, his hand cupping your ass.
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
//Flash-click!//
"Awesome. Um…can you get yer norks out again?"
"We're not supposed to," says <<Amanda>>.
"We can [[do it inside|GOF-10350 Nude Spice]]," says <<Zoe>>.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The six of you pass through the main door, into the air-conditioned, neon-lit gloom of the <span class="imageLink"><<link "naked popstar corridor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/gingerSpiceFramed.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
As soon as you're out of sight of the milling crowds of the night market, you, <<Zoe>> and <<Amanda>> [[peel off your tops|GOF-10400 Photos]].
<</page>><<silently>>
<<remove-top-blackHardCockCafeCropTop>>
<<set $avatar.underwear.pushUnique("clothing/tops/blackHardCockCafeCropTop/40_top-blackHardCockCafeCropTop-heldInRightHand-" + $kate.complexion)>>
<<set $avatar.underwear.pushUnique("clothing/tops/blackHardCockCafeCropTop/40_top-blackHardCockCafeCropTop-heldInRightHand-" + $kate.complexion + "-rear")>>
<<emote-mouth-smile>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
//Flash-click! Flash-click! Flash-click!//
You pose for a round of photos, draping yourself topless in turn over three <<if $kate.agency == "asis">>randos<<else>>Aussies<</if>> you've never met.
"Alright, alright, that's enough," announces <<Zoe>>. "<<link "Follow $kate.stripperName" "GOF-10450 May angels lead you in">><</link>>, she'll take you to the bar."
"Have fun guys," calls <<Amanda>>. "We'll be back in later, come find us."
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You lead <<if $kate.agency == "asis">>them into the club, the blond one [[pawing your ass and peppering you with questions all the way|GOF-10600 Coyoting is finished]]. "Where you from in Oz? You on Insta?"<<else>>them into the club, the blond one [[pawing your ass all the way|GOF-10600 Coyoting is finished]].<</if>>
<</page>><<silently>>
<<emote-calm>>
<<wear-top-blackHardCockCafeCropTop>>
<<set $avatar.underwear.delete("clothing/tops/blackHardCockCafeCropTop/40_top-blackHardCockCafeCropTop-heldInRightHand-" + $kate.complexion)>>
<<set $avatar.underwear.delete("clothing/tops/blackHardCockCafeCropTop/40_top-blackHardCockCafeCropTop-heldInRightHand-" + $kate.complexion + "-rear")>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
Coyoting continues for half an hour or so, and it's fast paced: pretty much every time you get back out to the night market, <<Amanda>> and <<Zoe>> have a guy or a group of guys waiting to be walked in.
Eventually, they decide they've done enough, and walk with you alongside their final catches of the night: a pair of tall, Icelandic dentists.
You get back behind the bar and [[strip off|GOF-10800 Bar service]] to serve them their first drinks in the Hard Cock Cafe.
<</page>><<silently>>
<<remove-top-blackHardCockCafeCropTop>>
<<remove-shorts-blackStripperBootyShorts>>
<</silently>>\
<<header>>\
<<page>>\
You stay behind the bar, helping Roxy keep up with the orders. By 9PM on a Friday night, the bar's busier than you've ever seen it.
For the first time ever, you have to [[work hard as a barmaid|GOF-10850 Remember sa-mai]] for more than a few minutes – keeping track of who's waiting for service, memorising and multi-tasking group orders. All while random men are pawing your boobs.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Coming around your side of the bar on some errand, Ploy sees you working and pulls you aside.
"$kate.stripperName!" she shouts in your ear. "Remember sa-mai!"
[[Huh?|GOF-10900 Huh][$kateSays to "huh"]]
[[Remember what?|GOF-10900 Huh][$kateSays to "what"]]
[[Who's Samai?|GOF-10900 Huh][$kateSays to "who"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "huh">>\
"Huh?" you shout back.
<<elseif $kateSays == "what">>\
"Remember what?" you shout back.
<<elseif $kateSays == "who">>\
"Who's Samai?" you shout back.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Sa-mai!" she repeats, pointing to your face. "Remember sa-mai!"
//My face...sa-mai...what is she...//
[[Remember...to smile?|GOF-10950 Remember to smile?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Remember to //smile?"//
"Yeah!" she beams. "Remember smai-yoh."
[[Okay, Ploy, I will.|GOF-10100 Rgr wilco]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, Ploy, I will."
You go back to your service, doing your best to keep a big friendly smile on your face when you're [[serving drinks and bending over the bar|GOF-10150 Serviced]] to take orders.
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The bar's so busy. Your breasts get groped and fondled every time you bend over it - if not by the guy you're serving, by the guys around him.
You're getting so used to this that you've [[stopped paying attention|GOF-10160 Normalisation]] to exactly who's doing it – unless they're especially good with their fingers, or a pincher.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "small">>\
"Hey Surfie, two Singhas," says the fiftieth guy to put his hands on your breasts tonight.
Connor used that nickname for you earlier, and it's starting to stick at the bar.
[[Coming up.|GOF-10170 Coming up]]
<<else>>\
"Hey babe, two Singhas," says the fiftieth guy to put his hands on your breasts tonight. "Nice tits."
[[Thanks.|GOF-10170 Coming up]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "small">>\
"Coming up."
You let him flick your nipple piercings for a few seconds, before slithering back behind the bar to [[get two cold beers from the fridge|GOF-10180 Rear view]].
<<else>>\
"Thaaanks."
You let him play with them for a few seconds, before slithering back behind the bar to [[get two cold beers from the fridge|GOF-10180 Rear view]].
<</if>>\
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
When you turn your back, you're showing everyone at the bar your ass. You can see some of them staring at you, reflected in the mirrored backbar.
There's no privacy here, none at all.
//[[Crouch down to get the beers.|GOF-10190 Squat]]//
<<if $kate.kinks.includes("exhibitionist")>>\
//<span class="greyedOut">[Exhibitionist]</span> [[Bend down to get them.|GOF-10200 Bend over for beer]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Bend down to get them.//</span>
<</if>>\
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You squat down on your heels, pull out two ice cold bottles of Singha, and serve them with a smile.
"Thanks <<if $kate.braSize == "small">>Surfie<<else>>babe<</if>>." He presses one of the bottles to your naked left breast. The feeling of the wet cold bottle on your nipple [[takes your breath away|GOF-10300 Friday night cat fight]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They all think you're hot. //Might as well drive them a little crazy.// You bend over the fridge to pull out two ice cold bottles of Singha.
<span class="greenHighlighter">Bar patrons ''liked'' that.</span>
A crowd of approving male faces is waiting for you when you [[turn around|GOF-10210 Serving Singha]].
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You serve up two ice cold bottles of Singha with an innocent smile.
"Thanks <<if $kate.braSize == "small">>Surfie<<else>>babe<</if>>." He presses one of the bottles to your naked left breast. The feeling of the wet cold bottle on your nipple [[takes your breath away|GOF-10300 Friday night cat fight]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's kind of like handshakes. Some are clumsy, some are timid. Some men squeeze hard to establish dominance. Most are just normal.
You'd never
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaked.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Tonight when you bend over the bar, he surprises you by splashing his fingers in his drink before squeezing your nipples. The cold wetness and his confident, possessive touch makes you gasp.
//"Chérie,// we can make some money tonight," he says in your ear. "Some of the guys are 'aving a sweepstake, who will be the first to take you 'ome. Come back with me, we can make love all night and then buy breakfast with their stupid money."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's kind of like handshakes; some men squeeze too hard.
Sometimes it's just because they're clumsy. A drunk 18-year old isn't normally trying to hurt you, he just doesn't know his own strength. If you tell them to go a bit easier, they usually do.
Some of the older guys know exactly what they're doing, though. It's a [[dominance thing|GOF-10260 It's a dominance thing]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Fritzl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/fritzl.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s one of them. The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> gave him that nickname because he's an old Austrian sadist.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The DJ keeps announcing that the Friday Night Catfight starts at ten.
Just before then, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> come out on stage, carrying out some crash mats and an inflatable kid's paddling pool.
You picture the amusing spectacle of those two doing a boy/boy show – //hahaha!// – but really all they do is set up the pool on the crash mats, and squirt in a few bottles of [[baby oil|GOF-10310 On stage buildup]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They disappear backstage; you go back to serving drinks.
Ten o'clock rolls around. To the tune of //Eye of the Tiger,// the stage fills up: <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>...<span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>...a <span class="imageLink"><<link "tough looking farang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/shortySkinner2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who played with your boobs when you served him a beer earlier...Beardy with his camera.
The men in the crowd [[mostly ignore|GOF-10320 Here come the girls]] the men gathering on the stage.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Then <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> come out, wearing just skimpy string bikinis, and suddenly everyone at the bar twists round to watch the stage.
Are they even bikinis? //More like micro-bikinis. Nano-bikinis.// The most revealing swimwear you own looks prudish in comparison. They're practically naked.
<<Zoe>> in particular is a [[wardrobe malfunction waiting to happen|GOF-10330 Introductions]], her ample breasts constantly threatening to bounce out of the piece of string trying to hold them.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The music goes down and <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> introduces the fighters. "Alright, gents, we got an American Civil War for ya tonight! From Oklahoma USA, fighting in the pink bikini...<<if $kate.firstName != "Amanda">>Amaaanda<<else>>Samaaantha<</if>>! And fighting for Illinois USA, //nearly// wearing the silver bikini...<<if $kate.firstName != "Zoe" and $kate.firstName != "Zooey" and $kate.firstName != "Zoey" and $kate.firstName != "Zoë" and $kate.firstName != "Zoé">>Zohhhh-ey<<else>>Izzz-eh<</if>>!"
There's an intimidating rumble of masculine applause while the [[girls get squirted down with baby oil|GOF-10340 Let's hear it for Shorty]]. The glowing red LED on Beardy's camera tells you he's recording the whole thing.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Here to give the final instructions, long time friend o'the club, two time WMC world middleweight champ, give it up for //Sean Shorty Skinner!"//
The <span class="imageLink"><<link "shaven-headed farang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/shortySkinner2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> whips off his t-shirt, parodying the girls. The word SHORTY is tattooed on his belly in gothic lettering.
"Alright you two," he says, taking the mic from Connor. His accent's <<if $kate.agency == "mi6">>scouse.<<else>>Liverpudlian, like the Beatles.<</if>> "We wanna see a very, very [[dirty fight|GOF-10350 Dirty fight]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
What follows is three short rounds of slippery, nearly naked girl-on-girl mayhem.
A round ends when one girl pins another on her back for a three count. But pinning down a [[squirming, oiled woman|GOF-10360 Wardrobe malfunctions]] is hard when your hands are slippery and you're fighting in baby oil.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The men onstage hover round the ring, shouting encouragement and squirting <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with baby oil as they writhe and fight.
Their nano-bikinis constantly slip or get yanked aside, flashing hard nipples and shaved pussies at the audience.
<<Zoe>> finally pins <<Amanda>>, winning the first round. To you, it doesn't look like the customers really care who wins or loses; they just want to watch girls [[fight and get stripped|GOF-10370 Round 2]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Round 2 is fought topless; <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pins <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> after a long, slippery struggle.
Both girls look exhausted when they peel off their bikini bottoms and get back in the fight for a final round. Two slick, naked women grapple and fight; Zoe eventually pins Amanda down a second time.
Then the fight's over, and the [[real entertainment starts|GOF-10380 Kiss]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The stabby, funky horns of Joe Cocker's //Woman To Woman// kick in as <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> kneel up in the pool and French kiss.
This gets a bigger cheer than anything that happened in the fight, which doesn't surprise you, because if you've learned just one thing from working in the Hard Cock Cafe it's that <<link "men //love// girl/girl shows" "GOF-10390 Performance lesbianism">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It unfolds just like you know it will: ten minutes of performance lesbianism.
It starts with kissing, goes through some unsimulated fingering and sixty-nining, and ends up with the girls humping a double-ended dildo in time with a gay anthem (tonight it's //Girls/Girls/Boys// by Panic! at the Disco).
You've seen it so many times, you could probably do it yourself without practice. But it never seems to get old for the [[men in the audience|GOF-10400 Cleanup]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> share a grin and a hug after the show.
Those little sisterly hugs at the end are also part of the ritual – the only part that isn't choreographed, in your opinion. Two women reconnecting as friends, after they've just been made to fuck each other on stage.
"Alright, guys, next show in ten minutes," Connor says into the mic. "Can we get Roxy and $kate.stripperName up here for the clean up, that's Roxy and $kate.stripperName to the stage please."
You shoot Roxy a look – //what's this?// "C'mon," she shouts in your ear. "We just have to [[clean up the stage|GOF-11010 Dancefloor gauntlet]]."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The guys who were watching the show are thronging back to the bar to get more drinks. You and Roxy leave <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to deal with them all, and cross the dancefloor to get backstage.
A Foo Fighters song is booming; the floor is wet with spilled booze. You smile at the men as you slip past them in the dark.
Clip clopping alongside you at a fast pace, <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> jolts and stumbles into you when a sharp slap on the ass [[breaks her stride|GOF-11020 Matching slaps]].
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
She grabs your arm for balance. Instinctively she twists and looks behind her for the perpetrator.
It's Ponytail – one of the regulars, a tanned old sexpat in his fifties, the first guy ever to feel you up at the bar.
He grins lecherously. Roxy reacts like she's supposed to – smiles and laughs it off as a joke.
She lets go of your wrist and you keep moving. A drunk Asian man paws your tit as you walk past him, then you've made it to Cross Eye the Bouncer and the No Entry Door.
He holds it open for you and Roxy to [[scuttle through|GOF-11030 Backstage corridor]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are in the backstage corridor, manhandling the paddling pool out towards the fire exit.
"This way." Roxy leads you past the manager's office, to a closet in the hallway.
Some cleaning supplies are inside – as is the hot water boiler, and the fusebox. //Interesting, I know how to cut the power now.//
"Get mop," says Roxy.
//[[Grab a mop and bucket, and follow Roxy.|GOF-11040 Mop and bucket]]//
<</page>><<silently>>
<<set $header.line1 to "''ON STAGE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<wear-blueLatexSurgicalGloves>>
<</silently>>\
<<header>>\
<<page>>\
A side door leads straight out onto the stage.
<<if hasVisited("DINBOSS-16760 Rock chick")>>\
It's been years since you last stepped on a stage. Back then you were fully dressed and carrying a bass guitar, but the tension and excitement in your stomach feels just the same as you step out onto the [[glowing, hot pink stage|GOF-11050 Mopping up]].
<<else>>\
You're just up here to clean it. And guys have been ogling you all night. But you still feel a rush of tension in your stomach as you step out onto the [[glowing, hot pink stage|GOF-11050 Mopping up]].
<</if>>\
<</page>><<silently>>
<<set $avatar.background.pushUnique("accessories/22_mopAndBucket2-both")>>
<</silently>>\
<<header>>\
<<page>>\
<<Zoe>> and <<Amanda>> splashed oil everywhere in their fight. Now the crowd gets to watch you and Roxy put on a very different girl/girl show – two topless women, mopping the stage in <<knickers>> and high heels.
<<if hasVisited("DINBOSS-16760 Rock chick")>>\
The view from up here is familiar from your time playing in bands: a few faces in the front watching you carefully, a larger darker mass of people on the dancefloor behind them, their faces occasionally lit up by a [[roving club light|GOF-11060 Clean girl/girl show]].
<<else>>\
The room looks different from up here; it's strangely exhilarating to be up on stage, elevated above everybody else. You pick out a few men in the front watching you carefully, a larger darker mass of people on the dancefloor behind them, their faces occasionally lit up by a [[roving club light|GOF-11060 Clean girl/girl show]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They watch you mop up patches of baby oil and wring it out in the bucket. Occasionally someone wolf whistles, or shouts something you can't hear.
Someone at the front starts a chant of //[[strip, strip, strip!|GOF-11070 Mopping up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Strip! Strip! Strip!"// A couple of his friends pick up the chant, shouting over the music.
They're just trying to get a reaction. Instinctively, you and Roxy just ignore it until it fizzles out. You just focus on mopping the floor...and looking good.
That last part is impossible not to think about. You're so incredibly exposed up here, even more so than when you're behind the bar. The club's busier than you've ever known it, and it feels like dozens and dozens of men are <<link "just //watching// you" "GOF-11080 Kate's first stage show">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Mop, mop, mop.// With your stomach held taut and your back arched to showcase your breasts; Roxy's doing it, too.
From time to time, someone in the audience shouts your name, or catches your glance. Including one hot <<if $kate.agency == "csis">>Irish<<else>>French Canadian<</if>> guy, tall and broad-shouldered, who bought you two shots earlier.
One of the <span class="imageLink"><<link "Thai bargirls">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is hanging off him, draped over him in a slinky red stripper dress, shouting in his ear and fondling his muscles. His hand is cupping her ass, but his eyes are fixed on you [[every time you look|GOF-11085 Finished]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Two songs later, your mopping up operation – and your first time on stage at the Hard Cock Cafe – is all over.
You and Roxy disappear backstage again, and add to the city's water pollution problem by flushing the baby oil down the staff <<if $kate.agency == "mi6">>loo<<else>>toilet<</if>>.
//[[Return to the bar.|GOF-11087 Return through the gauntlet]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set $avatar.background.delete("accessories/22_mopAndBucket2-both")>>
<<remove-blueLatexSurgicalGloves>>
<</silently>>\
<<header>>\
<<page>>\
You head back through the crowd. Cross Eye the Bouncer's circle of protection extends about fifteen feet from the No Entry Door: after that, you and Roxy are on your own.
Someone cups your ass as you pass him in the dark; someone else casually smacks Roxy.
A drunken <<if $kate.agency == "asis">>Kiwi<<else>>Aussie<</if>> teenager shouts something in your ear about your tits, grabbing one. You [[smile at him and keep walking|GOF-11090 Shark attack]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The glowing blue bar counter draws you like a beacon. Once you get behind it then you can...
From behind you, fingers slip into the waistband of your thong, hands on both your hips.
//[[Smack them away!|GOF-11100 Kate gets sharked!][$kateSays to "smack"]]
[[Squirm away!|GOF-11100 Kate gets sharked!][$kateSays to "squirm"]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-open>>
<<removeKnickers>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
You squeal and <<if $kateSays == "smack">>swat at the hands<<else>>try to twist away<</if>>, but it's too late.
An approving cheer goes up as your <<knickers>> are yanked down, flashing your pussy and your butt to everyone.
<span class="greenHighlighter">Bar patrons ''loved'' that.</span> <span class="greenHighlighter">Roxy ''liked'' that.</span>
//[[Pull them up!|GOF-11110 Kate restores her modesty]]//
<</page>><<silently>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<<emote-brows-worried>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
//Oh my god!// You manage to pull them back up into place and keep going.
Your heart's racing after being just //stripped// like that. You look instinctively to Roxy for reassurance, but she's smiling along with all the guys. So much for sorority.
//[[Get back behind the bar.|GOF-12000 Connor picks Kate]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You make it behind the bar without further incident, and get back to serving drinks. Hands grab your tits every time you step up on the rail and take an order.
The next few hours go by in a long blur of taking orders, serving drinks, taking cash, and getting touched. It feels like the only time you pause is when someone [[buys you a shot|GOF-12050 Busy bargirls]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
The men crowding the bar are drunk and horny, easy pickings for the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
Every time <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> or <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> or <span class="imageLink"><<link "Ilsa">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> or <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swoop in looking fresh and glamorous, there's a whole pack of men ready and willing to hire a bargirl.
In a way, this is probably better than the seducing you've seen them do when the club's quieter. No rejections. And they must be earning more.
It's just weird. Watching men wait to hire women, like they're...taxis or something.
//[[How the hell is this normal.|GOF-12100 Winding down]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It peaks a little after midnight. Gradually – through natural attrition, and by being spirited off one (or occasionally two) at a time by the busy <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> – the crowd thins out at the bar and service starts to wind down.
As usual, your feet are killing you and your pussy is [[desperate for some attention|GOF-12150 Connor arrives]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Near the end of the shift you're bending over the bar, letting a drunk American flick your nipples while he tells you that you look like his ex, but hotter.
You don't even notice Connor's behind the bar with you until he [[smacks your ass|GOF-12200 B&B]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You serve the American his Brandy & Benedictine, and knock down the shot of <<if def $katesShotOfChoice>>$katesShotOfChoice<<else>>tequila<</if>> he buys you.
Coming around behind you, carrying a money bag, Connor pats your ass possessively. "C'mon you," he shouts. "[[Office|GOF-12250 Walk to office]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You say goodbye to the American, and follow Connor out from behind the bar.
As always, walking with him protects you from the wandering hands of the bar patrons.
Cross Eye the bouncer holds open the No Entry door for you, and you follow Connor into the backstage corridor. <<if hasVisited("GOF-2200 Connor manages Kate")>>"Yer doing much better with the punters, now,"<<else>>"Seems like yer settling in,"<</if>> he says. "How you gettin' on?"
[[Yeah, I'm getting used to it.|GOF-12300 Getting used to it]]
[[It's not what I expected.|GOF-12400 Not what I expected]]
[[Overworked and underpaid.|GOF-12350 Overworked and underpaid]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you reply, "I'm getting used to it."
"Good girl," he says, punching the code into the office door and gesturing you through. "[[After you|GOF-12500 After you]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Overworked and underpaid," you tell him.
"Heh," he chuckles, punching the code into the office door and gesturing you through. "[[After you|GOF-12500 After you]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not what I expected," you admit.
"Oh?"
[[It's really hard work.|GOF-12410 Hard work]]
<span class="greyedOut">//TK add alt dialogue I feel like I'm constantly on display.
All the touching is driving me crazy.//</span>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's //really// hard work," you say. "I thought this was gonna be a quick way to make some cash."
"That's <div class="tooltip">bargirlin'<span class="tooltiptext">working as a club prostitute</span></div>," he says, punching the code into the office door. "You ready to think about it yet? You'll make <div class="tooltip">ten K<span class="tooltiptext"><<if $kate.agency == "cia">>in Thai Baht: $300<<elseif $kate.agency == "mi6">>in Thai Baht: £200<<elseif $kate.agency == "asis">>in Thai Baht: $400<<elseif $kate.agency == "csis">>in Thai Baht: $400<<elseif $kate.agency == "nzsis">>in Thai Baht: $400<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> a night, easy. Wanna try it tomorrow?"
[[No thanks.|GOF-12420 No thanks]]
[[I'm not gonna be a bargirl.|GOF-12430 Not gonna be a bargirl]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No thanks."
"We'll see," he says, pushing open the office door. "Knickers off, get on the couch."
[[Isn't it ever Roxy's turn?|GOF-12505 Isn't it Roxy's turn]]
<<link "//Take off your <<knickers>> and get on the couch.//" "GOF-12510 Knickers off">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not gonna be a bargirl."
"We'll see," he says, pushing open the office door. "Knickers off, get on the couch."
[[Isn't it ever Roxy's turn?|GOF-12505 Isn't it Roxy's turn]]
<<link "//Take off your <<knickers>> and get on the couch.//" "GOF-12510 Knickers off">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
Your heels click on the tiles as you enter the office.
"Knickers off," Connor says, "get on the couch."
[[Isn't it ever Roxy's turn?|GOF-12505 Isn't it Roxy's turn]]
<<link "//Take off your <<knickers>> and get on the couch.//" "GOF-12510 Knickers off">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Isn't it ever Roxy's turn?"
"Shut up, you love it," he replies dismissively. He snaps his fingers and points to your <<= $knickers.description.random()>>. "Off."
<<link "//Take off your <<knickers>> and get on the couch.//" "GOF-12510 Knickers off">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("GOF-12500 After you")>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
<</if>>\
You peel down your thong. Your heels //clip, clop// on the tiles as you step out of your underwear.
Connor drops the fat money bag off on the desk. You walk over to the couch, naked, and attempt to arrange yourself on it in a way that <<if hasVisited("GOF-4275 Connor/Kate reluctant makeout")>>[[maintains a smidgeon of dignity|GOF-12520 Jack and Rose]]<<else>>looks both [[hot and casual|GOF-12520 Jack and Rose]]<</if>>.
<</page>><<silently>>
<<emote-calm>>
<<first>>
<<addNotification "Arousal +1" "You're hot, wet and ready.">>
<</first>>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
Connor grabs a notebook out from a desk drawer, jots something down in it.
You watch from the side, draped artfully on the couch. Something about this reminds you of the scene where Jack drew Rose in //Titanic.//
Sadly, Connor's no Di Caprio, but there's something sexy about <<if _katesFantasy == "exhibitionist">>being on display while he works. What if somebody [[comes in|GOF-12530 Connor come closer]]?<<elseif _katesFantasy == "submissive">>being made to wait naked while he works. Like you're not even his [[top priority|GOF-12530 Connor come closer]].<<elseif _katesFantasy == "masochist">>the fact you have to [[fuck him anyway|GOF-12530 Connor come closer]].<<else>>//[ERROR IN KATESFANTASY TEMP VAR! [[Continue anyway|GOF-12530 Connor come closer]]]//<</if>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After a few moments, he's finished with the notebook. He tosses aside the pen, and comes to fuck you on the couch.
"Yer a fuckin' hot piece of ass," he murmurs, his bruise blue eyes drinking in your naked reclining body. You both know he's going to be inside you in about thirty seconds and your pussy practically //tingles// in [[anticipation|GOF-12540 Legs akimbo]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He climbs on top of you – the first time you've had sex with him in something like the missionary position. His weight presses down on you and the spicewood smell of his cologne fills your nostrils.
You instinctively part your legs so he can move between them. There's no foreplay but you just don't need it, working here is foreplay.
The tip of his stiff naked cock presses between your lips, nudges inside you. And //keeps going// with a deep, easy thrust that [[makes you gasp|GOF-12550 Kate Connor couch fuck]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
His fat cock glides up into you, back and forth, a comfortable easy rhythm.
"You dirty bitch," he murmurs in your ear, "yer soakin'." Then his mouth is on your breasts, licking and sucking on your stiff, sensitive nipples in turn.
After hours and hours of being teased and touched and ogled and objectified; hours of watching other girls strip and seduce and suck and fuck dildos up on a stage in front of everyone; your body's [[so ready|GOF-12560 Kate orgasm]] for this.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Connor lifts your wrists over your head, pins them there with one big meaty Scottish hand.
His cock surges rhythmically inside you, humping and thrusting. He cranes his head back down to your breasts, sucking and pinching your nipples while he fucks you, coaxing waves of exhilaration through your body.
It only takes a few minutes. You wrap your legs tightly around him as your orgasm [[rocks your body|GOF-12570 Connor vinegar strokes]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-brows-worried>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<set $avatar.clothing.delete("/makeup/eyeshadow/10_eyeshadow-" + $kate.lastWornEyeshadow + "-" + $kate.eyeShape + "-closed")>>
<</silently>>\
<<header>>\
<<page>>\
Connor thrusts inside you hard and fast, pinning your wrists tighter with one hand, playing roughly with your tits with the other.
"Ohfuck...ohfuck..." he murmurs as he gets close. Then – suddenly – he pulls out. His cock erupts in his hand, squirting a big load of cum all over your belly. //"Fffuck..."// he [[groans|GOF-12580 Post orgasmic chill]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-brows-raised>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<set $avatar.foreground.pushUnique(("cumshots/100_cumshot-belly1"))>>
<</silently>>\
<<header>>\
<<page>>\
He lolls back on the couch, dick softening, a satisfied grin on his flushed face.
"Good girl." He pats your knee with something like affection, then straightens up his clothes and heads over to the desk. He tosses you the baby wipes from the top drawer; you [[clean yourself up|GOF-12590 Cleanup]] while he counts out your money.
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.foreground.delete(("cumshots/100_cumshot-belly1"))>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle back into your thong. Connor hands you your pay and share of the tips for tonight, <div class="tooltip">1200 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$36<<elseif $kate.agency == "mi6">>£24<<elseif $kate.agency == "asis">>$48<<elseif $kate.agency == "csis">>$48<<elseif $kate.agency == "nzsis">>$48<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
"Here." He holds up another <div class="tooltip">750<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in red and blue banknotes. "Yer bonus."
<span class="greyedOut">//[Take it]//</span> [[Thanks.|GOF-12600 Thanks for making me a whore]]
<span class="greyedOut">//[Take it]//</span> [[Asshole.|GOF-12610 You're an asshole for making me a whore]]
<span class="greyedOut">//[Refuse it]//</span> [[No thanks.|GOF-12620 No thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you say, swiping the cash from his hand.
<span class="greenHighlighter">Connor ''liked'' that.</span>
"No problem. Alright, go get dressed, yer [[done for the night|GOF-12999 Title card]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Asshole," you snap, swiping the cash from his hand. //$kate.cover.firstName $kate.cover.surname probably couldn't afford to turn it down.//
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Feisty," he chuckles. "Alright, get dressed and fuck off, yer [[done for the night|GOF-12999 Title card]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No thanks."
"You sure?" He waves the money in front of you. "It's money, dinnay pretend you don't need it."
<span class="greyedOut">//[Take it]//</span> [[Okay. I do need it.|GOF-12630 Okay I need the money]]
<span class="greyedOut">//[Refuse it]//</span> [[I'm not gonna be a bargirl.|GOF-12640 Not gonna be a bargirl]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you say, taking the money. "I do need it."
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Smart girl," he says, not unkindly. "Alright, you can get dressed, yer [[done for tonight|GOF-12999 Title card]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not gonna be a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>," you tell him.
<span class="redHighlighter">Connor ''disliked'' that.</span>
"Fine," he shrugs, tucking the <div class="tooltip">750<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> back into the money bag. "Keep giving it away for free. Go get dressed, yer [[done for the night|GOF-12999 Title card]]...""
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<set $avatar.body.delete("/113Expressions/60_cheeks-blush-75Percent")>>
<<set $avatar.body.delete("/113Expressions/60_chest-flushed-75Percent")>>
<<removeShoes>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-whiteFrillySpaghettiStrapVest>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<a data-passage="GOF-13000 Hi Kate">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<</silently>>\
<<header>>\
<<page>>\
You arrive back at the hostel at the same time as a boozy group of Eastern Europeans, staggering back from a bar crawl on the Khao San Road.
In the club, they'd have their paws all over you. Here in the street, they just act extra loud and boisterous to try to get your attention.
You dodge them and enter the lobby. "Hi $kate.cover.firstName," $kate.nameForNoodle smiles.
[[Hi Wun Sen.|GOF-13050 Hi Noodle][$kate.nameForNoodle to "Wun Sen"]]
[[Hi Noodle.|GOF-13050 Hi Noodle][$kate.nameForNoodle to "Noodle"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi $kate.nameForNoodle." Leaving him to deal with the drunk Slavs, you head [[up to your room|GOF-13100 Report]].
<</page>><<silently>>
<<emote-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<remove-shoes-tanAnkleHighStrappyFlatSandals>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
You lock the door and tap out a [[message to Ian|GOF-13100 Message to Ian]] in Signal.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 02:39
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">tasking complete</span></div>. I've been invited to a party next week with <<Amanda>> and another bargirl, <<Zoe>>. Contact report to follow.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
👌🏼 great. free tomorrow?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Yes
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
new tasking. do cleaning run then <div class="tooltip">indigo<span class="tooltiptext">meet at the safehouse</span></div> 1500
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Wilco
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
//3 <small>P.M.</small> tomorrow. 3 <small>P.M.</small>, 3 <small>P.M.</small>, 3 <small>P.M.</small>//
You fix the timing in your mind, because the message thread will automatically delete itself when you [[close the app|BBJ-100 Title card]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Clark!
//Fuck!// Your thoughts are a jumble, racing in two directions at once. //What's on the camera? What's he going to say?//
"$kate.firstName?"
[[Uh, come in.|GNO-190 Come in]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..." You mash ALT-TAB to get the office camera off your screen. "Come in!"
//[[Try to look casual.|GNO-200 Enter Clark]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You turn and face the door, expression blank, mind racing.
//I had sex with Connor on camera. Twice! Everyone's gonna see it.//
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hovers in the doorway, brow furrowed, lips slightly pursed. "Hey."
[[Hey.|GNO-300 Hey]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if ndef $kate.crusaderRep>>
<<set $kate.crusaderRep to 0,
$kate.waifRep to 0,
$kate.alphaRep to 0,
$kate.fataleRep to 0>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Hey."
A long, probing look from the <span class="imageLink"><<link "veteran <<if $kate.agency == 'cia'>>case<<else>>CIA<</if>> officer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Your cheeks flush hot and your pulse thumps in your wrists. //He's seen it. Oh god, everybody's seen it.//
"So, uh..." he scratches his stubbly jaw, picking his words. "You know why I'm here, right."
//[[Stay quiet.|GNO-400 What's the story with Connor?]]//
[[I can explain.|GNO-310 I can explain]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Before you say anything...I can explain."
Stripped of its usual wry humour, <span class="imageLink"><<link "Clark's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> face looks different. This must be how he looks to an enemy. Brutal, serious, cold.
"Good, 'cause I got a feeling I'm about to get an //urgent// call from <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> about you."
[[Look, it was the only way I could infiltrate.|GNO-410 Only way]]
[[It was that or be fired.|GNO-420 I had to]]
[[Field decision. I didn't report it to protect the chain of command.|GNO-430 Field decision]]
<<link "How did you //think// I'd get hired?" "GNO-440 How do you think girls get hired there?">><</link>>
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">UNSUB 2<span class="tooltiptext">Unidentified Subject 2</span></div>. That's Connor <<if $kate.surname == "MacLelland" or $kate.surname == "Maclelland">>McSweeney<<else>>Maclelland<</if>>, yeah?"
//Here it comes.// Your lips are dry so you just nod.
Stripped of its usual wry humour, <span class="imageLink"><<link "Clark's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> face looks different. This must be how he looks to an enemy. Brutal, serious, cold.
"You gonna say anything?"
[[Look, it was the only way I could infiltrate.|GNO-410 Only way]]
[[It was that or be fired.|GNO-420 I had to]]
[[Field decision. I didn't report it to protect the chain of command.|GNO-430 Field decision]]
<<link "How did you //think// I'd get hired?" "GNO-440 How do you think girls get hired there?">><</link>>
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Look...it was the only way I could infiltrate."
<div class="greyHighlighter">\
<b>New rule: <i>Agency reputation.</i></b> The Combined Task Force forms an opinion of you based on your decisions and reports. There are four reputation "archetypes".
//Crusaders// are idealistic and loyal. //Waifs// are dutiful and resilient. //Alpha Females// are headstrong and assertive. //Femme Fatales// are enigmatic and manipulative.
Your current reputation is: //<<= $kate.dominantArchetype.toUpperFirst()>>.//
</div>\
"The only way." His eyes bore into yours. "How do you think <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna react when they see their new golden girl //fucking// an intelligence target?"
<<link "Do they want us to catch <small>DEVILFISH</small> or not?" "GNO-450 Do they want us to catch him or not">><</link>>
<<link "How do you think //I// feel?" "GNO-560 How do you think I feel?">><</link>>
[[They're the ones who sent me undercover in a brothel!|GNO-570 It's CTC's fault]]
[[We need to get our story straight.|GNO-580 Then let's get our story straight]]
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It was that or be fired."
<div class="greyHighlighter">\
<b>New rule: <i>Agency reputation.</i></b> The Combined Task Force forms an opinion of you based on your decisions and reports. There are four reputation "archetypes".
//Crusaders// are idealistic and loyal. //Waifs// are dutiful and resilient. //Alpha Females// are headstrong and assertive. //Femme Fatales// are enigmatic and manipulative.
Your current reputation is: //<<= $kate.dominantArchetype.toUpperFirst()>>.//
</div>\
"That's it?" His eyes bore into yours. "How do you think <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna react when they see their new golden girl //fucking// an intelligence target?"
<<link "Do they want us to catch <small>DEVILFISH</small> or not?" "GNO-450 Do they want us to catch him or not">><</link>>
<<link "How do you think //I// feel about them seeing it?" "GNO-560 How do you think I feel?">><</link>>
[[They're the ones who sent me undercover in a brothel!|GNO-570 It's CTC's fault]]
[[We need to get our story straight.|GNO-580 Then let's get our story straight]]
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Field decision." Your voice comes out calmer and stronger than you'd feared. "I kept it out of the reports to protect chain of command."
<div class="greyHighlighter">\
<b>New rule: <i>Agency reputation.</i></b> The Combined Task Force forms an opinion of you based on your decisions and reports. There are four reputation "archetypes".
//Crusaders// are idealistic and loyal. //Waifs// are dutiful and resilient. //Alpha Females// are headstrong and assertive. //Femme Fatales// are enigmatic and manipulative.
Your current reputation is: //<<= $kate.dominantArchetype.toUpperFirst()>>.//
</div>\
"Yeah?" He arches his brows. "And how do you think chain of command is gonna react when they see their new golden girl //fucking// an intelligence target?"
<<link "Do they want us to catch <small>DEVILFISH</small> or not?" "GNO-450 Do they want us to catch him or not">><</link>>
<<link "How do you think //I// feel about them seeing it?" "GNO-560 How do you think I feel?">><</link>>
[[They're the ones who sent me undercover in a brothel!|GNO-570 It's CTC's fault]]
[[We need to get our story straight.|GNO-580 Then let's get our story straight]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How did you...//think// I'd get hired?"
<div class="greyHighlighter">\
<b>New rule: <i>Agency reputation.</i></b> The Combined Task Force forms an opinion of you based on your decisions and reports. There are four reputation "archetypes".
//Crusaders// are idealistic and loyal. //Waifs// are dutiful and resilient. //Alpha Females// are headstrong and assertive. //Femme Fatales// are enigmatic and manipulative.
Your current reputation is: //<<= $kate.dominantArchetype.toUpperFirst()>>.//
</div>\
"Hey, we didn't send you in as a hooker–"
[[I'm not a hooker!|GNO-441 Not a hooker]]
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm //not// a hooker!"
"Whatever!" <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snaps. "How do you think <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>'s gonna react when they find out their new golden girl is //fucking// an intelligence target?"
<<link "Do they want us to catch <small>DEVILFISH</small> or not?" "GNO-450 Do they want us to catch him or not">><</link>>
<<link "How do you think //I// feel about it?" "GNO-560 How do you think I feel?">><</link>>
[[They're the ones who sent me undercover in a brothel!|GNO-570 It's CTC's fault]]
[[We need to get our story straight.|GNO-580 Then let's get our story straight]]
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do they //want// us to catch <small>DEVILFISH</small> or not?"
"Of //course// they do. But this is gonna raise big questions about your judgement."
[[Except my judgement got us this close.|GNO-460 My judgement got us this far]]
<<link "What do //you// think about my judgement?" "GNO-470 What do u think">><</link>>
[[Then remind them we nearly caught him last night.|GNO-520 Then remind them]]
[[I thought you'd have my back.|GNO-550 Thought you'd have my back]]
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Except we'd be on <small>DEVILFISH's</small> tail //right now// if they'd just had a bigger hard drive. My judgement's fine."
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scowls, but he doesn't have a good answer for that. "Alright, fine. Your judgement's flawless. So explain to me //exactly// what your plan was. 'Cause believe me, <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What do //you// think?"
"I don't know." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at you for a long moment. "Tell me //exactly// what your plan was. 'Cause <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"My plan is to capture <small>DEVILFISH.</small>"
"That's it? You're telling me this was 100% for the mission?" His eyes search yours. "There's absolutely nothing personal going on with this guy?"
[[Of course not.|GNO-620 Of course not]]
[[Don't be ridiculous.|GNO-620 Of course not][$kateSays to "dontBeRidiculous"]]
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"My orders were to infiltrate." You shrug slightly. "I infiltrated."
"That's it? You're telling me this was 100% for the mission?" His eyes search yours. "There's absolutely nothing personal going on with this guy?"
[[Of course not.|GNO-620 Of course not]]
[[Don't be ridiculous.|GNO-620 Of course not][$kateSays to "dontBeRidiculous"]]
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"My //plan// is to do what's expedient in the field. I'm the one on the ground, you and <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> need to back me, not pick apart my decisions."
His eyes search yours. "You're assuring me this was 100% for the mission? There's absolutely nothing personal going on with this guy?"
[[Of course not.|GNO-620 Of course not]]
[[Don't be ridiculous.|GNO-620 Of course not][$kateSays to "dontBeRidiculous"]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"#MeToo hasn't made it to Patpong, Clark. I'm gonna be limited in what I can do if I can't use sex."
His eyes search yours. "You're assuring me this was 100% for the mission? There's absolutely nothing personal going on with this guy?"
[[Of course not.|GNO-620 Of course not]]
[[Don't be ridiculous.|GNO-620 Of course not][$kateSays to "dontBeRidiculous"]]
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<<set _kateControlsHerEmotions to either(true, false)>>
<</silently>>\
<<header>>\
<<page>>\
"Then //remind// them we very nearly got actual video of <small>DEVILFISH</small> last night. On the security system that //I// found and //I// hacked." A hot rush of anger jets up in your belly. "Anyone's got 'big questions about my judgement', you tell 'em that."
"Alright," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "calm down..."
<<if _kateControlsHerEmotions>>\
<span class="greyedOut">//[Emotional Control check passed]//</span> //[[Let him talk.|GNO-530 Let him talk]]//
<<else>>\
<span class="greyedOut">//[Emotional Control check failed] Let him talk.//</span>
<</if>>\
[[Don't fucking tell me to calm down.|GNO-540 Don't fucking tell me to calm down]]
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
With difficulty, you set your jaw and let <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> talk.
"...you need to tell me //exactly// what your plan was. 'Cause believe me <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
//"Don't// fucking tell me to calm down! If they'd sent me in within thirty days, <small>DEVILFISH'd</small> be in a //fucking// black site right now–"
"Alright!" <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snaps. "I need to hear //exactly// what your plan was. 'Cause believe me <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-rogerMoore>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You know what? I thought if this came out, you'd have my back."
"Whoa-whoa-whoa. I do. Just–"
[[Doesn't feel like it.|GNO-552 Doesn't feel like it]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Doesn't feel like it."
<span class="greenHighlighter">Clark ''felt bad about'' that.</span>
"Alright. Fine." He holds up his hands, backing off from the attack. "You need to tell me //exactly// what your plan was. Believe me, <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How d'you think //I// feel about it?"
"Based on the video? //Hard to tell."// <span class="imageLink"><<link "Clark's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> jaw is set, his brow furrowed. "You are gonna need to tell me //exactly// what your plan was. 'Cause believe me, <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-441 Not a hooker")>>"They ordered me in there!"<<else>>"Well...they're the ones who sent me undercover in a brothel."<</if>> A wave of simmering, repressed anger boils up in your stomach. "What was I supposed to do when the boss wanted sex? Complain to HR?"
"You should've reported–"
[[Oh come on!|GNO-571 Come on!]]
<</page>><<silently>>
<<emote-brows-rogerMoore>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh come on! How do you report //that?"//
"I don't know!" <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> throws up his hands in frustration. "Look, if...you've gotta explain //exactly// what your plan was. 'Cause believe me, <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is gonna ask."
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We need to get our story straight."
An overlong silence. <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks at you carefully. "What do you mean?"
[[What do we need to say to keep HQ off our backs?|GNO-581 Maverick]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-attentive>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"You know what I mean. What do we need to say to keep <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> off our backs."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"That..." his gaze drifts down and to his right while he invents a solution. "...you reported it to me after the first time. And I told you to leave it out of the mission logs. Uh...to protect <<if $kate.agency == "cia">>the Agency's<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> reputation in the event of a future document leak."
[[Fine, that's how I remember it.|GNO-590 The Kate-Clark conspiracy]]
[[Do we have to lie?|GNO-600 Don't wanna lie]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fine. That's how I remember it. We had that talk in Signal, so...there's no logs."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"<<if hasVisited("GNO-600 Don't wanna lie")>>Alright<<else>>Fine then<</if>>." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "But you gotta be straight with me now. What //exactly// was your plan with this?"
<<link "My plan is to capture <small>DEVILFISH.</small>" "GNO-480 To catch a fish">><</link>>
[[My orders were to infiltrate.|GNO-490 Orders]]
<<link "My //plan// is to do what's expedient in the field." "GNO-500 I don't fail">><</link>>
[[It's a Thai brothel, I need to use sex.|GNO-510 Everything is sex]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do we have to lie?"
"They're gonna question your judgement about not reporting it."
[[Fine. That's how I remember it, then.|GNO-590 The Kate-Clark conspiracy]]
<<link "Do //you// question my judgement?" "GNO-610 Do you question my judgement?">><</link>>
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do //you// question my judgement?"
"Not necessarily. Look, I don't put every fucking detail in my contact reports either, it's normal. Just...not everyone I have to run this past will agree."
[[Fine. That's how I remember it, then.|GNO-590 The Kate-Clark conspiracy]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "dontBeRidiculous">>"Don't be ridiculous."<<else>>"Of course not."<</if>>
"Okay." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> drums his fingers on his thigh. //"Fuck.// You are...full of surprises, you know that?"
[[I'm just trying to do my job.|GNO-622 Just doing my job]]
[[In a good way?|GNO-624 Is that a good thing?]]
[[It's almost like I'm a spy or something.|GNO-626 Almost like I'm a spy]]
[[Thought you had me figured out, huh.|GNO-628 Thought you had me worked out]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"I'm just trying to do my job."
"Alright. And I can tell <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> you're, you're...you're //fine// going back into the club? Even with...you know..."
[[Yes.|GNO-630 Yes]]
[[I'm not quitting after everything I've done.|GNO-640 Came this far]]
[[Tell them I'll catch this fucker if they'll let me.|GNO-650 I'll catch him if they let me]]
[[Absolutely no problem with it.|GNO-660 Absolutely no problem]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"In a good way?"
<span class="greenHighlighter">Clark ''liked'' that.</span>
He smirks. "Need a minute to figure that out. I can tell <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> you're, you're...you're //fine// going back into the club? Even with...you know..."
[[Yes.|GNO-630 Yes]]
[[I'm not quitting after everything I've done.|GNO-640 Came this far]]
[[Tell them I'll catch this fucker if they'll let me.|GNO-650 I'll catch him if they let me]]
[[Absolutely no problem with it.|GNO-660 Absolutely no problem]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"It's almost like I'm a spy or something."
<span class="greenHighlighter">Clark ''respected'' that.</span>
"You're a lot tougher than you look. I can tell <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> you're, you're...you're //fine// going back into the club? Even with...you know..."
[[Yes.|GNO-630 Yes]]
[[I'm not quitting after everything I've done.|GNO-640 Came this far]]
[[Tell them I'll catch this fucker if they'll let me.|GNO-650 I'll catch him if they let me]]
[[Absolutely no problem with it.|GNO-660 Absolutely no problem]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smirk>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"Thought you had me figured out, huh."
"Yeah." He grins. "Never woulda thought...anyway. I can tell <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> you're, you're...you're //fine// going back into the club? Even with...you know..."
[[Yes.|GNO-630 Yes]]
[[I'm not quitting after everything I've done.|GNO-640 Came this far]]
[[Tell them I'll catch this fucker if they'll let me.|GNO-650 I'll catch him if they let me]]
[[Absolutely no problem with it.|GNO-660 Absolutely no problem]]
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes."
"Alright," he says, his tone softening. "I'll talk to 'em. You threw a curveball, but...guess that's a good thing in a field officer." He shrugs. "Listen...there's something else I wanted to ask you. Can you bring up that diary you scanned?"
//[[Open the scans folder on your laptop.|GNO-700 ALT-TAB]]//
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tell them there's no way I'm quitting after everything I've done."
"Alright," he says, his tone softening. "I'll talk to 'em. You threw a curveball, but...guess that's a good thing in a field officer." He shrugs. "Listen...there's something else I wanted to ask you. Can you bring up that diary you scanned?"
//[[Open the scans folder on your laptop.|GNO-700 ALT-TAB]]//
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tell them I'll catch this fucker if they let me."
"Alright," he says, his tone softening. "I will. You threw a curveball, but...guess that's a good thing in a field officer." He shrugs. "Listen...there's something else I wanted to ask you. Can you bring up that diary you scanned?"
//[[Open the scans folder on your laptop.|GNO-700 ALT-TAB]]//
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Absolutely no problem with it."
"Alright," he says, his tone softening. "I'll talk to 'em. You threw a curveball, but...guess that's a good thing in a field officer." He shrugs. "Listen...there's something else I wanted to ask you. Can you bring up that diary you scanned?"
//[[Open the scans folder on your laptop.|GNO-700 ALT-TAB]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You're not sure how to take that, so you let it pass.
"Listen, there's something else I wanted to show you." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points to your laptop. "Mission related. Can you bring up the diary you scanned?"
//[[Navigate to the scans folder.|GNO-700 ALT-TAB]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You turn back to your laptop, heart still pounding from the confrontation. //Did I win?// He's switched straight back into work mode with you. Is this his oblique way of apologising? //Why don't men communicate?//
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> watches over your shoulder as you navigate to the secure server in Langley.
"Uhhh, that one," he says, pointing to a file.
//[[Double-click the filename.|GNO-710 Girl on screen]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It opens in the same app as the screen grab of you and Somchai.
For a long awkward moment, you both stare at a topless image of you, pretending it's no more unusual than seeing a spreadsheet or a PDF open on a colleague's screen.
//<small>ESTABLISHING SECURE CONNECTION WITH SERVER...</small> //the status bar reports. <<link "//<small>AUTHENTICATING USER <<= $kate.firstName[0].toUpperCase()>><<= $kate.surname[0].toUpperCase()>>0595...</small>//" "GNO-711 Downloaded">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After five seconds that feel like forever, a scanned page from the notebook you found in the office appears on screen.
You instinctively drag it above the topless screen grab, the digital equivalent of tugging your skirt down in a meeting.
It's a list of stripper names under a date, February 18. Mostly Thai, plus a western name you don't recognise.
"So...these girls worked the night <small>DEVILFISH</small> came in."
[[Okay...who's Sadie?|GNO-2100 Who's Sadie?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What were you going to say?"
"Nothing. Just...like I said, full of surprises. Listen, there's something else I wanted you to take a look at."
[[No really, what were you thinking?|GNO-680 No really]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, really, what were you thinking?"
"Uh..." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gropes for the words. "It's always weird when you actually see an officer undercover."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Right."
"Right. So...first things first. You okay? It wasn't rape?"
[[I'm fine.|GNO-420 I'm fine][$kateSays to "imFine"]]
[[I'm okay.|GNO-420 I'm fine][$kateSays to "imOkay"]]
[[I wasn't raped.|GNO-420 I'm fine][$kateSays to "wasntRape"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "imFine">>\
"I'm fine."
<<elseif $kateSays == "imOkay">>\
"I'm okay."
<<elseif $kateSays == "wasntRape">>\
You shake your head. "I wasn't raped."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Okay. Good. So..." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> throws up his hands. "Look. You wanna fill in a couple blanks here?"
[[It was the only way I could infiltrate.|GNO-430 Only way I could infiltrate]]
[[I'd have been fired if I didn't.|GNO-440 Fired if I didn't]]
[[What the hell did you expect?|GNO-450 What did you expect?]]
[[It was operationally essential.|GNO-460 Operationally essential]]
<</page>><<silently>>
<<set $kate.crusaderReputation += 1>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It was the only way I could infiltrate."
"That what you want me to tell <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>?""
<</page>><<silently>>
<<set $kate.waifReputation += 1>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I had to go along with it. I'd have been fired if I didn't."
<</page>><<silently>>
<<set $kate.alphaReputation += 1>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Clark, I'm undercover in a //brothel.// What did you expect?"
<</page>><<silently>>
<<set $kate.fataleReputation += 1>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It was operationally essential."
<</page>><<silently>>
<<emote-mouth-calm>>
<<if ndef $kate.crusaderReputation>>
<<set $kate.crusaderReputation to 0,
$kate.waifReputation to 0,
$kate.alphaReputation to 0,
$kate.fataleReputation to 0>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"So. This, uh, this thing you had to do with Connor..." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rubs his unshaved chin, trying to find the right words. "First things first. You okay?"
[[Yeah, I'm fine. I don't wanna quit.|GNO-402 Crusader 0]]
[[I think so.|GNO-404 Waif 0]]
[[This wasn't my fault.|GNO-406 Alpha 0]]
[[This was operationally necessary.|GNO-408 Fatale 0]]
<</page>><<silently>>
<<set $kate.crusaderReputation += 1>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine," you tell him. "I don't wanna quit the mission."
"Good. I don't wanna pull you out, you're getting great results. I'm just not sure <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>'s gonna like it."
<<link "Tell them it's the only way we're gonna catch <small>DEVILFISH.</small>" "GNO-410 Crusader I">><</link>>
[[Tell them I'd have been fired if I didn't do it.|GNO-420 Waif I]]
[[CTC can bite my ass.|GNO-430 Alpha I]]
[[Then let's get our story straight.|GNO-440 Fatale I]]
<</page>><<silently>>
<<set $kate.waifReputation += 1>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you tell him. "I think so."
<</page>><<silently>>
<<set $kate.alphaReputation += 1>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This wasn't my fault," you insist. "You guys sent me into this fucked up situation."
<</page>><<silently>>
<<set $kate.fataleReputation += 1>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This was operationally necessary," you tell him. "I kept it out of my reports to protect the chain of command."
<</page>><<silently>>
<<set $kate.crusaderReputation += 1>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tell them it's the only way we're gonna catch <small>DEVILFISH.</small> Believe me, if there'd been a way to infiltrate that place without sex I'd have taken it."
"It is. Look, I can sell this to <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>, I just need to know you're not in over your head. Are you sure you know what you're doing?"
[[Yeah. It's all part of my cover.|GNO-500 Crusader II]]
[[After all this, there's no way I'm quitting now.|GNO-510 Waif II]]
[[It was my operational decision. Tell them to back me.|GNO-520 Alpha II]]
[[I've got Connor wrapped round my little finger.|GNO-520 Fatale II]]
<</page>><<silently>>
<<set $kate.waifReputation += 1>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tell them I'd have been fired if I didn't do it. I went along with it to keep the mission going."
"I'm okay," you promise him. "I can take it."
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at you for a long moment. "I can sell this to <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>," he says finally. "But I need to know you're not in over your head. Are you sure you know what you're doing?"
[[Yeah. It's all part of my cover.|GNO-500 Crusader II]]
[[After all this, there's no way I'm quitting now.|GNO-510 Waif II]]
[[It was my operational decision. Tell them to back me.|GNO-520 Alpha II]]
[[I've got Connor wrapped round my little finger.|GNO-520 Fatale II]]
<</page>><<silently>>
<<set $kate.alphaReputation += 1>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<<set _kateIsEmotionallyControlled to either (true,false)>>
<</silently>>\
<<header>>\
<<page>>\
"CTC can bite my <<if $kate.agency == "cia" or $kate.agency == "csis">>ass<<else>>arse<</if>>," you snap. "They put me in a black ops task force and told me to go undercover in a //brothel.// What'd they expect me to do when the boss wanted sex? Complain to HR?"
"Whoa whoa whoa." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds up his palms placatingly. "Calm down."
<<if _kateIsEmotionallyControlled>>\
//<span class="greyedOut">[Emotional Control check passed]</span> [[Let him talk.|GNO-432 Let him talk]]//
<<else>>\
<span class="greyedOut">//[Emotional Control check failed] Let him talk.//</span>
<</if>>\
[[Don't fucking tell me to calm down.|GNO-434 Don't fucking tell me to calm down]]
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"You're right," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "obviously you're right. Look, I can get them to see reason. I just wanted to know you're not in over your head."
[[It's all part of my cover.|GNO-500 Crusader II]]
[[After all this, there's no way I'm quitting now.|GNO-510 Waif II]]
[[It was my operational decision. Tell them to back me.|GNO-520 Alpha II]]
[[I've got Connor wrapped round my little finger.|GNO-520 Fatale II]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//"Don't// fucking tell me to calm down."
"Easy, easy, I'm sorry. Look," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "I've got your back here, I can make them understand. I just had to know you're not in over your head."
[[It's all part of my cover.|GNO-500 Crusader II]]
[[After all this, there's no way I'm quitting now.|GNO-510 Waif II]]
[[It was my operational decision. Tell them to back me.|GNO-520 Alpha II]]
[[I've got Connor wrapped round my little finger.|GNO-520 Fatale II]]
<</page>><<silently>>
<<set $kate.fataleReputation += 1>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Then let's get our story straight."
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at you for a long moment, sizing you up. Then he nods. "Okay, so...this was a snap decision in the field. You assessed you'd need to use sex to maintain your cover, and you did because you know <small>DEVILFISH</small> is a high value strategic target for CIA <div class="tooltip">CTC<span class="tooltiptext">Counterterrorism Mission Center</span></div>. Sound about right?"
[[That's actually the truth.|GNO-450 That's the truth]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's actually true."
"Right. After the first time you reported it to me directly; I told you to leave it out of your reports, to protect <<if $kate.agency == "cia">>Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> reputation in the event of a future leak of documents."
[[Yep. I remember having that conversation.|GNO-460 I remember that]]
[[Do we have to lie?|GNO-462 Do we have to lie?]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("GNO-462 Do we have to lie?")>>Fine<<else>>Yep<</if>>. I remember having that conversation with you. We did it on Signal, so...there's no logs."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"Alright. So we did everything by the book. I'll sell it. Listen...you're //sure// you're okay continuing this?"
[[Whatever it takes.|GNO-600 Crusader III]]
[[Don't worry. I'm tougher than I look.|GNO-610 Waif III]]
[[I'm going to catch this fucker.|GNO-620 Alpha III]]
[[Tell them I'm fine with it if they are.|GNO-630 Fatale III]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do we have to lie?"
"They're gonna question your judgement about not reporting it."
<<link "Do //you// question my judgement?" "GNO-464 Do you question my judgement?">><</link>>
[[Fine. I remember having that conversation.|GNO-460 I remember that]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do //you// question my judgement?"
"No, I get it. Look, I don't put every fucking detail in my contact reports either, it's normal. Just...not everyone I have to run this past will agree."
[[Fine. I remember having that conversation.|GNO-460 I remember that]]
<</page>><<silently>>
<<set $kate.crusaderReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This is all just part of my cover," you tell him. "Tell them it's how we're gonna find <small>DEVILFISH."</small>
"Okay. I'll talk to them. You're sure you wanna stay under?"
[[Whatever it takes.|GNO-600 Crusader III]]
[[Don't worry. I'm tougher than I look.|GNO-610 Waif III]]
[[I'm going to catch this fucker.|GNO-620 Alpha III]]
[[Tell them I'm fine with it if they are.|GNO-630 Fatale III]]
<</page>><<silently>>
<<set $kate.waifReputation += 1>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"After everything I've done..." vivid sensations from the past few weeks flash vaguely in your mind. You shake your head to dismiss them. "It'd be crazy to pull out now."
"You sure?"
[[Whatever it takes.|GNO-600 Crusader III]]
[[Don't worry. I'm tougher than I look.|GNO-610 Waif III]]
[[I'm going to catch this fucker.|GNO-620 Alpha III]]
[[Tell them I'm fine with it if they are.|GNO-630 Fatale III]]
<</page>><<silently>>
<<set $kate.alphaReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It was my operational decision," you insist. "Tell them if they want <small>DEVILFISH,</small> they have to back me up, not second guess me."
"Okay. I'll talk to them. You're sure you're cool with this?"
[[Whatever it takes.|GNO-600 Crusader III]]
[[Don't worry. I'm tougher than I look.|GNO-610 Waif III]]
[[I'm going to catch this fucker.|GNO-620 Alpha III]]
[[Tell them I'm fine with it if they are.|GNO-630 Fatale III]]
<</page>><<silently>>
<<set $kate.fataleReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Connor's senior in their organisational network. I'm already thinking about him as a potential asset for later. And I've got him wrapped round my little finger."
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, mulling this over. "Okay. I can sell that. Listen...you're sure you want to stay under?"
[[Whatever it takes.|GNO-600 Crusader III]]
[[Don't worry. I'm tougher than I look.|GNO-610 Waif III]]
[[I'm going to catch this fucker.|GNO-620 Alpha III]]
[[Tell them I'm fine with it if they are.|GNO-630 Fatale III]]
<</page>><<silently>>
<<set $kate.crusaderReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Whatever it takes."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"Attagirl. Listen, there's something I wanted you to [[take a look at|GNO-2000 Bargirl roster]]..."
<</page>><<silently>>
<<set $kate.waifReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry about me. I'm tougher than I look."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"Attagirl. Listen, there's something I wanted you to [[take a look at|GNO-2000 Bargirl roster]]..."
<</page>><<silently>>
<<set $kate.alphaReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm going to catch this fucker."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"Attagirl. Listen, there's something I wanted you to [[take a look at|GNO-2000 Bargirl roster]]..."
<</page>><<silently>>
<<set $kate.fataleReputation += 1>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tell them I'm fine with it if they are."
<span class="greenHighlighter">Clark ''liked'' that.</span>
"Attagirl. Listen, there's something I wanted you to [[take a look at|GNO-2000 Bargirl roster]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//Am I okay?// "I...think so."
"If you need us to pull you out, we can," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[I'm fine.|GNO-1000 I can handle it]]
<<link "But what about <small>DEVILFISH?</small>" "GNO-600 What about DEVILFISH?">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But what about <small>DEVILFISH?</small> If you pull me out..."
"Maybe we'll get lucky," he shrugs. "Maybe they'll recover the footage. I don't wanna force you back in there if you can't handle it."
[[I can handle it.|GNO-1000 I can handle it]]
<span class="greyedOut">//[Abort mission]//</span> [[I...could really go home?|GNO-700 I could really go home?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I...could really go home?"
You've been so embroiled on this mission that you hadn't realised that was an option. Now Clark's offering it...thinking of getting back to your real life makes you swallow hard and blink back sudden tears.
"Yeah," <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, coming into the room and patting your shoulder. "You've done enough. We'll catch <small>DEVILFISH</small> [[some other way|GNO-800 Title card]]."
<</page>><<silently>>
<<set $kate.isUndercover to false>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-blackMiniPencil>>
<<wear-shirt-paleGreyAndWhiteButtonedUpShirtWithRolledUpSleeves>>
<<wear-hosiery-plainBlackHoldUpStockings>>
<<wear-shoes-blackPatentHeels>>
<<characterCreator-setSecurityPass>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<if $kate.agency == "cia">>
<<set $header.line1 to "''GEORGE BUSH CENTER FOR INTELLIGENCE''",
$header.line2 to "LANGLEY, VA / APRIL 2018">>
<<elseif $kate.agency == "mi6">>
<<set $header.line1 to "''VAUXHALL CROSS''",
$header.line2 to "LONDON / APRIL 2018">>
<<elseif $kate.agency == "asis">>
<<set $header.line1 to "''RG CASEY BUILDING''",
$header.line2 to "CANBERRA / APRIL 2018">>
<<elseif $kate.agency == "csis">>
<<set $header.line1 to "''NHQ BUILDING''",
$header.line2 to "OTTAWA / APRIL 2018">>
<<elseif $kate.agency == "nzsis">>
<<set $header.line1 to "''PIPITEA PLAZA''",
$header.line2 to "WELLINGTON / APRIL 2018">>
<</if>>
<</silently>>\
<a data-passage="GNO-900 But they never do">
<<if $kate.agency == "cia">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/dc.jpg"+' >'>>
<<elseif $kate.agency == "mi6">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/london.jpg"+' >'>>
<<elseif $kate.agency == "asis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/canberra.jpg"+' >'>>
<<elseif $kate.agency == "csis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/ottawa.jpg"+' >'>>
<<elseif $kate.agency == "nzsis">>\
<<= '<img src='+ $imagePath.base + "locationPhotos/agency/wellington.jpg"+' >'>>
<</if>>\
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
But they never do, at least not to your knowledge. With the Taliban resurgent in Afghanistan, and ISIL rebuilding under the leadership of Abu Bakr al-Baghdadi, it's only a matter of time until the petrodollars flowing through the Al-Ahmadi Network result in more <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>British<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> civilian casualties.
<<if hasVisited("MALAY-412000 Modelling for Max")>>\
As for you...the first thing you come back to at <<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey House<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>> is a transfer request. "<<if $kate.agency == "cia">>Gary<<elseif $kate.agency == "mi6">>Ges<<elseif $kate.agency == "asis">>Ges<<elseif $kate.agency == "csis">>Gerard<<elseif $kate.agency == "nzsis">>Gus<<else>>ERROR IN KATE.AGENCY VAR<</if>> <<Wheeler>> said he's very impressed with everything he saw of you," <<if $kate.agency == "cia">>Jack <<Colby>><<elseif $kate.agency == "mi6">>Sir James <<Greenwood>><<elseif $kate.agency == "asis">>Jim <<McKenzie>><<elseif $kate.agency == "csis">>Adam <<McKenzie>><<elseif $kate.agency == "nzsis">>Mark <<McKenzie>><<else>>ERROR IN KATE.AGENCY VAR<</if>> tells you in his office. "Wants your first overseas posting to be under him at Malaysia Station."
He's oblivious to it, but you know there's a double meaning in <<Wheeler>>'s words.
[[I'll do it.|DEBRIEF-7050 Malaysia posting][$kateSays to "yessir"]]
[[I'd...rather stay at HQ.|DEBRIEF-7050 Malaysia posting][$kateSays to "nosir"]]
<<else>>\
As for you...it's back to <<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey House<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>> and the mountain of reports. At least <<if $kate.surname != "Ryan">>Ryan<<else>>Bristow<</if>> finished //Spatial and Temporal Analysis of VBIED Incidents in Iraq, 2017-2018// while [[you were gone|DEBRIEF-15000 Where were you?]].
<</if>>\
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-600 What about DEVILFISH?")>>\
"I can handle it."
<<else>>\
"I'm fine."
<</if>>\
"You sure?"
//TK Crush is deeply unconvinced by all this important dialogue and will go back to fix it later. Advice appreciated.//
[[Yeah. I want to stay under.|]]
[[After everything I've done, it only makes sense to keep going.|GNO-1100 Kate's in]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Stopping now makes no sense."
"Okay. Good. Let's catch this asshole." TK clark is happy. Crush is not, this dialogue //suuuucks.// "Listen, there's something I wanted you to [[take a look at|GNO-2000 Bargirl roster]]..."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> directs you to open an image file on your laptop. It opens in the same app as the topless photo of you with Somchai. Clark's face doesn't betray a glimmer of a reaction; you could be showing a colleague a spreadsheet.
//[TK ARTWORK – scanned notepad page. List of stripper names under a date, FEB 18. Mostly Thai, plus one Western name Kate doesn't recognise.]//
"These girls were working on the night <small>DEVILFISH</small> came in."
[[Who's Sadie?|GNO-2100 Who's Sadie?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay...who's Sadie?"
"Don't know. Her name stops coming up in March. And she's not in the files."
[[Maybe she moved on.|GNO-2200 She maybe did][$kateSays to "maybeSheMoved"]]
[[Maybe she was fired.|GNO-2200 She maybe did][$kateSays to "maybeSheWasFired"]]
[[No one's ever mentioned her to me.|GNO-2200 She maybe did][$kateSays to "neverHeardOfHer"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "maybeSheMoved">>\
"Maybe she moved on."
"Maybe. Might not even have met <small>DEVILFISH</small> that night. Coulda been one of these other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. Still..."
<<elseif $kateSays == "maybeSheWasFired">>\
"Maybe they fired her."
"Maybe. Might not even have met <small>DEVILFISH</small> that night. Coulda been one of these other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. Still..."
<<elseif $kateSays == "neverHeardOfHer">>\
"No one's ever mentioned her to me."
"She may not even have met <small>DEVILFISH</small> that night. Coulda been one of these other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. Still..."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Might not be a coincidence.|GNO-2300 Can you find her?][$kateSays to "noCoincidence"]]
[[Strange she goes missing right after.|GNO-2300 Can you find her?][$kateSays to "strangeSheGoesMissing"]]
[[Be good to track her down and find out.|GNO-2300 Can you find her?][$kateSays to "trackHerDown"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "noCoincidence">>\
"Might not be a coincidence."
<<elseif $kateSays == "strangeSheGoesMissing">>\
"Strange she goes missing right after.""
<<elseif $kateSays == "trackHerDown">>\
"Be good to track her down and find out."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Right. So –" he's interrupted by the cheery ringtone of your '$kate.cover.firstName $kate.cover.surname' phone. The local <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>mobile<</if>> number on screen isn't one you recognise.
//[[Take a moment to get back into character.|GNO-2310 Back in character]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// You're in a totally different headspace from '$kate.cover.firstName $kate.cover.surname'. You shut your eyes and try to think yourself back into character, fast.
//Heyyy, it's $kate.cover.firstName. How's it going. Just chilling. Yeah, yeah, no problem.//
It rings again.
<span class="greyedOut">//[Answer it]//</span> [[Hell-oh!|GNO-2400 Who dat]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hell-oh!" Your '$kate.cover.firstName $kate.cover.surname' voice is different from the deep, serious work tone you slipped back into with Clark and Ian. Just a little higher and less assertive; girlier.
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks away at some interesting spot on the wall, trying not to distract you.
"Hey, it's <<Amanda>>."
<<link "Hey <<Amanda>>, how's it going?" "GNO-2410 How's it going">><</link>>
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Heyyy <<Amanda>>, how's it going." You say her name for <span class="imageLink"><<link "Clark's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> benefit. You feel a little silly being in character in front of him, even though it's your job.
"Pretty good. Just chilling out. You?"
[[Same same.|GNO-2420 Same same]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Same same." That's one of those Thai phrases everyone picks up here. //Same same, but different.//
"Coool. You still down for <<Zo>>'s thing on Thursday?"
[[Think so, what's the plan?|GNO-2500 Party planner]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, think so." That'll depend on <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>...but you can't worry about that right now. "What's the plan?"
"Gonna meet up and get our nails done, then go get ready at my place. It's kinda small but we'll all fit. Then pre-drinks at a skybar, and its Ladies Night at this club we know."
[[Sounds great!|GNO-2600 Sounds greta]]
[[I'm kinda broke though.|GNO-2700 Kinda broke]]
[[I don't have much to wear to a club.|GNO-2800 I don't have a thing to wear]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("GNO-2700 Kinda broke") or hasVisited("GNO-2800 I don't have a thing to wear")>>Okay, sounds<<else>>Sounds<</if>> great!"
"Cool." She gives you some details, and you end the call.
<span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> uses his eyebrows for question marks.
[[The bargirls are starting to accept me.|GNO-2900 Kate briefs Clark][$kateSays to "acceptance"]]
[[It's that birthday party from my report.|GNO-2900 Kate briefs Clark][$kateSays to "thatParty"]]
<<link "Maybe a chance to learn more about <<Sadie>>..." "GNO-2900 Kate briefs Clark">><<set $kateSays to "sadie">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Hm, I'm kinda broke though."
"Don't worry," she says. "The nail place is cheap, you're gonna fall in love with it. And we'll get guys to buy us drinks when we're out."
[[Okay, sounds great!|GNO-2600 Sounds greta]]
<<if not hasVisited("GNO-2800 I don't have a thing to wear")>>\
[[I don't have much to wear to a club.|GNO-2800 I don't have a thing to wear]]
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is it dressy? I'm living out of a backpack."
"You can borrow something of mine. Just bring makeup."
[[Okay, sounds great!|GNO-2600 Sounds greta]]
<<if not hasVisited("GNO-2700 Kinda broke")>>\
[[I'm kinda broke.|GNO-2700 Kinda broke]]
<</if>>\
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "acceptance">>\
"The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are starting to accept me. I'm seeing them outside work on Thursday."
"Okay, great. I'll mention that to <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>, it'll help. You need anything special for it?"
<<elseif $kateSays == "thatParty">>\
"That birthday party I got invited to, <<Zoe>>'s party. It's Thursday."
"Oh yeah, cool. I'll mention that to <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>, it'll help. You need anything special for it?"
<<elseif $kateSays == "sadie">>\
"Maybe a chance to learn more about <<Sadie>>. I'm going out with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> on Thursday.""
"Right, right, the party. I'll remind <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div> you're doing that, it'll help. You need anything special for it?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Sounds like it's just drinks.|GNO-2910 Just drinks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sounds like it's just drinks."
"I can issue you <div class="tooltip">benzedrine<span class="tooltiptext">prescription stimulant; causes high alertness. Sometimes used by spies to increase alcohol tolerance</span></div>?"
[[Okay, just one.|GNO-2920 Kate requests benzedrine]]
[[I'll be fine.|GNO-2930 Kate rejects benzedrine]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay. Just one."
"'Kay. I'm gonna go talk to <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>. You finish the question list, and I want you to stay on top of your emails all day, okay? Fast and professional when they have a follow-up. Let's remind 'em you're the golden girl."
[[Got it.|GNO-2940 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll be fine."
"'Kay. I'm gonna go talk to <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>. You finish their question list, and I want you to stay on top of your emails all day, okay? Fast and professional when they have a follow-up. Let's remind 'em you're the golden girl."
[[Got it.|GNO-2940 Got it]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it." You get back to the question list; he heads off to [[make the call to Langley|GNO-2950 The wait]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Finishing the list doesn't take long. You send it off, and wait for Clark to come back.
There's 30 days of footage on the server, from more than a dozen different cameras. Even though you probably didn't get video of <small>DEVILFISH,</small> this is a mountain of intel on the club's normal operations.
//[[Find out what happens in the office on your nights off.|GNO-2950 Watching Roxy get fucked]]
[[Find the footage of you with Connor.|GNO-3040 Autovoyeuristic]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//I wonder...//you navigate to the office camera, and pick one of the nights you //weren't// working.
The footage starts a little before 5 <small>P.M.,</small> when Connor switches on the CCTV system. You fast-forward through it; the room is empty for long periods.
Occasionally, Connor, Tid or Lu come in to make a phone call, use the computer, or just chill out on the couch. There's no sound, so you can't discern the meaning behind any of this activity.
Fast-forward – there's nine hours of this. The fish dart crazily around in their tank at [[30x speed|GNO-2960 Enter Roxy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
At 12.42 <small>A.M.,</small> Roxy enters, followed by Connor.
They go straight to the couch. Connor peels his shorts down to his thighs, tugs lazily on his half-erect dick. Roxy gets down on her knees between his legs and starts sucking him off.
//[[Okay, its not just me.|GNO-2970 Not just me]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Okay, good, it's not just me.// If <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> don't know that, you need to tell them. It makes a big difference.
The on-screen blowjob goes on, Roxy's blonde braids steadily rising and falling in her boss's lap. Sprawled back with his hands spread along the backrest, Connor looks lost in thought. From time to time he reaches down to squeeze her <<if $kate.braSize != "large">>big <</if>>tits.
Roxy takes a break to pass him his phone, then goes back to sucking while he taps and swipes on the screen. The footage isn't clear enough to see what app he's using.
//[[The cameras aren't a substitute for eyeballs.|GNO-2970 HUMINT rules]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
So...the cameras aren't a replacement for good old-fashioned <div class="tooltip">HUMINT<span class="tooltiptext">HUMan INTelligence; intel gathered by interpersonal contact, as opposed to technical means</span></div>, not completely. They're just not high-def enough.
On screen, Connor gets more into the blowjob; setting aside his phone, taking hold of Roxy's braids, tugging her head rhythmically up and down on his dick while he stares up at the ceiling.
It's not like you care, but he seems less...into it with her. Less passionate, maybe? //That's probably a good thing in terms of my position and influence.//
After a while, he tugs her up by the braids. Roxy crawls up to a squat, pressing her <<if $kate.braSize != "large">>big <</if>>breasts into his lap, then squashing them on his dick, [[over and over|GNO-2990 Money shot]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Connor gazes down at her, just sitting back and watching her get him off using her hands and her <<if $kate.braSize != "large">>big <</if>>tits.
In black and white, on a security camera, you can't actually //see// him come. But you watch her stand, and mop her chest with baby wipes while he counts out her pay.
//Okay. It's not just me. Good.//
What's not good is that there's similar footage of you. You didn't know there'd be //cameras// when you volunteered for this. Or that the footage would be permanently archived by another <<if $kate.agency == "cia">>department<<else>>agency<</if>>.
//[[Find the footage of you and Connor.|GNO-3000 Enter Kate]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch yourself as Clark, and the <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div> analysts, and god knows who at <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div> either has or soon will. Following Connor into the office, half naked.
He points to the couch. //Oh god, I remember–// on screen you peel off your <<knickers>> and strut over to the couch.
Connor does some stuff at the desk while you wait on the couch. Naked in heels, your back arched just so, your body artfully positioned in the most [[distracting and tempting|GNO-3010 Kate's sex tape]] way possible.
<</page>><<silently>>
<<emote-cheeks-blush-fading>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// He climbs on top of you, shorts pulled down. His naked bum bobs up and down, gently a couple of times, then fast and steady.
You stare at the screen, watching yourself being fucked on silent black and white security footage. //At least you can't see my–//
Connor's head drops to your chest, revealing your face to the [[camera|GNO-3020 Money shot]], your pretty features contorted as he licks and sucks your nipples.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "You're a little turned on.">>
<</first>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Watching it reminds you how good it felt in the moment. His cock in your pussy, your nipples in his mouth. //Fuck.//
On screen Connor lifts your wrists over your head, pinning them there while he fucks you hard. You curl your legs around his waist when you come.
He pulls out soon after that, squirting his load out on your naked belly.
Then you get up, put your <<knickers>> back on, and take some cash.
//[[Jesus.|GNO-3030 JFC]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Jesus. Fucking. Christ. I got treated like a //whore// in that video. What the hell are <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> going to say.//
You quit the video app as you hear Clark in the hall outside, [[talking on the phone|GNO-3130 Clark returns]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You've got to see it. You navigate to the office footage from Friday night.
It starts around 4.30 <small>P.M.,</small> when Connor switches on the CCTV system. You fast-forward through it; the room is empty for long periods.
Occasionally, Connor, Tid or Lu come in; a little later, Shorty Skinner, the ex-boxer who refereed <<Amanda>> and <<Zoe>>'s wrestling match, has a beer and a chat with Connor. There's no sound, so you can't discern the meaning behind any of this activity.
Fast-forward – there's nine hours of this. The fish dart crazily around in their tank at [[30x speed|GNO-3050 Enter Kate]].
<</page>><<silently>>
<<emote-cheeks-blush-fading>>
<</silently>>\
<<header>>\
<<page>>\
You fast-forward all the way to 1.35 <small>A.M.</small> That's when the door opens, and you see yourself as Clark, and the <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div> analysts, and god knows who at <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div> either has or soon will. Following Connor into the office, half naked.
He points to the couch. //Oh god, I remember–// on screen you peel off your <<knickers>> and strut over to the couch.
Connor does some stuff at the desk while you wait on the couch. Naked in heels, your back arched just so, your body artfully positioned in the most [[distracting and tempting|GNO-3060 Kate's sex tape]] way possible.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// He climbs on top of you, shorts pulled down. His naked bum bobs up and down, gently a couple of times, then fast and steady.
You stare at the screen, watching yourself being fucked on silent black and white security footage. //At least you can't see my–//
Connor's head drops to your chest, revealing your face to the [[camera|GNO-3070 Money shot]], your pretty features contorted as he sucks on your nipples.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "You're a little turned on.">>
<</first>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Watching it reminds you how good it felt in the moment. His cock in your pussy, your nipples in his mouth. //Fuck.//
On screen Connor lifts your wrists over your head, pinning them there while he fucks you hard. You curl your legs around his waist when you come.
He pulls out soon after that, squirting his load out on your naked belly.
Then you get up, put your <<knickers>> back on, and take some cash.
//[[Jesus.|GNO-3080 JFC]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Jesus. Fucking. Christ. I got treated like a //whore// in that video. What the hell are <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> going to say.//
//[[Find out what happens on your nights off.|GNO-3090 Watching Roxy get fucked]]//
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You pull up the footage from a different night, and fast-forward to the end of the shift. At 12.42 <small>A.M.,</small> Roxy enters, followed by Connor.
They go straight to the couch. Connor peels his shorts down to his thighs, tugs lazily on his half-erect dick. Roxy gets down on her knees between his legs and starts sucking him off.
//[[Okay, it's not just me.|GNO-3100 Not just me]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Okay, it's not just me.// That makes this whole thing a bit better.
The on-screen blowjob goes on, Roxy's blonde braids steadily rising and falling in her boss's lap. Sprawled back with his hands spread along the backrest, Connor looks lost in thought. From time to time he reaches down to squeeze her <<if $kate.braSize != "large">>big <</if>>tits.
Roxy takes a break to pass him his phone, then goes back to sucking while he taps and swipes on the screen. The footage isn't clear enough to see what app he's using.
//[[The cameras aren't a substitute for eyeballs.|GNO-3110 HUMINT rules]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
So...the cameras aren't a replacement for good old-fashioned <div class="tooltip">HUMINT<span class="tooltiptext">HUMan INTelligence; intel gathered by interpersonal contact, as opposed to technical means</span></div>, not completely. They're just not high-def enough.
On screen, Connor gets more into the blowjob; setting aside his phone, taking hold of Roxy's braids, tugging her head rhythmically up and down on his dick while he stares up at the ceiling.
It's not like you care, but he seems less...into it with her. Less passionate, maybe? //That's probably a good thing in terms of my position and influence.//
After a while, he tugs her up by the braids. Roxy crawls up to a squat, pressing her <<if $kate.braSize != "large">>big <</if>>breasts into his lap, then squashing them on his dick, [[over and over|GNO-3120 Money shot]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Connor gazes down at her, just sitting back and watching her get him off using her hands and her <<if $kate.braSize != "large">>big <</if>>tits.
In black and white, on a security camera, you can't actually //see// him come. But you watch her stand, and mop her chest with baby wipes while he counts out her pay.
//Okay. This is bad but...it's not just me.//
You quit the video app as you hear Clark in the hall outside, [[talking on the phone|GNO-3130 Clark returns]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Will do. Thanks." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> kills the call, and looks at you. "Question list?"
[[Done. What'd they say?|GNO-3140 Done]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Done. So...what'd they say?"
"No decision yet, they're gonna have a meeting." <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Look, they're worried about your welfare, whether you're...getting in over your head. I vouched for you, told 'em you got our full confidence. Which you do, by the way."
[[Thanks.|GNO-3150 Thanks]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks."
"Listen...I mighta come on a little strong earlier. Whatever happens, I think you're a real talent, kid. And no one's closer to drawing a bead on <small>DEVILFISH</small> right now than you. That's what I told <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>, anyway, let's [[wait and see|GNO-4000 Title card]]."
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("WELBANG-224000 Plunge pool in underwear")>>
<<removeTrousers>>
<<wear-bra-blackUnderArmourSportsBra>>
<<removeTop>>
<<avatar-wetBody>>
<</if>>
<</silently>>\
<a data-passage="GNO-4100 Plunge pool">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/safehouse/plungePoolLaterTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You spend the rest of the day hunched over your laptop, or speaking on the <span class="imageLink"><<link "satellite phone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with various analysts <<if $kate.agency == "cia">>back in the states<<else>>at Langley<</if>>.
It's embarrassing talking on the phone with colleagues who've seen your sex tape, but they're all nice to you and their questions are all about operational details.
Later that evening, you're <<if hasVisited("WELBANG-224000 Plunge pool in underwear")>>relaxing in the plunge pool<<else>>dangling your feet in the plunge pool<</if>>, small talking with <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, when Clark comes out from the main villa, <span class="imageLink"><<link "sat phone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in hand.
"$kate.cover.firstName," he says. "[[Call for you|GNO-4200 Who is it]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-224000 Plunge pool in underwear")>>\
You rise up out of the pool, dripping wet. You make a move for your towel, but <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beckons you impatiently.
<<else>>\
You lift your feet from the pool. They're dripping wet and you make a move for your towel, but <span class="imageLink"><<link "Clark">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/clark2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beckons you impatiently.
<</if>>\
<<image "/locationPhotos/thailand/safehouse/diningRoomAtNight.jpg" 190 1000 590 0>>\
"Who is it?" you ask, walking wet footprints in all over the teakwood floor.
"<div class="tooltip">DCTC<span class="tooltiptext">Director, Counterterrorism Mission Center</span></div>," he murmurs, passing you the [[sat phone|GNO-4300 Prince of Darkness on line 2]]. "Good luck."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("BBJ-220 How senior?")>>\
//Mike Dodaro <<if $kate.agency != "cia">>from CIA <</if>>is on sat phone. The Prince of Darkness wants to speak with me personally. Ohhh fuck.//
<<else>>\
//Oh shit.// <<if $kate.agency == "cia">>Mike Dodaro – Director of the Counterterrorism Mission Center – is a legendary figure in the Agency, better known by his nickname //the Prince of Darkness.//
You've never seen him in person, and until right now you'd have assumed he didn't know you exist.<<else>>Mike Dodaro – Director of the Counterterrorism Mission Center – is a CIA greybeard, best known in the intelligence community by his nickname, //the Prince of Darkness.//
Few things excite your own bosses as much as high-level attention from the Americans. If they knew you were about to speak personally with the Prince of Darkness, they'd be losing their minds back at <<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey House<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>>. Maybe not in a good way, if they knew what had prompted the call.
<</if>>\
<</if>>\
Your mouth feels dry. Heading deeper into the safehouse so your voice won't carry outside, you swallow and clear your throat before lifting the sat phone to your ear.
[[Uh, hello?|GNO-4400 Yessir][$kateSays to "hello"]]
[[Yessir?|GNO-4400 Yessir][$kateSays to "yessir"]]
<<link "This is $kate.surname." "GNO-4400 Yessir">><<set $kateSays to "thisIsMacer">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hello">>\
<<emote-brows-raised>>\
"Uh, hello?"
<<elseif $kateSays == "yessir">>\
"Yessir?"
<<elseif $kateSays == "thisIsMacer">>\
"This is $kate.surname."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"$kate.firstName? This is Michael Dodaro." The voice on the line is husky, soft-spoken, authoritative; slightly distorted on the secure line. "I wanted to speak with you personally before this goes any further."
[[Yes, sir?|GNO-4500 Send, over][$kateSays to "yessir"]]
[[Go ahead, sir.|GNO-4500 Send, over][$kateSays to "goAheadSir"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yessir">>\
"Yessir?"
<<elseif $kateSays == "goAheadSir">>\
"Go ahead, sir."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kate.agency != "cia">>\
"Firstly, I wanna say thank you on behalf of <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>. We always appreciate working with <<if $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>, especially when they loan us a talented officer. We've been impressed with you from the start: your contact reports are incisive, and I'm told you handled the black bag job like a pro."
<<else>>\
"Firstly, I wanna say thank you on behalf of <div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>. We've been impressed with you from the start: your contact reports are incisive, and I'm told you handled the black bag job like a pro."
<</if>>\
You can't tell if this is genuine praise, or flattery designed to soften a blow. Coming up in a male dominated work environment has taught you to respond to this kind of talk with cool, unemotional detachment.
[[Thank you, sir.|GNO-4600 Just doing my job, sir]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thank you, sir."
"Mm-hm. Now – about this footage." //Here it comes.// "Those videos sparked a...lively debate here. I'd say my team's reached a pretty strong consensus, but I wanna check a couple things before I make a decision.
"Clark says this was an operational decision you yourself made in the field, not something you were directed to do – is that right? You weren't under pressure from him<<if $kate.agency =="cia">>?<<else>>, or your bosses back home?<</if>>"
[[Yes sir, Clark's right.|GNO-4610 Yessir]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yessir, Clark's right."
"Mm-hm. Well look, I reminded my guys it was a snap decision you made in the field, you didn't have the luxury of sitting around debating it like they did. You didn't do anything wrong, and no one here's second guessing you, okay?
"Our concerns are about keeping you in this environment. We assess it's <div class="tooltip">probable<span class="tooltiptext">in US intelligence: a 55-80% chance</span></div> if you stay in place the, ah, sexual demands on you will escalate. Is that also your assessment?"
[[Yes sir.|GNO-4710 Yessir]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yessir." That's kind of already happened, with Kriangsak. Now does not seem like the right time to bring that up.
"Alright, so you're fully aware of that, good. And I'm told you've requested permission to continue anyway? You've come this far, you want to see it through?"
[[Yes sir.|GNO-4720 Yessir]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You go to answer, but your throat feels suddenly thick and the words don't come. You have to swallow again before you can speak. "Yessir," you manage.
"Alright, outstanding, $kate.firstName, we appreciate that. Our concerns obviously are for your welfare, but <<if $kate.agency == "cia">>we consulted with your Agency psychologist at length today,<<else>><<if $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> cleared us to speak directly with your agency psychologist today,<</if>> and his assessment is that you can continue.
"Based on that, and of course the fact you're volunteering, I'm [[greenlighting a mission extension|GNO-4730 Glowing report]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">CTC<span class="tooltiptext">CIA's Counterterrorism Mission Center</span></div>'s aware this means you'll need to continue the, ah, intimate relationship with your manager at the club, and so I'm ordering you to do that, to the minimum extent required.
"We discussed escalation. CTC is also pre-authorising you to engage in other such relationships if necessary, again to the minimum extent required. No prior approval needed – this'll be your call in the field, but we'll back it if and when it happens. Understood?"
[[Uh...yessir.|GNO-4740 Uh yessir]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...yessir." //Was I...just ordered to <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage. Frowned upon by <small>FIVE EYES</small>...or so you've been told.</span></div> myself?//
"$kate.firstName, this is important, I've discussed it with Clark, I wanna be crystal clear with you. This only goes on as long you say it goes on. If it gets too much for you, just say, and Clark will make sure you're pulled out ASAP, okay? You've already done a lot; nobody's gonna think less of you if you need to come out. That clear?"
[[Yes sir.|GNO-4750 Crystal][$kateSays to "Yessir."]]
[[Crystal.|GNO-4750 Crystal][$kateSays to "Crystal."]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Good. And one last thing, $kate.firstName: you're not the first woman officer in a position like this, you won't be the last. Anyone gives you a problem, tell me and I'll come down on them like a fucking hammer. We appreciate you going back under, you're obviously a tough, smart young woman; <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> has your back on this, okay? Put Clark back on, please."
You hand back the sat phone, and go outside to think. On the one hand, //The Prince of Darkness just told me I'm a first-rate operator.// On the other...//I think I just officially became a CTC honeypot.//
This...will definitely take some time to [[process|GNO-5000 Title card]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yessir, I...concur with that." It's already kind of happened, with Kriangsak.
"Alright, so you're fully aware of that. So, being aware of that, we're not going to order you back in. <small>DEVILFISH</small> is a priority target, but..."
//[[The mission's being scrubbed.|GNO-4730 Scrubbed]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//It's being scrubbed,// you think, but Dodaro keeps talking. "..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...yessir." //Similar relationships? Did they find out about Kriangsak? Or are they just expecting...//
"We'll get you out as soon as we can, you have my word on that. In the meantime, you're tip of the spear on this. Do whatever it takes to keep that job, understood?"
[[Understood, sir.|GNO-4800 Understood]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Understood, sir." //Fuuuck. The Prince of Darkness just //ordered// me to honeypot myself.//
"Good. And $kate.firstName: you're not the first woman officer in a position like this, you won't be the last. Anybody on our side gives you trouble, tell me and I'll come down on them like a fucking hammer. You're doing the right thing, CTC has your back on this, okay? Put Clark back on, please."
You give Clark the sat phone, and head back outside to think. On the one hand, //The Prince of Darkness just told me I'm a first-rate operator.// On the other...//I think I just officially became a CIA honeypot.//
This is definitely going to take some time to [[process|GNO-5000 Title card]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-top-blackVestWithSpaghettiStraps>>
<<wear-trousers-oliveGreenCapriCargoPants>>
<</silently>>\
<a data-passage="GNO-5100 Commander Perry">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/safehouse/netMorningTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Early next morning, you speak on the <span class="imageLink"><<link "satellite phone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with a Commander <<if $kate.surname == "Perry" or $kate.cover.surname == "Perry">>Holland<<else>>Perry<</if>>, a US Navy Medical Corps doctor with a southern belle accent.
She confirms the age, height and weight listed in your <<if $kate.agency == "cia">>Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> medical file are correct, then explains the battery of meds that she's been ordered to prescribe you
Truvada is 100% effective at preventing HIV; various other broad-spectrum antivirals, antibiotics, vitamins and antibodies will boost your natural resistance to other STDs and STIs.
"Are y'on birth control?" she asks.
[[Yes.|GNO-5200 Kate is on birth control]]
[[No.|GNO-5300 Kate is not on birth control]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes," you confirm.
"Good. I'll release these other meds immediately. I want you on these ASAP, okay? Take a loading dose on day one, two of each pill. Then one of each pill daily until your mission's complete."
[[Got it.|GNO-5700 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No."
"Any side effects from birth control?"
[[No.|GNO-5500 No side effects]]
[[I get headaches.|GNO-5400 Kate gets headaches from birth control]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I get headaches."
"I'll add Tylenol to the script," she says. "Take it with the birth control, same time every day, that'll help. I want you on these ASAP, okay? Take a loading dose on day one, two of each pill. Then one of each pill daily until your mission's complete."
[[Got it.|GNO-5700 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No."
"Good, I'll add that to the script. I want you on these as soon as possible, okay? Take a loading dose as soon as you get them – two of each pill. Then one of each pill daily until your mission's complete."
[[Got it.|GNO-5700 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, thanks."
"I want you on these as soon as possible, okay? Take a loading dose as soon as you get them – two of each pill. Then one of each pill daily until your mission's complete."
[[Got it.|GNO-5700 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it." //The <<if $kate.agency == "cia">>Navy<<else>>US Navy<</if>>'s putting me on <<if hasVisited("GNO-5300 Kate is not on birth control")>>birth control<<else>>safe sex meds<</if>>.// If the <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage. Frowned upon by <<if $kate.agency == "cia">>the <</if>><<= $kate.agency.toUpperCase()>>...at least officially.</span></div> thing didn't feel official yesterday...it does right now.
"Report any side effects to your superiors. I'm going to want bloods from you if this goes on for more than a couple months, I'll organise with Langley on that, okay? Whatever it is they got you doing...[[good luck|GNO-5800 Ian says goodbye]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You give the <span class="imageLink"><<link "sat phone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> back to Clark – he's been glued to it the past couple of days – and get ready to go back to the hostel.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes to find you while you're packing your things. "Hey," he says, "need a hand with anything?"
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
[[Naw, I'm good.|GNO-5900 I'm good]]
<<else>>\
[[Nah, I'm good.|GNO-5900 I'm good]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<<if $kate.agency == "cia" or $kate.agency == "csis">>Naw<<else>>Nah<</if>>, I'm good," you reply, stuffing a bra into your bag.
"Good. Just checking you're okay." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s tone makes you look up. His expression is inscrutable.
[[I'm fine. You okay?|GNO-5910 I'm fine, u ok?]]
[[You look worried.|GNO-5920 You look worried]]
[[Why wouldn't I be?|GNO-5930 Why wouldn't I be]]
[[What's the matter?|GNO-5940 What's up]]
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine," you tell him. "You okay?"
"I'm fine." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, a little self-consciously. "Just...remember you're not alone out here. You need me to pull you out of something...you know how to call me."
You follow his gaze to the emergency transmitter ring he gave you, sitting on your bedside cabinet. "Whatever it is," he promises. "I'll be there."
[[Thanks, Ian.|GNO-7000 Thanks Ian]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You look worried."
"I'm fine." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, a little self-consciously. "Just...remember you're not alone out here. You need me to pull you out of something...you know how to call me."
You follow his gaze to the emergency transmitter ring he gave you, sitting on your bedside cabinet. "Whatever it is," he promises. "I'll be there."
[[Thanks, Ian.|GNO-7000 Thanks Ian]]
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-brows-rogerMoore>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why wouldn't I be?"
"No reason." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, a little self-consciously. "Just...remember you're not alone out here. You need me to pull you out of something...you know how to call me."
You follow his gaze to the emergency transmitter ring he gave you, sitting on your bedside cabinet. "Whatever it is," he promises. "I'll be there."
[[Alright, thanks.|GNO-7000 Thanks Ian]]
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You stop packing and give him your full attention. "What's the matter?"
"Nothing." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, a little self-consciously. "Just...remember you're not alone out here. You need me to pull you out of something...you know how to call me."
You follow his gaze to the emergency transmitter ring he gave you, sitting on your bedside cabinet. "Whatever it is," he promises. "I'll be there."
[[Thanks, Ian.|GNO-7000 Thanks Ian]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine, don't worry."
"Remember I've got your back," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You need me to pull you out of something, just use the ring. I'll get to you."
[[Thanks, Ian.|GNO-7000 Thanks Ian]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-5930 Why wouldn't I be")>>\
<<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
"Alright. Thanks."
<<else>>\
<<silently>>
<<emote-brows-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
"Thanks, Ian."
<</if>>\
"Don't mention it."
He slips away, leaving you to [[pack your stuff|GNO-8000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-blackUnderArmourSportsKnickers>>
<<wear-bra-blackUnderArmourSportsBra>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-yellowAndBlackCottonFlaredVest>>
<<wear-shoes-greyToeThongFlipFlops>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="GNO-8100 Back at the hostel">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Back at the hostel, you unpack your things, and feed a washing machine three <div class="tooltip">gold-and-silver ฿10 coins<span class="tooltiptext">฿30 = <<if $kate.agency == "cia">>90c<<elseif $kate.agency == "mi6">>60p<<elseif $kate.agency == "asis">>$1.20<<elseif $kate.agency == "csis">>$1.20<<elseif $kate.agency == "nzsis">>$1.20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> to make it do your laundry.
You had a simple cover story prepped to explain your two-night absence. But nobody asks where you were.
You peg up your shorts, t-shirts and underwear [[on your balcony|GNO-8200 Riverside bar]], a little display of denim, cotton and lycra that'll dry out fast in the heat.
<</page>><<silently>>
<<set $header.line1 to "''RIVERSIDE BAR''",
$header.line2 to "BANGLAMPHU NEIGHBOURHOOD / MAY 2018">>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-bigBlackSunglasses>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
Your hostel buddies Vish and Jaya are flying home to India tomorrow. You, Danny and Shira wander with them down to a little bar on the river, and enjoy a long chat in the afternoon sun.
<<image "/locationPhotos/thailand/bangkok/jacksBar.jpg" 100 1000 550 0>>\
Sipping a fresh cold Singha, watching the barges and the river taxis chug by, chatting with ordinary young people about travel and the future; it feels like the [[first time you've really relaxed|GNO-8300 Three lives]] in days.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The beer tastes so good. The hot sun washing over your skin feels amazing. The conversation's so lighthearted and easy.
After the stress and deadly seriousness of the weekend, going for a normal drink with some young, educated friends feels almost magical. Like being back at <<university>>.
You stay out with them til late, grab some street food, and roll back to the hostel [[mildly and pleasantly drunk|GNO-9000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<wear-top-whiteRipleyVest>>
<<emote-eyes-squint>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="GNO-9100 Wrong number">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/brolliesNextDayTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're woken early by a phone call. "Sorry, wrong number," an unknown woman says, and hangs up. //Click.//
That's a signal asking you to contact Ian, so you [[open Signal on your phone|GNO-9200 Package for you]] to see what's up.
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">08:02</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Hi.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
how's it going?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Could be better.<span class="tooltiptext">Replying positively is a signal that you've been captured.</span></div>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
👌🏼 package for you. <div class="tooltip">blue sky<span class="tooltiptext">Location <small>BLUE SKY</small> (Wat Saket)</span></div> 1500 okay?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
See you there.
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|GNO-9210 Kick off the sheets]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You kick off the bedsheets, and start planning how to get to location <small>BLUE SKY.</small>
The Combined Task Force assesses it <div class="tooltip">very unlikely<span class="tooltiptext">in US intelligence: a 5-20% chance</span></div> that you're under surveillance by the club or its <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div> connections. Surveillance is manpower-intensive, and as far as anyone knows you're just some random backpacking barmaid. They probably don't tail Roxy around the city.
But a small chance isn't no chance, so you can't just go straight from the hostel to Ian. You'll need to carry out a [[cleaning run|GNO-9220 What is a cleaning run]] first.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">Cleaning runs<span class="tooltiptext">long, complex journeys designed to disrupt and confuse enemy surveillance</span></div> are a normal part of work for an intelligence officer deployed overseas. You designed several as part of your mission prep.
Whichever route you pick today will involve a //lot// of walking. You grab your yoga mat to do some stretches.
//[[Do it in your room.|GNO-9230 Room yoga]]
[[Do it on the balcony.|GNO-9240 Balcony yoga]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You roll out your yoga mat on the floorboards in front of the mirror, and get ready to go into [[Mountain Pose|GNO-9250 Mountain Pose]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/baanTepaBalcony.jpg" 50 1000 500 0>>\
You pad out onto the balcony. It's already blazing hot, and it's barely 8 <small>A.M.</small>
Rolling out your yoga mat on the creaky boards, you get ready to go into [[Mountain Pose|GNO-9250 Mountain Pose]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
Breathing and stretching, you flow gracefully through your yoga practice, limbering up for the day ahead.
Hollywood spies make breaking surveillance look [[quick and easy|GNO-9260 IRL]]. You spot the tail in the rear-view mirror, six cars back, and screech off through a <<if $kate.agency == "cia">>stop<<else>>red<</if>> light, too fast to follow.
Or you get on a skytrain, then jump off as the doors close, sprinting down the platform past the angry thug you trapped inside.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Real intelligence officers rarely pull stunts like that. Even if it works, you just all but announced you're an enemy agent, and your problems are about to get a lot worse than routine surveillance.
Real-life cleaning runs often take hours. They're meticulously planned to pass through a chain of natural choke-points and complex junctions, each one forcing surveillance to take risks and make mistakes. The trick is to make them feel like they lost you, not the other way around.
//[[Get into Cat-Camel Pose.|GNO-9270 Cat-camel]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You move gracefully onto your hands and knees, curving then arching your back in time with your slow, deep breathing.
<<if hasVisited("GNO-9240 Balcony yoga")>>The sounds and smells of breakfast drift up from downstairs; a chirpy bird lands nearby and bursts into song.<<else>>The sounds and smells of breakfast drift up from the courtyard outside; a chirpy bird sings loudly outside your window.<</if>>
//[[Complete your yoga practice.|GNO-9280 Baby I'm ready to go]]//
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>
<<wear-bra-nudeStrapless>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<<wear-top-brownVestWithSpaghettiStraps>>
<</silently>>\
<<header>>\
<<page>>\
By 10 <small>A.M.,</small> you're showered, breakfasted and ready to go.
One of the reasons you chose this hostel is that it's tucked away in a complex little warren of <div class="tooltip">troks<span class="tooltiptext">alleys</span></div>.
It's hard to follow someone down an alley without being seen, so pros prefer to [[watch the exits|GNO-9290 Route planner]] – the 'choke-points' you have to pass through – instead.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The problem you've presented – before you even start – is that there are plenty of exits to watch. You're going south today, which gives you three main options:
<<image "/locationPhotos/thailand/hostel/cleaningRunWarrenRoutes.jpg" 0 1000 368 0>>\
You normally leave using Route 1, taking you straight out to the main road (Soi Sam Sen). This is the way you left and returned in Kriangsak's Rolls Royce. If one choke-point's being watched, it'll be this one.
[[Route 2|GNO-9300 Trok warren title card][$route to 2]] takes you west down a long tree-lined footpath, past a school. Then you cross the <div class="tooltip">khlong<span class="tooltiptext">canal</span></div> using a little bridge. <<if hasVisited("WELBANG-231000 Khlongside run")>>(This is the khlong you ran along on day 3.)<</if>>
[[Route 3|GNO-9300 Trok warren title card][$route to 3]] cuts down to a path along the <div class="tooltip">khlong<span class="tooltiptext">canal</span></div> itself. You follow it east under the big Soi Sam Sen bridge, then cross over a smaller bridge a few hundred metres later.
<</page>><<silently>>
<<set $header.line1 to "''TROK WARREN''">>
<</silently>>\
<<if $route == 2>>\
<a data-passage="GNO-10400 Route 2">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/trokWarrenTitleCard.jpg"+' >'>>
</a>
<<else>>\
<a data-passage="GNO-10600 Route 3">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/trokWarrenTitleCard.jpg"+' >'>>
</a>
<</if>>\<<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-10000 Cleaning run">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/cleaningRun4.jpg"+' >'>>
</a><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-skirt-mustardMaxiSkirt>>
<<wear-top-whiteTShirtWithRuffledSleevesKnottedAtWaist>>
<<set $header.line1 to "''CLEANING RUN #4''">>
<</silently>>\
<<header>>\
<<page>>\
You grab breakfast, and get ready for a long day of walking.
The team assesses it <div class="tooltip">very unlikely<span class="tooltiptext">in US intelligence: a 5-20% chance</span></div> that you're under surveillance by the club or it's <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div> connections. But a small chance isn't zero chance, so you can't just go straight from the hostel to Ian. You need to carry out a [[cleaning run|GNO-10100 What is a cleaning run]] first.
It's possible you're under surveillance now, so you can't just go straight to the meeting. You need to do a <div class="tooltip">cleaning run<span class="tooltiptext">a complex journey designed to shake off surveillance</span></div> first.
//They make it look quick and easy in the movies.// You picture yourself dashing suddenly across a busy street, sliding over the <<if $kate.agency == "cia" or $kate.agency == "csis">>hoods<<else>>bonnets<</if>> of honking cars. Or [[jumping off a skytrain as the doors close|GNO-10100 IRL]], and sprinting down the platform past a thug pounding angrily on the door.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ditching surveillance is quick and easy in the movies. If you were a Hollywood heroine, you might dash suddenly into traffic, sliding over the <<if $kate.agency == "cia" or $kate.agency == "csis">>hoods<<else>>bonnets<</if>> of honking cars. Or [[jump off a skytrain as the doors close|GNO-10100 IRL]], and sprint down the platform past a thug pounding angrily on the door.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Real intelligence officers rarely pull stunts like that. Even if you do shake your tail in that moment...you just confirmed you're not the normal innocent civilian you're posing as, and your problems are about to get much worse than a little surveillance.
A real life cleaning run can take hours to execute. It'll be meticulously planned to look innocent and natural, while being extremely hard to [[follow closely or predict|GNO-10200 Title card]].
<</page>><<silently>>
<</silently>>\
<a data-passage="GNO-10300 Trok warren">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/trokWarrenTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
One of the reasons you chose this hostel is that it's tucked away in a little warren of <div class="tooltip">troks<span class="tooltiptext">alleys</span></div>. It's hard to follow someone through an alley without being noticed, so pros prefer to watch the exits instead.
The problem you've created for them – before you even start – is that there are so many exits from the warren. You're going south today, which gives you three main options:
<<image "/locationPhotos/thailand/hostel/cleaningRunWarrenRoutes.jpg" 0 1000 368 0>>\
You normally leave using Route 1, taking you straight out to the main road (Soi Sam Sen). This is also the way you drove in Kriangsak's Rolls Royce. If you're being tailed by just one asset, that exit is probably where they're stationed.
[[Route 2|GNO-10400 Route 2]] takes you west down a long tree-lined footpath, past a school. Then you cross the <div class="tooltip">khlong<span class="tooltiptext">canal</span></div> using a little bridge. <<if hasVisited("WELBANG-231000 Khlongside run")>>(This is the khlong you ran along on day 3.)<</if>>
[[Route 3|GNO-10600 Route 3]] cuts down to a path along the <div class="tooltip">khlong<span class="tooltiptext">canal</span></div> itself. You follow it east under the big Soi Sam Sen bridge, then cross over a smaller bridge a few hundred metres later.
<</page>><<silently>>
<<wear-shoes-whiteFlatEspadrilles>>
<<wear-bohoBrownLeatherBag>>
<<wear-ring-transmitterRing>>
<<wear-bigBlackSunglasses>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<</silently>>\
<<header>>\
<<page>>\
You leave the hostel, heading west down a long, tree-lined footpath. The trees shade you from the blazing sun, but not the prickly, humid air.
Incense fills your nostrils as you pass behind the <div class="tooltip">wat<span class="tooltiptext">Buddhist temple</span></div> on your right. Then you pass a schoolyard on your left, bustling with Thai kids running and screaming in the <<if $kate.agency == "cia" or $kate.agency == "csis">>schoolyard<<else>>playground<</if>>.
Some wave and smile at the pretty <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> lady as she [[passes|GNO-10500 Car wash]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You emerge near a car wash business, local men soaping down a tuk-tuk, T-Pop blaring out of a portable radio.
<<image "/locationPhotos/thailand/hostel/carWash.jpg" 0 1000 400 0>>\
They look you up and down as you pass. But it feels like the normal male gaze, not surveillance.
Nobody's following as you turn left and head for the [[little bridge|GNO-10800 Bridge]].
<</page>><<silently>>
<<wear-shoes-whiteFlatEspadrilles>>
<<wear-bohoBrownLeatherBag>>
<<wear-ring-transmitterRing>>
<<wear-bigBlackSunglasses>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<</silently>>\
<<header>>\
<<page>>\
You leave the hostel, heading south through a long, narrow <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, hemmed between teakwood townhouses and a high stone wall. The shade protects you from the blazing sun, but not the prickly, humid air.
<<image "/locationPhotos/thailand/hostel/southAlley.jpg" 0 1000 400 0>>\
This tiny trok's cluttered with potted plants and chained-up kids' bicycles.
In the narrow space you need to [[squeeze past|GNO-10700 Khlongside walk]] some other people – but it's a local <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>> and her teen son, and a female <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> backpacker with tattooed legs, no one likely to be part of some Thai surveillance operation.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You emerge by the <div class="tooltip">khlong<span class="tooltiptext">canal</span></div>. Its pungent smell wafts up to greet you, fish and trash and stale water.
<<image "/locationPhotos/thailand/hostel/khlongsideWalk.jpg" 0 1000 400 0>>\
You walk east for a few minutes, passing under the big Soi Sam Sen bridge.
Occasionally you stop off to look at one of the little shop stalls selling trinkets and fresh fish along the towpath. You use these chances to [[check behind you|GNO-10800 Bridge]], but you don't spot anything unusual.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-10400 Route 2")>>\
Choke-points work both ways. They're a chance for you to spot a tail, forcing them to either hang back (and risk losing you) or follow closely (and risk being recognised). Nobody follows you over this one.
<<else>>\
Eventually you reach the bridge across the <div class="tooltip">khlong<span class="tooltiptext">canal</span></div>.
Choke-points work both ways. They're a chance for you to spot a tail, forcing them to either hang back (and risk losing you) or follow closely (and risk being recognised). Nobody suspicious follows you over this one.
<</if>>\
If you really are being watched – which nobody thinks is likely, anyway – you've probably already broken out of the surveillance 'bubble', just by leaving via a different route.
But your route is going to take you through a dozen more choke-points anyway. Just in case.
//[[Get walking.|GNO-11000 Old Siam title card]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-12100 Old Siam Plaza">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/oldSiamPlaza/oldSiamPlazaTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The next step in this cleaning run is supposed to be a long, long walk through the city streets, using choke points and intersections to confuse and misdirect enemy surveillance assets.
But it's blazing hot, you're already sweating like a pig, and it's not like you're up against the fucking <div class="tooltip">FSB<span class="tooltiptext">the Federal Security Service of the Russian Federation</span></div>. You wave down a taxi instead, sliding gratefully into the [[air-conditioned backseat|GNO-12000 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Nobody's actually come out and said this, but you suspect the reason the Combined Task Force lost an agent in the first place is because they underestimated the criminal thugs. Now it's your ass on the line, you don't intend to repeat that mistake.
The next step in this cleaning run – well, the next ten //thousand// steps – is a [[long, long walk|GNO-11100 Walking route]] through the sweltering city streets.
<<image "/locationPhotos/thailand/bangkok/bustlingStreets.jpg" 200 1000 600 0>>\
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You walk for more than an hour through bustling city streets, sweat pouring down your brow, breathing in the hot smog. The pollution's so thick you can taste it. It's no wonder so many pedestrians wear facemasks.
<<image "/locationPhotos/thailand/bangkok/trafficJam.jpg" 200 1000 600 0>>\
You practised cleaning runs all the time during your training <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>, often against real surveillance teams from <<if $kate.agency == "cia">>FBI and the Secret Service<<elseif $kate.agency == "mi6">>MI5 and Special Branch<<elseif $kate.agency == "asis">><div class="tooltip">AFP<span class="tooltiptext">the Australian Federal Police</span></div><<elseif $kate.agency == "csis">><div class="tooltip">RCMP<span class="tooltiptext">the Royal Canadian Mounted Police</span></div><<elseif $kate.agency == "nzsis">>New Zealand Police<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
You've been mostly stuck behind a desk since then, of course. But the techniques came flooding back satisfyingly fast. It's like your body remembers how to do it.
Pace traps, breakout changes at intersections, the "long look back" to check out faces behind you when you're crossing a street; Bangkok's a lot more exotic than the streets of <<if $kate.agency == "cia">>D.C.<<elseif $kate.agency == "mi6">>Portsmouth<<elseif $kate.agency == "asis">>Melbourne<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Auckland<<else>>ERROR IN KATE.AGENCY VAR<</if>>, but the cleaning run feels just like training again.
//[[Like riding a bike.|GNO-12000 Title card]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-12100 Old Siam Plaza">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/oldSiamPlaza/oldSiamPlazaTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''OLD SIAM PLAZA''",
$header.line2 to "OLD TOWN / MAY 2018">>
<<remove-bigBlackSunglasses>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
An hour later, you hit the latest choke-point: the Old Siam Plaza in Bangkok's Old Town. After a long, sweaty walk, the chilled air whooshing up your skirt feels heavenly on your legs.
This place was a major shopping centre when it was built, way back in the 90s. Now it's been displaced by luxury high-tech megamalls like CentralWorld and Siam Paragon.
<<image "/locationPhotos/thailand/oldSiamPlaza/oldSiamInterior.jpg" 200 1000 600 0>>\
To your eyes, it's dated and chintzy. But it also has [[nine exits|GNO-12200 Nine exits]], forcing a hypothetical surveillance team to make a risky decision: watch nine choke-points if they can, or follow you around in a shopping mall full of women if they can't.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You buy a big bottle of chilled mineral water, refill the travel bottle in your <<handbag>>, and guzzle down the rest. Walking around in the height of a Bangkok summer, you've learned you can drink litres of water without needing to pee.
The next part of the <<if hasVisited("GNO-10900 Fuck it")>>cleaning <</if>>run is just shopping; ambling around the various shops and stalls, seeing if your spidey senses [[pick anything up|GNO-12300 Should I get some clothes?]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Killing time gives you a chance to pick up some clothes for <<Zoe>>'s party. You didn't pack anything dressy enough to go clubbing.
You could either shop for some new clothes, or just turn up in what you have and <<if hasVisited("GNO-2800 I don't have a thing to wear")>>borrow some clothes, like <<Amanda>> suggested.<<else>>see what happens.<</if>>
It's all about the impression you want to make. Turning up in the right clothes might make you seem cool and socially adept, or it might undermine your 'broke backpacker' cover story.
Turning up in your street clothes might strengthen your cover; or it might make you seem like a pain in the ass who doesn't know how to party.
//[[Shop for clothes.|GNO-12400 Kate buys going out clothes]]
[[Don't bother.|GNO-13000 Window shopping]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You've only ever seen the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> wearing street clothes or stripper dresses; it's hard to picture the right look for a night on the town with them.
On some reflection...your guess is that they probably don't want to look like whores on their night off. You browse several fashion stores, looking for something that's nice but not too aggressively sexy.
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Fashion stores</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/jerseyDress.jpg"> [[Try it on.|FNG-12410 Jersey dress try on]]</td>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/separates.jpg"> [[Try it on.|FNG-12420 Separates try on]]</td>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/blackDress.jpg"> [[Try it on.|FNG-12430 Black dress try on]]</td>
</tr>
</tbody>
</table>
<</page>><<silently>>
<<wear-bra-nudeStrapless>>
<<set $avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<remove-bohoBrownLeatherBag>>
<<remove-top-brownVestWithSpaghettiStraps>>
<<remove-skirt-ogStretchyEthnicSkirtMidi>>
<<wear-dress-lightBlueLowBackRibbedBodyconJerseyDress>>
<</silently>>\
<<header>>\
<<page>>\
This is cute and clingy: add some makeup and you could get in anywhere wearing this dress, without looking like you tried too hard. If you show up in this, you'll be rocking a cool, casual look for a summer night out with the girls.
<<link "//Buy it.//" "FNG-12440 Kate buys the jersey dress">>
<<remove-dress-lightBlueLowBackRibbedBodyconJerseyDress>>
<<remove-bra-nudeStrapless>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<wear-bohoBrownLeatherBag>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<</link>>
<<link "//Back to shopping.//" "GNO-12400 Kate buys going out clothes">>
<<remove-dress-lightBlueLowBackRibbedBodyconJerseyDress>>
<<remove-bra-nudeStrapless>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<wear-bohoBrownLeatherBag>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<</link>>
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<remove-bohoBrownLeatherBag>>
<<remove-top-brownVestWithSpaghettiStraps>>
<<remove-skirt-ogStretchyEthnicSkirtMidi>>
<<wear-skirt-taupeBandagePencilSkirtWithFlutedHem>>
<<wear-top-redTieUpHalterneckTop>>
<</silently>>\
<<header>>\
<<page>>\
The midi skirt balances out the sexy, eyecatching top. This outfit would look great with red lipstick.
<<link "//Buy it.//" "FNG-12450 Kate buys the separates">>
<<remove-skirt-taupeBandagePencilSkirtWithFlutedHem>>
<<remove-top-redTieUpHalterneckTop>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<wear-bohoBrownLeatherBag>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<</link>>
<<link "//Back to shopping.//" "GNO-12400 Kate buys going out clothes">>
<<remove-skirt-taupeBandagePencilSkirtWithFlutedHem>>
<<remove-top-redTieUpHalterneckTop>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<wear-bohoBrownLeatherBag>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<</link>>
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<remove-bohoBrownLeatherBag>>
<<remove-top-brownVestWithSpaghettiStraps>>
<<remove-skirt-ogStretchyEthnicSkirtMidi>>
<<wear-dress-blackKnottedCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
Can't go wrong with a slinky black dress.
<<link "//Buy it.//" "FNG-12460 Kate buys the black dress">>
<<remove-dress-blackKnottedCocktailDress>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<wear-bohoBrownLeatherBag>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<</link>>
<<link "//Back to shopping.//" "GNO-12400 Kate buys going out clothes">>
<<remove-dress-blackKnottedCocktailDress>>
<<set $avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag")>>
<<wear-bohoBrownLeatherBag>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-skirt-ogStretchyEthnicSkirtMidi>>
<</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You pay for the dress, and get [[back on the cleaning run|GNO-13000 Window shopping]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You pay for the skirt and top, and get [[back on the cleaning run|GNO-13000 Window shopping]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You pay for the dress, and get [[back on the cleaning run|GNO-13000 Window shopping]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You take your time <<if not hasVisited("GNO-12400 Kate buys going out clothes")>>window <</if>>shopping, staying alert for faces you see more than once, especially male faces. By definition, surveillance is hard to spot, but you don't see any signs you're being followed.
The mall has clothing and jewellery shops, a food court, and a gun store displaying shotguns and hunting rifles. Seeing the firearms in the window reminds you of the gleaming black <div class="tooltip">SMG<span class="tooltiptext">submachine gun</span></div> you were sneaking around with at the weekend. //Langley's pre-authorised us to kill,// Clark said. Thank god that wasn't necessary.
By contrast to the brutal, ultra-masculine gun store, there's a [[lingerie boutique|GNO-13100 Lingerie store]] on the <<if $kate.agency == "cia" or $kate.agency == "csis">>second<<else>>first<</if>> floor. You drift in, looking for something new to wear to the club.
<</page>><<silently>>
<<set _dominantKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
You browse around the shop, admiring a range of skimpy, strappy undergarments, picturing what would look hot on you behind the bar. //Maybe they'd like me in stockings?//
<<image "/locationPhotos/thailand/oldSiamPlaza/lingerieShop.jpg" 250 1000 667 0>>\
Picturing yourself nearly naked in a room full of men stirs an erotic little tension in your body.
Despite the fact the guys are all creeps...part of you's looking forward to <<if _dominantKink == "exhibitionist">>showing off for them<<elseif _dominantKink == "masochist">>letting them manhandle you<<elseif _dominantKink == "submissive">>stripping off for them<<else>>//[ERROR IN DOMINANTKINK TEMP VAR]//<</if>> [[tomorrow night|GNO-13200 Thongaholic]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<table class="bikini-lines-Table">
<thead>
<tr>
<th class="bikini-lines-Table-item-header" colspan="4"><span style="font-weight:bold">Lingerie boutique</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/thongBlueFront.jpg" onmouseover="this.src='media/ui/oldSiamPlaza/thongBlueRear.jpg'" onmouseout="this.src='media/ui/oldSiamPlaza/thongBlueFront.jpg'" /> [[Buy Cheeky thong in robin egg blue.|GNO-13210 Cheeky robin egg blue]]</td>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/thongBlackFront.jpg" onmouseover="this.src='media/ui/oldSiamPlaza/thongBlackRear.jpg'" onmouseout="this.src='media/ui/oldSiamPlaza/thongBlackFront.jpg'" /> [[Buy Cheeky thong in raven black.|GNO-13220 Cheeky raven black]]</td>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/thongFuchsiaFront.jpg" onmouseover="this.src='media/ui/oldSiamPlaza/thongFuchsiaRear.jpg'" onmouseout="this.src='media/ui/oldSiamPlaza/thongFuchsiaFront.jpg'" /> [[Buy Cheeky thong in rose red.|GNO-13230 Cheeky rose red]]</td>
</tr>
<tr>
<td class="bikini-lines-Table-item"><img src="media/ui/oldSiamPlaza/thongPinkFront.jpg" onmouseover="this.src='media/ui/oldSiamPlaza/thongPinkRear.jpg'" onmouseout="this.src='media/ui/oldSiamPlaza/thongPinkFront.jpg'" /> [[Buy Cheeky thong in flamingo pink.|GNO-13240 Cheeky flamingo pink]]</td>
</tr>
</tbody>
</table>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tuck your purchase into your <<handbag>>, and get back on [[the cleaning run|GNO-13300 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tuck your purchase into your <<handbag>>, and get back on [[the cleaning run|GNO-13300 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tuck your purchase into your <<handbag>>, and get back on [[the cleaning run|GNO-13300 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tuck your purchase into your <<handbag>>, and get back on [[the cleaning run|GNO-13300 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / MAY 2018">>
<<emote-calm>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<a data-passage="GNO-13400 Breakout">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/cleaningRun4.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
More walking. More junctions and choke–points, criss-crossing bridges over <div class="tooltip">khlongs<span class="tooltiptext">canals</span></div> and weaving through <div class="tooltip">troks<span class="tooltiptext">alleyways</span></div> with multiple exits.
You push through into another department store, with several exits leading to different <div class="tooltip">sois<span class="tooltiptext">streets</span></div>. One is a minor access road, connecting with another soi via a [[deserted courtyard|GNO-13405 Deserted courtyard]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You've been criss-crossing the city for hours. Without air support, even a top-tier surveillance team would be stretched to its limits now, struggling to find you and no longer able to predict your movements.
You cross a street through busy traffic. A short, industrial-looking <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, cluttered with thick pipes and exposed hanging cables, is your final choke-point.
//[[Change your appearance.|GNO-13410 Quick change]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
'Quick change' is an officer's ability to drop out of sight then change their appearance. It's often the last part of a cleaning run; the point is to disappear.
This trok has three exits; the one you're heading for is 30 metres away. Walking fast, you have fifteen seconds.
//[[Tie on a headscarf.|GNO-13420 Headscarf 1]]
[[Adjust the length of your skirt.|GNO-13440 Skirt 1]]//
<</page>><<silently>>
/* This absurd block of dirty code is required to temporarily change Kate's hair */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.delete("/113Hair/10_"+_hair+"-front"),
$avatar.foreground.pushUnique("/113Hair/113HairInEthnicShawl/10_"+_hair+"-shawl-front"),
$avatar.foreground.delete("/113Hair/10_"+_hair+"-rear"),
$avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag"),
$avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-headscarf"),
$avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-headscarf-rear"),
$avatar.background.pushUnique("clothing/accessories/brownEthnicShawl/85_brownEthnicShawl-headscarf-backstop"),
$avatar.background.delete("/113Hair/90_"+_hair+"-back")
>>
<</silently>>\
<<header>>\
<<page>>\
Striding fast through the cluttered <div class="tooltip">trok<span class="tooltiptext">alleyway</span></div>, you grab your shawl from your <<handbag>> and tie it over your head.
//[[Adjust the length of your skirt.|GNO-13430 Headscarf 2]]//
<</page>><<silently>>
<<wear-dress-ogStretchyEthnicSkirtWornAsMiniDress>>
<<remove-skirt-ogStretchyEthnicSkirtMidi>>
<</silently>>\
<<header>>\
<<page>>\
Your skirt is stretchy and adjustable. Nearing the end of the <div class="tooltip">trok<span class="tooltiptext">alleyway</span></div>, you tug and stretch it up from your hips to your chest, turning the waistline into a neckline and your knee-length skirt into a minidress.
//[[Exit the trok.|GNO-13460 Trok exit]]//
<</page>><<silently>>
<<wear-dress-ogStretchyEthnicSkirtWornAsMiniDress>>
<<remove-skirt-ogStretchyEthnicSkirtMidi>>
<</silently>>\
<<header>>\
<<page>>\
Your skirt is stretchy and adjustable. Striding fast through the cluttered <div class="tooltip">trok<span class="tooltiptext">alleyway</span></div>, you tug and stretch it up from your hips to your chest, turning the waistline into a neckline and your knee-length skirt into a minidress.
//[[Tie on a headscarf.|GNO-13450 Skirt 2]]//
<</page>><<silently>>
/* This absurd block of dirty code is required to temporarily change Kate's hair */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.delete("/113Hair/10_"+_hair+"-front"),
$avatar.foreground.pushUnique("/113Hair/113HairInEthnicShawl/10_"+_hair+"-shawl-front"),
$avatar.foreground.delete("/113Hair/10_"+_hair+"-rear"),
$avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-inBrownBohoBag"),
$avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-headscarf"),
$avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-headscarf-rear"),
$avatar.background.pushUnique("clothing/accessories/brownEthnicShawl/85_brownEthnicShawl-headscarf-backstop"),
$avatar.background.delete("/113Hair/90_"+_hair+"-back")
>>
<</silently>>\
<<header>>\
<<page>>\
Nearing the end of the <div class="tooltip">trok<span class="tooltiptext">alleyway</span></div>, you grab your shawl from your <<handbag>> and tie it over your head.
//[[Exit the trok.|GNO-13460 Trok exit]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A differently-dressed woman emerges onto a chaotic, busy <div class="tooltip">thanon<span class="tooltiptext">main road</span></div>.
You slip quickly through the crowd, heading for a <div class="tooltip">mo sai<span class="tooltiptext">motorcycle taxi</span></div> stand near a busy junction.
<<image "/locationPhotos/thailand/bangkok/mosaiJunction.jpg" 200 1000 700 0>>\
<<link "//Ride a mo sai to location <small>BLUE SKY.</small>//" "GNO-13500 Mo Sai">><</link>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Wat Saket, <div class="tooltip">kop khun ka<span class="tooltiptext">thanks</span></div>."
Climbing onto the back of the bike, a thrill of professional satisfaction runs up inside you as the engine growls and the bike zips away through the traffic.
13 tricky choke-points, a quick change, then a sudden switch from foot to motorcycle. That cleaning run was //textbook.// You could see yourself giving a talk on it to the recruits <<if $kate.agency == "cia">>at The Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Camp Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>> one day.
//Bond, Jane Bond. Maybe I'm good at this.// Unlike the movies, there wasn't a gun or a vodka martini in sight; but your adrenaline's [[still buzzing|GNO-15000 Title card]] anyway.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's time to break out of the box.
This next part has to go quickly. You stare at one of the west exits, then walk towards, it nice and slow.
You take your sunglasses out of your <<handbag>>. If anyone //is// watching you...it's perfectly clear where you're headed. West exit.
//[[Switch direction without warning.|GNO-14100 Sudden u-turn]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Whoops! Changed my mind.//
This move is called the sudden U-turn. You can't play it too often on a cleaning run, but it's designed to throw a surveillance team into disarray.
They always want to be behind you, because that's the one place you can't properly observe. The sudden U-turn brings all that area into play, and it can panic rookies. If there's a surveillance "box" around you, they'll need to adapt fast to intercept your new direction.
This time, you don't catch anybody making startled eye contact, or talking into his lapel mic. But that doesn't mean they're not there. You need to move fast.
//[[Head for an east exit.|GNO-14200 East exit]]//
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
You head out through an east exit, back out into the blazing heat.
You're walking fast now, long purposeful strides designed to put distance between you and the mall.
Without slowing down, you cross the street and head into a <div class="tooltip">trok<span class="tooltiptext">alley</span></div> that has [[four possible exits|GNO-14300 Four exits]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
A short fast walk takes you to the third exit. You come out near a Starbucks on the Chakkraphet Road.
<<image "/locationPhotos/thailand/oldSiamPlaza/chakkraphetRoad.jpg" 0 1000 425 0>>\
This is a busy four-lane <div class="tooltip">thanon<span class="tooltiptext">main road</span></div>, well-supplied with intersecting <div class="tooltip">sois<span class="tooltiptext">streets</span></div> and <div class="tooltip">troks<span class="tooltiptext">alleys</span></div>.
You could go in any direction. Without air support, even a top-tier surveillance team would be stretched to their limits now, no longer able to predict your movements.
You head east and cross a footbridge over a <div class="tooltip">khlong<span class="tooltiptext">canal</span></div> – another choke point. You've got a few more moves to make before you can head to [[your destination|GNO-15000 Title card]]...
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-16090 No sluts allowed">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/watSaket/watSaketTitleCardDay.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The <div class="tooltip">mo sai<span class="tooltiptext">motorcycle taxi</span></div> drops you at the entrance to Wat Saket, the Temple of the Golden Mountain. It's famous for its panoramic views; Ian should be waiting for you at the top.
A sign outside reminds female visitors to dress respectfully.
<<image "/locationPhotos/thailand/watSaket/noSlutsAllowed.jpg" 230 1000 630 0>>\
//[[Cover your legs.|GNO-16093 Lewd legs]]//
<</page>><<silently>>
/* This absurd block of dirty code is required to temporarily change Kate's hair */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.delete("/113Hair/113HairInEthnicShawl/10_"+_hair+"-shawl-front"),
$avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-headscarf"),
$avatar.foreground.delete("clothing/accessories/brownEthnicShawl/65_brownEthnicShawl-headscarf-rear"),
$avatar.background.delete("clothing/accessories/brownEthnicShawl/85_brownEthnicShawl-headscarf-backstop"),
$avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/70_brownEthnicShawl-poncho"),
$avatar.foreground.pushUnique("clothing/accessories/brownEthnicShawl/70_brownEthnicShawl2-poncho-rear")
>>
<<characterCreator-setHair>>
<</silently>>\
<<header>>\
<<page>>\
You untie your headscarf and wrap it around your shoulders like a poncho.
Now your lewd legs and sinful scapulas are hidden from sight, you can [[enter Wat Saket.|GNO-16100 Wat Saket entrance]]
<</page>><<silently>>
<<wear-skirt-ogStretchyEthnicSkirtMaxi>>
<<remove-dress-ogStretchyEthnicSkirtWornAsMiniDress>>
/* dirty bug fix, don't know why it decremented the cleavage counter by 2 */
<<set $avatar.cleavageCounter +=1>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle your skirt back down to your hips, and stretch it out to its full length.
//[[Cover your shoulders.|GNO-16092 Sinful scapulas]]//
<</page>><<silently>>
<<set $header.line1 to "''WAT SAKET''">>
<</silently>>\
<<header>>\
<<page>>\
This temple was built some time in the <div class="tooltip">Ayutthaya period<span class="tooltiptext">14th-18th century AD</span></div>, on the only hill in Bangkok. Ian should be waiting for you at the top.
<<image "/locationPhotos/thailand/watSaket/watSaketBase.jpg" 100 1000 660 0>>\
At the base is an ancient cemetary, wreathed in vines and quiet mystery. Carved statuettes of animals, monsters and Hindu gods are everywhere. Strange charms dangle from the trees, chiming softly.
//[[Find the ticket office.|GNO-16200 Ticket office]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A short walk takes you to the ticket office, where you pay the 'Foreigner Price' to enter, ฿50 (<<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>>).
It's protected by life-sized statues of two //kinnarees,// mythical creatures who are half-woman, half-bird.
They're depicted topless, smooth round breasts and stiff carved nipples bared for every tourist. //Yep, know how that feels.//
<<image "/locationPhotos/thailand/watSaket/kinnari2.jpg" 100 1000 660 0>>\
A sign warns that you must [[climb 344 steps|GNO-16300 344 steps]] to reach the summit.
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Winding round the 'Golden Mount' like a loosely coiled snake, the steps climb up through a hanging garden covered by vines and shady trees.
<<image "/locationPhotos/thailand/watSaket/hangingGarden.jpg" 300 1000 747 0>>\
It's magical and serene. You [[ascend past|GNO-16400 Bells]] a waterfall, flower gardens, and intricate sculptures of vultures, monkeys, turtles and the Buddha.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Up above the canopy, there are beautiful views all around. Flags rustle and chimes ring softly in the gentle breeze.
The way is lined with prayer bells that you can ring for good luck.
<<image "/locationPhotos/thailand/watSaket/prayerBells.jpg" 200 1000 664 0>>\
//[[Ring the bells.|GNO-16500 Kate rings the prayer bells]]
[[Prayers don't work.|GNO-16600 Katheist]]
<<link "Buddhist prayers don't work." "GNO-16700 Katebrahamic">><</link>>//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Deciding you can use all the help you can get on this mission, you ding a few bells as you pass.
They chime pleasantly, [[deep, full and relaxing|GNO-16800 Summit]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Catching <small>DEVILFISH</small> is going to take more than superstition.
You ignore the bells and [[push on up the steps|GNO-16800 Summit]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With all that's going on in your life, you decide it's best to avoid heathen rituals for now.
Ignoring them, you [[push on up the steps|GNO-16800 Summit]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watSaket/summit.jpg" 20 1000 664 0>>\
The 344 steps lead up to a breezy rooftop and a spectacular <div class="tooltip">stupa<span class="tooltiptext">a Buddhist monument, containing relics or remains</span></div>. It's peaceful and quiet, with only a few locals here to worship.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is sitting on a bench, pretending not to have noticed you. A tennis bag from the safehouse is slung over his shoulder. You doubt it contains a racquet.
//[[Excuse me, would you mind taking a photo?|GNO-16810 Excuse me]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi. Would you mind taking a photo of me?"
"Sure." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes your phone, and follows you over to a quiet part of the balcony.
//[[Pose for a photo.|GNO-16820 Posing]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You pose for a snapshot against the skyline. //Click!//
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands back your phone.
Under your poncho, your <<handbag>> is unzipped and waiting; you feel him slip something inside it.
[[Thanks.|GNO-16900 Contact]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks."
"Welcome," he says, turning to face the railings. "[[Quite the view, huh|GNO-17000 Quite the view]]."
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
It really is. You gaze out over Old Town and the massive, sprawling city beyond it. On the skyline, you recognise the tall towers of the Lumphini District, where you had dinner with Mr Kriangsak.
<<image "/locationPhotos/thailand/watSaket/summitView1.jpg" 100 1000 600 0>>\
"Little toy in there," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Message me later, I'll explain."
[[Got it. Anything else?|GNO-17010 Anything else]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it. Anything else?"
"Nah. Just take care of yourself."
[[Doing my best.|GNO-17020 Doing my best]]
[[Will do, don't worry.|GNO-17030 Thanks]]
[[No promises.|GNO-17040 No promises]]
[[That's your job, remember?|GNO-17050 Your job]]
<</page>><<silently>>
<<showFront>>
<<emote-mouth-talking>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"Doing my best."
You leave the rooftop and head down the [[exit steps|GNO-18000 Seeya]].
<</page>><<silently>>
<<showFront>>
<<emote-mouth-talking>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"Will do, don't worry."
You leave the rooftop and head down the [[exit steps|GNO-18000 Seeya]].
<</page>><<silently>>
<<showFront>>
<<emote-mouth-talking>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"No promises."
You leave the rooftop and head down the [[exit steps|GNO-18000 Seeya]].
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smirk>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"That's your job, remember?"
You leave the rooftop and head down the [[exit steps|GNO-18000 Seeya]].
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
The way out takes you past a gory diorama. Vultures feast on the bodies of plague victims, a memorial to a gruesome part of the temple's history.
<<image "/locationPhotos/thailand/watSaket/goryDiorama.jpg" 100 1000 500 0>>\
Naked, mutilated bodies, dumped on the outskirts of Bangkok. A weird chill washes over your skin as you pass.
Just a breeze. If you were superstitious, maybe it'd feel like [[a warning|GNO-18100 Title card]].
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/brownEthnicShawl/70_brownEthnicShawl-poncho"),
$avatar.foreground.delete("clothing/accessories/brownEthnicShawl/70_brownEthnicShawl2-poncho-rear")
>>
<<remove-bigBlackSunglasses>>
<<remove-bohoBrownLeatherBag>>
<<remove-shoes-whiteFlatEspadrilles>>
<<remove-skirt-ogStretchyEthnicSkirtMaxi>>
<<wear-dress-ogStretchyEthnicSkirtWornAsMiniDress>>
<</silently>>\
<a data-passage="GNO-18200 Popping pills">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
Back at the hostel, you check out the package that Ian slipped into your <<handbag>>. As expected, it includes the battery of pills that Commander <<if $kate.surname == "Perry" or $kate.cover.surname == "Perry">>Holland<<else>>Perry<</if>> prescribed you. <<if not hasVisited("GNO-5300 Kate is not on birth control")>>It's all been repackaged into vitamin pots from a local pharmacy.<</if>>
<<if hasVisited("GNO-5300 Kate is not on birth control")>>\
The birth control pills <<if hasVisited("GNO-5400 Kate gets headaches from birth control")>>and painkillers <</if>>are normal; everything else has been repackaged into vitamin pots from a local pharmacy.
<</if>>\
You chug down your first dose with a few swigs of bottled water. //James Bond gets a laser watch; Jane Bond gets chlamydia pills.// But at least you're [[protected|GNO-18300 Spy necklace]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The 'toy' Ian promised is a chunky pendant necklace in turqoise stone. A small, dull black dot could possibly be a hidden camera lens; you can't be sure, even staring at it close up.
The clasps of the necklace are taped up, preventing them from coming into contact. There are no obvious controls, so you [[message Ian|GOF-18310 Necklace technical briefing]] to find out how it works.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You have a short, tap-tap conversation over Signal about the necklace.
As you suspected, it's a camera; it'll record video for 8-10 hours once you turn it on, which you do by connecting the clasps.
There are no controls to worry about: once activated, it records until the charge runs out.
The chain works as the aerial. Periodically, it uploads its footage to <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> via encrypted burst. This wouldn't be safe to wear into a high-security area – the bursts would be detected – but in a public place like the club, it'll just look like one more <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>mobile<</if>> signal.
Anyone intercepting it for some reason would just get a load of [[encrypted gibberish|GNO-18320 Necklace objective briefing]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ian tells you that <<if $kate.agency == "cia">>Clark wants<<else>>'the yanks' want<</if>> clear footage of the Polaroid photos tacked up behind the bar – the ones of former female employees.
//Probably hoping for an image of <<Sadie>>,// you realise. You guys could have photographed them carefully during the black bag job. But you didn't know you needed to, so now you have to go back in with this specialised piece of kit.
//[[Great. Another camera.|GNO-18330 Great, more porn]]//
<</page>><<silently>>
<<emote-brows-rogerMoore>>
<</silently>>\
<<header>>\
<<page>>\
//Great. Another camera at work.//
Yet more compromising footage of you going up on <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>. And this one's going to be attached to you; no way to avoid it. //Although at least it'll be pointing away from me.//
That's [[something|GNO-19000 Wednesday title card]], at least.
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set $kate.isUsingHerStripperName to true>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-shoes-greyToeThongFlipFlops>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-ring-transmitterRing>>
<<wear-necklace-turquoiseSpyNecklace>>
<<if hasVisited("GNO-13210 Cheeky robin egg blue")>>
<<wear-knickers-cheekyThongRobinEggBlue>>
<<elseif hasVisited("GNO-13230 Cheeky rose red")>>
<<wear-knickers-cheekyThongRoseRed>>
<<elseif hasVisited("GNO-13240 Cheeky flamingo pink")>>
<<wear-knickers-cheekyThongFlamingoPink>>
<<else>>
<<wear-knickers-cheekyThongRavenBlack>>
<</if>>
<</silently>>\
<a data-passage="GNO-19100 Care-fow">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/wednesdayTitleCard2.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Care-fow," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> warns you as you're doing your makeup in the dressing room. "Drag-oh lady, she back."
[[You mean Ploy?|GNO-19200 You mean Ploy?]]
[[Who's Dragon Lady?|GNO-19210 Who dat]]
[[What?|GNO-19220 What]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You mean Ploy?" She's got a tattoo of a dragon on her arm; it's a work in progress.
"No no, not Ploy, Miss Nin," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Drag-oh lady. She like Miss Lu, but she <div class="tooltip">jai dum<span class="tooltiptext">black heart</span></div>, she mean. Be care-fow her."
[[Okay, thanks.|GNO-19500 I'll be careful]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Who's Dragon Lady?"
"Miss Nin," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Drag-oh lady. She like Miss Lu, but she <div class="tooltip">jai dum<span class="tooltiptext">black heart</span></div>, she mean. Be care-fow her."
[[Okay, thanks.|GNO-19500 I'll be careful]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What?"
"Miss Nin, she back," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Drag-oh lady. She like Miss Lu, but she uh, <div class="tooltip">jai dum<span class="tooltiptext">black heart</span></div>, she mean. Be care-fow her."
[[Okay, thanks.|GNO-19500 I'll be careful]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, thanks." You've hardly had anything to do with Miss Lu anyway, she normally works upstairs.
//[[Do your makeup.|GNO-20000 Makeup]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You click on the mirror lights, and start painting your face for work. You keep glancing in the mirror at the little spycam around your neck; it's weird to know that you're streaming your makeup routine to <div class="tooltip">ECHELON<span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "GNO-20030 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "GNO-20020 Eyeliner">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "GNO-20040 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "GNO-20010 Blusher">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Nails</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="nails-container">\
<<include "GNO-20020 Nails">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GNO-20060 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GNO-20010 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GNO-20020 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-20030 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GNO-20040 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><table>
<tr>
<td style = "padding-right: 50px;">Fingers
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-azureLikeIt")>>\
<<link "Azure Like It">>\
<<apply-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-manicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-blueMovie")>>\
<<link "Blue Movie">>\
<<apply-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-manicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-camOh")>>\
<<link "Cam Oh">>\
<<apply-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-manicure-camOh>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-cherryPopped")>>\
<<link "Cherry Popped">>\
<<apply-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-manicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-flamingoPunch")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-manicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-lemonBomb")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-manicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-midnightMission")>>\
<<link "Midnight Mission">>\
<<apply-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-manicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/manicure/5_manicure-redHotNights")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-manicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
<td>Toes
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-azureLikeIt3-barefoot")>>\
<<link "Azure Like It">>\
<<apply-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Azure Like It">>\
<<remove-makeup-pedicure-azureLikeIt>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-blueMovie-barefoot")>>\
<<link "Blue Movie">>\
<<apply-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue Movie">>\
<<remove-makeup-pedicure-blueMovie>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-camOh-barefoot")>>\
<<link "Cam Oh">>\
<<apply-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cam Oh">>\
<<remove-makeup-pedicure-camOh>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-cherryPopped-barefoot")>>\
<<link "Cherry Popped">>\
<<apply-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry Popped">>\
<<remove-makeup-pedicure-cherryPopped>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-flamingoPunch-barefoot")>>\
<<link "Flamingo Punch">>\
<<apply-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo Punch">>\
<<remove-makeup-pedicure-flamingoPunch>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-lemonBomb3-barefoot")>>\
<<link "Lemon Bomb">>\
<<apply-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lemon Bomb">>\
<<remove-makeup-pedicure-lemonBomb>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-midnightMission-barefoot")>>\
<<link "Midnight Mission">>\
<<apply-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Midnight Mission">>\
<<remove-makeup-pedicure-midnightMission>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/pedicure/5_pedicure-redHotNights-barefoot")>>\
<<link "Red Hot Nights">>\
<<apply-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Hot Nights">>\
<<remove-makeup-pedicure-redHotNights>>\
<<replace "#nails-container">>\
<<include "GNO-20020 Nails">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20060 Exit navigation">>
<</replace>>\
<</link>>\
<</if>></td>
</tr>
</table><<if $kate.isWearing.includesAll("eyeshadow", "eyeliner", "lipstick")>>\
When you're ready, you can get your [[little uniform|GNO-20100 Little uniform]] out of your <<handbag>>.
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
All around you, hot girls are taking off their clothes. <span class="imageLink"><<link "Acres of naked female skin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/dressingRoomDragon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are revealed as they change out of their street clothes and wriggle into skimpy lace, lycra and PVC.
Analysing raw surveillance footage is normally one of the most tedious jobs in intelligence. Something tells you that the analysts at <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> and <div class="tooltip">CTFN<span class="tooltiptext">Combined Task Force <small>NEPTUNE</small></span></div> won't mind it this time – [[the male ones|GNO-20110 Guilt trip]], anyway.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You feel somewhat guilty for bringing a spy cam into the dressing room. These girls are already exploited and sexualised enough. The idea of filming them for a bunch of analysts on the other side of the world doesn't sit well with you.
Hopefully they'll be respectful when they watch it. Although...you guess that doesn't matter, really. The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> aren't the mission, <small>DEVILFISH</small> is.
"$kate.stripperName," calls <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, concerned to see that you're nowhere near ready. "Come on, get dress."
//[[Take off your shorts.|GNO-20120 Undone]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique(("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes-undone4"))>>
<<set $avatar.clothing.delete(("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes"))>>
<</silently>>\
<<header>>\
<<page>>\
You've been putting this off because, well, there are mirrors everywhere and a spy cam dangling around your neck.
The analysts at <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> have already seen you naked, of course. God, they've already seen you //fuck.// But you weren't aware of all the cameras then, or that the footage would end up getting screened at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>.
Standing in front of a mirror, wearing a camera they gave you; it feels like you're stripping off just for the boys at work.
There's no reason really for them to watch this part of the footage at all. But...they probably will, right? Even if it's just out of curiosity. Who wouldn't watch a female colleague take her clothes off?
Very hesitantly, you reach up and unbutton your shorts.
//[[Take them off.|GNO-20130 Shorts off]]//
<</page>><<silently>>
<<remove-shorts-blueDenimDaisyDukes>>
<<set $avatar.clothing.delete(("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes-undone4"))>>
<</silently>>\
<<header>>\
<<page>>\
You slide them down and off your legs.
You normally get completely changed here in the dressing room, but you wore your work thong under your clothes today. A small attempt to preserve some modesty.
//This thong didn't look this skimpy on the mannequin.//
<<link "//Change into your heels.//" "GNO-20138 Barefoot">><<remove-shoes-greyToeThongFlipFlops>><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You change out of your comfy flip-flops and step into your heels. You feel the empowering little boost of height, and the change in your centre of balance you have to adapt to.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "GNO-20140 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GNO-20150 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackElegantPumps/15_shoes-blackElegantPumps")>>\
<<link "Elegant black pumps">>\
<<wear-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elegant black pumps">>\
<<remove-shoes-blackElegantPumps>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/leopardStrappyHighHeelSandals/15_shoes-blackElegantPumps")>>\
<<link "Leopard strappy high heel sandals">>\
<<wear-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard strappy high heel sandals">>\
<<remove-shoes-leopardStrappyHighHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/pinkStrappyStilettoHeelSandals/15_shoes-pinkStrappyStilettoHeelSandals")>>\
<<link "Pink strappy stiletto heel sandals">>\
<<wear-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink strappy stiletto heel sandals">>\
<<remove-shoes-pinkStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/nudePeepToeHeels/15_shoes-nudePeepToeHeels")>>\
<<link "Nude peeptoe heels">>\
<<wear-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude peeptoe heels">>\
<<remove-shoes-nudePeepToeHeels>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redValentinoStilettos/15_shoes-redValentinoStilettos")>>\
<<link "Red Valentino stilettos">>\
<<wear-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red Valentino stilettos">>\
<<remove-shoes-redValentinoStilettos>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/redVelvetCrissCrossStrappyStilettoHeelSandals/15_shoes-redVelvetCrissCrossStrappyStilettoHeelSandals")>>\
<<link "Red velvet criss cross strappy stiletto heel sandals">>\
<<wear-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red velvet criss cross strappy stiletto heel sandals">>\
<<remove-shoes-redVelvetCrissCrossStrappyStilettoHeelSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-20140 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-20150 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("knickers", "shoes")>>\
The other barmaids are all made up, topless and ready. "$kate.stripperName," Ploy repeats, an edge in her tone.
<span class="greyedOut">//[Take off your bra]//</span> [[Relax, I'm ready.|GNO-20160 Feminist]]
<</if>>\<<silently>>
<<emote-mouth-talking>>
<<remove-bra-whiteHalfCupCentralDart>>
<<first>>
<<addNotification "Arousal +1" "Imagining the guys at Langley is a turn on.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Relax." Reaching up behind your back, you unhook your bra, feeling a little flutter of nerves when it comes loose. "I'm ready."
It slides off easily, an undramatic event in a room bustling with naked women. Your nipples stiffen hard to attention anyway. Your crotch feels tingly and warm and present.
//[[Start work.|GNO-21000 Main bar]]//
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/sodaGun.jpg" 50 1000 500 0>>\
You hustle out early with the other barmaids, for your second topless training session with <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
In between all the crazy shit you did last week, you somehow managed to squeeze in enough practice with the mixing tin to master the palm spin trick he taught you.
"Good, $kate.stripperName! Very good! Okay, we do [[cocktail training tonigh'|GNO-21010 Cocktail training]]..."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Working from laminated reference cards and using measures of water instead of real liquor, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has you practice mixing and shaking various classic cocktails: margaritas, mai tais, daiquiris.
It's refresher training for the other three, but you pick it up straight away from the cards. Not that you're //great// at it or anything, just...learning how to mix a basic daiquiri is much easier than learning how to use a Heuer table to evaluate conflicting intelligence theories.
"Oh, verrry good," Bonaht commends you when all four of you are shaking cocktails at once, four sets of breasts jiggling at once. "$kate.stripperName, make them bounce! More...more...[[you got it|GNO-21100 Bonaht and Kayk]]!"
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
After the session, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets four topless, clingy hugs, then goes off to the VIP with <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
Last week it was <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – and he sat in a leather armchair while she gave him a BJ, you checked the footage. //Is it just the Thai girls who have to do that? Or might Roxy and I end up...//
//[[Could I go through with that?|GNO-21110 Could I]]//
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You try to imagine what it would've been like if you'd been the one taking Bonaht to the VIP. With the camera round your neck. //What would I do? What would Langley expect me to do?//
//That's pre-authorised,// Mike Dodaro's gravelly voice bubbles up in your memory, //no need for prior approval...//
When he said it, you'd thought about it in the context of having to sleep with another manager. But...is this what he actually meant? Sneaking off to the VIP for a quickie blowjob with the cocktail consultant?
If they were watching, would they just expect you to just...[[get on your knees and go through with it|GNO-21120 Hot]]?
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy is wet.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Fuuuck.// Realising that's exactly what they //would// expect makes your stomach feel tight and your throat feel dry.
And your pussy feel hot, when you picture yourself actually doing it. And...realising that you //would.// You swallow nervously. //Right now I'd be sucking-//
"$kate.stripperName?" <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your switched-off cash register. "You got head in cloud tonight," she chuckles.
//[[Set up your register.|GNO-21200 Bar opens]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You help <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> get the bar open, and soon the first customers of the night start trickling in.
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waves cheerfully to you as he leaves, miming the palm spin trick. <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> heads straight backstage...presumably to touch up her makeup.
When she returns and ducks back under her side of the bar, she [[looks immaculate|GNO-21210 Slow start]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The first hour or so of a weeknight shift is always pretty chilled out, especially with all four barmaids on.
The music's not too loud, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are still backstage getting ready, and the patrons mostly just want to drink beer and chat with a topless woman.
You take advantage of the lull to [[get spy cam footage of the Polaroids behind the bar|GNO-21220 Polaroids]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are dozens of them, tacked up on the mirrored backbar: topless barmaids from the club's past. Any of them could be <<Sadie>>.
Even though they're wearing hardly anything, you can guess the age of the photos just from the hairstyles and the underwear.
Some have the choppy emo hairstyles and low-slung hipster <<knickers>> that were really cool when you were sixteen. A few go all the way back to the //nineties:// girls with plum lipstick and French cut thongs and Rachel bobs.
//[[Capture them with the spy cam.|GNO-21230 Spy selfies]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Slowly and subtly you sweep over them, angling your body and casually moving around to capture them all.
It's impossible to do this without capturing your reflection in the mirrored backbar, wearing just a thong and a spy camera. That's mildly embarrassing, given that this is likely to be the part of the footage that's most viewed and most discussed; you keep your facial expression as neutral as possible.
There are Polaroids on the other side of the bar, too; you'll need to make an excuse to [[go talk to|GNO-21240 Break on through]] <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You head around to the 'Thai' side of the bar, subtly angling your body to sweep over the many topless Polaroids. You won't be able to get such clear footage on this side, <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div> will just have to zoom and enhance.
<span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are chatting together; they smile politely as you come round.
"Hi $kate.stripperName, what's up?"
[[Just wanted to look at your tattoo, Ploy.|GNO-21250 Show me your tats Ploy]]
[[What's the deal with Bonaht?|GNO-21242 Do we have to fuck Bonaht?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Um..." it feels weird to just come out and ask it. "What's the deal with Bonaht?" you ask. "I mean...after the training."
<span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> share a glance. You shift your weight on your heels, allowing you to twist slightly to take in [[more Polaroids|GNO-21244 Mai pen rai]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Just blowjob," she shouts, "<div class="tooltip">mai pen rai<span class="tooltiptext">it's not a big deal</span></div>. Don' worry about."
"<div class="tooltip">Kha<span class="tooltiptext">Right</span></div>," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "Jus' blowjob. We take it in turn."
[[All of us?|GNO-21245 All of us?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"All of us?"
"Just blowjob," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> repeats. "<div class="tooltip">Mai pen rai<span class="tooltiptext">it's not a big deal</span></div>. "
//Fuck. So...//the mission team //is// going to watch you giving head to Bonaht at some point. That's not an abstract thing, it's happening, unless you catch <small>DEVILFISH</small> in the next couple of weeks. Or quit.
//Fuck!//
[[Okay, thanks guys.|GNO-21246 Uh thanks]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, thanks guys." //They're so casual about it. Even though they're not <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.//
You take the long way back to your side of the bar, angling your body to sweep over the rest of the Polaroids. <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> acknowledges you with a curt, upward nod of her chin when you [[return|GNO-21300 Regulars]].
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Just wanted to see your tattoo," you tell <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "I love it."
<span class="greenHighlighter">Ploy ''liked'' that.</span>
"Oh, it not done yet." Her face lights up anyway as she shows off the part-coloured dragon tattoo [[snaking around her arm|GNO-21252 Several angles]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Looking at it from a few angles lets you shift your weight and angle your body to capture more Polaroids with your necklace cam. "It's so cool, what does it mean."
"It dragon," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains.
"I'm go get //angel,"// <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "Here. And maybe flower, here."
"Have you meet Mod?" Ploy asks. "He do //all// girl tattoo. I introduce you when he come."
<<if hasVisited("WELBANG-385000 M-Yuk Tattoo")>>\
[[Yeah, he did these.|GNO-21253 Yeah he did these]]
<<else>>\
[[Cool, thanks.|GNO-21255 Cool, thanks]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you say, pointing to your chest. "He did these."
<span class="greenHighlighter">Káyk ''liked'' that.</span>
"<div class="tooltip">Kha, kha<span class="tooltiptext">Right, right</span></div>, me too," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points to her own diamanté-studded nipples. "Maybe we get tattoo together. Same same."
[[Maybe.|GNO-21254 Maybe]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe."
You take the long way back to your side of the bar, angling your body to sweep over the rest of the Polaroids. <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> acknowledges you with a curt, upward nod of her chin when you [[return|GNO-21300 Regulars]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Cool, thanks."
You take the long way back to your side of the bar, angling your body to sweep over the rest of the Polaroids. <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> acknowledges you with a curt, upward nod of her chin when you [[return|GNO-21300 Regulars]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Each barmaid has a few regulars who gravitate to her whenever she's there. Ploy has two Thai motorbike cops who drop in to see her every day; Káyk has an old Dutch schoolteacher who's obsessed with her; Roxy has a few <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> sexpats in permanent orbit.
You've got the Thai office guys. After a hard day's work selling business telecom systems out of their office nearby, <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and his <span class="imageLink"><<link "colleagues">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jagsColleagues.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[come straight to the Hard Cock Cafe|GNO-21400 Jag brought the boss]] for a beer.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This time they've got someone else with them – a <span class="imageLink"><<link "doughy, older Thai man">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a suit and tie. He's wearing an expensive watch, and a gold signet ring on a fleshy finger.
Client? Their boss? Your <span class="imageLink"><<link "regulars">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smile excitedly when they see you at the bar.
[[Hey guys, the usual?|GNO-21500 The usual?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Hey guys," you shout. "Usual?"
"<div class="tooltip">Daai<span class="tooltiptext">Sure</span></div>," nods <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "And one more Chang."
//[[Serve five beers.|GNO-21600 Five beers]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You busy yourself prepping drinks. Five sets of dark eyes admire you spattering your bare breasts with Chang when you click off the taps, and showing your nearly naked butt when you turn to get two bottles of Singha from the fridge.
Roxy glances over to see if you need help, but leaves you to it when she realises you're serving your regulars.
Fast service at this bar isn't always appreciated. Most customers are perfectly fine standing around and enjoying the view.
[[฿850 please, Jag.|GNO-21700 850 please]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Eighty fifty<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$25.50<<elseif $kate.agency == "mi6">>£17<<elseif $kate.agency == "asis">>$34<<elseif $kate.agency == "csis">>$34<<elseif $kate.agency == "nzsis">>$34<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please, Jag."
The <span class="imageLink"><<link "guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> take their beers; the <span class="imageLink"><<link "older man">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is the one who pays, handing you a crisp brown ฿1000 note. "[[Get yourself dring|GNO-21800 Get yourself dring]]," he instructs.
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks." You turn and cash up the money, plus <div class="tooltip">฿50<span class="tooltiptext"><<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> for your first shot of the night.
//[[Pour yourself a tequila.|GNO-21900 Kate's drink][$kateSays to "tequila"]]
[[Pour yourself a Sangsom.|GNO-21900 Kate's drink][$kateSays to "sangsom"]]
[[Pour yourself a vodka.|GNO-21900 Kate's drink][$kateSays to "vodka"]]//
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You reach up and pour yourself a squirt of <<if $kateSays == "tequila">>tequila<<elseif $kateSays == "sangsom">>Sangsom<<elseif $kateSays == "vodka">>vodka<<else>>//[ERROR IN KATESAYS VAR]//<</if>> from the optics.
Giving the <span class="imageLink"><<link "older guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> his change, you clink your shot to his beer glass. "<div class="tooltip">Chone gaow!<span class="tooltiptext">"Touch glasses!" – a common Thai toast</span></div>"
The <<if $kateSays == "tequila">>tequila<<elseif $kateSays == "sangsom">>'Thai whiskey' – rum, really, you don't know why everybody calls it whiskey –<<elseif $kateSays == "vodka">>vodka<<else>>//[ERROR IN KATESAYS VAR]//<</if>> slips down with a harsh, familiar burn that you feel in your throat and your chest.
"So, you $kate.stripperName," he shouts. You have to listen carefully to his soft, bass voice. "They [[tell me bout you|GNO-21910 Embarrassed]] in office."
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//Ohmygod, Jag and his friends talk about me at work.// You <<if $kate.hairStyle != "short">>curl your hair behind your ear<<else>>run a hand through your hair<</if>>, feeling momentarily embarrassed.
[[What'd they say?|GNO-22000 What'd they say about me?]]
[[It's all lies.|GNO-22010 All lies]]
[[You're their boss?|GNO-22020 You their boss]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...what'd they say?" you shout.
"All good," he promises, "all good. They learn English from talk to you. I'm <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
He reaches over the bar to shake your hand. For a second this feels like a normal conversation, then his eyes roam down your body, drinking in the unusual sight of <<if $kate.agency == "cia">>an American<<elseif $kate.agency == "mi6">>an English<<elseif $kate.agency == "asis">>an Aussie<<elseif $kate.agency == "csis">>a Canadian<<elseif $kate.agency == "nzsis">>a Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> serving drinks in her <<knickers>>. "I see why they like here so much!" he [[chuckles|GNO-22100 We go to conference]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-wideSmile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"It's all lies," you promise.
He laughs at that, and you feel the little thrill of social pleasure from successfully landing a joke during an introduction. "I'm <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>," he says, reaching over the bar to shake your hand.
For a second this feels like a normal conversation, then his eyes roam down your body, drinking in the unusual sight of <<if $kate.agency == "cia">>an American<<elseif $kate.agency == "mi6">>an English<<elseif $kate.agency == "asis">>an Aussie<<elseif $kate.agency == "csis">>a Canadian<<elseif $kate.agency == "nzsis">>a Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> serving drinks in her <<knickers>>. "Not //all// lie," he [[chuckles|GNO-22100 We go to conference]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"You their boss?" you ask.
<span class="greenHighlighter">Yut ''liked'' that.</span>
"Yes." Producing a shiny card holder from his jacket pocket, <span class="imageLink"><<link "Jag\'s boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> opens it and solemnly presents you with [[his card|GNO-22030 Yut's card]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
It reads <span class="imageLink"><<link "<small>YUT FHAUMNUAYPOL,</small>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <small>EXECUTIVE CHAIRMAN, YF (SILOM) TELECOM CO LTD.</small>
Part of your <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> training included classes on international business etiquette. You know that in Asia, a business card is a much bigger deal than it is in the west, being seen as an extension of the person who presents it.
When receiving one, it's considered polite to make a positive comment about it.
[[Cool design.|GNO-22040 Business card compliment][$kateSays to "Cool design,"]]
[[I love your logo.|GNO-22040 Business card compliment][$kateSays to "I love your logo,"]]
[[Great address, Silom's like Wall Street, right?|GNO-22040 Business card compliment][$kateSays to "Great address. Silom's like Wall Street, right?"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays" you shout.
<span class="greenHighlighter">Yut ''liked'' that.</span> <span class="greenHighlighter">Jag ''liked'' that.</span> <span class="greenHighlighter">Book ''liked'' that.</span> <span class="greenHighlighter">Nam ''liked'' that.</span> <span class="greenHighlighter">Benz ''liked'' that.</span>
You're not really sure what to do with the card now. You were wearing a lot more than this on the training course.
//[[Put it behind the bar.|GNO-22050 Kate puts the card behind the bar]]
[[Tuck it into your thong.|GNO-22060 Kate puts the card in her thong]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn and carefully tuck the card away into a cubbyhole on the backbar.
//[[Go back to the guys.|GNO-22100 We go to conference]]//
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.underwear.pushUnique("accessories/yutsBusinessCard/09_yutsBusinessCard")>>
<</silently>>\
<<header>>\
<<page>>\
//Umm...//you tuck the card into the waistband of your thong.
<span class="greenHighlighter">Yut ''loved'' that.</span>
<span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at it, then swallows and [[nervously licks his lips|GNO-22100 We go to conference]].
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName, we go to con-fer-ence," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says proudly, fishing in his laptop bag for a glossy document to show you. It's a brochure for //Telecoms World Asia 2018,// some kind of industry event at a five star hotel. "Look, nice hotel, huh? Very nice. We got booth in ex-hib-it hall."
You lean over the bar to look at the document. It feels like everyone is watching you carefully.
[[Cool.|GNO-22200 Looks awesome][$kateSays to "Cool."]]
[[Looks awesome.|GNO-22200 Looks awesome][$kateSays to "Looks awesome."]]
[[Wow, amazing.|GNO-22200 Looks awesome][$kateSays to "Wow, amazing."]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Uh huh," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods eagerly. "Some com-pa-ny, they hire model for booth. Easy job, just stand take business card. What you think?"
[[Sure sounds easy.|GNO-22210 Sure sounds easy]]
[[About modelling?|GNO-22220 About modelling?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Sure sounds easy," you agree. There's probably more to it than he thinks, but the customer is always right, right.
"Great!" <span class="imageLink"><<link "Jag's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> face brightens. "We pay you, of cour'."
[[Wait, me?|GNO-22240 Wait, me?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"About modelling?" //Complex issue, Jag.// You're not immediately sure how you do feel about women being objectified to sell telephones or whatever. Or if there's a way to solve the problem without depriving low-paid, vulnerable women of a source of income.
But nobody wants a lecture on feminist economics from their topless barmaid, so you just shrug. "It's fine, I guess."
"Great!" <span class="imageLink"><<link "Jag's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> face brightens. "We pay you, of cour'."
[[Wait, me?|GNO-22240 Wait, me?]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Wait. Me?"
"<div class="tooltip">Daai, daai<span class="tooltiptext">Sure, sure</span></div>," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "You perfect."
"We pay you free night in hotel as well," <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds. "Own private room," he promises, "all professional."
This...doesn't sound at all relevant to your mission.
[[Sorry, guys, don't think I'm allowed.|GNO-22250 Not allowed]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry guys," you shake your head. "Thanks, but I don't think I'm allowed to work outside the club."
<span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods in solemn understanding. "I talk your boss," he tells you, "[[don' worry|GNO-24200 More customers]]."
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//"I// can? Me?"
"<div class="tooltip">Daai, daai<span class="tooltiptext">Sure, sure</span></div>," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We pay you, of cour'."
"And pay you free night in hotel," <span class="imageLink"><<link "the boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in. "Own private room," he assures you, "all professional."
Going to a hotel with five men you don't know doesn't sound entirely safe. And you won't catch <small>DEVILFISH</small> at a telecoms conference. But it could add some depth to your cover – <<if $kate.cover.firstName == $kate.firstName>>$kate.cover.firstName //$kate.cover.surname//<<else>>"$kate.cover.firstName $kate.cover.surname"<</if>> would probably jump at the chance to earn some money and spend the night at a five star hotel.
[[What would I have to do?|GNO-22400 What would I have to do?]]
[[I don't think I'm allowed.|]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"What would I have to do?" you ask.
"Just help us in booth," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Take business car' from visitor."
"Telecom industry all men," <span class="imageLink"><<link "Peet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/peet.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "They always visit booth with model."
[[What would I have to wear?|GNO-22500 What would I wear?]]
[[Why don't you hire a real model?|]]
[[But I don't know anything about telecoms.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What would I wear?"
"Same same," smiles <span class="imageLink"><<link "the boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, pointing at your g-string. "Everybody come to booth, ha ha!"
"Business clothe," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> corrects him, a little testily.
"<div class="tooltip">Ngai la<span class="tooltiptext">Of course</span></div>," the boss says. "Just a joke. Business clothe, we help you choose. Only things you like."
[[What's the pay?|GNO-22600 What's the pay?]]
[[Why don't you hire a real model?|]]
[[But I don't know anything about telecoms.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's the pay?"
"Two day, <div class="tooltip">ten thousand Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$300<<elseif $kate.agency == "mi6">>£200<<elseif $kate.agency == "asis">>$400<<elseif $kate.agency == "csis">>$400<<elseif $kate.agency == "nzsis">>$400<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," says <span class="imageLink"><<link "the boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Plus hotel room free."
That's what, seventeen shifts in the club? Not including your share of the tips or Connor's "bonuses", but still – if you really were just a broke backpacker, you can see how you'd be tempted.
<span class="greyedOut">//[Unlocks a Secondary Mission]//</span> [[Well...okay!|GNO-22700 Kate agrees to be a booth babe]]
[[I need to check with my boss.|]]
<span class="greyedOut">//[Skips the Secondary Mission]//</span> [[Thanks, but I'm not interested.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-wideSmile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Well...okay!" you shrug. "Thanks!"
TK Kate shakes hands with Yut, everybody beams. This side quest will be playable in a future episode.
[[Continue|GNO-24000 Decorations]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/kayk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes back to the bar – presumably with a load of Bonaht's cum in her stomach. That distracts your guys, who all peer over to the other side of the bar to watch her duck under the bar. When you're just wearing heels and a thong, men are fascinated by every single move you make.
There are dozens of Polaroid photos pinned up to the backbar – topless and occasionally naked <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> barmaids from the club's past. Could one of them be Sadie?
//[[Check out the photos.|GNO-24100 Vintage]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Even though the girls in them are hardly wearing anything, you can assess the age of the photos just from hairstyles and underwear.
Some have the choppy emo haircuts and low-slung hipster <<knickers>> that were really cool when you were sixteen. A few go all the way back to the //nineties,// girls with plum lipstick and high-cut thongs and Rachel bob cuts. Weird to think they're probably pushing 50 now...
//[[Wonder where they are now...|GNO-24200 More customers]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
That's not what you meant, but you're interrupted by two new customers rocking up to the bar.
One is <span class="imageLink"><<link "big and brawny and square-jawed">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, with sunbleached ginger hair and a neat beard. The other is shorter, medium build, with dark hair and a <span class="imageLink"><<link "flat, unappealing face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
They're both wearing shorts, sandals and polo shirts. When they get to the bar, you can tell from their glassy eyes and swaggers that they've been drinking all day.
[[Hi guys, what can I get you?|GNO-24300 Hi guys]]
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Hi guys!" you shout. "What can I [[get you|GNO-24400 Ignored]]?"
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
They ignore you at first, grinning at each other instead. "What I tell ya?" the <span class="imageLink"><<link "big guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts. "Better view here or what?"
<span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts something back that you don't quite catch, but seems to be effusive agreement. He leans in close to Big Guy, standing up on tiptoes to get close to his ear. They carry on a short conversation you can't hear, eyeing you up the whole time.
//[[Wait for them to order.|GNO-24500 Big Mac's order][$kateSays to "wait"]]
[[Smile politely and wait.|GNO-24500 Big Mac's order][$kateSays to "smile"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "wait">>\
<<emote-calm>>\
<<emote-brows-raised>>\
You stand there, waiting patiently until they're ready to order.
<<elseif $kateSays == "smile">>\
<<emote-calm>>\
<<emote-brows-raised>>\
<<emote-mouth-smile>>\
You smile politely, waiting until they're ready to order.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Hi doll," <span class="imageLink"><<link "Big Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finally shouts. Another Scot, by the sound of it. He offers his hand over the bar. "You new here? I'm Mac."
//<span class="greyedOut">[Shake hands]</span>// <<link "I'm $kate.stripperName, what can I get you?" "GNO-24600 What can I get you">><</link>>
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"I'm $kate.stripperName," you shout back, shaking his big strong paw. His palm is calloused from some kind of manual labour. "What can I get you?"
"Two Changs, sweetie," <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts, holding up two fingers like he's Winston Churchill.
//[[Pour two pints of Chang.|GNO-24700 Kate pours two Changs]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You set up two pint glasses under the Chang taps, and click them on.
All seven men at the bar watch your body, while you watch the glasses slowly fill with ice cold amber lager.
When you click off the taps, tiny droplets of beer spatter up your body and breasts.
<span class="greyedOut">//[Serve the drinks]//</span> [[That's ฿300!|GNO-24800 300 Baht]]
<</page>><<silently>>
<<emote-mouth-open>>
/* <<set $kate.braSize to "large">>
<<set $avatar.body.delete("30_breasts-small-fair-bare")>> */
<</silently>>\
<<header>>\
<<page>>\
"That's 300!" you shout, pushing the beers across the bar.
"Aye," <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches into his pocket. "Get yerself one, doll."
"How does it work here?" <span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts. Afrikaner accent.
[[You pay me money, I give you beer.|GNO-24810 It's a bar]]
[[You want a bargirl?|GNO-24900 You want a bargirl?]]
[[We've got strip shows and bargirls. Girl/girl show starts at ten.|GNO-24910 Strip shows and bargirls]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"You pay me money, I give you beer."
"What?" a look of confusion crosses his <span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"It's a bar, that's how it works."
"I //mint// for a fuck," the Afrikaner clarifies. "Can we hire you? Or <<if $kate.braSize == "large">><<if $kate.hairColour == "blonde">>pigtails<<else>>blondie<</if>><<else>>big tits<</if>> over there?" he shouts, pointing to <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's bending over the bar chatting to one of her regulars. "Fuck me, Mac, stonkers on <<if $kate.braSize == "large">>these two.<<else>>that one.<</if>>"
[[We just serve drinks.|GNO-25000 We just serve drinks]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"You want a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>?" you ask.
"How 'bout you? Or <<if $kate.braSize == "large">><<if $kate.hairColour == "blonde">>pigtails<<else>>blondie<</if>> over there<<else>>big tits<</if>>?" he shouts, pointing to <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's bending over the bar chatting to one of her regulars. "Fuck me, Mac, stonkers on <<if $kate.braSize == "large">>these two.<<else>>that one.<</if>>"
[[We just serve drinks.|GNO-25000 We just serve drinks]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"We've got strip shows and <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>," you explain. "Girl/girl show starts at ten."
"Don't think I'll last til tin," the Afrikaner chuckles. "What about you and <<if $kate.braSize == "large">><<if $kate.hairColour == "blonde">>pigtails<<else>>blondie<</if>> over there<<else>>big tits<</if>>?" he points to <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, bending over the bar, chatting to one of her regulars. "How 'bout you two do a little girl/girl show right here on the bar, yeah?"
[[We just serve drinks.|GNO-25000 We just serve drinks]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"We just serve drinks," you tell him. "<<if hasVisited("GNO-24910 Strip shows and bargirls")>>I can get you two <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> if<<else>>We've got <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div><</if>>–"
"Come //onnn,"// he urges. "We've got money. You and <<if $kate.braSize == "large">><<if $kate.hairColour == "blonde">>pigtails<<else>>blondie<</if>><<else>>big tits<</if>> can take a break, right? You can [[charge us double|GNO-30000 The cavalry]]..."
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You're rescued by <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arrival at the bar, carrying a <span class="imageLink"><<link "retro instant camera">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/polaroid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. He breaks into a big sunny grin when he sees his fellow Scotsman. "Mac! C'mere, ya big bastard!"
The camera goes down on the bar, and the two share a big manly bear hug. There's some backslapping, some small talk, then <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> introduces Connor to <span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Watch them bonding.|GNO-30100 Connor introduces Mac]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
They have a brief, shouted conversation that you can't hear from behind the bar. Then <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans across it to talk to you. "That's my mate Mac!" he shouts. "He works out on the rigs. Top lad."
[[Cool.|GNO-30200 Not listening][$kateSays to "Cool,"]]
[[He seems nice.|GNO-30200 Not listening][$kateSays to "Seems nice,"]]
[[You mean on oil rigs?|GNO-30200 Not listening][$kateSays to "You mean oil rigs?"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays" you <<if $kateSays == "You mean oil rigs?">>ask<<else>>shout<</if>>, but <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> isn't paying attention. He picks up the instant camera instead, and flips it open.
"Fer behind the bar," he shouts. "Smile..."
//[[Smile.|GNO-30300 Smile]]//
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">//[Exhibitionist]//</span> [[Pose and smile.|GNO-30400 Pose and smile]]
<<else>>\
<span class="greyedOut">//[Exhibitionist] Pose and smile.//</span>
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"But..." You force a smile onto your face just before the flash [[goes off|GNO-30500 Polaroid]], dazzling in the darkness of the club.
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"But..." You instinctively strike a flattering pose just before the flash [[goes off|GNO-30500 Polaroid]], dazzling in the darkness of the club.
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-mouth-smile>>
<<if $kate.lastWornKnickers == "cheekyThongFlamingoPink">>
<<set _pink to "pink">>
<<elseif $kate.lastWornKnickers == "cheekyThongRavenBlack">>
<<set _pink to "black">>
<<elseif $kate.lastWornKnickers == "cheekyThongRobinEggBlue">>
<<set _pink to "blue">>
<<elseif $kate.lastWornKnickers == "cheekyThongRoseRed">>
<<set _pink to "hot pink">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The chunky old camera whirs and regurgitates a photo from its innards. <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes it around to develop it...then shows it to <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and you, in that order. "Nice," he shouts. "Should be some glue under the sink. It's a spray can."
You gaze down at an instant photo of yourself<<if hasVisited("GNO-30300 Smile")>>, wearing skimpy _pink <<knickers>> and a surprised smile.<<else>>, wearing skimpy _pink <<knickers>> and a big smile.<</if>>
You look...very sexy, like you did in the photo with Somchai. Not out of place amongst the [[other topless Polaroids|GNO-30501 Kate admires her Polaroid]] you just filmed for the mission team.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
In the Polaroid, the spy cam just looks like a normal necklace. There's no giveaway reflection of the camera flash in its tiny black lens.
That's reassuring. Until you remember you're holding up a topless shot of yourself, right in front of it.
//[[Stick it up on the backbar.|GNO-30600 Kate mounts her image]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Like Connor said, there's a can of adhesive spray in the cupboard under the sink. You squat down to find it, then straighten up and look around for a discreet place to mount your Polaroid.
All the time you do this, the spy cam is capturing your topless reflection in the mirrored backbar. //God, this fucking camera.//
You settle quickly on a spot just above a fridge, and give the back of the photo a [[spray of glue|GNO-30610 This is a stick up]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You have to move some bottles aside and lean over the fridge to stick it up. That's kind of embarrassing when you realise you're showing off your <<if $kate.agency == "cia" or $kate.agency == "csis">>butt<<else>>bum<</if>> to Connor and his mates.
Not to mention the spy cam dangling from your reflection's neck, recording the way your breasts hang when you're bent over.
Not much you can do except [[grin and bare it|GNO-30620 Stuck up]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A few moments bent over the fridge later, a smiling topless photo of <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer $kate.firstName $kate.surname is a small, permanent piece of the decor at the Hard Cock Cafe.
You make a mental note to grab it during your <div class="tooltip">exfil<span class="tooltiptext">exfiltration; leaving a hostile area at the end of a mission</span></div>, [[if you get the chance|GNO-30700 Back to work]].
<</page>><<silently>>
<<showFront>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
When you turn around, everybody's staring at you.
The tension in the air stops you dead in your tracks. For a long moment they're all just //looking// at you.
[[What?|GNO-30800 What?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"What?" you ask.
//"Whaaat,"// <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mimics you in a high pitch, and his buddies laugh. "You fuckin' prick tease."
"You knew what you were doing," <span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> jeers.
"Fuckin' //lovely// arse, doll." <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mimes a chef's kiss. "Dinnay listen to 'em, I loved it."
"Grab me a bottle o'Sing," Connor shouts. "And some ice for mah blue balls, Jesus Christ, Mac, [[this girl|GNO-30900 Bottle o'Sing]]."
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
//Must be the way I leaned over the fridge.// But you weren't //trying// to be sexy. The club //makes// you dress like this.
The men eye fuck you while you get <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> a bottle of Singha beer from the fridge, and pop it open. You think they're talking about you, but you can't hear what they're saying.
//[[Serve Connor his beer.|GNO-31000 Serving Connor]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You slide the cold beer over the counter, expecting more slut shaming. "Cheers $kate.stripperName," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[You're welcome.|GNO-31100 Whatever Connor][$kateSays to "urWelcome"]]
[[Whatever.|GNO-31100 Whatever Connor][$kateSays to "whatevs"]]
//[[Tight smile.|GNO-31100 Whatever Connor][$kateSays to "tightSmile"]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "urWelcome">>\
<<silently>>
<<emote-mouth-smile>>
<</silently>>\
"You're welcome." You smile, but he isn't really paying attention.
<<elseif $kateSays == "whatevs">>\
<<silently>>
<<emote-brows-attentive>>
<<emote-mouth-oh>>
<</silently>>\
"Whatever," you sass, but he isn't really paying attention.
<<elseif $kateSays == "tightSmile">>\
<<silently>>
<<emote-brows-attentive>>
<<emote-mouth-smile>>
<</silently>>\
You show him a tight, annoyed smile, but he isn't really paying attention.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
He chats with <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Flat Face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, while off to the side <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waits politely for an audience.
Your fingers are wet with spilled beer. You dry them off on a bar rag, and mop down the blue neon counter for [[something to do.|GNO-32000 Miss Lu]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
It's still quiet in the club when <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes down to the bar, which is unusual.
"$kate.stripperName," she coos, fixing you with a smile that doesn't reach all the way to her dark, gleaming eyes. "Need you [[upstair for minute|GNO-32100 Out from the bar]]."
<</page>><<silently>>
<<set $header.line1 to "''DANCEFLOOR''">>
<</silently>>\
<<header>>\
<<page>>\
<<if $avatar.underwear.includes("accessories/yutsBusinessCard/09_yutsBusinessCard")>>\
<<set $avatar.underwear.delete("accessories/yutsBusinessCard/09_yutsBusinessCard")>>\
You take the opportunity to get rid of the business card, slipping it into a cubbyhole.
<</if>>\
The guys watch with vague interest as you duck out from under the bar. As usual, <span class="imageLink"><<link "Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is dressed for the office, and standing beside her makes you feel even more naked.
She leads you away, across the sticky empty dancefloor. Some 80s power ballad is booming over the PA; the empty stripper poles on stage glint in the club lights.
//[[Follow her through the neon yellow archway.|GNO-32200 Through the archway]]//
<</page>><<silently>>
<<set $header.line1 to "''PRIVATE AREA''">>
<</silently>>\
<<header>>\
<<page>>\
You've never been through here before. But you know it's where the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> take their clients for sex.
Passing through, you peek down a corridor lined with curtained-off booths. Like changing rooms in a store – although you'd be surprised if they were for girls to strip off in private.
Immediately left after the archway, a [[staircase leads up|GNO-32300 Stairway to heaven]].
<</page>><<silently>>
<<set $header.line1 to "''STAIRWAY''">>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gestures you to go ahead. You climb up a dark narrow staircase, lit with fairy lights and yellow neon. It's precarious in high heels and you have to take it slowly, tracing the handrail in case you stumble.
The walls are lined with framed photos of nude smiling <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, all in a similar pose; lying on their backs, [[legs spread wide for the camera|GNO-32301 Stairway II]]. //Classy.// Some you recognise, some you don't.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Dotted between the smiles, spread legs and shaven pussies are...lab certificates. STD test results. It's hard to read them in the gloom, but you try your best to sweep everything with the spy cam.
These unbelievably tacky wall decorations might be of [[intel value to the mission team|GNO-32400 Brothel reception]], especially if one of the certificates has '<<Sadie>>' written on it.
<</page>><<silently>>
<<set $header.line1 to "''BROTHEL RECEPTION''">>
<</silently>>\
<<header>>\
<<page>>\
The stairs lead to a kind of reception room; mood lighting, comfy couches, 'artistic' photos of <span class="imageLink"><<link "nude women in bondage">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/artisticNudePhoto2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hung on the walls. It smells of incense and massage oil.
There are four exit doors, all unmarked, all closed. In the middle of the room is a desk with a computer.
Sitting at it is an attractive but [[severe-looking Thai woman|GNO-32500 Miss Nin]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Like Miss Lu, she's dressed for the office. But you sense a leaner, harder build lurking under the satin blouse.
It's not easy to guess her age. In that <span class="imageLink"><<link "indeterminate Asian way">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, she could be fading in her forties, or stunningly maintained in her late fifties.
There are two striking features about her – some kind of intricate black tattoo climbing out of her collar, on both sides of her neck. And her eyes. They're big and jet black. Blank and pitiless. [[Like a shark|GNO-32600 Meeting the Dragon Lady]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Perhaps unexpectedly...Ping's //Drag-oh Lady// smiles pleasantly. "<div class="tooltip">Dek mai rer<span class="tooltiptext">New girl?</span></div>?"
"<div class="tooltip">Khâ<span class="tooltiptext">Yes</span></div>," nods Lu. She sounds like a cawing bird.
"Come," says the Dragon Lady, beckoning you with a plum-painted fingernail. "Don' be shy."
//[[Approach the desk.|GNO-32700 Approaching the desk]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You step up to the desk. The rock music downstairs is muffled up here; your heels clonk on the wooden floorboards as you approach.
"Hmm." <span class="imageLink"><<link "Miss Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shark eyes roam over you, so cold and appraising that you want to fold in on yourself. You fight an urge to cross your arms over your chest, crossing your wrists in front of you instea–
"Stan' straight!" <span class="imageLink"><<link "Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snaps.
//[[Straighten up.|GNO-32710 Ten-shun]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You jerk back upright like a soldier snapping to attention.
<<if $kate.braSize == "large">>\
"<div class="tooltip">Uem na<span class="tooltiptext">Lovely tits</span></div>," <span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
<<else>>\
"<div class="tooltip">Suai mak<span class="tooltiptext">Very pretty</span></div>," <span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
<</if>>\
"<div class="tooltip">Khâ<span class="tooltiptext">Yes</span></div>," agrees <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "<div class="tooltip">Hun di duai<span class="tooltiptext">And she's in good shape</span></div>."
<<if $kate.tattoos.includes("leftHipBoneJacob")>>\
"<div class="tooltip">Nun Chue Krai? Fan rer?<span class="tooltiptext">What's that name? A boyfriend?</span></div>?"
"<div class="tooltip">Lukka ja chop. Muean dai yet fan khon uen.<span class="tooltiptext">Customers will like that. Like fucking another man's girl</span></div>." Lu chuckles.
<</if>>\
//[[Stand quietly.|GNO-37220 Staff appraisal]]//
<<link "//Smile.//" "GNO-37220 Staff appraisal">><<emote-mouth-smile>><<set $kateIsSmiling to true>><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateIsSmiling>>\
"Awwww. <div class="tooltip">Him narak<span class="tooltiptext">Cute smile</span></div>."
<</if>>\
<<if $kate.braSize == "small">>\
"<div class="tooltip">Nom lek na sumrub farang<span class="tooltiptext">Small breasts for a farang</span></div>. Connor...?" she asks, pointing to your nipple piercings.
<<if hasVisited("WELBANG-385000 M-Yuk Tattoo")>>\
"<div class="tooltip">Chai leaw<span class="tooltiptext">Of course.</span></div>"
<<else>>\
"<div class="tooltip">Mai mai nang jor ma laew<span class="tooltiptext">No, she came in like that</span></div>."
<</if>>\
<<elseif $kate.braSize == "medium">>\
"<div class="tooltip">Pom nom di. Dai lukka yer nae<span class="tooltiptext">Skinny, good breasts. She'll have many customers</span></div>."
<<elseif $kate.braSize == "large">>\
"Lulu, <div class="tooltip">ni nom yai mak!<span class="tooltiptext">they're huge!</span></div>" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "<div class="tooltip">Na ja yom pom tong na<span class="tooltiptext">We should make her go <<if $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>more <</if>>blonde</span></div>."
"<div class="tooltip">Kid muean gun lei! Hua tong, sak lai, karee farang tem tua<span class="tooltiptext">I thought the same! <<if $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>Bottle blonde<<else>>Blonde<</if>>, some tattoos, a proper farang whore.</span></div>."
"<div class="tooltip">Daai, khun Daeng ja chop<span class="tooltiptext">Yes. Daeng (Mr Kriangsak) will like it</span></div>."
<<else>>\
//ERROR IN KATE.BRASIZE VAR//
<</if>>\
You concentrate on not reacting, not wanting to reveal that you're understanding any of this.
"Turn roun'," says Lu. It takes a second to realise that she said this in English and that you //should// respond.
//[[Turn around.|GNO-37230 Turn roun']]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn and face the stairs, giving the older mamasans a full view of your rear.
"<div class="tooltip">Nan<span class="tooltiptext">Tight</span></div>." Your ass has been casually swatted so often in this place, you don't even flinch when one of them grabs your butt and squeezes it. //She's even less gentle than the customers.// "<div class="tooltip">Yeam<span class="tooltiptext">Good</span></div>."
"Where you from?"
<<if $kate.agency == "cia">>\
[[The US.|GNO-37240 England]]
<<elseif $kate.agency == "mi6">>\
[[England.|GNO-37240 England]]
<<elseif $kate.agency == "asis">>\
[[Australia.|GNO-37240 England]]
<<elseif $kate.agency == "csis">>\
[[Canada.|GNO-37240 England]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand.|GNO-37240 England]]
<<else>>\
//ERROR IN KATE.AGENCY! PLEASE REPORT THIS SO IT CAN BE FIXED. [[CONTINUE ANYWAY|GNO-37240 England]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"Uh, USA," you reply.
"Uh-huh. You sexy girl back in USA, right? Lot of boyfren'?"
<<elseif $kate.agency == "mi6">>\
"England," you reply.
"Uh-huh. You sexy girl back in Englan', right? Lot of boyfren'?"
<<elseif $kate.agency == "asis">>\
"Australia," you reply.
"Uh-huh. You sexy girl back in Austray-uh, right? Lot of boyfren'?"
<<elseif $kate.agency == "csis">>\
"Canada," you reply.
"Uh-huh. You sexy girl back in Can-da, right? Lot of boyfren'?"
<<elseif $kate.agency == "nzsis">>\
"New Zealand," you reply.
"Uh-huh. You sexy girl back in New Zealan'? Lot of boyfren'?"
<<else>>\
//ERROR IN KATE.AGENCY! PLEASE REPORT THIS SO IT CAN BE FIXED.//
<</if>>\
[[Uh, a few.|GNO-37250 A few]]
[[Just a couple.|GNO-37260 Kate's bodycount][$kateSays to "Just a couple"]]
[[Just one.|GNO-37260 Kate's bodycount][$kateSays to "Just one"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, a few."
"How many?"
[[Five.|GNO-37260 Kate's bodycount][$kateSays to "Five"]]
[[Seven.|GNO-37260 Kate's bodycount][$kateSays to "Seven"]]
[[Ten.|GNO-37260 Kate's bodycount][$kateSays to "Ten"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
You can hear the frown in Miss Nin's voice. "<div class="tooltip">Nang mai koi me prasopkarn na<span class="tooltiptext">She's not experienced</span></div>."
"<div class="tooltip">Nang pai fuek torn tum ngarn nee lae<span class="tooltiptext">She'll learn on the job</span></div>, Nin."
The //clonk clonk clonk// of high heels on wood warns you that a woman is coming up the stairs. A <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> bringing up a client? You feel an instinctive urge to cover your breasts, then [[remember you shouldn't|GNO-37270 Relieved]].
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
It is a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>, alone – one you haven't actually met yet, although you have seen her on a screen. This <span class="imageLink"><<link "tattooed Thai bad girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ami.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is the one the Russians were watching on the dressing room cam in the VIP – carefully easing in a buttplug between shows. You remember that mocking masculine cheer when she pushed it fully into place.
"Oh hi Pear," <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Hi Miss Lu." Pear shoots you a sidelong glance. "I forget my money yesterday."
This is weird: the Thai girls don't //normally// speak English to one another.
"Oh yes. Here you go." Lu hands Pear a thick envelope stuffed full of Thai banknotes. You feel like she's purposefully letting you glimpse of how much is inside. "Come, $kate.stripperName. [[Back to bar|GNO-35000 Back at the bar]]."
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''">>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/sodaGun.jpg" 50 1000 500 0>>\
The club's a little busier when you get back behind the bar. But nobody's waiting for a drink: <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> held the fort while you were gone.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beckons you over the bar when he sees you. "Yer getting yer first bar fine," he shouts.
[[Why am I being fined?|GNO-35010 Why am I being fined?][$kateSays to "Why am I being fined?"]]
[[What'd I do wrong?|GNO-35010 Why am I being fined?][$kateSays to "What'd I do wrong?"]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Huh? No, no, not...a bar fine's what a customer pays us to [[take a girl outta the club|GNO-35020 Intro to bar fines]]," he explains.
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"These boys," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, pointing to <span class="imageLink"><<link "your regulars">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "their boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, hovering anxiously off to the side. "They wanna hire you for a day with an overnight, to be their fuckin' booth babe or whatever. I told 'em no sex, yer just a barmaid, and they want you anyway."
[[Uh...the club's okay with that?|GNO-35030 The club's okay with that?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...the club's okay with that?" This is //not// what you expected.
"Aye, we hire girls off the premises all the time. Normally it's fer a shag, obviously, but...these boys say they [[dinnay want that|GNO-35040 Dinnay want that]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"I told 'em for the same price they could get a girl who'd nosh 'em all off when she was finished handin' out fuckin' leaflets, but the old boy said it's gotta be you." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "The pay's <div class="tooltip">five grand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> if you want it."
[[How much does the club get?|GNO-35050 How much does the club get?]]
[[Is it safe?|GNO-35060 Is it safe?]]
[[What do you think?|GNO-35070 What do you think?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"How much does the club get?"
"Same same. <div class="tooltip">Five grand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
<<if not hasVisited("GNO-35050 How much does the club get?")>>\
[[How much does the club get?|GNO-35050 How much does the club get?]]
<</if>>\
<<if not hasVisited("GNO-35060 Is it safe?")>>\
[[Is it safe?|GNO-35060 Is it safe?]]
<</if>>\
<<if not hasVisited("GNO-35070 What do you think?")>>\
[[What do you think?|GNO-35070 What do you think?]]
<</if>>\
<<if hasVisited("GNO-35050 How much does the club get?") and hasVisited("GNO-35060 Is it safe?") and hasVisited("GNO-35070 What do you think?")>>\
[[Is it up to me?|GNO-35080 Is it up to me?]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Is it, um...safe?"
"Oh aye." Connor laughs. "No one'd fuck with one of Mr Kriangsak's girls. They'll no lay a finger on you."
<<if not hasVisited("GNO-35050 How much does the club get?")>>\
[[How much does the club get?|GNO-35050 How much does the club get?]]
<</if>>\
<<if not hasVisited("GNO-35060 Is it safe?")>>\
[[Is it safe?|GNO-35060 Is it safe?]]
<</if>>\
<<if not hasVisited("GNO-35070 What do you think?")>>\
[[What do you think?|GNO-35070 What do you think?]]
<</if>>\
<<if hasVisited("GNO-35050 How much does the club get?") and hasVisited("GNO-35060 Is it safe?") and hasVisited("GNO-35070 What do you think?")>>\
[[Is it up to me?|GNO-35080 Is it up to me?]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"What do you think?" you ask.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "I'd do it fer two week's pay on my day off. Course, nobody's likely to hire me as a booth babe, hahaha!"
<<if not hasVisited("GNO-35050 How much does the club get?")>>\
[[How much does the club get?|GNO-35050 How much does the club get?]]
<</if>>\
<<if not hasVisited("GNO-35060 Is it safe?")>>\
[[Is it safe?|GNO-35060 Is it safe?]]
<</if>>\
<<if not hasVisited("GNO-35070 What do you think?")>>\
[[What do you think?|GNO-35070 What do you think?]]
<</if>>\
<<if hasVisited("GNO-35050 How much does the club get?") and hasVisited("GNO-35060 Is it safe?") and hasVisited("GNO-35070 What do you think?")>>\
[[Is it up to me?|GNO-35080 Is it up to me?]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-open>>
<<first>>
<<addNotification "Insight gained" "Connor – Awareness (ISIL atrocities)">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Is it up to me?" you ask, shouting over the bar.
"Course it is," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> frowns. "Yer not a fuckin', errr..." he snaps his fingers trying to recall the right words. "...<div class="tooltip">Yazidi sex slave<span class="tooltiptext">ISIL routinely enslaved Yazidi and other women and girls before their defeat at Raqqa last year.</span></div>. I'll tell 'em to fuck off if you want."
Well...you won't catch <small>DEVILFISH</small> at a telecoms conference. But it's a chance to learn more about the 'bar fine' side of the club's operations. You didn't know that existed five minutes ago.
[[Yeah, tell them to fuck off.|GNO-35100 Tell them to fuck off]]
<span class="greyedOut">//[Unlocks the ''Booth Babe'' secondary mission]//</span> [[No, it's okay, I'll do it.|GNO-35120 Kate agrees to be a booth babe]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Tell them to fuck off."
You have [[better things to do|GNO-35110 Yut's disappointment]] than help a foreign business sell telephones.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You watch <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> deliver the bad news to <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"I told him you really wanted to," Connor tells you afterwards, "but I'm a horrible fuckin' boss, and I wouldnay let ya. Dinnay worry, I'll hook him up with <<Gina>> or <<Amanda>>, same price. Plus those wee little squirts'll get to all lose their virginity in the same night, haha! Next time you see 'em [[they'll be men|GNO-35200 Getting busier]], hahaha!"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"No, it's okay," you shout, "I'll do it."
"Fine. You get paid after the job, alright? Go give 'em [[the good news|GNO-35130 The good news]], tell the boss man to come talk to me after to set it up."
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<<first>>
<<addNotification "Secondary mission unlocked" "\"Booth Babe\" will start later in the story.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//"''Yey!''"// When you tell them, <span class="imageLink"><<link "your regulars">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> huddle and punch the air like their team just scored a <<if $kate.agency == "cia">>touchdown<<elseif $kate.agency == "mi6">>penalty<<elseif $kate.agency == "asis">>try<<elseif $kate.agency == "csis">>shot on goal<<elseif $kate.agency == "nzsis">>try<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
Several of them slap a smiling, proud <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the back for his successful negotiation with Connor. <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets out the conference brochure and [[shows it to you again|GNO-35200 Getting busier]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/sodaGun.jpg" 50 1000 500 0>>\
Up on stage, the strip shows start. Business starts to pick up, new faces replacing the old ones at the bar. <span class="imageLink"><<link "Yut">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yut.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "his team">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finish their drinks and leave; <span class="imageLink"><<link "Big Mac">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bigMac.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and his <span class="imageLink"><<link "horny South African friend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flatFace.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are whisked upstairs by two willing <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
Their places are taken by a mix of new faces and [[regulars|GNO-35210 Beardy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Beardy – Sam the photographer – orders a Chang and tries to convince you, once more, to undress in his studio and kick off your unbelievably lucrative modelling career.
"You're in luck, I've actually had a cancellation tomorrow," he shouts in your ear. "Studio's all paid for and ready to go."
[[Maybe some other time.|GNO-35220 Some other time Sam]]
[[It's not my thing.|GNO-35230 Not my thing Sam]]
[[Fuck off, Sam, not doing it.|GNO-35240 Fuck off Sam][$kateSays to "fuckOffSam"]]
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-oh>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaking wet, your body's ready to fuck.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the footrail to shout in his ear. "Maybe some other time," you tell him.
<<include "GNO-35250 Kate has the hots for Sam">>
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-oh>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaking wet, your body's ready to fuck.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the footrail to shout in his ear. "Modelling's not my thing," you tell him.
<<include "GNO-35250 Kate has the hots for Sam">>
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-oh>>
<<first>>
<<addNotification "Arousal +1" "Your thong's soaking wet, your body's ready to fuck.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the footrail to shout in his ear. "Fuck off, Sam," you tell him. "I'm not doing it."
<<include "GNO-35250 Kate has the hots for Sam">>
<</page>>"I'm telling you," he shouts back, his beard tickling your jaw. "I know some serious people in the biz. You just need a portfolio."
Sam casually reaches up and squeezes your bare breasts while you're refusing him. The sensation of your stiff nipples in the palms of his hand nearly makes you gasp, but you do your very best not to let this gross guy know how much he [[just turned you on|GNO-35260 Men come, men go]].<<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<<first>>
<<addNotification "Tipsy" "You're getting a little drunk! You feel playful and confident.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Men come, men go. You step up on the footrail to take orders, get bought shots, flirt and let random men from a dozen countries fondle and squeeze your boobs.
You're aware that this is all being captured up close on the spy cam around your neck. Honestly...you're turned on, and you stopped stressing about it a few shots ago. //Lucky they haven't put some kind of...horniness sensor on me.//
Okay, these are weird thoughts. //Maybe I'm getting drunk, better drink some water.// You squirt yourself a pint of chilled water out of the soda gun, and chug it down topless while about [[twenty guys watch|GNO-35270 Bagman]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Some goofy guys whoop and cheer when you finish it. But your attention's captured by a new arrival at the bar.
A local with <span class="imageLink"><<link "gaunt, hollow cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, sleeve tattoos and a cheap duffel bag, he couldn't look more out of place amongst all the soft, tipsy tourists here to have a good time.
<span class="greyedOut">//[Bend over the bar]//</span> [[Hi, what can I get you?|GNO-35280 What can I get you?]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the footrail and lean over the bar. Someone else squeezes your boob; you ignore it. "Hi, what can I get you?"
"I need your boss," <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts back.
[[Who wants him?|GNO-35290 Who may I say is calling]]
[[One second, I'll call him.|GNO-35340 One second]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Who wants him?" You're trying to concentrate, but the fingers pawing your breast take hold of a nipple, and give it a sharp, distracting tug.
//[[Slap the hand away.|GNO-35300 Slap!]]
[[Ignore it.|GNO-35310 Tolerance]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You give the guy pawing you a sharp slap on the wrist. His hand jerks away; one man yelps and another man laughs.
<<include "GNO-35320 Dara rock">>
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You just ignore it, trying to concentrate while someone's playing with your nipple.
<<include "GNO-35320 Dara rock">>
<</page>>"Dara Rock," shouts <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Tell him Dara Rock."
That's the password Kriangsak agreed with his 'Uncle', during the phone call you overheard in the back of the Rolls Royce.
If this is a money laundering operation, as you suspect – that duffel bag is [[full of drug money|GNO-35330 Full of drug money]].<<silently>>
<</silently>>\
<<header>>\
<<page>>\
In itself, that's nothing to do with your mission – it's a problem for the Thai cops, not <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6 or CIA<<elseif $kate.agency == "asis">>ASIS or CIA<<elseif $kate.agency == "csis">>CSIS or CIA<<elseif $kate.agency == "nzsis">>SIS or CIA<<else>>ERROR IN KATE.AGENCY VAR<</if>> – but it's an important piece in the intel puzzle regarding this club's normal operations.
It's possible that gaining control of the money laundering operation could give <div class="tooltip">CTFN<span class="tooltiptext">Combined Task Force <small>NEPTUNE</small></span></div> control over Kriangsak – and control over Kriangsak is control of the club.
[[Dara Rock. One second, I'll call him.|GNO-35340 One second]]
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-35290 Who may I say is calling")>>\
"Dara Rock," you repeat. "One second, I'll call him."
<<else>>\
"One second, I'll call him."
<</if>>\
You slither off the bar, grab the phone, and punch in the extension for the manager's office. It rings a couple times until Connor picks up. "Hello?"
You have to push a finger in your other ear to hear him. "Guy at the bar to see you," you shout. <<if hasVisited("GNO-35290 Who may I say is calling")>>"Said his name is Dara Rock."<<else>>"Guy with a bag."<</if>>
"Fuckin' //finally.// Thanks. Bring the twat [[to the office|GNO-35350 Bringing the twat]]."
<</page>><<silently>>
<<set $header.line1 to "''DANCE FLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You duck out under the bar, and gesture for <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to follow. He hefts the duffel bag on his shoulder, shifting the weight, then follows you towards the No Entry Door.
As usual, nobody hassles you out on the floor when you're escorting a man. Especially one with a mean, haunted look and what you're [[pretty sure are gang tattoos|GNO-35351 Money couriers]] running up from his fingers to his neck.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
From what you know about money couriers, <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is likely to be a seasoned <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div> 'soldier'. You note the loose shirt worn over his vest, probably concealing a firearm that he'll be deadly with. Nobody wants a bagman who'll toss the money without a fight.
Everything about him seems dangerous and mean and you just //know// the analysts will monitor all the footage of him carefully. You feel so silly trotting alongside him, <<if $kate.braSize == "small">>stripped down to your <<knickers>> and nipple piercings<<elseif $kate.braSize == "medium">>stripped down to your <<knickers>> and heels<<else>>your bare breasts jiggling with every step<</if>>.
A <span class="imageLink"><<link "new bouncer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/yai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is lurking around the No Entry Door tonight. When he sees you approach, he holds it open for you to [[pass through|GNO-35360 Backstage]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You lead <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> into the backstage corridors and turn right.
A <span class="imageLink"><<link "Thai bargirl in a skimpy nurse uniform">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/fah.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes the other way, passing you as she leaves the dressing room. She shoots him a flirty look; he ignores her.
//[[Knock on the office door.|GNO-35370 Come in]]//
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Aye, come in."
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
You open the door and lead <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> into the office. <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leaning back in the desk chair, hands clasped behind the back of his head, a practised display of insouciance. "<div class="tooltip">Phoot angrit dai mai?<span class="tooltiptext">You speak English?</span></div>
"Yeah," says the bagman. "You Connor?"
"You were a no show last week," Connor chides. "My boss man was [[nae happy|GNO-35380 Fuck off farang]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck off, scotch man," <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scowls. "I don' answer to you. Or your <div class="tooltip">dor sun<span class="tooltiptext">short dick</span></div> boss. Tell him I say get fucked."
"Pfff. //Your// boss wasnay happy either." Noticing you're still here, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waves you away. "$kate.stripperName, fuck off back to work."
//Fuck. This argument already sounds like red hot intel.//
<span class="greyedOut">//[Leave]//</span> [[Okay.|GNO-35400 Just asking]]
[[Uhhh...you guys don't want anything before I go?|GNO-35390 Want a BJ?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh...you guys don't, uh, want anything before I go?"
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at you like you're a malfunctioning piece of equipment. "Well...that's kind. Want <<if $kate.braSize == "small">>Surfie<<elseif $kate.braSize == "large">>big tits<<elseif $kate.agency == "asis">>Cockadile Dundee<<else>>$kate.stripperName<</if>> to suck yer cock before she goes, big man?"
<span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't take his eyes off Connor. "Fuck off, <div class="tooltip">ee rói kuay<span class="tooltiptext">hundred dick slut</span></div>."
"Aye, $kate.stripperName. Fuck off."
[[Just asking.|GNO-35400 Just asking]]
<</page>><<silently>>
<<if hasVisited("GNO-35390 Want a BJ?")>>
<<emote-brows-attentive>>
<<emote-mouth-calm>>
<</if>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-35390 Want a BJ?")>>\
"Just //asking."// You duck out and close the door behind you. //Fuck.// There are cameras in the office, but no sound – you might have to do a second black bag job to install audio bugs in this place.
<<else>>\
"Okay."
You slip out, not wanting to betray any interest in the club's relationship with <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div>. //Fuck.// There are cameras in the office, but no sound – you might have to do a second black bag job to install audio bugs in this place.
<</if>>\
You [[wait outside the door|GNO-35401 Hanging out]] for a moment, seeing if you can hear the voices inside over the muffled jazzy stabs and choral cries of an old rock song booming out from the main club.
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
In training, you learned that pulling out your mobile phone gives you an excuse to loiter almost anywhere. But yours is in your locker, making what you're doing look extremely suspicious.
You strain your ears, but you can't hear a thing over the muffled club music. //Damn it.// The tiny mic in your necklace cam won't pick up anything from out here, if it's even still got some charge left.
You'd better get [[back to the club|GNO-35410 Back to the club]].
<</page>><<silently>>
<<set $header.line1 to "''DANCE FLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
As you get to the No Entry Door, you recognise the old rock song. You think it's called //Woman to Woman// and you first heard it last week, during the...
...yep, tonight's girl/girl show has started. Up on stage, <span class="imageLink"><<link "Pear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ami.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are [[making out in their underwear|GNO-35420 Distracted]] for the entertainment of about 50 tourists.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Woman to woman!<small>🎵</small>
<small>🎵</small>Heartache to heartache!<small>🎵</small>
<small>🎵</small>Lover to lover! <small>🎵</small>//
This has an advantage: with the crowd largely distracted by the 'lesbians', you manage to slip back to the bar with less molestation than you were psyched up for.
A light smack on the <<if $kate.agency == "cia" or $kate.agency == "csis">>butt<<else>>butt<</if>>...a few squeezes of your breasts...a drunk kid trying to kiss you.
No big deal [[getting back to the bar tonight|GNO-36000 Bar work]].
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You get behind the bar just in time to see the girl/girl show reach its final act. Back to back on their knees, <span class="imageLink"><<link "Pear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ami.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> bends over and guides one end of the double-headed dildo into her pussy.
<span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follows suit, bending over and easing herself onto the other end.
//<small>🎵</small>Strike a pose...Strike a pose...<small>🎵</small>//
To the synthesised beat of an old Madonna song, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> get down on all fours and hump the dildo, [[arched backs and thrusting hips and jiggling tits|GNO-36001 Double ended]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Come on, vogue<small>🎵</small>//
//<small>🎵</small>Let your body move to the music...<small>🎵</small>//
They're so //practised.// Bodies moving in time, arms positioned just so as not to block the audience's view of their springy, jiggling breasts. //These girls are seriously sexy.//
"They're like fuckin' pornstars!" a guy at the bar shouts to his friend. "Look at those tits bounce!"
The first time you saw a girl/girl show, it was shocking. It's not such a big deal any more.
Then you remember the spy cam around your neck. //Is it still running?// If so, you're uploading steady footage of a girl/girl dildo fuck to <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>.
//Shit.// You turn away from the stage and [[look for something to clean|GNO-36002 Something to do]], just for something non-sexual to do.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your thong's soaking.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Pear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ami.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finish their performance and share grins with the audience, and a sisterly, post-show hug with each other. While they scoop up their scattered underwear from the stage, there's a rush on the bar.
You step up on the rail, and take orders, and get your tits pinched and squeezed and cupped and groped by a succession of [[horny men aged eighteen to sixtysomething|GNO-36001 Emilia]]. You're so turned on it's hard to think straight.
Bending over the bar with your hard nipples getting tugged and tweaked by a hot South American guy, you spot <span class="imageLink"><<link "Hollow Cheeks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/yaem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leaving, without the duffel bag.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Chone gaow!<span class="tooltiptext">"Touch glasses!" – a common Thai toast</span></div>" you clink glasses with the latest guy to buy you a shot, then look for the nex...//whoa.//
For the first time ever, there's a <span class="imageLink"><<link "girl waiting at the bar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>, unless she's here off duty? In a blue t-shirt with light makeup, she just looks like a backpacker.
She's here with a guy – boyfriend, maybe, from the body language. He's <span class="imageLink"><<link "good looking">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, in a fuckboy, bad news kind of way.
[[Hey guys.|GNO-36010 Hey guys]]
<</page>><<silently>>
<<emote-mouth-open>>
<<set $emilia to {}>>
<<if $kate.firstName == "Emilia" or $kate.firstName == "Amelia">>
<<set $emilia.firstName to "Danielle">>
<<else>>
<<set $emilia.firstName to "Emilia">>
<</if>>
<<if $kate.surname == "Barrett" or $kate.cover.surname == "Barrett" or $kate.surname == "Barratt" or $kate.cover.surname == "Barratt">>
<<set $emilia.surname to "Hamilton">>
<<else>>
<<set $emilia.surname to "Barrett">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the rail, and lean over the bar. "Hey guys."
<<if $kate.agency == "asis">>\
"Ah, wicked!" <span class="imageLink"><<link "Fuckboy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> accent is straight-up <div class="tooltip">bogan<span class="tooltiptext">Aussie white trash</span></div>. "They do hire Aussies," he shouts to the <span class="imageLink"><<link "girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, nudging her arm encouragingly. "We, uh, heard you got jobs here."
<<elseif $kate.agency == "nzsis">>\
"Sweet!" <span class="imageLink"><<link "Fuckboy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> accent is straight-up <div class="tooltip">bogan<span class="tooltiptext">Aussie white trash</span></div>. "Kiwi chick," he shouts to the <span class="imageLink"><<link "girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, nudging her arm. "We, uh, heard you got jobs here."
<<else>>\
"Hey." <span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has a broad Aussie accent. "We, uh, heard you got jobs here."
<</if>>\
[[For her?|GNO-36020 For her]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"For her?"
"Yeah." <span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "Less you wanna pay me to take my clothes off, darlin'."
[[I'll pass. She got any ID?|GNO-36030 I'll pass]]
[[Hold on, I'll get a manager.|GNO-36040 Kate calls Connor]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"I'll pass," you tell him, turning your attention to the <span class="imageLink"><<link "girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> he's with. "Got any ID?" you [[shout in her ear|GNO-36031 Got any ID?]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You've been leaning in close to sweaty men all night. By comparison, <span class="imageLink"><<link "the girl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smells amazingly good. Moisturiser and shampoo.
She smiles nervously as she hands over a navy blue Australian passport. //Looks genuine.// It identifies her as <small><<= $emilia.firstName.toUpperCase()>> <<= $emilia.surname.toUpperCase()>>,</small> age 23.
[[Hold on, I'll get a manager.|GNO-36040 Kate calls Connor]]
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hold on, I'll get a manager."
You grab the phone and dial the office again. "Yep," answers Connor.
"Are you done with that guy?" you shout, pressing a finger to your other ear. "There's a girl out here looking for a job."
"Och. No peace fer the wicked. Alright, be right there. Tid, yer gonna have to finish–" you don't hear what it is, because Connor [[hangs up|GNO-36050 Waiting for Connor]].
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You hang up the bar phone. <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> catches your eye, shooting you a questioning look about the <span class="imageLink"><<link "girl at the bar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; you shrug slightly in return, then get back to serving customers.
"Hey $kate.stripperName." Paul – Ponytail, the old grey-haired sexpat – pinches your nipples sharply when you bend over the bar. It hurts at first, then immediately feels good. "Large Jack and Coke. When you gonna start working upstairs?"
[[In your dreams, Paul.|GNO-36060 Nevuary][$kateSays to "In your dreams, Paul."]]
[[The 50th of Nevuary.|GNO-36060 Nevuary][$kateSays to "The 50th of Nevuary."]]
[[Keep saving up your pension, I'll let you know.|GNO-36070 Keep saving your pension, Paul]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
<<if $kateSays == "In your dreams, Paul.">>"Every night,"<<else>>"You little minx,"<</if>> he chuckles. He gives your nipples one last firm squeeze, then lets them go so you can [[fix his drink|GNO-36080 Fixing a JD]].
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Keep saving up your pension, I'll let you know."
Paul lets out a scandalised laugh, then leans back in to shout in your ear. "I am gonna spank your arse for that one day, young lady."
<span class="yellowHighlighter">Paul will ''remember'' that.</span>
He gives your nipples one last firm squeeze, then lets them go so you can [[fix his drink|GNO-36080 Fixing a JD]].
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _emilia to "his girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You stretch up to the optics, and pour Ponytail a double JD over ice and lime.
You're used to being stared at in this job. But you're especially aware that <span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "_emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are watching you closely. //I remember staring at Roxy on that first night.// It was so weird watching a girl do normal bar tasks, naked.
And these guys came in later, so they're also seeing you get groped [[every time you lean over the bar|GNO-36081 Showing Emilia the ropes]].
<</page>><<silently>>
<<showFront>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">400<span class="tooltiptext"><<if $kate.agency == "cia">>$12<<elseif $kate.agency == "mi6">>£8<<elseif $kate.agency == "asis">>$16<<elseif $kate.agency == "csis">>$16<<elseif $kate.agency == "nzsis">>$16<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> please, Paul."
"You're a sexy little minx, $kate.stripperName," he shouts, his hand on your boobs while he pays for his drink. He's gazing over your shoulder; you realise he's checking out the reflection of your ass in the mirrored backbar. "Fuckin' hell. You know what it's gonna be like when I finally get to do you?"
[[No idea.|GNO-36082 No idea Paul]]
[[Never gonna happen.|GNO-36032 Not happening Paul]]
[[Quick?|GNO-36033 Quick Paul]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"No idea?"
"Fuckin'..." unable to describe it in words, he resorts to miming an explosion coming out of his crotch. "[[Get yourself a drink|GNO-36035 Get yourself a drink]], love. A man can dream."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Never gonna happen," you tell him firmly.
"We'll see," he says, squeezing your breasts. "[[Get yourself a drink|GNO-36035 Get yourself a drink]], love. A man can dream."
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Quick?"
<span class="greenHighlighter">Paul ''loved'' that.</span>
Ponytail bursts out laughing. "Fuckin'...probably," he admits, squeezing your boobs. "[[Get yourself a drink|GNO-36035 Get yourself a drink]], love. You're alright."
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _Emilia to $emilia.firstName>>,
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _Emilia to "The girlfriend">>,
<<set _emilia to "his girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You knock down a shot of Thai rum, then <span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> catches your eye again. He's looking like a kid in Disneyland; <span class="imageLink"><<link "_emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks jumpy and nervous.
You're expecting him to chase you on where the manager is, but he just wants a drink. "How much are beers?"
[[Chang's ฿150.|GNO-36036 Chang's 150]]
<</page>><<silently>>
<<emote-mouth-open>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _Emilia to $emilia.firstName>>,
<<else>>
<<set _Emilia to "The girlfriend">>,
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Chang's <div class="tooltip">150<span class="tooltiptext"><<if $kate.agency == "cia">>$4.50<<elseif $kate.agency == "mi6">>£3<<elseif $kate.agency == "asis">>$6<<elseif $kate.agency == "csis">>$6<<elseif $kate.agency == "nzsis">>$6<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>." He doesn't smell as fresh or fragrant as his girlfriend.
"Alright, two Changs." After a brief conference, _Emilia rummages in her <<handbag>> [[for the money|GNO-36090 Enter Connor]].
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _emilia to "his girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at your tits while you pour two Changs. Just as you serve them up, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arrives and takes over.
Moving on to other customers, you can't hear what's being said, but each time you glance over he's talking to Fuckboy, not <span class="imageLink"><<link "_emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Sounding out their relationship, you guess.
At one point Connor points to you, bending over the bar with your tits in yet another man's hands. Even though you can't hear the words, you know what Connor's saying: //[[you gonna be okay with her doing that|GNO-36091 Okay with that]]?//
<</page>><<silently>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _emilia to "his girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Your customer orders a margarita. It feels like everyone's watching you put it together: twirling the mixing tin in your hand, then splashing in shots of tequila, triple sec and lime juice over ice.
//[[Shake it up.|GNO-36092 Shaken not stirred]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
//"Woooh!" "Yeah!" "Shake it baby!"//
The guys in your section of the bar hoot and holler as you shake up the cocktail, your <<if $kate.braSize == "small">>small<<elseif $kate.braSize == "medium">>perky<<elseif $kate.braSize == "large">>big<</if>> tits jiggling on your chest.
//[[Serve up the margarita.|GNO-36093 Serve margarita]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"That's <div class="tooltip">500<span class="tooltiptext"><<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>!" At least three hands paw you when you lean out over the bar. You [[can't keep track of who's touching you|GNO-36094 Ass grope]].
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _emilia to "The girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are still in deep conversation. <span class="imageLink"><<link "_emilia's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> staring at you; she looks away when you make eye contact.
Then Connor reaches out and grabs her ass.
She flinches rigid, nearly spilling her drink, but Fuckboy just keeps talking like [[nothing's happening|GNO-36092 Ass grope]].
<</page>><<silently>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _emilia to "his girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The men talk while <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gropes <span class="imageLink"><<link "_emilia's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> ass. His hand slips casually down inside the back of her shorts.
Making some point with his jabbing hand movements, <span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says something that [[makes Connor laugh|GNO-36100 Interview booked]].
<</page>><<silently>>
<<if hasVisited("GNO-36030 I'll pass")>>
<<set _emilia to $emilia.firstName>>
<<else>>
<<set _emilia to "his girlfriend">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
That satisfies <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. He gets you to pass him a pen and pad from behind the bar, and scrawls something down for <span class="imageLink"><<link "_emilia">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emma.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – the address of his apartment, you guess.
She gulps down the rest of her drink, then leaves with <span class="imageLink"><<link "Fuckboy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jared.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, as fast as her legs will carry her. Connor beckons you over the bar.
"Office," he snaps. "[[Right now|GNO-36110 Fast walk]]."
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''">>
<</silently>>\
<<header>>\
<<page>>\
You duck out from the bar, clip-clopping fast in heels to keep up with <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Your <<if $kate.braSize == "small">>small<<else>>bare<</if>> breasts jiggle <<if $kate.braSize == "small">>on your chest<<else>>springily<</if>> as you move through the crowd.
You follow your boss across the dancefloor, through the No Entry door, along the backstage corridors.
He opens the office door...to reveal <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sitting cross-legged on the tiger rug, counting through a //huge// pile of money stacks.
"You gonna help or–"
Connor just shuts the door on him. Grabbing your wrist, he pulls you away, [[further down a side corridor|GNO-36111 Side corridor]].
<</page>><<silently>>
<<set $header.line1 to "''PRIVATE AREA''">>
<</silently>>\
<<header>>\
<<page>>\
He leads you to a little door you haven't seen before, security locked. It comes out on the other side of the neon yellow archway, near the curtained-off booths. //A back way up to the brothel.// Could come in handy.
Sounds of rhythmic sucking and muffled, encouraging feminine whimpers drift out from behind a curtain. And a gruff male voice, in English. //"...that's it, you cunt..."//
Connor steers you [[up the staircase|GNO-36112 Stairway to heaven]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Up you go, past the framed exhibition of smiles, spread legs, shaved pussies and STD tests that leads to the brothel reception.
In heels, you can't go too fast up these stairs. Connor paws your ass impatiently, groping your bare butt cheeks and the backs of your thighs as you climb.
His fingers slip up between your legs as you move, feeling your pussy through a [[flimsy scrap of hot wet lycra|GNO-36120 Brothel reception]]. After hours of being teased, being touched makes you gasp.
<</page>><<silently>>
<<set $header.line1 to "''BROTHEL RECEPTION''">>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
He lets you go as you climb through into the brothel reception. <span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are here, looking at something on the computer screen.
"What room's free?" <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"How about film room?" Miss Lu asks sweetly.
"Fuck off."
"Room 3 [[all free|GNO-36130 Brothel corridor]], Connor," Miss Nin says. "<div class="tooltip">Sanuk mai<span class="tooltiptext">Enjoy yourself</span></div>."
<</page>><<silently>>
<<set $header.line1 to "''UPSTAIRS''">>
<</silently>>\
<<header>>\
<<page>>\
A door opens into a corridor. It's like the communal hallway in an apartment block, except lit in hot pink bulbs, with the windows boarded over. Slinky pairs of <<knickers>> are pinned up on the walls for decoration.
You saw this area on the camera feeds. Stepping foot in it feels shocking. //My first time in a brothel.//
<<image "/locationPhotos/thailand/hardCockCafe/brothelCorridor.jpg" 100 1000 500 0>>\
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you through another door into a tight, winding corridor. It feels like a converted apartment, converted into bedrooms.
Muffled rhythmic thumps and [[stifled, girlish moans|GNO-36140 Room 3]] seep out from room 2 as you pass.
<</page>><<silently>>
<<set $header.line1 to "''ROOM 3''">>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> twists open the door to Room 3.
Inside is a small bedroom, lit in garish neon. A slogan on the wall promises //Bad Bitch Energy//. You remember it from the camera feeds.
<<image "/locationPhotos/thailand/hardCockCafe/badBitchEnergy.jpg" 275 1000 675 0>>\
A small, tacky bedroom with a hidden camera and a bed. Your body feels suddenly heavy, unwilling to cross over this threshold.
//Smack!// Connor slaps your bare ass; you gasp and jolt at the sudden hot sting. "[[In|GNO-36150 In]]," he commands, pushing you in firmly.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Clop, clop, clop.// With a hand on your back, you stumble into a bedroom in a whorehouse. It smells of freshly burned incense. The bedsheets are glossy satin.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> closes the door behind you. //Just him and me.// Aaand a hidden CCTV camera, up in the hard right corner, that you have to fight the urge to look at. And the one dangling around your neck.
Your necklace may have run out of charge, or it might still be recording. There's no way to tell.
It doesn't really matter, because the CCTV in here is //definitely// patched into Langley. You [[installed the spyware yourself|GNO-36152 I always feel like somebody's watching me]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"C'mon," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your ass encouragingly, gesturing you towards the bed.
Mike Dodaro's gravelly voice comes swirling back to you. //Ordering you to continue the intimate relationship with your manager...//
This is exactly what you've been ordered to do. So why does it feel so...
//[[Sit on the bed.|GNO-36154 Bed perch]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You perch hesitantly on the edge of the tacky bed, feeling the give of the mattress, the silky smoothness of satin sheets on bare skin.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> peels off his clothes, stripping off quickly and casually. If the necklace is still recording, it's capturing the POV of a young woman about to be fucked by her fortysomething boss.
//...You're obviously a tough, smart young woman, CTC has your back...//
Connor's boxers come off, and get tossed to the carpet. He walks up to the bedside, his dick [[already hard|GNO-36156 Foreplay]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He pinches your nipple. And curls a hand casually around the back of your head, pushing your face down towards his stiff cock.
//Oh god, this is on camera.//
//[[Suck it.|GNO-36158 Warming him up]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 0>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
It's obvious what he wants. You can't avoid it. Wetting your lips, you take his erection into your mouth.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''BJ check.'' \
<<link "Roll 6 or higher">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if _kateD10 + 0 gte 6>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: _kateD10+0 = <<= _kateD10 + 0>>. <<if _skillCheckSucceeded>>//BJ quality: good.//<<else>>//BJ quality: normal.//<</if>>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-mouth-blowjob>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
His stiff cock fills your mouth, your tongue slipping up and down the underside of his shaft.
With his hand on the back of your head, controlling the pace, you can feel his cock getting even stiffer as you slurp on it. The sensation sends a little thrill pulsing through your clit and your nipples.
"That's it," he murmurs, "[[suck that cock, you little slag|GNO-36150 Suck and slurp]]."
<<else>>\
His stiff cock fills your mouth, your tongue slipping up and down the underside of his shaft.
With his hand on the back of your head controlling the pace, you fight the urge to gag. Breathing deeply through your nose helps.
"That's it," he murmurs, "[[suck that cock, you little slag|GNO-36150 Suck and slurp]]."
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> with <div class="tooltip">1D10+0<span class="tooltiptext">Sexpert skill +0</span></div> to give a good BJ.
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
For what feels like a couple of minutes he makes you suck his cock. //Thump-thump-thump,// goes the bed next door against the wall.
Holding you by the hair, controlling how your head moves, all you have to do is keep your lips and tongue slipping on his cock, and try not to gag when he picks up the pace.
Your lips tingle and your mouth fills with gooey spit. This isn't like the times you've gone down on a boyfriend in the past, you've [[got much less control|GNO-36152 Gag]] than that.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Deep thrusts makes your body retch and his cock //throb// in your mouth.
He doesn't slow down a bit, not even when you gag. "That's it...good girl...[[choke on that fucking cock|GNO-36154 Enough foreplay]]..."
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
Without warning, he shoves you back onto the bed. His fingers curl into the waistband of your <<knickers>>, [[pulling them down|GNO-36156 Knickers down]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<removeKnickers>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
Your hot, wet pussy tingles with anticipation as it's suddenly bared to the room. And the camera.
//Fuck.// Before, at least you could say you didn't know you were being filmed. Now everyone knows you're aware that if you came back, you'd be fucked on film. And you volunteered anyway.
<<link "//CTC// ordered //me to do thi–//" "GNO-36158 Nuremberg defence">><</link>>
<</page>><<silently>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
Your thong comes off and <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> manoeuvres you up onto all fours on the bed. In this position, you're facing the camera. You hang your head so it can't see your face.
"Y'see me with that <<if $kate.agency == "asis">>other <</if>>Aussie slut?" he murmurs, climbing [[between your legs|GNO-36160 Had mah hand down her shorts]] behind you.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Had mah fuckin' hand down the back of her shorts. Like this," he says, grabbing your ass cheek and squeezing it. "Boyfriend just fuckin' sits there watching me, the stupid cunt..."
[[You gonna hire her?|GNO-36162 Blah blah blah][$kateSays to "You gonna hire her?"]]
[[I don't like him.|GNO-36162 Blah blah blah][$kateSays to "I don't like him."]]
[[Can't believe he let you do that.|GNO-36162 Blah blah blah][$kateSays to "Can't believe he let you do that."]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
Connor's hands pause on your hips. You look back over your shoulder and watch him pick up your <<knickers>> off the bed.
"Fuckin' [[shut up|GNO-36164 Shut up Kate]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
You look back over your shoulder to see what he means.
Just in time for a smirking <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to [[hold your thong up to your face|GNO-36164 Shut up Kate]].
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<<= '<<set $avatar.foreground.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
Your thong tastes of lycra and your pussy when he stuffs it in your mouth.
An instant later, his hard cock sinks fully into your wet naked pussy, filling you up in one smooth thrust.
You arch your back and let out a startled, girlish cry, muffled by your <<knickers>>.
//[[Spit them out.|GNO-36164 Spit it out]]
[[Hold them in your mouth.|GNO-36166 Good girl]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<= '<<set $avatar.foreground.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
//Oh. My. God.// You spit your thong out onto the satin sheets.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabs your hips and fucks you, hard and fast. Soon your bed's thumping in time with the one on the other side of the wall, and you let out an [[orgasmic little whimper|GNO-36250 Connor's a dick]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//Oh. My. God.// You can't imagine what this looks like on camera.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabs your hips and fucks you, hard and fast. Soon your bed's thumping in time with the one on the other side of the wall, and you let out an [[orgasmic little whimper|GNO-36250 Connor's a dick]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Mike Dodaro's gravelly voice comes swirling back to you. //I'm ordering you to continue the intimate relationship with your manager...//
You're doing exactly what you've been ordered to do. So why does this feel so...
"Bed," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your ass impatiently. "All fours."
//...You're obviously a tough, smart young woman, CTC has your back...//
//[[Get on all fours, face to the CCTV camera.|GNO-36170 Facing the camera]]
[[Get on all fours, ass to the CCTV camera.|GNO-36180 Mooning the camera]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Hesitantly...you climb onto a bed in a whorehouse, propped up on your hands and knees. The CCTV camera's going to have a clear view of your face through this whole thing, but that seems less embarrassing than climbing onto the bed and presenting them your ass.
Peeling off his shirt and shorts, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climbs onto the bed behind you. "You see me with that <<if $kate.agency == "asis">><<if $kate.hairColour != "blonde">>blonde<<else>>skinny<</if>> slut<<else>>Aussie slut<</if>> at the bar?" he asks, casually <<link "tugging down your <<knickers>>" "GNO-36190 Knickers down">><</link>>.
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Hesitantly...you climb onto a bed in a whorehouse, propped up on your hands and knees. It feels like you're presenting your ass to the CCTV camera, but at least you're hiding your face.
Peeling off his shirt and shorts, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climbs onto the bed behind you. "You see me with that <<if $kate.agency == "asis">><<if $kate.hairColour != "blonde">>blonde<<else>>skinny<</if>> slut<<else>>Aussie slut<</if>> at the bar?" he asks, casually <<link "tugging down your <<knickers>>" "GNO-36190 Knickers down">><</link>>.
<</page>><<silently>>
<<removeKnickers>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
"Had mah fuckin' hand down the back of her shorts. Like this," he says, grabbing your ass cheek and squeezing it. "And her boyfriend just fuckin' //sits// there watching me do it, the stupid cunt."
[[Are you gonna hire her?|GNO-36200 Knickers off][$kateSays to "Are you gonna hire her?"]]
[[Can't believe he let you do that.|GNO-36200 Knickers off][$kateSays to "Can't believe he let you do that."]]
[[What's a Yazidi sex slave?|GNO-36200 Knickers off][$kateSays to "What's a Yazidi sex slave?"]]
<hr />
//TK Kate will have the pulled down <<knickers>> art.//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown")>>'>>
<<= '<<set $avatar.underwear.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-pulledDown-rear")>>'>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
A pause; then you feel your <<knickers>> coming off the rest of the way. You lift your knees, one by one, to help him take them off.
"Fuckin' shut up," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. He reaches round and <<link "stuffs your <<knickers>> in your mouth" "GNO-36210 Shut up Kate">><</link>>.
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<= '<<set $avatar.foreground.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
They taste of lycra and your pussy.
He grips your hips and shoves his fat cock fully up inside you, no foreplay, no condom. Your breath comes out in a loud, girlish squeak, muffled on the <<knickers>> in your mouth.
//[[Spit them out.|GNO-36220 Spat out knickers]]
[[Hold them in your mouth.|GNO-36230 Good girl]]//
<hr />
//TK Kate has her <<knickers>> in her mouth.//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-sexy>>
<<emote-brows-raised>>
<<emote-cheeks-blush-fading>>
<<= '<<set $avatar.foreground.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
//Oh. My. God.// <<if hasVisited("GNO-36170 Facing the camera")>>You spit them out onto the bedsheets. You're trying to keep some dignity, but...you're not sure how dignified this is going to look when they see it in Langley.<<else>>You spit them out onto the bedsheets, hoping the whole '<<knickers>>-in-the-mouth' thing can't be seen by Langley.<</if>>
<<include "GNO-36240 Quickie fuck">>
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-brows-raised>>
<<emote-cheeks-blush-fading>>
<</silently>>\
<<header>>\
<<page>>\
//Oh. My. God.// <<if hasVisited("GNO-36170 Facing the camera")>>You hold them between your lips, trying not to think about how undignified this is going to look when they watch it in Langley.<<else>>You hold them between your lips, hoping the whole '<<knickers>>-in-the-mouth' thing can't be seen by Langley.<</if>>
<<include "GNO-36240 Quickie fuck">>
<</page>>Totally oblivious, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabs your hips and fucks you, hard and fast. Soon your bed's thumping in time with the one on the other side of the wall, and you let out an [[orgasmic little whimper|GNO-36250 Connor's a dick]].<<silently>>
<<emote-eyes-closed>>
<<set _katesFantasy to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
It feels so good. Just like always, after <<if _katesFantasy == "masochist">>hours of being pinched and groped and manhandled by strangers<<elseif _katesFantasy == "submissive">>stripping down and serving strangers for hours<<elseif _katesFantasy == "exhibitionist">>hours of being naked on display in a seedy bar<<else>>//[ERROR IN KATESFANTASY TEMP VAR]//<</if>>, your body's //so ready// for this quickie fuck.
It doesn't even matter that <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s a dick. A hard dick is all your body [[needs right now|GNO-36260 Noise discipline]].
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
You suddenly remember that the spy cam dangling off your neck records audio.
It only has 8-10 hours of battery life, and you activated it before the start of your shift – but if it's still charged, it'll pick up any noises you make. And upload them to <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>.
//[[Be quiet.|GNO-36280 Good noise discipline]]
<<link "Be ''silent.''" "GNO-36270 Strict noise discipline">><</link>>
<span class="greyedOut">[High Arousal]</span> [[Be expressive.|GNO-36290 Poor noise discipline]]//
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-36166 Good girl")>>You bite down hard on the <<knickers>> in your mouth<<else>>You try to just breathe<</if>>. If the mic dangling from your neck is still live, you only want Langley to hear the //thump-thump-thump// of the bed and the //slap-slap-slap// of <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> body thrusting into yours.
<<include "GNO-36300 Can't get u out of my head">>
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You don't want to put on a show, but you can't just make no noise at all during sex, that'd be weird.
You let a few soft, feminine gasps and murmurs mingle with the //thump-thump-thump// of the bed and the //slap-slap-slap// of <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> body thrusting into yours, and hope the battery is dead in the spy cam.
<<include "GNO-36300 Can't get u out of my head">>
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
//The battery's probably dead. Fuck it.//
You let your voice rise up, <<if hasVisited("GNO-36166 Good girl")>>muffled but <</if>>mingling with the soft cries of the <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> on the other side of the wall. //Thump-thump-thump,// go the beds against the wall. //Unh! Unh! Unh!// go the women on either side of it.
<<include "GNO-36300 Can't get u out of my head">>
<</page>>You just don't even want to think about how this'll look when they see it at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>. An officer working as a <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage</span></div> ought to have a certain...femme fatale kind of mystique.
She shouldn't be watched on video by dozens of colleagues...getting fucked...doggy style...<<if hasVisited("GNO-36166 Good girl")>>with her <<link "<<knickers>> in her mou–" "GNO-36310 Kate orgasm">><</link>><<else>>by some guy old [[enough to be her–|GNO-36310 Kate orgasm]]<</if>>//<<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Spasms of pleasure explode through you as your body's rocked by a //powerful// orgasm. You cry out noisily, <<if hasVisited("GNO-36166 Good girl")>><<= '<<set $avatar.foreground.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>spitting your <<knickers>> out onto the [[bedsheets|GNO-36320 Connor orgasm]]<<else>>fingers curling in the [[satin sheets|GNO-36320 Connor orgasm]]<</if>>.
<</page>><<silently>>
<<= '<<set $avatar.foreground.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<<emote-brows-raised>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Fuckin'...//fuuuck..."// <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> squeezes your hips, hard enough to leave bruises, as his cock thrusts and twitches and spurts inside you.
He stays inside you for a little longer, savouring the sensation. Then his cock slips out of you, leaking cum, and he slumps down on the bed.
//[[Lay beside him.|GNO-36330 Under wicked sky]]//
<</page>><<silently>>
<<showFront>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You slip down onto the bed beside him. //Bad bitch energy,// promises the neon sign. Next door, the bed's still thumping as an unknown <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> bumps and grinds with a client.
Your body feels exhilarated and relaxed: flooded with feelgood neurochemicals, used for one of its purposes. Physically, you feel great.
Emotionally...//fuuuck. I just did that on camera.//
The mental image of that footage being watched by a bunch of older colleagues you respect feels...//fuck.// Like you [[could be sick|GNO-37000 Post nut clarity]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After sex is normally when he tells you to fuck off. But this time you just lay there for a while, each lost in your own thoughts.
//I got ordered to do that,// you remind yourself. //Specifically ordered.// When they watch it at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>...they can't be surprised or mad at you, right?
And...and you found another way to get from backstage to upstairs, that could be tactically relevant. You're doing your job.
//[[So why does this feel so wron–|GNO-37010 Why does this feel so wrong]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Beside you <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grunts and pats your thigh. "C'mon, I gotta go help Tid."
Climbing over you on the bed, he pauses on top of you, looking down into your eyes. A cheeky smirk plays on his lips.
"Yer a sexy little thing." He leans down to give you a kiss.
//[[Let him kiss you.|GNO-37020 Kate/Connor kiss]]
[[Turn your face away.|GNO-37030 Kate avoids the kiss]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Firm, masculine lips brush yours. His tongue slithers into your mouth.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> kisses down your body; nibbling your neck, licking a nipple.
<span class="greenHighlighter">Connor ''liked'' that.</span>
Then, reluctantly, he [[stands up|GNO-37040 Brothel reception]].
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You turn your face away, getting a kiss on the cheek instead.
Connor plants another kiss on your neck. Licks your nipple. Like he's reminding you that he gets to use your body. //Fine,// you think, //but I don't have to make out.// Enforcing a boundary with him feels like a little victory.
<span class="redHighlighter">Connor ''disliked'' that.</span>
Then, finally, he [[stands up|GNO-37040 Brothel reception]].
<</page>><<silently>>
<<set $header.line1 to "''BROTHEL RECEPTION''">>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
You pull on your <<knickers>> and follow him back out to the brothel reception. "Hello you two," <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missLu.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. <span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/missNin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reacts to your flushed, just-fucked appearance with an approving smile.
<span class="greenHighlighter">Miss Nin ''liked'' that.</span> <span class="greenHighlighter">Miss Lu ''liked'' that.</span>
One of the bar regulars is up here, a tall skinny Aussie you've served in the bar a couple of times. He looks surprised to see you. "Just showin' her round," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Ah yeah?" the Aussie asks, eyebrows arched. "You lucky bastard."
"C'mon, you," says Connor, smacking you lightly [[on the ass|GNO-37050 Stairway]].
<</page>><<silently>>
<<set $header.line1 to "''STAIRWAY''">>
<</silently>>\
<<header>>\
<<page>>\
Halfway down the stairs, you and <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> have to stop and let <span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> squeeze past, leading an anxious young <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> up to the brothel. He grins sheepishly at you as he passes.
"Hey, I think Mac liked ya," Connor says. //Mac...//it takes a beat to recall the big Scottish guy you served at the start of your shift. Connor's rigworker friend. "What'd ya think of him?"
[[Not my type.|GNO-37060 Kate is ambivalent about Mac][$kateSays to "Not my type,"]]
[[Nothing, really.|GNO-37060 Kate is ambivalent about Mac][$kateSays to "Nothing, really,"]]
[[He seemed okay.|GNO-37060 Kate is ambivalent about Mac][$kateSays to "He seemed okay,"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays" you shrug.
"Oh aye? You could do worse, he makes a //ton// of fuckin' money on the rigs. Want me to try and set you up on a date?"
[[I'm not a bargirl.|GNO-37070 Not a bargirl]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>."
"Noe //that// kind of date," he assures you. "Normal date. Honest, he's nice. Gentle giant."
The Hard Cock Cafe is //not// where you're going to meet your next boyfriend. But...could Mac be a source of intel on the club, or Connor?
[[No thanks.|GNO-37080 No thanks]]
<span class="greyedOut">//[Unlocks the ''Big Mac'' secondary mission]//</span> [[Alright, give him my number.|GNO-37090 Kate agrees to date Big Mac]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No thanks."
"Your loss," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
//[[Go downstairs.|GNO-37100 Office]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<<first>>
<<addNotification "Secondary mission unlocked" "\"Big Mac\" will start later in the story.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Alright," you shrug. "Give him my number."
"Will do." He chuckles. "Yer //such// a slut."
//[[Go downstairs.|GNO-37100 Office]]//
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
Down in the office, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> counts some money out of the big stacks <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is counting on the floor.
"Wages...your share o'the bar tips...bonus." //He gives me <div class="tooltip">฿750<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> every time he fucks me.// "<<Mandy>> says you need some money fer <<Zoe>>'s thing?"
[[I'll manage.|GNO-37110 I'll manage]]
[[Um...is that okay?|GNO-37120 Is that okay?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll manage."
"C'mon, dinnay be proud." He passes you an extra brown <div class="tooltip">฿1000 note<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. "Have a good time, it's on us."
[[Okay, thanks.|GNO-37130 Okay, thanks]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um...is that okay?"
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Aye," he smiles. He passes you an extra brown <div class="tooltip">฿1000 note<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. "Have a drink on us."
[[Okay, thanks.|GNO-37130 Okay, thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug, "thanks."
"Dinnay mention it. Alright, go get changed, you can knock off early. Think I gotta help count up some fuckin' money."
"[[Finally|GNO-38000 Title card]]," <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grumbles.
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<removeShoes>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-top-darkGreyTankTop>>
<<wear-ring-transmitterRing>>
<<wear-necklace-turquoiseSpyNecklace>>
<</silently>>\
<a data-passage="GNO-38010 Reporting in">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
//God, what a night.//
Back in your room at the hostel, you open up Signal and [[make contact with Ian|GNO-38020 Zigzag]].
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Early finish tonight
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
[[Great.|GNO-38030 Great]]
[[Not sure how I feel about that.|GNO-38040 Not sure how I feel]]
[[I hate that I suddenly have to do all this on camera.|GNO-38080 I hate doing this on camera]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Early finish tonight
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Great.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
it means i can get to you quicker if something goes wrong. and have a better idea what to expect
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
[[I know.|GNO-38050 I know]]
[[I know, sorry.|GNO-38060 I know, sorry]]
[[It's just embarrassing.|GNO-38070 It's embarrassing]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Early finish tonight
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Not sure how I feel about that.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
it just means i can get to you quicker if something goes wrong. and have a better idea what to expect
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
[[I know.|GNO-38050 I know]]
[[I know, sorry.|GNO-38060 I know, sorry]]
[[It's just embarrassing.|GNO-38070 It's embarrassing]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Early finish tonight
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<<if hasVisited("GNO-38030 Great")>>Great.<<else>>Not sure how I feel about that.<</if>>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
it means i can get to you quicker if something goes wrong. and have a better idea what to expect
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
I know.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
everybody knows this can't be easy for you but you're doing great. keep your chin up okay
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Okay
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|GNO-39000 Feeling better]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>. Early finish tonight
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<<if hasVisited("GNO-38030 Great")>>Great.<<else>>Not sure how I feel about that.<</if>>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
it means i can get to you quicker if something goes wrong. and have a better idea what to expect
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
I know, sorry.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
don't apologise, everyone knows you're going through a lot. but you're doing great. just keep your chin up okay
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Okay
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|GNO-39000 Feeling better]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<<if hasVisited("GNO-38030 Great")>>Great.<<else>>Not sure how I feel about that.<</if>>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
it means i can get to you quicker if something goes wrong. and have a better idea what to expect
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
It's just embarrassing.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
don't be embarassed. clark briefed everyone you're under direct orders from <div class="tooltip">dctc<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div>. everyone knows you're just doing it for the mission, okay?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Okay
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|GNO-39000 Feeling better]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">00:48</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>, early finish tonight.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
yeah we saw 👌🏼 the cams help us keep track of you better
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
I hate that I suddenly have to do all this on camera.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
clark briefed everyone you're under direct orders from <div class="tooltip">dctc<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div>. everyone knows you're just doing it for the mission, okay?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Okay
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|GNO-39000 Feeling better]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You set your phone down, feeling a little better after talking with Ian.
You were carrying around a low-key sense of dread that HQ would react badly to the footage – there'd be some kind of reversal of your orders, or even just some kind of off-colour joke that would embarrass you. But everything seems okay.
//How many people are even seeing the footage?// Teams like this are normally kept small. Maybe...[[20-30 people? Mostly CIA|GNO-39010 Leviathan]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
More than 22 //thousand// people work at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>. You could easily go your whole career without ever bumping into one of them.
Still...it's possible, right? <<if $kate.agency == "cia">>Officers get moved around between teams all the time.<<else>><<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey House<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>> often hosts CIA exchange officers. It's even possible //you// could get posted to Langley, especially when your bosses find out that you've caught the eye of the Prince of Darkness.<</if>>
If you did end up working with someone who recognised you from the footage...would they even tell you?
//[[Get ready for bed.|GNO-39020 Getting ready for bed]]//
<</page>><<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You think that over while you're peeling off your clothes. //Probably not.// That'd be embarrassing, right? Being introduced to a <<if $kate.agency == "cia">>new team leader<<else>>hot CIA officer<</if>> who recognises you from the <small>DEVILFISH</small> mission footage.
Trying your best to make a good professional impression on a guy who's seen you let a much older man stuff your <<knickers>> in your mouth and fuck you doggy style.
You catch your reflection in the mirror, then remember you're still wearing the spycam.
//[[Take it off.|GNO-39030 Necklace off]]//
<</page>><<silently>>
<<remove-necklace-turquoiseSpyNecklace>>
<<first>>
<<addNotification "Arousal +1" "A little 'me time' might help you sleep.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// Although the battery must be dead by now. If not...they only saw you in your bra. You tuck the necklace away in the bottom of a dresser drawer, anyway, under some clothes.
//So...//what would this imaginary Jack Ryan have seen, on screen at Langley? //He'd have seen me naked.//
//[[Get naked.|GNO-39040 Getting naked]]//
<</page>><<silently>>
<<removeBra>>
<<set $avatar.clothing.pushUnique(("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes-undone4"))>>
<<set $avatar.clothing.delete(("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes"))>>
<</silently>>\
<<header>>\
<<page>>\
//Pleased to meet you, <<if $kate.agency == "cia">>sir<<else>>Jack<</if>>. $kate.firstName $kate.surname<<if $kate.agency != "cia">>, <<if $kate.agency == "mi6">>MI6<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "nzsis">>SIS<<else>>HQ<</if>><</if>>.//
God, that'd be embarrassing. Of course he wouldn't say anything, how could he? Maybe he wouldn't even be sure it was you. He'd have to log back into the <small>DEVILFISH</small> mission archives to check.
//[[Keep undressing.|GNO-39050 Keep going]]//
<</page>><<silently>>
<<set $avatar.clothing.delete(("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes-undone4"))>>
<<remove-shorts-blueDenimDaisyDukes>>
<</silently>>\
<<header>>\
<<page>>\
You peel down your shorts, one eye on your reflection in the full-length mirror. //Who knows how long I'll be out here?// He might have watched you strip a hundred times on camera.
//No need to wonder what I look like under my suits. He'd just know. And get to watch me in the mission archives any time he wanted.//
<<link "//<<Knickers>> off.//" "GNO-39060 Knickers off">><</link>>
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
A last quick visual check that the dresser drawer containing the spycam is fully closed. Then you peel off your thong and [[get into bed|GNO-39100 Menage a moi]].
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("teenRom/50_katesBedsheets2")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You tweak your nipples under the sheets, warming up your body for an impromptu girls' night in.
//Okay. Where do I meet Jack Ryan?
[[Working together at Langley.|GNO-39110 Langley fantasy]]
[[Randomly at a defence conference.|GNO-39150 Conference fantasy]]
[[Undercover as a couple.|GNO-39190 Undercover couple]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Jack, this is the new <<if $kate.agency == "cia">>transfer<<else>>exchange officer from <<if $kate.agency == "mi6">>MI6<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "nzsis">>SIS<<else>>//ERROR IN KATE.AGENCY VAR//<</if>><</if>>. $kate.firstName $kate.surname."//
You imagine walking into the office of a guy who spent weeks or months watching you strip and fuck on camera.
Fantasising about you, obsessing over you like a favourite pornstar.
Trying to be professional instead of just [[ripping your clothes off|GNO-39120 Rip your clothes off]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You imagine it happening in Langley. He'd walk past your office, seeing you working late one night. And be unable to resist.
You picture him sweeping your things off your desk, lifting you easily up onto it, fiercely kissing you and stripping you out of your suit.
No explanations, just stripping you like he's seen [[other men strip you|GNO-39130 Squeezies]] during the <small>DEVILFISH</small> mission.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
With your free hand you squeeze your breasts, imagining his hands on your bare tits in your <<if $kate.agency == "cia">>new<<else>>hotdesk<</if>> office at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>.
It wouldn't even matter if you cried out or told him to stop, he'd just [[shut you up with...|GNO-39140 Shut up Kate]]
<</page>><<silently>>
<<emote-mouth-open>>
<<= '<<set $avatar.foreground.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
You stuff your thong into your mouth and keep masturbating, imagining getting //ravished// on your desk at work. Being [[fucked hard|GNO-39300 Show me your O face]] with your skirt around your waist, your shirt hanging off your body, and your <<knickers>> in your mouth...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your normal work involves attending defence conferences from time to time.
Never with <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> printed on your visitor pass, of course, but that just makes it more interesting for Jack Ryan.
//Is the 'journalist' sitting next to me for a talk on Mossad cyber attacks actually Officer $kate.firstName[0] from the <<link "<small>DEVILFISH</small> thing?" "GNO-39160 Going for a drink">><</link>>//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You imagine talking with him after the seminar. Grabbing a drink with him afterwards, some wine bar in a strange city.
And being seduced so easily by a guy who's read your psych profile and spent weeks or months watching you strip and fuck, learning exactly how to press all your buttons.
//[[God, I wouldn't have a chance.|GNO-39170 Hotel room]]//
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
From the wine bar straight to his hotel. //Like a Bond girl.// You imagine making out in the corridor outside his room, his hands all over your body, your shirt unbuttoned all the way before you're even through his door.
He'd know //exactly// how to fuck you, just like he saw you get fucked all those times on camera and fantasised about this moment. And you'd be back to your double life: going from a smart young 'journalist' at a defence conference, to being naked on some stranger's hotel bed two drinks later.
The kind of girl you fuck doggystyle an hour after you meet her. The kind you <<link "shut up with her own <<knickers>>" "GNO-39180 Shut up Kate">><</link>> if she complains...
<</page>><<silently>>
<<emote-mouth-open>>
<<= '<<set $avatar.foreground.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
You stuff your thong into your mouth and keep masturbating, imagining getting [[fucked hard|GNO-39300 Show me your O face]] in a hotel room by some colleague you just met...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"$kate.firstName, Jack. You're going in as a married couple..."//
You imagine yourself undercover in some embassy function, Jack Ryan in a tux, you in a silk dress. Planting the bug, meeting the contact, whatever.
Then back to the hotel. [[Sharing a room, of course|GNO-39200 Hotel room]], you're supposed to be married.
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
A gentleman would offer to sleep on the couch, of course. But maybe a guy who's watched you strip and fuck dozens of times while undercover won't feel like being a gentleman when he gets you back to the hotel room.
//"We're undercover,"// you imagine him telling you, //"you're my wife. Get this [[fucking shit|GNO-39210 Strip]] off."//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You imagine him stripping you out of your silk dress, casually and unceremoniously, just //stripping// you naked like he saw men do at the Hard Cock Cafe.
He spent weeks or months watching you strip and fuck during the <small>DEVILFISH</small> mission. He read your psych profiles. He knows exactly how to press all your buttons.
You picture him peeling off your expensive designer lingerie, stuffing your <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>> thong [[into your mouth|GNO-39220 Shut up Kate]] when you object...
<</page>><<silently>>
<<emote-mouth-open>>
<<= '<<set $avatar.foreground.pushUnique("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<</silently>>\
<<header>>\
<<page>>\
You stuff your thong into your mouth and keep masturbating, imagining getting [[fucked hard by a hot CIA officer|GNO-39300 Show me your O face]] right after a mission...
<</page>><<silently>>
<<emote-mouth-oh>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Your breath comes out in muffled, girlish gasps as you push yourself over the edge. Spasms of euphoria jolt through your body from your scalp to your toes.
You bite down hard on your thong until the feeling subsides.
//[[Spit it out.|GNO-39310 Spit it out]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-calm>>
<<emote-mouth-oh>>
<<= '<<set $avatar.foreground.delete("/clothing/underwear/' + $kate.lastWornKnickers + '/30_knickers-' + $kate.lastWornKnickers + '-inMouth")>>'>>
<<set $avatar.clothing.delete("teenRom/50_katesBedsheets2")>>
<</silently>>\
<<header>>\
<<page>>\
//Fuuuck.// You kick off the bedsheets and watch your chest rise and fall in time with your strained breathing.
Whatever other effects this mission is having on you...it's giving you some seriously kinky 1 <small>A.M.</small> fantasies. What was it last time? <<if hasVisited("GOF-7970 Dildo show fantasy")>>Doing a dildo show onstage at the club?<<elseif hasVisited("GOF-8000 Buttplug fantasy")>>Wearing a buttplug onstage in the club?<<elseif hasVisited("GOF-8030 Take a number")>>Strangers taking turns on you out on the club floor?<<elseif hasVisited("GOF-8040 KJ's Tumbledown fantasy")>>Getting down on all fours and mopping up spilled beer with your <<knickers>>?<<elseif hasVisited("GOF-8080 Harder")>>Getting bent over your desk at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>R.G. Casey House<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>//ERROR IN KATE.AGENCY VAR//<</if>> and spanked?<<elseif hasVisited("GOF-8110 Sofa fuck")>>You and Ilsa getting bent over a couch in the VIP and fucked side-by-side?<<elseif hasVisited("GOF-8120 Fluffer fantasy")>>Cleaning up Ilsa's pussy with your mouth right after she got fucked?<</if>>
//This isn't like me.// Maybe it's a coping mechanism, the way you avoid going crazy in a hypersexualised environment.
Maybe you'll go back to normal when you're back in the real world. //[[Maybe...|GNO-45000 Title card]]//
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "All the touching and attention is getting you hot, wet and ready.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
It's your fourth shift and you're familiar with the routine. When the music goes up, you, <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/roxy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and the other barmaids step up on the footrails and lean out to hear orders. And that's when all the groping starts.
It's amazing how quickly you've gotten used to it. Man after man, strangers and casual acquaintances, squeezing your boobs, tweaking and flicking and tugging your stiff nipples, while they shout in your ears and buy you shots.
For [[hours|GNO-35200 Long foreplay]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's like foreplay that goes on forever. After a while you don't even care who's doing it //TK scene about Kate getting turned on.//
//Mention that Connor is behind the bar [[doing something|GNO-35300 Come on you]] like counting up the money.//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
A sharp stinging //smack// on your ass makes you gasp in surprise.
"Come on, you," <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts. "[[Office|GNO-36000 Walking with the boss]]."
<</page>><<silently>>
<<set $header.line1 to "''DANCEFLOOR''">>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
The men watch you duck out from behind the bar, and follow <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> across the dancefloor. He's carrying the money bag.
It's winding down, just a few guys scattered around, watching <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/mem.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suck off a dildo onstage.
Cross Eye the bouncer holds open the No Entry door for Connor, and the two of you [[pass backstage|GNO-36100 Backstage corridor]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
He punches the code into the door to the manager's office. //This is it:// the moment you've been trying not to think about all night.
The mission team has control of the camera system now, thanks to you. On it's own, that's not enough to catch <small>DEVILFISH</small> – they can't just storm the club next time some guy comes in who maybe, sorta looks like the artist's impression.
But they can keep an eye on the club through the [[video feeds you hacked on Sunday morning|GNO-36200 Manager's office]].
<</page>><<silently>>
<<set $header.line1 to "''MANAGER\'S OFFICE''">>
<</silently>>\
<<header>>\
<<page>>\
Your heels click on the tile floor as you step inside the office.
<<image "/locationPhotos/thailand/hardCockCafe/managersOfficePlaceholder.jpg" 0 1000 563 0>>\
It's one thing being filmed having sex without your knowledge. It's another thing to walk into a room that you //know// is being filmed and recorded for all your new work colleagues, and [[fuck a middle-aged guy you hardly know|GNO-36300 Over the desk]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Over the desk," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, patting your ass.
//Oh god. What's this gonna look like.// It takes concentration to avoid glancing up into the corner of the ceiling where you now know the hidden camera to be.
//[[Approach the desk.|GNO-36400 Kate assumes the position]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You look down at your shoes instead. //Click-click// on the tiles. Soft thumps over the tiger rug. //Click-click// and you're at the desk.
//[[Bend over it.|GNO-36500 Bend over]]//
<</page>><<silently>>
<<emote-cheeks-blush-fading>>
<</silently>>\
<<header>>\
<<page>>\
Despite the aircon, you feel heat prickle up in your cheeks as you bend over the desk, resting on your elbows, your ass and your wet pussy in the air.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> heads around the other side of the desk, takes a seat in the office chair. He plops down the money bag, grabs the notebook out of the drawer, scrawls some numbers next to today's list of girls.
"Think Mac liked ya," he murmurs, not looking up from the pad. "What'd ya think of him?"
[[Not my type.|]]
[[Nothing, really.|]]
[[He seemed okay.|GNO-36600 Mac seemed okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He seemed okay," you shrug.
"Oh aye? You could do worse, he makes a //ton// of fuckin' money on the rigs. Want me to try and set you up on a date?"
[[I'm not a prostitute.|GNO-36700 I'm not a prostitute]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a prostitute."
"Noe //that// kind of date," he assures you. "Normal date. Honest, he's nice. Gentle giant."
The Hard Cock Cafe is //definitely// not where you're going to meet your next boyfriend. But could Big Mac be a source of intel on the club, or Connor?
<span class="greyedOut">//[Unlocks a Secondary Mission]//</span> [[Alright, give him my number.|GNO-36800 Kate agrees to date Big Mac]]
<span class="greyedOut">//[Skips the Secondary Mission]//</span> [[No thanks.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Alright," you shrug. "Give him my number."
"Good girl." He pulls out a <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>mobile<</if>> phone – not the one he used to take photos of you in his apartment but a cheap little fliptop, probably a <div class="tooltip">burner<span class="tooltiptext">a <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>mobile<</if>> phone, used for a short time then discarded. Popular with criminals, spies and adulterers</span></div> – and [[dials a number|GNO-40000 Criminal activity]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"It's Con," he announces after a short wait. "//[TK Crush has asked a subject matter expert for some technical dialogue related to money laundering ops here.]//"
//[TK Kate analyses the jargon based on her technical understanding of illicit finance networks]//
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> kills the call, [[looks at you quizzically|GNO-40100 Shoulda got a BJ]]. //Does he know I understood that?//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Shoulda got ya to suck my cock during that," he grins. "Woulda been hot."
The notebook goes back in the desk drawer; the office chair creaks as he stands up. //Fuck, here it comes.// You try to picture what it's going to look like from the angle of the hidden camera.
What are Clark and Ian and all the analysts back at Langley and Faslane [[going to see|GNO-40200 Knickers off]]?
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
He comes around behind you. You feel his fingers on your naked hips, then in the [[waistband of your thong|GNO-40300 Unceremonious]].
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
The little scrap of modesty slides down your legs quickly and unceremoniously. Your heels tick-tock on the floor tiles as you step out of it.
"Such a slut," Connor murmurs. His hand presses firmly on your back, squashing your <<if $kate.braSize == "small">>small pierced breasts<<elseif $kate.braSize == "medium">>breasts<<elseif $kate.braSize == "large">>cushiony breasts<</if>> on the cold hard desk. You hear him fumbling with his shorts, right behind your [[exposed pussy|GNO-40400 Thumb job]].
<</page>><<silently>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
Then his thumb slips roughly between your lips, feeling how fucking //wet// you are. It brushes your clit, making you flinch and gasp.
"You dirty <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Aussie<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> bitch," he mutters. "You fuckin' loved bending over the fridge earlier. I shoulda let 'em [[both fuck ya|GNO-40500 Penetrated]]."
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
His cock nudges inside you, then sinks in to the hilt, joining you together in one smooth motion.
After hours of being teased, your body responds powerfully to being roughly taken like this. //TK CRUSH could you be a bit less robotic and detached here please buddy//
//TK Kate [[cries out|GNO-40600 Shut up]]. Lucky there's no sound on the surveillance feed.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Shut up," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mutters. He reaches around and stuffs your <<knickers>> into your mouth. They taste of lycra and your pussy.
//[[Spit them out.|]]
[[Keep them in your mouth.|GNO-40700 Muffled fuck]]//
<hr />
//TK visual reference: the avatar has her <<knickers>> in her mouth, e.g.://
<<image "/test/preview3.jpg" 0 1000 576 0>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//TK The surveillance camera records Kate being fucked hard, with her <<knickers>> stuffed in her mouth. Her cries are muffled on the scrap of fabric.//
//Kate comes fast on Connor's thrusting cock.//
//You feel like he's close, then suddenly he [[pulls out|GNO-40800 Oral]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-worried>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//TK Connor manhandles you into a new position, squatting down on your heels in front of the desk.
With a hand holding the top of your head, he pushes the tip of his cock into your mouth, with your <<knickers>>, and [[jerks off|GNO-40900 Oral cumshot]].//
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//TK Pumping his cock frantically, Connor groans as it twitches and squirts a big, gooey load into your mouth.
Ropes of gooey sperm [[splash your mouth and your knickers|GNO-41000 Lovin' spoonful]].//
<hr />
//TK custom cumshot, e.g.//
<<image "/test/757_1000.jpg" 0 1000 750 0>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//TK his cock twitches and pulses several times in your mouth. He stares down at you, face flushed, admiring his handiwork.
When he's thoroughly finished, he pulls out and lets go of your head. "Fuck me," he grins, "that was hot."//
//[[Get to your feet.|GNO-41100 Stand up]]//
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You straighten up unsteadily, removing your <<knickers>> from your mouth. They're wet with spit and splattered with his cum.
//[[Put them back on.|]]
[[Carry them.|GNO-41200 Getting paid]]//
<hr />
//TK avatar is now carrying her <<knickers>> in one hand.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sits down heavily in the office chair again, a satisfied smile on his flushed face. "Yer a hot piece of ass, kid," he says appreciatively. "Yer gonna go a long way here."
Pulling a rainbow wedge of colourful Thai banknotes out of the money bag, he counts out your pay. "Wages...your share o'the bar tips...and a bonus fer being a star employee. <<Amanda>> says you need some spending money fer <<Zoe>>'s wee birthday bash?"
[[I'll manage.|GNO-41300 I'll manage]]
[[Is that okay?|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll manage."
"C'mon, dinnay be proud." He adds a brown <div class="tooltip">฿1000 note<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> to your little pile. "Have a good time, it's on us."
[[Okay, thanks.|GNO-41400 Okay, thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug. "Thanks."
You scoop up the money, wondering what this whole thing must have looked like on the surveillance feed. //TK reflection, internal emotion.//
[[Are you done with me?|]]
[[Can I go now?|GNO-41500 Can I go now?]]
[[Something something.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Can I go now?" //TK Kate is feeling post-orgasmic clarity; she just wants to get out of here.//
"Aye, get outta here. See you on, uh..." he opens the desk drawer to check the roster. "Saturday. [[Enjoy the thing|GNO-42000 Walk of shame]]."
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''">>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You leave the office and head for the dressing room, clutching your <<knickers>> in one hand and your money in the other.
<span class="imageLink"><<link "Tid's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coming the other way, leading <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ploy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to the office. She shoots you a comradely smile as you pass in the corridor; Tid, as usual, [[acts like you don't exist|GNO-43000 Title card]].
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / MAY 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-top-darkGreyTankTop>>
<<wear-ring-transmitterRing>>
<<wear-necklace-turquoiseSpyNecklace>>
<<apply-makeup-eyeshadow-smoky>>
<<apply-makeup-eyeliner-ramona>>
<<apply-makeup-lipstick-rubyWoo>>
<<apply-makeup-manicure-midnightMission>>
<<apply-makeup-pedicure-midnightMission>>
<</silently>>\
<a data-passage="GNO-43100 Reporting in">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
Back in your room at the hostel, you open up Signal and [[make contact with Ian|GNO-43200 Zigzag]].
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 01:38
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
who's the woman w/Lu?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
"Miss Nin." Another <div class="tooltip">mama san<span class="tooltiptext">a woman who manages the female workers in a brothel</span></div> I think, contact report to follow.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
👌🏼 i know it must suck but you're doing great w/Connor (TK positive reinforcement from Ian, under instruction from Kate's agency psychologist)
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|GNO-45000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<avatar-getWet>>
<<wear-shoes-greyToeThongFlipFlops>>
<<emote-eyes-closed>>
<</silently>>\
<a data-passage="GNO-45100 Shower thoughts">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/bathroomThursdayTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the weak, tepid spray of the hostel shower, you think through your plans for <<Zoe>>'s party tonight.
Ideally, you want to learn something about 'Sadie', the <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> who may have seen <small>DEVILFISH</small> when he visited the club back in February.
You'll also be assessing these women for the <div class="tooltip">six key qualities<span class="tooltiptext">access to information; a reason to help you; discretion; nerve; self-motivation; likeability.
Few agents have all these qualities; <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> teaches that the top 3 are "access, access and access"</span></div> of a potential <div class="tooltip">agent<span class="tooltiptext">a person working for an intelligence service, not always knowingly</span></div>.
//[[What should I be aiming for...|GNO-45200 What's my objective]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your infiltration's still in its early phases. You should probably focus on just building rapport with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>; you can't cultivate an agent who doesn't even like you.
From a mission control perspective, tonight will be a success if "$kate.stripperName" makes [[one or two new BFFs|GNO-45201 How to win friends]] tonight.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It sounds weird, but part of <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> training is how to quickly make friends. You had weeks and weeks of training that basically boiled down to 1: be positive and supportive, 2: be interested in others and 3: find (or invent) common interests.
<div class="greyHighlighter">\
<b>New rule: <i>Rapport.</i></b> Making a character //like// you enough can unlock new dialogue options that advance your mission.
</div>\
You're really not sure what you'll have in common with a bunch of sex workers. //Just need to keep an open mind.//
Maybe it'll even be fun! You haven't had a girls' night out in forever. The last one you were invited to was...[[October last year|GNO-45210 Bikini line refresh]]?
<</page>><<silently>>
<<set _linkDescription to "Dry off and get dressed.",
_linkTarget to "GNO-45212 Robed">>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
You had to drop out at the last minute because of that truck bombing in Mogadishu. You couldn't explain that to your <<uni>> friends, of course. Sometimes the worst part about this job is not being able to talk to anybody about it.
<div id="Bikini" class="city">\
<div id="bikiniLines">\
<<parlour-neatBikiniLines>>
</div>\
</div>\
<div id="exitNavigation">\
<<if $kate.bikiniLine != "georgeW">>\
<<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">>
<</if>>\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
Back in your room, you dry your hair and think about what to wear for tonight.
<<link "//Choose some underwear.//" "GNO-45214 Underwear decision">><<remove-bathRobe-whiteBathRobe>><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-2800 I don't have a thing to wear") and not hasVisited("GNO-12400 Kate buys going out clothes")>>\
You're borrowing clothes from <<Amanda>>. That probably means you should pick minimalist underwear; you don't want to get <div class="tooltip">VPL<span class="tooltiptext">Visible Panty Line</span></div> or show too much bra.
<<else>>\
Time to pick your underwear for tonight. <<if hasVisited("FNG-12450 Kate buys the separates")>>You'll have to go braless with the cleavagey red top you bought, but you'll change into that later.<</if>>
<</if>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div><<if $kate.agency == "cia" or $kate.agency == "csis">>Panties<<elseif $kate.agency == "mi6">>Knickers<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>Undies<<else>>ERROR IN KATE.AGENCY VAR<</if>></div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "GNO-45216 Knickers">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Bras</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="bras-container">\
<<include "GNO-45218 Bras">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GNO-45220 Exit navigation">>
</span>\
<</page>><<if !$avatar.underwear.includes("clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/30_knickers-blackAndLimeGreenThreeSideStrapGanjaString")>>\
<<link "Ganja leaf g-string">>\
<<wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ganja leaf g-string">>\
<<remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/30_knickers-blackMeshWithHotPinkBowsCrotchlessString")>>\
<<link "Black mesh crotchless g-string with hot pink bows">>\
<<wear-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black mesh crotchless g-string with hot pink bows">>\
<<remove-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-cherryRedTwoSideStrapWithGoldLoopsString")>>\
<<link "Cherry red strappy thong with gold loops">>\
<<wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red strappy thong with gold loops">>\
<<remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-vsPinkHeartsKnickers")>>\
<<link "VS Sheer Pink hearts <<knickers>>">>\
<<wear-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// VS Sheer Pink hearts <<knickers>>">>\
<<remove-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-maroonGlitterString")>>\
<<link "Maroon glitter thong">>\
<<wear-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Maroon glitter thong">>\
<<remove-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-ivoryStrappyString")>>\
<<link "Strappy ivory g-string">>\
<<wear-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Strappy ivory g-string">>\
<<remove-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "GNO-45216 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.underwear.includes("clothing/underwear/blackPlungeBraWithPinkBow/30_bra-blackPlungeWithPinkBow-rear")>>\
<<link "Black criss-cross plunge bra">>\
<<wear-bra-blackPlungeWithPinkBow>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black criss-cross plunge bra">>\
<<remove-bra-blackPlungeWithPinkBow>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedPlungeBra/30_bra-cherryRedPlunge-rear")>>\
<<link "Cherry red plunge bra">>\
<<wear-bra-cherryRedPlunge>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red plunge bra">>\
<<remove-bra-cherryRedPlunge>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/nudeStraplessBra/30_bra-nudeStrapless-rear")>>\
<<link "Nude strapless bra">>\
<<wear-bra-nudeStrapless>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude strapless bra">>\
<<remove-bra-nudeStrapless>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkSheerBraWithCentralBow/30_bra-pinkSheerBraWithCentralPinkBow-rear")>>\
<<link "Pink sheer bra">>\
<<wear-bra-pinkSheerWithCentralBow>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink sheer bra">>\
<<remove-bra-pinkSheerWithCentralBow>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/whiteHalfCupBraCentralDart/30_bra-whiteHalfCupCentralDart-rear")>>\
<<link "White half cup bra">>\
<<wear-bra-whiteHalfCupCentralDart>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White half cup bra">>\
<<remove-bra-whiteHalfCupCentralDart>>\
<<replace "#bras-container">>\
<<include "GNO-45218 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45220 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("knickers", "bra")>>\
You can [[pick the rest of your outfit|GNO-45222 Outerwear]] when you're ready.
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-12400 Kate buys going out clothes")>>\
You can change into your going out clothes later; you just need to pick something casual to wear for meeting up with <<Zoe>> and <<Amanda>>.
<<elseif hasVisited("GNO-2800 I don't have a thing to wear")>>\
You're borrowing going out clothes from <<Amanda>>, so you just need to pick something casual to wear for meeting up with the girls.
<<else>>\
You need to pick what to wear for girls' night out.
<</if>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Bottoms</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="bottoms-container">\
<<include "GNO-45224 Bottoms">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Tops</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="tops-container">\
<<include "GNO-45226 Tops">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Dresses</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="dress-container">\
<<include "GNO-45228 Dresses">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "GNO-45230 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GNO-45240 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackAndWhiteConverseLowTopTrainers/20_shoes-blackAndWhiteConverseTrainers")>>\
<<link "Black Converse low tops">>\
<<wear-shoes-blackAndWhiteConverseLowTops>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black Converse low tops">>\
<<remove-shoes-blackAndWhiteConverseLowTops>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/blackStrappyGladiatorFlatSandals/20_shoes-blackStrappyGladiatorFlatSandals")>>\
<<link "Black strappy gladiator flat sandals">>\
<<wear-shoes-blackStrappyGladiatorFlatSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black strappy gladiator flat sandals">>\
<<remove-shoes-blackStrappyGladiatorFlatSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/brownAnkleHighStrappyFlatSandals/20_shoes-brownAnkleHighStrappyFlatSandals")>>\
<<link "Brown ankle high strappy flat sandals">>\
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Brown ankle high strappy flat sandals">>\
<<remove-shoes-brownAnkleHighStrappyFlatSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/creamBSKSandals/20_shoes-creamBSKSandals")>>\
<<link "Cream BSK sandals">>\
<<wear-shoes-creamBSKSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cream BSK sandals">>\
<<remove-shoes-creamBSKSandals>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/greyToeThongFlipFlops/20_shoes-greyToeThongFlipFlops")>>\
<<link "Grey thong flip flops">>\
<<wear-shoes-greyToeThongFlipFlops>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Grey thong flip flops">>\
<<remove-shoes-greyToeThongFlipFlops>>\
<<replace "#shoes-container">>\
<<include "GNO-45230 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("clothing/dresses/whiteMiniSmockSummerDress/30_dress-whiteMiniSmockSummerDress3-rear")>>\
<<link "White mini smock summer dress">>\
<<wear-dress-whiteMiniSmockSummerDress>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White mini smock summer dress">>\
<<remove-dress-whiteMiniSmockSummerDress>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/dresses/yellowHalterNeckSummerDress/30_dress-yellowHalterNeckSummerDress-rear")>>\
<<link "Yellow halter-neck summer dress">>\
<<wear-dress-yellowHalterNeckSummerDress>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Yellow halter-neck summer dress">>\
<<remove-dress-yellowHalterNeckSummerDress>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.agency == "cia" or $kate.agency == "csis">>\
Pants
<<include "GNO-45227 Trousers">>
<</if>>\
Shorts
<<if !$avatar.clothing.includes("malaysia/20_shorts-blackDenimDaisyDukes")>>\
<<link "Black denim Daisy Dukes">>\
<<wear-shorts-blackDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black denim Daisy Dukes">>\
<<remove-shorts-blackDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/trousers/blackHikerShortsWithBrownBelt/20_shorts-blackHikerShortsWithBrownBelt")>>\
<<link "Black hiker shorts">>\
<<wear-shorts-blackHikerShortsWithBrownBelt>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black hiker shorts">>\
<<remove-shorts-blackHikerShortsWithBrownBelt>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes")>>\
<<link "Blue denim Daisy Dukes">>\
<<wear-shorts-blueDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue denim Daisy Dukes">>\
<<remove-shorts-blueDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_shorts-darkGreyShortsWithBeltLoops")>>\
<<link "Grey cargo shorts">>\
<<wear-shorts-darkGreyShortsWithBeltLoops>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Grey cargo shorts">>\
<<remove-shorts-darkGreyShortsWithBeltLoops>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
Skirts
<<if !$avatar.clothing.includes("clothing/skirts/bloomingLavenderFlippyMini/20_skirt-bloomingLavenderFlippyMini")>>\
<<link "Blooming lavender flippy mini">>\
<<wear-skirt-bloomingLavenderFlippyMini>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blooming lavender flippy mini">>\
<<remove-skirt-bloomingLavenderFlippyMini>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/skirts/blueAndRedEthnicPatternFlippyMini/20_skirt-blueAndRedEthnicPatternFlippyMini3")>>\
<<link "Blue & red ethnic pattern flippy mini">>\
<<wear-skirt-blueAndRedEthnicPatternFlippyMini>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue & red ethnic pattern flippy mini">>\
<<remove-skirt-blueAndRedEthnicPatternFlippyMini>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/skirts/ogKhakiMini/20_skirt-ogKhakiMini")>>\
<<link "OG khaki mini">>\
<<wear-skirt-ogKhakiMini>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// OG khaki mini">>\
<<remove-skirt-ogKhakiMini>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>\
Trousers
<<include "GNO-45227 Trousers">>
<</if>>\<<if !$avatar.clothing.includes("malaysia/20_trousers_oliveGreenCapriCargoPants")>>\
<<link "Olive green capris">>\
<<wear-trousers-oliveGreenCapriCargoPants>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Olive green capris">>\
<<remove-trousers-oliveGreenCapriCargoPants>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "GNO-45224 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("clothing/tops/blackPlungeHalterneckTop/30_top-blackPlungeHalterneckTop-rear")>>\
<<link "Black plunge halterneck top">>\
<<wear-top-blackPlungeHalterneckTop>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black plunge halterneck top">>\
<<remove-top-blackPlungeHalterneckTop>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_top-blackRibbedCroppedTshirt-rear")>>\
<<link "Black ribbed button front cropped t-shirt">>\
<<wear-top-blackRibbedButtonUpCroppedTShirt>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black ribbed button front cropped t-shirt">>\
<<remove-top-blackRibbedButtonUpCroppedTShirt>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/blackPlungeHalterneckTop/30_top-darkGreyTankTop-rear")>>\
<<link "Dark grey tank top">>\
<<wear-top-darkGreyTankTop>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Dark grey tank top">>\
<<remove-top-darkGreyTankTop>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/lightGreyScoopNeckSleevelessTankVest/30_top-lightGreyScoopNeckSleevelessTankVest-rear")>>\
<<link "Light grey scoop neck sleeveless tank vest">>\
<<wear-top-lightGreyScoopNeckSleevelessTankVest>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Light grey scoop neck sleeveless tank vest">>\
<<remove-top-lightGreyScoopNeckSleevelessTankVest>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/orangeHighNeckHalterTop/30_top-orangeHighNeckHalterTop-rear")>>\
<<link "Orange high neck halter top">>\
<<wear-top-orangeHighNeckHalterTop>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Orange high neck halter top">>\
<<remove-top-orangeHighNeckHalterTop>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/30_top-whiteCutOutKnitTop-rear")>>\
<<link "White cut out knit top">>\
<<wear-top-whiteCutOutKnitTop>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White cut out knit top">>\
<<remove-top-whiteCutOutKnitTop>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/30_top-whiteRibbedCroppedTshirt-rear")>>\
<<link "White ribbed button front cropped t-shirt">>\
<<wear-top-whiteRibbedButtonUpCroppedTShirt>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White ribbed button front cropped t-shirt">>\
<<remove-top-whiteRibbedButtonUpCroppedTShirt>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/whiteSpaghettiStrapsVestTop/30_top-whiteSpaghettiStrapsVestTop-rear")>>\
<<link "White spaghetti straps vest top">>\
<<wear-top-whiteSpaghettiStrapsVestTop>>\
<<replace "#dress-container">>\
<<include "GNO-45228 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White spaghetti straps vest top">>\
<<remove-top-whiteSpaghettiStrapsVestTop>>\
<<replace "#tops-container">>\
<<include "GNO-45226 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-45240 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("dress", "shoes") or (($kate.isWearing.includes("shoes")) and ($kate.isWearing.includes("top") and $kate.isWearing.includesAny("shorts", "skirt", "trousers")))>>\
If you're happy with your look, you can [[go meet up with the girls|GNO-45300 Title card]].
<</if>>\<<silently>>
<</silently>>\
<a data-passage="GNO-45400 Oh hi Noodle">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/trokWarrenTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''TROK WARREN''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<wear-bohoBrownLeatherBag>>
<<wear-bigBlackSunglasses>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
Stepping out into the hot afternoon sun, you bump into $kate.nameForNoodle, sitting astride his battered 125cc motorbike.
"Oh hi $kate.cover.firstName! Need a ride somewhere?"
<<link "No thanks, $kate.nameForNoodle." "GNO-45500 No thanks Noodle">><</link>>
[[On that thing?|GNO-45600 On that thing?]]
[[Uh...sure!|GNO-45600 Kate rides on Noodle's bike]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"On that thing?"
"Sure. I good rider," he promises, patting the scratched and dented fuel tank lovingly.
<<link "No thanks, $kate.nameForNoodle." "GNO-45500 No thanks Noodle">><</link>>
[[Okay, what the hell.|GNO-45600 Kate rides on Noodle's bike]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No thanks, $kate.nameForNoodle."
You walk out to the main street and hail a vivid orange taxi, which takes you to <span class="imageLink"><<link "Victory Monument">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/bangkok/victoryMonument.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Here you jump on the skytrain, and ride a few stops north to BTS Mo Chit.
<<image "/locationPhotos/thailand/bangkok/skytrain.jpg" 90 1000 620 0>>\
From there, it's a short walk to [[where you're meeting the girls|GNO-47000 Title card]].
<</page>><<silently>>
<<if hasVisited("GNO-45600 On that thing?")>>
<<emote-brows-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<else>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-45600 On that thing?")>>"Okay," you shrug, "what the hell. Can you take me to Mo Chit?"<<else>>"Uh...sure! Can you take me to Mo Chit?"<</if>>
<span class="greenHighlighter">Noodle ''liked'' that.</span>
"Uh huh!" he lifts his bike off the kickstand, pats the pillion seat.
//[[Climb on.|GNO-45700 Climb on]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You climb onto the back of $kate.nameForNoodle's little motorbike, resting your hands gently on his shoulders for balance. He turns the ignition key and gets a loud //click.//
The leather saddle is hot from baking in the sun. Careful not to touch any metal with your bare skin, you kick down the passenger foot pegs. Your legs curl naturally around his slim hips.
<<if $kate.braSize == "large">>Your breasts press lightly against his back. <<elseif $kate.braSize == "medium">>Your breasts brush gently against his back. <</if>>There's no grab rail, so you curl your arms [[loosely round his waist|GNO-45800 Vroom vroom]]. His floppy, jet black hair smells sweaty and hot.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$kate.nameForNoodle kicks down the starter, and the bike revs instantly into life. The exhaust coughs out a puff of blue smoke and the bitter smell of fumes long since banished from Western civilisation. The engine idle is a loud raspy purr.
He twists the throttle and the bike revs eagerly in response. "You ready?"
[[Yep.|GNO-45810 We have liftoff][$kateSays to "Yep."]]
[[Please be careful.|GNO-45810 We have liftoff][$kateSays to "Please be careful."]]
<<link "Get me there alive, $kate.nameForNoodle." "GNO-45810 We have liftoff">><<set $kateSays to "Get me there alive, $kate.nameForNoodle.">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
The 125cc engine revs aggressively in reply. Your weight shifts back on the bike as it surges smoothly out along the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>.
$kate.nameForNoodle slows down to manoeuvre around some Thai kids kicking a <<if $kate.agency == "cia" or $kate.agency == "csis">>soccer ball<<else>>football<</if>> up against a wall, then cruises smoothly out to the [[main junction|GNO-45820 Soi Sam Sen]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''THANON SAM SEN''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You roll out from the quiet little <div class="tooltip">trok<span class="tooltiptext">alley</span></div> onto the main road. Your <<if $kate.braSize == "small">>small breasts press against<<elseif $kate.braSize == "medium">>breasts press into<<elseif $kate.braSize == "large">>big breasts squash into<<else>>//ERROR IN KATE.BRASIZE VAR//<</if>> $kate.nameForNoodle's back when he brakes.
<<image "/locationPhotos/thailand/bangkok/samsenRoad.jpg" 100 1000 560 0>>\
Emerging into a clear patch of road, he opens the throttle. Cool wind rushes over your body as the bike climbs up through the gears towards full speed, the raspy engine noise turning into a high-pitched buzz once you get up to 50mph.
//[[Hold on tight!|GNO-45900 Driving Miss Kate]]//
<</page>><<silently>>
<<set $header.line1 to "''RIDING PILLION''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Wind rushes through your hair as you zip through the streets on this buzzy, vibrating machine<<if $kate.isWearing.includes("dress")>>, your dress rippling up around your hips<<elseif $kate.isWearing.includes("skirt")>>, your skirt <<if $kate.lastWornSkirt == "ogKhakiMini">>riding<<else>>rippling<</if>> up around your hips<</if>>. You cling tight to $kate.nameForNoodle, crumpling his t-shirt in your fists.
<<image "/locationPhotos/thailand/bangkok/mosaiRide2.jpg" 0 1000 518 0>>\
Bangkok glides past all around. The wind in your face mainly carries exhaust fumes, with occasional wafts from frying street food and pungent <div class="tooltip">khlongs<span class="tooltiptext">canals</span></div>.
You weave between cars and trucks and gaudy tuk-tuks, and fall naturally into packs of [[motorcycle taxis|GNO-45910 Demographics]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They carry a fair cross-section of the city. A chubby, red-faced <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> clutching his Wall Street Journal; a deliveryman balancing an improbable tower of boxes; a Thai <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>> collecting her kids from school, stacked up like tiny packages between her and the rider.
There's even a policeman, hat pulled low, eyes hidden behind dark shades, heading off to do whatever cops really do in Bangkok.
Most striking are the Thai office girls. Wearing bright, cheerful-looking skirt suits, they ride sidesaddle, perched on the weaving little machines with [[breathtaking grace and perfect nonchalance|GNO-45920 Heffalump]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Meanwhile you cling onto $kate.nameForNoodle, your bodies pressing together every time he brakes, feeling that thrilling mix of power and vulnerability that only bikers get from the road.
By the time $kate.nameForNoodle pulls over to drop you off, you're buzzing with [[excitement and relief|GNO-46000 Drop off]].
<</page>><<silently>>
<<set $header.line1 to "''MO CHIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/ratchaprop.jpg" 0 1000 518 0>>\
He drops you off on a six-lane <div class="tooltip">thanon<span class="tooltiptext">main road</span></div> near BTS Mo Chit. <<if $kate.isWearing.includesAny("dress", "skirt")>>You dismount carefully, trying not to flash your <<knickers>> to the whole street. Your legs feel like jelly after 15 minutes of adrenaline.<<else>>You climb off the bike, your legs feeling like jelly after 15 minutes of adrenaline.<</if>>
"You need a ride home?" he asks. "I pick you up later?"
[[No thanks.|GNO-46010 No thanks][$kateSays to "No thanks"]]
[[Don't know if I'm coming back tonight.|GNO-46010 No thanks][$kateSays to "Don't know if I'm coming back tonight"]]
[[It's okay, tonight's going to be a late one.|GNO-46010 No thanks][$kateSays to "I think tonight's gonna be a late one"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _gas to "gas">>
<<else>>
<<set _gas to "petrol">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays. But thanks for the ride, $kate.nameForNoodle."
"No problem."
[[Seeya.|GNO-46020 Seeya Noodle]]
<<link "Can I give you some _gas money?" "GNO-46025 Petrol money">><</link>>
//[[Kiss his cheek.|GNO-46030 Kate kisses Noodle's cheek]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-46025 Petrol money")>>\
"Okay, well, thanks, $kate.nameForNoodle."
<<else>>\
"Seeya, $kate.nameForNoodle. Thanks again."
<</if>>\
<span class="greenHighlighter">$kate.nameForNoodle ''liked'' that.</span>
"No problem, $kate.cover.firstName. Any time."
It's a short walk to [[where you're meeting the girls|GNO-47000 Title card]].
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _gas to "gas">>
<<else>>
<<set _gas to "petrol">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Can I give you some money for _gas?"
"No, no," $kate.nameForNoodle waves the offer away. "I was gonna go for ride anyway."
[[Okay, well, thanks.|GNO-46020 Seeya Noodle]]
//[[Kiss his cheek.|GNO-46030 Kate kisses Noodle's cheek]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-46025 Petrol money")>>\
"Okay, well, thanks."
<<else>>\
"See you later."
<</if>>\
Impulsively you lean in and plant a little peck goodbye on his cheek.
<span class="greenHighlighter">$kate.nameForNoodle ''loved'' that.</span>
"<div class="tooltip">Hooi<span class="tooltiptext">Wow</span></div>!" He draws himself up to his full height, sitting proud and erect on the back of his little motorbike. "Yeah. I see you later, $kate.cover.firstName."
It's a short walk to [[where you're meeting the girls|GNO-47000 Title card]].
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<if $kateHadFun>>
<<emote-mouth-wideSmile>>
<<else>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, $kate.nameForNoodle.<<if $kateHadFun>> That was fun.<<unset $kateHadFun>><</if>>"
He beams with pride as you wave goodbye. "Bye $kate.cover.firstName! See you later!"
It's a short walk to [[where you're meeting the girls|GNO-47000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<<set $header.line1 to "''PERFECT 10 HAIR & NAILS SPA''",
$header.line2 to "MO CHIT / MAY 2018">>
<</silently>>\
<a data-passage="GNO-47100 Ten Ten Nail Salon">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/tenTenNails/perfect10TitleCard.jpg"+' >'>>
</a><<silently>>
<<if ndef $amanda>>
<<set $amanda to {},
$amanda.stripperName to "Amanda",
$amanda.firstName to "Lisa",
$amanda.nickname to "Lisa",
$amanda.surname to "Mitchell">>
<</if>>
<<if $kate.cover.firstName == "Amanda">>
<<set $amanda.stripperName to "Samantha">>
<</if>>
<<if $kate.firstName == "Lisa">>
<<set $amanda.firstName to "Allison",
$amanda.nickname to "Alli">>
<</if>>
<<if $kate.surname == "Mitchell">>
<<set $amanda.surname to "Phillips">>
<</if>>
<<if ndef $zoe>>
<<set $zoe to {},
$zoe.stripperName to "Zoe",
$zoe.firstName to "Lauren",
$zoe.nickname to "Lauren",
$zoe.surname to "McCoy">>
<</if>>
<<if $kate.firstName == "Zoe" or $kate.firstName == "Zooey" or $kate.firstName == "Zoey" or $kate.firstName == "Zoë" or $kate.firstName == "Zoé">>
<<set $zoe.stripperName to "Izzy">>
<</if>>
<<if $kate.firstName == "Lauren">>
<<set $zoe.firstName to "Emily",
$zoe.nickname to "Emi">>
<</if>>
<<if $kate.surname == "McCoy" or $kate.surname == "Mccoy">>
<<set $zoe.surname to "Jackson">>
<</if>>
<<if ndef $gina>>
<<set $gina to {},
$gina.stripperName to "Gina",
$gina.firstName to "Stephanie",
$gina.nickname to "Steph",
$gina.surname to "Rigg">>
<</if>>
<<if $kate.firstName == "Gina">>
<<set $gina.stripperName to "Frankie">>
<</if>>
<<if $kate.firstName == "Stephanie" or $kate.firstName == "Steph">>
<<set $gina.firstName to "Rebecca",
$gina.nickname to "Becky">>
<</if>>
<<if $kate.surname == "Rigg" or $kate.surname == "Riggs">>
<<set $gina.surname to "King">>
<</if>>
<<first>>
<<addNotification "Bargirl avatars" "Click the bargirls' names to see their outfits.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
The shop bell rings when you push open the door.
"Heyyy bitch!" <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are already here, with another girl: a girlish brunette with dark eyes and an easy-going smile. "Come meet <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
You recognise her from scanning her [[nude photos|GNO-47101 Nude photos]] during the black bag job: this is '$gina.stripperName', real name $gina.firstName $gina.surname, Australian national, age 21.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's something weird about meeting a girl you've only seen nude before.
Stripped naked for the camera in Connor's apartment, she looked as sexual and objectified as the girls from porn; in the flesh, she looks like a million other <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> backpack girls in Bangkok.
"Hey, how ya goin'." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles, flashing her pretty white teeth.
<<link "Hey, I'm $kate.stripperName." "GNO-47120 I'm River">><</link>>
<<link "Hey, I'm $kate.cover.firstName." "GNO-47110 I'm Kate">><</link>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, I'm $kate.cover.firstName."
"Hah, nice to meet you," <span class="imageLink"><<link "$zoe.stripperName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "I'm $zoe.firstName."
"Yeah, I'm $amanda.firstName," says...<span class="imageLink"><<link "$amanda.stripperName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Don't worry if you forget, I know it's confusing as hell."
<<include "GNO-47130 Where u from in Oz">>
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to true>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, I'm $kate.stripperName."
"Oh, we don't have to use those names outside the club," <span class="imageLink"><<link "$zoe.stripperName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I'm $zoe.firstName."
"Yeah, I'm $amanda.firstName," says...<span class="imageLink"><<link "$amanda.stripperName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Don't worry if you forget, I know it's confusing as hell."
<<link "Okay, I'm $kate.cover.firstName." "GNO-47125 Ok, I'm Kate">><</link>>
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, I'm $kate.cover.firstName."
"Nice to meet you, heh," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles.
<<include "GNO-47130 Where u from in Oz">>
<</page>><<if $kate.agency == "asis">>\
"So where you from in Oz?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Canberra, you?|GNO-47140 Canberra, you?]]
<<else>>\
"They were just telling me about you," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[It's all lies.|GNO-47190 It's all lies]]
[[What'd they say?|GNO-47200 What'd they say?]]
[[They hardly know me.|GNO-47210 They hardly know me]]
<</if>>\<<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Canberra, you?" <div class="tooltip">CTFN<span class="tooltiptext">Combined Task Force <small>NEPTUNE</small></span></div> already ran a fast background check on this girl, making sure you hadn't been to the same high school or something. But she grew up <div class="tooltip">out woop woop<span class="tooltiptext">in the middle of nowhere (Aussie slang)</span></div> on the sunshine coast, no higher education beyond a partially completed hairdressing diploma.
"Queensland," she says. "Little place called Doonan?"
[[Don't know Queensland well.|GNO-47150 Don't know Queensland]]
[[I know Brisbane?|GNO-47160 I know Brisbane?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Don't know Queensland well," you admit.
"No worries. How long ya been in Bangkok?"
<span class="greyedOut">//[Lie]//</span> [[Ten months.|GNO-47170 Ten months]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<<set $gina.liking += 1>>
<</silently>>\
<<header>>\
<<page>>\
"I know Brisbane?"
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Yeah! Bit north up the coast. How long ya been in Bangkok?"
<span class="greyedOut">//[Lie]//</span> [[Ten months.|GNO-47170 Ten months]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"About ten months."
"Ah yeah? Miss home at all?"
[[I miss Tim Tams.|GNO-47180 I miss Tim Tams]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<set $gina.liking += 1>>
<</silently>>\
<<header>>\
<<page>>\
"I miss Tim Tams."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Ohmygod, I know a 7/11 where you can get them." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes light up at the thought. "I'll show ya."
"What the fuck are Tim Tams?" asks <<if $zoe.stripperName == "Zoe">>Zo<<else>>Iz<</if>>...<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Ohhh, you remember those little cookies she brought in?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "They're Tim Tams, right?"
"Right," <<link "$gina.nickname smiles" "GNO-47300 Kate makes an impression">><</link>>.
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<<emote-eyes-squint>>
<<set $amanda.liking += 1,
$zoe.liking += 1,
$gina.liking += 1>>
<</silently>>\
<<header>>\
<<page>>\
"It's all lies."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "No, it was all good. <<if hasVisited("GOF-9950 Kate flashes her boobs")>>They said [[you're fun|GNO-47300 Kate makes an impression]]<<else>>[[Honest|GNO-47300 Kate makes an impression]]<</if>>."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What'd they say?"
"All good," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises, "[[honest|GNO-47300 Kate makes an impression]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $amanda.liking -= 1,
$zoe.liking -= 2,
$gina.liking -= 1>>
<</silently>>\
<<header>>\
<<page>>\
"They hardly know me."
<span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">$gina.nickname ''disliked'' that.</span>
"Well...that's the point of tonight," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We're all gonna get to know you better."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span>
"That's //not// the point of tonight," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> frowns.
//Fuck, I just killed the vibe. [[Bad start|GNO-47300 Kate makes an impression]], $kate.firstName.//
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GNO-47190 It's all lies")>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Sawatdee kha, sawatdee kha<span class="tooltiptext">Hello, hello</span></div>!"
<<if hasVisited("GNO-47210 They hardly know me")>>You're rescued by a gaggle of Thai nail technicians<<else>>A gaggle of Thai nail technicians come bustling over<</if>>, wearing facemasks and bowing wais, pressing <span class="imageLink"><<link "nail swatches">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/tenTenNails/shellacSwatches.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> into [[your hands|GNO-47400 This place is the best]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-47210 They hardly know me")>>\
"You should get these black ones," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "You'd look awesome."
"Hrmm. Maybe."
There's an uncomfortable silence while everybody just [[looks at their nail swatch|GNO-47700 Kate chooses short nails]].
<<else>>\
"Such cute colours," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos.
"This place is great," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "Moo put us onto it, it's not touristy."
"We get <div class="tooltip">Shellacs<span class="tooltiptext">some kind of nail extension brand, you think</span></div>," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"You should get extensions," $zoe.firstName says, eyeing your neatly-trimmed cuticles.
[[You think?|GNO-47500 You think?]]
[[Long nails get in the way.|GNO-47600 Not a fan]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"You think?"
"Oh yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies.
"Definitely," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees, "guys like it." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods judiciously.
All three girls have long, painted claws. That wasn't really an option at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>R.G. Casey House<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>//ERROR IN KATE.AGENCY VAR//<</if>> – not with all the typing you have to do, plus the occasional need to handle a firearm.
It probably wouldn't get in the way of barmaiding. But very few topless barmaids also have to carry out black bag jobs for the CIA.
[[Okay, why not?|GNO-47800 Kate gets nail extensions]]
[[I think I'll stick to short.|GNO-47700 Kate chooses short nails]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't really like long nails," you say, "they get in the way."
"We manage," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points out. <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonReception.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> both have long, painted claws too. But their jobs don't involve lots of typing. Or the occasional need to handle a firearm. Or be taken seriously in important meetings.
[[I guess I could try it.|GNO-47800 Kate gets nail extensions]]
[[I'll stick to short.|GNO-47700 Kate chooses short nails]]
<</page>><<silently>>
<<set _linkDescription to "Pick a pedi polish.",
_linkTarget to "GNO-47805 Pedis">>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("GNO-47210 They hardly know me")>>\
"Mehhh. I'll keep mine short." You seriously doubt you could lock and load an HK with nail extensions.
<</if>>\
<div id="Manicures" class="city">\
<div id="perfect10Manis">\
<<parlour-perfect10ShortManis>>
</div>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _linkDescription to "Pick a pedi polish.",
_linkTarget to "GNO-47805 Pedis">>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<set $amanda.liking += 1,
$zoe.liking += 1,
$gina.liking += 1>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-47600 Not a fan")>>\
"Well..." //I can always clip them off later.// "I guess I could try it."
<<else>>\
//I can always clip them off later.// "Okay," you shrug, "why not?"
<</if>>\
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
<div id="Manicures" class="city">\
<div id="perfect10Manis">\
<<parlour-perfect10GelManis>>
</div>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _linkDescription to "Pay for your treatment.",
_linkTarget to "GNO-47810 Hard earned cash">>
<</silently>>\
<<header>>\
<<page>>\
<div id="Pedicures" class="city">\
<div id="perfect10Pedis">\
<<parlour-perfect10Pedis>>
</div>\
</div>\
<div id="exitNavigation">\
<<if def $chosenPedi and def $chosenMani>>\
<<= "//[[" + _linkDescription + "|" + _linkTarget + "]]//">>
<</if>>\
</div>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You each produce your <<if $kate.agency == "cia" or $kate.agency == "csis">>pocketbooks<<else>>purses<</if>> and count out little sheafs of colourful Thai banknotes.
Your treatment comes to <div class="tooltip">฿650<span class="tooltiptext"><<if $kate.agency == "cia">>$19.50<<elseif $kate.agency == "mi6">>£13<<elseif $kate.agency == "asis">>$26<<elseif $kate.agency == "csis">>$26<<elseif $kate.agency == "nzsis">>$26<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. It's hard to count out the cash without picturing the way you earned it: stripping off in public, getting groped by more guys than you could keep track of, being taken upstairs and fucked by your manager. //All that for some silly fake nails.//
It can only be worse for the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, but if they're bothered you [[can't tell from their faces|GNO-47900 Treatment room]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/tenTenNails/salonChairs.jpg" 0 1000 518 0>>\
The Thai girls lead you through to a treatment room lit with spot lights and candles. A funky T-pop duet is playing on the radio. Burning joss sticks can't mask the sharp smell of strong chemicals.
You each have two nail techs. Yours bow to you in a polite <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div>, and gesture you to one of the salon chairs. <div class="tooltip">"Sawatdee kha<span class="tooltiptext">Hello</span></div>, miss. Plea [[take off shoe and bag|GNO-47910 Take off shoe and bag]]..."
<</page>><<silently>>
<<removeShoes>>
<<remove-hosiery-blackTrainerSocks>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
You unsling your <<handbag>>, and kick off your <<if $kate.lastWornShoes == "blackAndWhiteConverseLowTops">><<trainer>>s<<else>>sandals<</if>>.
"An wing, plea take off wing."
[[Take off your transmitter ring.|GNO-47920 Take off wing]]
<</page>><<silently>>
<<remove-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
You slide the emergency burst transmitter off your finger, and slip it into your bag.
You've gotten used to wearing it; your hand feels lighter without it. Taking it off in a mission environment makes you feel a little more vulnerable and exposed, your connection to Ian cut.
"Sit, plea." The elder nail tech pats your [[salon chair|GNO-47930 Have seat]], her inviting smile hidden behind a paper facemask.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You settle onto the vinyl-upholstered salon chair. It's sticky on your bare legs.
Your Thai girls roll up alongside you on little wheelie stools, and get ready for work; one laying out her instruments, the other running water into a footbath and testing the temperature with her elbow.
"$kate.cover.firstName," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks across from her salon chair. "How long you been at the club?"
[[Five nights.|GNO-50320 Five nights]]
[[Three weeks.|GNO-50321 Third week]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I've done, uh...five nights."
"Ah yeah? How's it going?"
[[It sucks, but I need the money.|GNO-50330 It sucks]]
[[Shocking at first, but it's getting easier.|GNO-50340 Getting used to it]]
<<link "Not my dream job. But being '$kate.stripperName' is kind of fun." "GNO-50350 Don't mind it">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This is my third week."
"Ah yeah? How's it going?"
[[It sucks, but I need the money.|GNO-50330 It sucks]]
[[Shocking at first, but it's getting easier.|GNO-50340 Getting used to it]]
<<link "Not exactly my dream job. But being '$kate.stripperName' is kind of fun." "GNO-50350 Don't mind it">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It sucks," you admit. "But I need the money."
"Same same for everyone. It does get easier," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises.
"She's doing great," <<if $amanda.stripperName == "Amanda">>Aman...<<else>>Saman...<</if>><span class="imageLink"><<link "//$amanda.firstName//">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> calls out. "All the guys [[love her|GNO-50360 Treatment]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bit of a shock on the first night," you admit. "But I feel like it's getting easier."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Yeah, it does," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Defo. First few <<if hasVisited("GNO-50320 Five nights")>>shifts<<else>>weeks<</if>> are the hardest."
"She's doing great," <<if $amanda.stripperName == "Amanda">>Aman...<<else>>Saman...<</if>><span class="imageLink"><<link "//$amanda.firstName//">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> calls out. "All the guys [[love her|GNO-50360 Treatment]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well...not my dream job, obviously. But it's actually kind of fun getting to be a...you know. Totally different version of myself."
<span class="greenHighlighter">$gina.nickname ''loved'' that.</span>
"Right!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Like you become this...imaginary girl."
"Ohmygod, already with the philosophy," <<if $amanda.stripperName == "Amanda">>Aman...<<else>>Saman...<</if>><span class="imageLink"><<link "//$amanda.firstName//">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "They haven't even dropped a pill yet."
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snickers. "Gonna be a [[looong night|GNO-50360 Treatment]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
With tender, feminine touches, your Thai ladies wash your hands and feet in soft, foamy water.
After how roughly you've been handled by Connor, and Kriangsak, and half the guys at the bar, being touched with some gentleness and respect is very pleasant.
You let out a contented little sigh at the sensation: two women working an exfoliating scrub into your skin, tickling on the soles of your feet, slipping between your fingers. It smells of zesty orange peel.
"How'd you hear about it, anyway?" $gina.nickname asks, meaning the club.
<span class="greyedOut">//[Lie]//</span> [[Some guys on Khao San Road.|GNO-50500 KSR guys]]
<span class="greyedOut">//[Lie]//</span> [[This girl at a half moon party.|GNO-50510 Half moon girl]]
<</page>>"She's doing great," calls out <<if $amanda.stripperName == "Amanda">>Aman...<<else>>Saman...<</if>><span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "All the guys love her."
"How'd you hear about it?" $gina.nickname asks. "The club?"
<span class="greyedOut">//[Lie]//</span> [[Some guys on Khao San Road.|GNO-50500 KSR guys]]
<span class="greyedOut">//[Lie]//</span> [[This girl at a half moon party.|GNO-50510 Half moon girl]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ten months," you lie.
"How'd you find out about the club?" she asks.
<span class="greyedOut">//[Lie]//</span> [[Some guys on Khao San Road.|GNO-50500 KSR guys]]
<span class="greyedOut">//[Lie]//</span> [[This girl at a half moon party.|GNO-50510 Half moon girl]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<<if ndef $kate.suspicionLevel>>
<<set $kate.suspicionLevel to 0>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Some guys on Khao San," you lie.
<<if hasVisited("FNG-21020 KSR guys")>>\
<span class="greenHighlighter">Suspicion Level ''unchanged''.</span>
<<else>>\
<<set $kate.suspicionLevel += 1>>\
<span class="yellowHighlighter">''Slight increase'' to Suspicion Level.</span>
<</if>>\
<div class="greyHighlighter">\
<b>New rule: <i>Suspicion Level.</i></b> A hidden score tracks when characters suspect you're not what you seem. If your //Suspicion Level// gets too high, it can trigger a bad mission ending.
Keep it low by maintaining a consistent cover story, hiding your training, and behaving in ways //unlike// an undercover officer.
</div>\
"Khao San!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. "Haven't been there in ages. Hey, we should do a girls' night on Khao San sometime! Proper pub crawl."
"Ehhh, [[maybe|GNO-55000 Mani-pedi]]," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies.
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<<if ndef $kate.suspicionLevel>>
<<set $kate.suspicionLevel to 0>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"This girl at a half moon," you lie.
<<if hasVisited("FNG-21030 Half moon girl")>>\
<span class="greenHighlighter">Suspicion Level ''unchanged''.</span>
<<else>>\
<<set $kate.suspicionLevel += 1>>\
<span class="yellowHighlighter">''Slight increase'' to Suspicion Level.</span>
<</if>>\
<div class="greyHighlighter">\
<b>New rule: <i>Suspicion Level.</i></b> A hidden score tracks when characters suspect you're not what you seem. If your //Suspicion Level// gets too high, it can trigger a bad mission ending.
Keep it low by maintaining a consistent cover story, hiding your training, and behaving in ways //unlike// <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer.
</div>\
"Oh, cool. We get dancer gigs at those sometimes," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. //"Love// getting out to the islands."
"<<link "//Looove// it" "GNO-55000 Mani-pedi">><</link>>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<</page>><<silently>>
<<remove-makeup-manicure>>
<<remove-makeup-pedicure>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
To a peaceful soundtrack of chilled out T-pop, small talk in two languages, and the snick and whirr of nail clippers and polishing buffers, the Thai salon team fuss decadently over everybody's hands, feet and nails.
You relax and enjoy the sensations of being groomed: the tickle of your nail tech's hands during the pedicure; rough scrubbers and files smoothing down your heels; the [[cold slick of polish|GNO-55010 Painted ladies]] dampening your nails.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch placidly as the Thai ladies carefully paint your fingernails <<if $chosenMani == "candyDarts">>bright pink<<elseif $chosenMani == "cantaloupeKiss">>a glossy nude<<elseif $chosenMani == "carmineTease">>sultry red<<elseif $chosenMani == "deathByChocolate">>brown and black<<elseif $chosenMani == "devilInTheDita">>blood red<<elseif $chosenMani == "icedSugar">>pastel purple<<elseif $chosenMani == "inkyAssignation">>dark blue<<elseif $chosenMani == "matisseDreams">>in bright jelly bean colours<<elseif $chosenMani == "mothIntoFlame">>gothic black<<elseif $chosenMani == "opiumMirror">>dark violet<<elseif $chosenMani == "raspberrySwirls">>a glossy nude<<elseif $chosenMani == "roseExplosion">>purple<<elseif $chosenMani == "spats">>a glossy nude<<elseif $chosenMani == "tuttiFrutti">>in bright jelly bean colours<<elseif $chosenMani == "vermillionVixen">><<else>>//[ERROR IN CHOSENMANI VAR, PLEASE REPORT THIS]//<</if>>, stroke by stroke.
Your serious, male-dominated job doesn't normally leave much room for girly indulgences like this. It's amusing to take time out of your day just to [[decorate your fingers and toes|GNO-55020 Kate has a question]].
<</page>><<silently>>
<<set $thingsKateCanAskAbout to [
"kriangsak",
"mamasans",
"connor",
"beardy",
"bigMac"
]>>
<</silently>>\
<<header>>\
<<page>>\
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are chatting about some guys they know and seem to like, although you can't really tell if they're friends, boyfriends or clients.
You listen in until a lull in the chit-chat gives you the opportunity to bring up a new topic.
//[[Mr Kriangsak.|GNO-55022 Kriangsak]]
[[Sex with Connor.|GNO-55038 Sex with Connor]]
[[Miss Lu and Miss Nin.|GNO-55040 The mamasans]]
[[The beardy photographer, Sam.|GNO-55048 Beardy]]
[[Connor's friend, Big Mac.|GNO-55064 Big Mac]]//
<</page>><<silently>>
<<set $thingsKateCanAskAbout.delete("kriangsak")>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So, um...Mr Kriangsak took me out to dinner the other night..."
"Oh yeah!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Meant to ask you about it."
"How'd it go?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Nice restaurant.|GNO-55024 Nice restaurant]]
[[Amazing car.|GNO-55026 Nice car]]
[[Tacky dress.|GNO-55028 Tacky dress]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It was a really nice restaurant," you reply.
"Oh yeah? Where'd you go?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Indigo Hotel. Near Lumphini."
//"Nice,"// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. "He took me to 80/20."
"Is that the one by the river?"
"Mm-hmm."
"He likes to take all the new girls out for dinner," $amanda.firstName explains. "Always somewhere fancy."
[[Does he come in the club much?|GNO-55030 Does he come in the club much]]
[[He seemed really interesting.|GNO-55032 He seemed interesting]]
[[Do you guys see much of him?|GNO-55034 Do you guys see much Kriangsak?]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He has a //beautiful// car," you reply.
"Oh yeah, the Roller!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses.
//"Love// that car," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Did you know it's bulletproof?"
"Seriously?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Mm-hmm."
"We've all been in it," $amanda.firstName explains. "You should see his place, it's amazing."
[[Where is it?|GNO-55036 Where is Kriangsak's house?]]
[[Does he come in the club much?|GNO-55030 Does he come in the club much]]
[[Do you guys see much of him?|GNO-55034 Do you guys see much Kriangsak?]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I had to wear the tackiest dress," you reply.
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snickers. "Which one?"
<<if $borrowedDress == "kittenWetLookBlackCrissCrossDress">>\
"This tiny black PVC thing."
<<elseif $borrowedDress == "onePieceCowlNeckBurgundyMiniDress">>\
"Like a...short maroon dress. With cleavage down to my belly button."
<<elseif $borrowedDress == "blackDeepVDualSlitJerseyMaxi">>\
"This long, thin black dress. Cleavage to here, slits up to here."
<<elseif $borrowedDress == "purpleOpaqueLongSleeveCutOutFront">>\
"This short purple dress with cuts all across the front."
<<else>>\
//[ERROR IN BORROWEDDRESS VAR!]//
<</if>>\
"I had to wear this red boob tube dress, with high high heels," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I was tottering around all night."
"I had to wear this black see through thing," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "no bra. Thought they were gonna kick me out of the restaurant at first."
"I think it's like a hazing thing," $amanda.firstName says. "Weed out the girls who can't do it."
[[Does he come in the club much?|GNO-55030 Does he come in the club much]]
[[He seemed really interesting.|GNO-55032 He seemed interesting]]
[[Do you guys see much of him?|GNO-55034 Do you guys see much Kriangsak?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Does he come in the club much?"
"Nope," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies.
"Just special occasions," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"We see him for parties and stuff," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "But he doesn't really go into the club."
//Interesting.// Learning more about Kriangsak is a mission priority, but it doesn't sound like you'll get access to him again any time soon...unless you can get invited to one of these parties. You need to report that back [[later|GNO-55100 All done]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He seemed really interesting."
"Yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies, "he's done a lot."
"We see him for parties and stuff," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He doesn't really go into the club much."
//Interesting.// Learning more about Kriangsak is a mission priority, but it doesn't sound like you'll get access to him again any time soon...unless you can get invited to one of these parties. You need to report that back [[later|GNO-55100 All done]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do you guys see much of him?"
"Yeah, for parties and stuff," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He doesn't really go into the club much."
//Interesting.// Learning more about Kriangsak is a mission priority, but it doesn't sound like you'll get access to him again any time soon...unless you can get invited to one of these parties. You need to report that back [[later|GNO-55100 All done]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Where is it?"
"On the river," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "It's //beautiful//. It's got like a private garden with a jacuzzi..."
"Yeah and the view is incredible," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"We go there for parties and stuff," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He doesn't really go into the club much."
//Interesting.// Learning more about Kriangsak is a mission priority, but it doesn't sound like you'll get access to him again any time soon...unless you can get invited to one of these parties. You need to report that back [[later|GNO-55100 All done]].
<</page>><<silently>>
<<set $thingsKateCanAskAbout.delete("connor")>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So, um...can I ask you something about Connor? Is it normal that he, uh...at the end of my shifts..."
//"Yes,"// the three <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> reply in chorus, then laugh.
"Don't worry about it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> advises, "totally normal."
The weird thing is, it //is// starting to feel normal. Back in <<if $kate.agency == "cia">>D.C.<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, the idea of a boss demanding sex from you just so you can keep your job seems absurd, something from porn or a fantasy.
Here in Bangkok...//don't worry about it, [[totally normal|GNO-55100 All done]].//
<</page>><<silently>>
<<set $thingsKateCanAskAbout.delete("mamasans")>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's the deal with Miss Lu and Miss Nin?" you ask.
"Nin said she met you," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"They used to be <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Now they manage the girls, book in the clients, that kinda thing."
"Careful with Nin," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> advises.
[[Ping told me the same thing.|GNO-55042 Ping warned me]]
[[Why?|GNO-55044 Why?]]
[[Okay.|GNO-55046 Okay]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Ping said the same thing."
"It's fucking menopause or something. She's got a temper you wouldn't believe," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[Don't piss her off|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why?"
"Fucking menopause or something. She's got a temper you wouldn't believe," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[Don't piss her off|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay."
"Fucking menopause or something. She's got a temper you wouldn't believe," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[Don't piss her off|GNO-55100 All done]]."
<</page>><<silently>>
<<set $thingsKateCanAskAbout.delete("beardy")>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, that guy, Sam? He keeps trying to get me to model for him."
That gets some knowing chuckles from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
"He //can// get you paid work," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "But it's never as much as he says. You guys've both modelled for him, right?"
//"Yeah,"// chorus the American girls.
[[I assumed it was bullshit.|GNO-55050 I thought it was bullshit]]
[[What kind of modelling?|GNO-55060 What kind of modelling?]]
[[Is the club okay with us having side gigs like that?|GNO-55062 Is the club okay with side hustles?]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Huh. I assumed it was bullshit."
"Well...the bit about paying you thousands is," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Thousands of <div class="tooltip">Baht<span class="tooltiptext">฿1000 = <<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, maybe," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in.
"Yeah," $gina.nickname nods. "Most girls do it, but it's just a bit of [[extra spending money|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What kind of modelling is it?"
"All kinds," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "God knows where they end up."
"He told me Germany," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
"Most girls do it," $gina.nickname says. "But it's just a bit of [[extra spending money|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is the club okay with us having side gigs like that?"
"Yeah. You have to get permission," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "They take a cut."
<<if hasVisited("GNO-50510 Half moon girl")>>\
"Sometimes they're really cool," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds. "Like for the half moons, the dancer gigs."
"They fly us out and everything," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Wish we could just do that."
"Meh, you'd [[miss the club|GNO-55100 All done]]," $amanda.firstName replies.
<<else>>\
"Sometimes they're really cool," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds. "Like you know the half moon parties, out on the islands? We sometimes get dancer gigs at those."
"They fly us out and everything," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Wish we could just do that."
"Meh, you'd [[miss the club|GNO-55100 All done]]," $amanda.firstName replies.
<</if>>\
<</page>><<silently>>
<<set $thingsKateCanAskAbout.delete("bigMac")>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Can I ask you guys about something? <<if hasVisited("GNO-37090 Kate agrees to date Big Mac")>>Connor's trying<<else>>Connor tried<</if>> to set me up with one of his <<if $kate.agency == "cia" or $kate.agency == "csis">>buddies<<else>>mates<</if>> from the club."
"Which <<if $kate.agency == "cia" or $kate.agency == "csis">>buddy<<else>>mate<</if>>?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Mac. The oil rig guy."
"Ohhh, Mac's in town?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "He's nice! You should do it."
//"Big// Mac." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds up two partially-manicured fingertips, about a foot apart.
"Have you dated many guys out here?" $amanda.firstName asks.
[[No.|GNO-55066 Bangkok dating scene][$kateSays to "No"]]
[[Not really.|GNO-55066 Bangkok dating scene][$kateSays to "Not really"]]
[[One or two.|GNO-55066 Bangkok dating scene][$kateSays to "One or two"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
"That's the one bad thing about Thailand," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Dating scene's not great. But you'll meet some guys through the club."
"We should set her up with one of Yoda's guys," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
[[Yoda?|GNO-55068 Who's Yoda?]]
[[I'm okay, I don't really wanna date at the moment.|GNO-55070 Kate doesn't wanna date]]
[[Are Yoda's friends hot?|GNO-55072 Yoda has hot friends?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yoda?" <<if hasVisited("DINBOSS-16740 Geek girl")>>Visions of dating on Dagobah flit into your mind.<</if>>
"He's an <div class="tooltip">MMA<span class="tooltiptext">Mixed Martial Arts</span></div> guy. //Hot// friends," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises you.
"Yeah, we'll sort you out," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"You should still date Mac, though," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[He's sweet|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's okay, guys. I don't really wanna date at the moment."
"Yoda's got //hot// mates," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "They're all <div class="tooltip">MMA<span class="tooltiptext">Mixed Martial Arts</span></div> guys. Super fit."
"Yeah, wait to meet 'em," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"You should still date Mac, though," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[He's sweet|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yoda has hot friends?" <<if hasVisited("DINBOSS-16740 Geek girl")>>Visions of being set up with Obi Wan Kenobi flit into your mind.<</if>>
"Yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "They're all <div class="tooltip">MMA<span class="tooltiptext">Mixed Martial Arts</span></div> guys. Super fit."
"Yeah, super hot," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"You should still date Mac, though," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_nailSalonNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[He's sweet|GNO-55100 All done]]."
<</page>><<silently>>
<<emote-calm>>
<<apply-makeup-manicure $chosenMani>>
<<apply-makeup-pedicure $chosenPedi>>
<<unset $chosenMani>>
<<unset $chosenPedi>>
<</silently>>\
<<header>>\
<<page>>\
After half an hour of pampering, you're all done.
You and the girls gather up your things, then slip your shades on and head back out [[into the street|GNO-55200 Thanon Phahin Yothin]].
<</page>><<silently>>
<<set $header.line1 to "''MO CHIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<= '<<wear-shoes-' + $kate.lastWornShoes + '>>'>>
<<wear-ring-transmitterRing>>
<<wear-bohoBrownLeatherBag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
You emerge from the air-conditioned nail salon into a hot busy street. Horns honk and street food sizzles under a golden sky, Thursday afternoon getting ready to go down in a blaze of glory.
The people bustling by are mostly locals. Some of them stare at the pretty <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls as they pass.
"I'm starving," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Gai yang?"
"You always want gai yang," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains, but relents when $zoe.firstName puts on a fake pout. "Oh fine, it's [[your birthday|GNO-55300 Gai yang]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A short walk takes you to where a gap-toothed old lady sells grilled chicken from a pushcart.
<<image "/locationPhotos/thailand/bangkok/gaiYang.jpg" 71 1000 471 0>>\
This is gai yang, Thai-style barbecued chicken. Marinated in lemongrass, cilantro and fish sauce, and served on chunky bamboo skewers, it smells delicious.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> both order chicken. "Are those plantains?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks the old lady.
"Banana," she replies.
"Great. I'll have a banana."
$amanda.firstName and $zoe.firstName share a look. "I'm not hungry," $gina.nickname insists.
//[[Order gai yang.|GNO-55400 Om nom nom]]
[[Order a grilled banana.|GNO-55310 Kate eats a banana]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, me either. Banana, please."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$zoe.firstName ''disliked'' that.</span>
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> munch massive, chunky chicken skewers while you and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nibble daintily on a couple of [[hot grilled bananas|GNO-55410 Thirsty work]]. It won't fill you up, but it's probably 20% of the calories.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nibbles daintily on a hot banana while you, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> munch down [[hot, juicy chunks of grilled chicken|GNO-55410 Thirsty work]] on bamboo sticks.
<</page>><<silently>>
<<emote-calm>>
<<first>>
<<addNotification "Alcohol craving +1" "You could use a drink.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Standing up, <<if hasVisited("GNO-55400 Om nom nom")>>eating smoky grilled meat on a stick<<else>>eating food off a stick<</if>>, brings back memories of summer barbecues back in your <<if $kate.agency == "cia">>sorority house<<elseif $kate.agency == "mi6">>student digs<<elseif $kate.agency == "asis">>student digs<<elseif $kate.agency == "csis">>student house<<elseif $kate.agency == "nzsis">>student digs<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Sunny afternoons, hot food, a big glass of chilled white wine or a cold beer...
//Wonder what <<if $kate.firstName == "Maryanne" or $kate.firstName == "Marianne" or $kate.firstName == "Mary-Anne">>Liz<<else>>Maryanne<</if>>'s doing right now...//you couldn't have been closer at the time, but it's been hard to keep up with her since you joined <<if $kate.agency == "cia">>the Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>. You're always just so busy.
[[We got time for a beer?|GNO-55500 Beer o'clock?]]
//[[Go with the flow.|GNO-55510 Go with the flow]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We got time for a beer?" There's a bar just across the street.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> checks the time on her phone and shakes her head. "We better get ready, I got drinks at [[my place|GNO-55900 Hail a taxi]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Bamboo sticks and <<if hasVisited("GNO-55310 Kate eats a banana")>>banana skins<<else>>a banana skin<</if>> are dropped in the old lady vendor's trash bag, and it's time to head to <<if $amanda.stripperName == "Amanda">>Aman...<<else>>Saman...<</if>><<link "$amanda.firstName's place" "GNO-55900 Hail a taxi">><</link>>.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flags down a hot pink taxi and climbs in the front. You settle onto the spongy backseat with <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Wanna do some pics?" $zoe.firstName holds up her phone, and the three of you [[pose like hot models|GNO-55910 Taxi ride]] on the little screen.
<</page>><<silently>>
<<set $header.line1 to "''KAMPHAENG PHET ROAD''">>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
//Flash-click!// Pose. //Flash-click!// Pose. //Flash-click!// Pose. Your mobile photo booth rolls north on a multi-lane <div class="tooltip">thanon<span class="tooltiptext">main road</span></div>, in the gloomy shade of a massive concrete skytrain line.
<<image "/locationPhotos/thailand/bangkok/skytrainRoad.jpg" 25 1000 425 0>>\
Up front, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiRide.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is carrying on a fun, energetic conversation with the chubby Thai driver. "One day I buy Porsche Cayenne," he's telling her, "that my dream car."
"You would look fucking //cool// in a Porsche Cayenne." Hanging on his words and playing with her hair, it feels like she's flirting with him, even though she //can't// think he's hot. "I could defo see you driving one of those. [[Or a Ferrari|GNO-55912 backseat girl]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Ferrari sit two person, only two person," the driver objects.
"Right, no backseat. Ha!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiRide.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins naughtily, slows down her delivery to make sure he gets her meaning. "You can have a //lot// of fun on a backseat, right?"
Okay – //definitely// flirting. You just can't figure out [[why|GNO-55920 Arrival]].
<</page>><<silently>>
<<set $header.line1 to "''SOI VIBHAVADI''">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah...just here. Thanks." The taxi pulls up near some colourful low-rise apartment buildings.
"So, um..." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiRide.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> toys nervously with her seatbelt. "My friends dared me to ask you something."
"Uhhh...dare you?" the driver furrows his bushy brows, glances at the three of you on his backseat, then looks back to $gina.nickname.
"Yeah. They said if you give us a free ride, I have to [[show you my nipple piercings|GNO-55930 The deal]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<set _d10 to random(1,10)>>
<<if _d10 gte 4>>
<<set _ginaSexAppealRollSucceeded to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Uhh..." The driver laughs nervously. "Nip-oh pierce?"
"Yeah." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiRide.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points to her chest. "I'll show you if you give us a free ride."
He casts a glance around outside. You've pulled up in a <div class="tooltip">soi<span class="tooltiptext">side street</span></div> between some apartment buildings and a car park. It's not bustling, but locals are walking around.
The meter reads ฿54 (<<if $kate.agency == "cia">>$1.62<<elseif $kate.agency == "mi6">>£1.08<<elseif $kate.agency == "asis">>$2.16<<elseif $kate.agency == "csis">>$2.16<<elseif $kate.agency == "nzsis">>$2.16<<else>>ERROR IN KATE.AGENCY VAR<</if>>). He looks in the backseat for guidance, or reassurance.
"They're hot," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> advises.
"She just <<if _ginaSexAppealRollSucceeded>>[[had them done|GNO-55960 Free ride 1]]<<else>>[[had them done|GNO-55940 No free rides 1]]<</if>>," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="greyHighlighter">\
ℹ️ //$gina.nickname ''failed'' a Sex Appeal check.//
</div>\
"<div class="tooltip">Mai, mai<span class="tooltiptext">No, no</span></div>. You pay fare," he insists, tapping the meter.
"Awww! Really?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiRide.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands him three green <div class="tooltip">฿20<span class="tooltiptext">฿60 = <<if $kate.agency == "cia">>$1.80<<elseif $kate.agency == "mi6">>£1.20<<elseif $kate.agency == "asis">>$2.40<<elseif $kate.agency == "csis">>$2.40<<elseif $kate.agency == "nzsis">>$2.40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> notes from her purse. "Keep the change."
"Bo-ring," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains as you all climb out into the street.
[[That was so embarrassing!|GNO-55950 Were you really gonna][$kateSays to "soEmbarrassing"]]
[[Does that ever work?|GNO-55950 Were you really gonna][$kateSays to "doesThatWork"]]
[[Were you really going to do it?|GNO-55950 Were you really gonna][$kateSays to "wereYouReally"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "soEmbarrassing">>\
<<emote-brows-raised>>\
"That was so embarrassing!"
"Meh," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> brushes it off. "It normally works."
<<elseif $kateSays == "wereYouReally">>\
"Were you really gonna do it?"
"Yeah," shrugs <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "It //normally// works."
<<elseif $kateSays == "doesThatWork">>\
"Does that ever work?"
"Yeah," shrugs <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Normally."
<<elseif $kateSays == "awkward">>\
"That was awkward."
"Meh," shrugs <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "It normally works."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<link "//Follow them to $amanda.firstName's condo.//" "GNO-55990 The bargirls explain seduction">><</link>>
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<div class="greyHighlighter">\
ℹ️ //$gina.nickname ''passed'' a Sex Appeal check.//
</div>\
There's a long, uncertain pause. Then, haltingly, he reaches up to the meter, and holds down two buttons.
The red numbers reset from <div class="tooltip">฿54<span class="tooltiptext"><<if $kate.agency == "cia">>$1.62<<elseif $kate.agency == "mi6">>£1.08<<elseif $kate.agency == "asis">>$2.16<<elseif $kate.agency == "csis">>$2.16<<elseif $kate.agency == "nzsis">>$2.16<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> to ฿0.
"Oh my god! Are we doing it?" You don't know <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiRide.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> that well, but something about her nervousness has an air of performance.
She pops open her seat belt, shifts round on her seat so she's fully facing him. Tucking her fingers into the neckline of her top, she glances outside the taxi, then looks back into his wide eyes.
"[[Ready|GNO-55962 Gina's flash]]?"
<</page>><<silently>>
<<first>>
<<addNotification "Bargirl avatars" "The girls' outfits will change through the night.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
He nods dumbly.
$gina.nickname tugs the front of her top down, <span class="imageLink"><<link "baring her perky breasts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_taxiFlash2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> right there in the cab.
The driver just stares, eyes wide at the surprising sight of a bare-breasted <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girl on his passenger seat.
She holds her top down like that for long enough to watch her pierced nipples stiffen in the aircon. Then pulls it back up with a trill of laughter. "Okay. [[Thanks for the ride|GNO-55970 Thanks for the free ride]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You all climb out into the street. The driver stares out after <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, like he's trying to burn her image into his mind.
[[That was embarrassing!|GNO-55980 Can't believe that worked!][$kateSays to "soEmbarrassing"]]
[[Do you do that a lot?|GNO-55980 Can't believe that worked!][$kateSays to "doYouDoThatOften"]]
[[Can't believe that worked!|GNO-55980 Can't believe that worked!][$kateSays to "cantBelieveItWorked"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "soEmbarrassing">>\
<<emote-brows-raised>>\
"Oh my //god,// that was so embarrassing!"
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "You get used to it."
<<elseif $kateSays == "cantBelieveItWorked">>\
<<emote-calm>>\
<<emote-mouth-wideSmile>>\
<<emote-nose-wrinkle>>\
<<emote-brows-raised>>\
"I can't believe that worked!"
"Guys love tits," grins <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<elseif $kateSays == "doYouDoThatOften">>\
"Do you do that a lot?"
"Yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "We never pay for taxis."
<<elseif $kateSays == "whatIf">>\
"What if he'd said no?"
"Meh," shrugs <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "They usually say yes."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<link "//Follow them to $amanda.firstName's condo.//" "GNO-55990 The bargirls explain seduction">><</link>>
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-55940 No free rides 1")>>\
"I was sure he was gonna go for it," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says as you walk to her condo building.
"Yeah. You can normally tell from the chat," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains to you.
"Right," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods emphatically. "If you just ask at the end, they say no. You gotta make 'em like you first."
<<else>>\
"The trick is the chat," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains as you walk to her condo building.
"Right," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods emphatically. "If you just ask at the end, they say no. You gotta make 'em like you first."
<</if>>\
//Like cultivating an agent. Kind of.//
[[Right.|GNO-55992 Got it][$kateSays to "Right"]]
[[Cool.|GNO-55992 Got it][$kateSays to "Cool"]]
[[Uh huh.|GNO-55992 Got it][$kateSays to "Uh huh"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> punches in the door code to her apartment block, //0-1-1-8.//
"You can do the next one," she says. You can't tell from her smile if she's [[joking or not|GNO-56000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<if $amanda.firstName == "Lisa">>
<<set $header.line1 to "''LISA'S CONDO''",
$header.line2 to "MO CHIT / MAY 2018">>
<<else>>
<<set $header.line1 to "''ALLI'S CONDO''",
$header.line2 to "MO CHIT / MAY 2018">>
<</if>>
<</silently>>\
<a data-passage="GNO-56100 Amanda's condo">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sunshinePlace/sunshinePlaceTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sunshinePlace/amandasCondo.jpg" 100 1000 650 0>>\
''4.17 <small>P.M.</small>'' You arrive at <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_outsideNailSalon2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> condo, a <<if $kate.agency == "cia">>fourth<<else>>third<</if>> floor walkup with a view out onto a <<if $kate.agency == "cia" or $kate.agency == "csis">>parking lot<<else>>car park<</if>> and a local street market.
"This place is so cute," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_outsideNailSalon.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "you really lucked out."
"Can't swing a damn cat," $amanda.firstName grumbles. "[[Come in, come in|GNO-56200 My Beautiful Dark Twisted Fantasy]]."
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<remove-bohoBrownLeatherBag>>
<<removeShoes>>
<<set _kateD10 to random(1,10)>>
<<if _kateD10 gte 2>>
<<set _perceptionCheckPassed to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Shouldn't swing cats anyway." The others ditch their bags and kick off their sandals, so you follow suit.
You look around while everybody gets settled in. <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> place is pretty small, but she's got a lot more personal space and privacy than you do at the hostel. It'd be nice just to take a shower without putting on flip flops and walking down the hall.
<<if _perceptionCheckPassed>>\
<span class="greenHighlighter">$kate.firstName ''passed'' an easy Perception check.</span>
The edge of a rolled-up yoga mat peeps out from behind the couch.
<<else>>\
<span class="redHighlighter">$kate.firstName ''failed'' an easy Perception check.</span>
<</if>>\
[[Sure beats my hostel.|GNO-56201 Beats my hostel]]
<<if _perceptionCheckPassed>>\
[[Oh, you do yoga too?|GNO-56207 You do yoga too, Amanda?]]
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">//[Masochist]//</span> [['Cat' is an old name for whip.|GNO-56204 Cat is an old name for whip]]
<<else>>\
<span class="greyedOut">//[Masochist]// 'Cat' is an old name for whip.</span>
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sure beats my hostel."
"I bet." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> syncs up her phone with a little Bluetooth speaker.
"They spoken to you about <div class="tooltip">bargirling<span class="tooltiptext">prostituting yourself for the club</span></div>?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks. "It's better money."
[[I can't pole dance.|GNO-56202 I can't dance]]
[[I don't think I could.|GNO-56203 Don't think I could be a bargirl]]
<span class="greyedOut">//[Lie]//</span> [[Yeah, I'm thinking about it.|GNO-56206 I'm thinking about bargirling]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"I can't pole dance," you quip.
"We'll teach ya," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> offers.
"You should try it." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your butt to squeeze past, on her way to the little kitchen. "You [[got the looks|GNO-56209 Fixing drinks]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I...don't think I could."
"Why not?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "It's just sex."
"Heaps of girls do it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "It's more normal here."
"You should try it." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your butt to squeeze past, on her way to the little kitchen. "You [[got the looks|GNO-56209 Fixing drinks]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Cat's an old name for a whip," you say.
"Huh?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't look up from her phone.
[[Not enough room to swing a cat o'nine tails.|GNO-56205 Not enough room to swing a cat o'nine tails]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not enough room to swing a cat o'nine tails."
"Whoa. Seriously?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Huh! Kinky," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Have to borrow one from the club." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your butt to squeeze past, on her way to the little kitchen. "Should test that out before [[my lease is up|GNO-56209 Fixing drinks]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm thinking about it," you lie. //Can't imagine <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> greenlighting// that!
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"You should do it," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, not looking up from her phone settings. "It's easy once you start."
"Definitely," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. She pats your butt to squeeze past, on her way to the little kitchen. "You [[got the looks|GNO-56209 Fixing drinks]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, you do yoga?" you ask <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Uh huh! You?"
[[Yep!|GNO-56208 Yoginis]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yep!"
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Oh cool, we do it together," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "They give free classes down at Lumphini Park."
"Yeah, it's really nice," <<if $zoe.stripperName == "Zoe">>Zo<<else>>Iz<</if>>...<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees, not looking up from her phone screen.
"You should come along," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. She pats your butt to squeeze past you, on her way to the little kitchen. "I'll [[message you|GNO-56209 Fixing drinks]] when we're going."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finally gets her Bluetooth working. The little speaker starts thumping out an old Beyonce song.
//<small>🎵</small>Girls! We run this mother...yeah!<small>🎵</small>
<small>🎵</small>Girls! We run this mother...yeah!<small>🎵</small>//
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[fixes drinks|GNO-56210 First drink]] in her little kitchen, shaking her butt to the irresistable beat.
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
''4.21 <small>P.M.</small>'' "To $zoe.nickname!" Four glasses of blood-red juice clink together, jingling the ice cubes. "Happy birthday, babe."
//<small>🎵</small>Who run the world? Girls!<small>🎵</small>
<small>🎵</small>Who run the world? Girls!<small>🎵</small>
<small>🎵</small>Who run this mother ...? Girls!<small>🎵</small>//
You take a deep sip of your first alcoholic drink of the day – vodka and diet pomegranate. <<if $kate.agency == "mi6">>"This is your national drink, right?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> teases. "We call Brits Pommies," she explains to the Americans.
"Pommy!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "That's cute. I like it."
<<if hasVisited("GNO-2800 I don't have a thing to wear") and hasVisited("GNO-12400 Kate buys going out clothes")>>\
"Come on, Pommy," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We've gotta find you [[something to wear|GNO-58000 Pygmalion lite]]."
<<elseif hasVisited("GNO-2800 I don't have a thing to wear")>>\
"Come on, Pommy," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We've gotta find you [[something to wear|GNO-56300 Pygmalion]]."
<<elseif hasVisited("GNO-12400 Kate buys going out clothes")>>\
"Come on, Pommy," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Let's [[get ready|GNO-59000 Dressup party]]."
<<else>>\
"Come on, Pommy," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Let's [[get ready|GNO-60000 Faux pas]]."
<</if>>\
<<else>>\
The strong taste takes the edge off right away, the alcohol kick somehow working before it's even made it to your veins.
<<if hasVisited("GNO-2800 I don't have a thing to wear") and hasVisited("GNO-12400 Kate buys going out clothes")>>\
"Come on," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We've gotta find you [[something to wear|GNO-58000 Pygmalion lite]]."
<<elseif hasVisited("GNO-2800 I don't have a thing to wear")>>\
"Come on," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We've gotta find you [[something to wear|GNO-56300 Pygmalion]]."
<<elseif hasVisited("GNO-12400 Kate buys going out clothes")>>\
"Come on," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Let's [[get ready|GNO-59000 Dressup party]]."
<<else>>\
"Come on," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Let's [[get ready|GNO-60000 Faux pas]]."
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<if $amanda.firstName == "Lisa">>
<<set $header.line1 to "''LISA'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<<else>>
<<set $header.line1 to "''ALLI'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<</if>>
<<set $kateIsInTheBedroom to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sunshinePlace/amandasRoom.jpg" 100 1000 500 0>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you through to a small bedroom with a messy unmade bed, strewn with tops and a bra. It's hot and stuffy; she clicks the aircon on.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follow you through. "This is cool," $gina.nickname enthuses. "Let's play dress up!"
"What about that white dress?" $zoe.firstName asks. "With the [[criss cross|GNO-56301 This one?]]..."
<</page>><<silently>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
You unsling your bag and lay it on the messy bed while <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rummages through her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.
"This one?" She pulls out a clothes hanger with a short white halterneck dress dangling from it.
"Yeah yeah yeah. Try this on," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
Even though you've gotten changed with $zoe.firstName and $amanda.firstName before, even though you're a topless barmaid now, you still feel a little self-conscious about just peeling your clothes off. You take a calming sip of vodka pomo first.
<<if $kate.isWearing.includes("dress")>>\
//[[Change out of your dress.|GNO-56302 Un dressed]]//
<<else>>\
//[[Change out of your top.|GNO-56303 Top off]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
You set down your drink, and take off your dress. <<if $kate.lastWornDress == "whiteMiniSmockSummerDress">>Pulling it off over your head like a t-shirt, you<<else>>Tugging loose the bow behind your neck, you slip it off and<</if>> lay it on <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> messy bed.
<<include "GNO-56305 Doesn't work with a bra">>
<</page>><<silently>>
<<emote-calm>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You set down your drink, then pull your top off over your head, laying it on <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> messy bed.
<<if $kate.isWearing.includes("skirt")>>\
//[[Take off your skirt.|GNO-56304 Shorts off]]//
<<else>>\
//[[Take off your shorts.|GNO-56304 Shorts off]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You <<if $kate.isWearing.includes("skirt")>>slip off your skirt<<removeSkirt>><<else>>wriggle out of your shorts<<removeShorts>><</if>>.
<<include "GNO-56305 Doesn't work with a bra">>
<</page>>"It's halterneck, you can't wear it with a bra," explains <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greyedOut">//[Take it off]//</span> [[Uh huh.|GNO-56306 Feminist]]<<silently>>
<<emote-mouth-talking>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
"Uh huh."
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are fully dressed, and it feels weird getting changed right in front of them. You slip off your bra as nonchalantly as you can, and lay it on the bed.
<<if $kate.braSize == "large">>\
"Great tits, right," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Amazing," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<<else>>\
"Hot, right," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Gorgeous," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<</if>>\
//[[Try on the white dress.|GNO-60220 White dress try-on]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you murmur. The aircon's kicking in and you feel your nipples stiffening.
//[[Try on the white dress.|GNO-60220 White dress try-on]]//
<</page>><<silently>>
<<if $amanda.firstName == "Lisa">>
<<set $header.line1 to "''LISA'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<<else>>
<<set $header.line1 to "''ALLI'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<</if>>
<<set $kateIsInTheBedroom to true>>
<<emote-calm>>
<<emote-mouth-talking>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"I did bring some stuff," you say, grabbing your <<handbag>>.
"Cool. Bring it through, let's see."
<<image "/locationPhotos/thailand/sunshinePlace/amandasRoom.jpg" 100 1000 500 0>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you through to a small bedroom with a messy unmade bed, strewn with tops and a bra. It's hot and stuffy; she clicks on the aircon.
//[[Show her your outfit.|GNO-58100 Try-on]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("FNG-12440 Kate buys the jersey dress")>>\
You hold up the jersey dress you bought at Old Siam Plaza.
<<elseif hasVisited("FNG-12450 Kate buys the separates")>>\
You hold up the skirt and top you bought at Old Siam Plaza.
<<else>>\
You hold up the black dress you bought at Old Siam Plaza.
<</if>>\
"Hmmm..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes <<if hasVisited("FNG-12450 Kate buys the separates")>>the outfit<<else>>it<</if>> doubtfully. "Let's see it on."
[[Sure.|GNO-58101 Strip nerves][$kateSays to "Sure"]]
[[Um, okay.|GNO-58101 Strip nerves][$kateSays to "Um, okay"]]
[[You don't like it?|GNO-58101 Strip nerves][$kateSays to "uHateIt"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "uHateIt">>\
<<emote-mouth-talking>>\
<<emote-brows-raised>>\
"You don't like it?"
"Hmmm...maybe it'll look better on."
<<else>>\
<<emote-mouth-talking>>\
"$kateSays."
<</if>>\
Even though you've gotten changed with <<if $amanda.stripperName == "Amanda">>Am...<<else>>Sa...<</if>><span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> before, even though you've worked <<if hasVisited("GNO-50320 Five nights")>>five shifts<<else>>for three weeks<</if>> as a topless barmaid, you still feel slightly awkward about just taking your clothes off. You take a calming sip of vodka pomo.
<<if $kate.isWearing.includes("dress")>>\
//[[Change out of your dress.|GNO-58102 Un dressed]]//
<<else>>\
//[[Change out of your top.|GNO-58105 Top off]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
You set down your drink, and take off your dress. <<if $kate.lastWornDress == "whiteMiniSmockSummerDress">>Pulling it off over your head like a t-shirt, you<<else>>Tugging loose the bow behind your neck, you slip it off and<</if>> lay it <<if $kateIsInTheBedroom>>on <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> messy bed.<<else>>over the back of the couch.<</if>>
"Hey." <<if $kateIsInTheBedroom>><span class="imageLink"><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes wandering in, curious about your outfit.<</if>>
<<if hasVisited("FNG-12440 Kate buys the jersey dress")>>\
//<span class="greyedOut">[Try on the dress]</span>// [[What do you think?|GNO-58115 Jersey dress try on]]
<<elseif hasVisited("FNG-12450 Kate buys the separates")>>\
//<span class="greyedOut">[Try on the skirt]</span>// [[Hey.|GNO-58140 Skirt try on]]
<<else>>\
//<span class="greyedOut">[Try on the dress]</span>// [[What do you think?|GNO-58160 Black dress try on]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You set down your drink, then pull your top off over your head, and lay it <<if $kateIsInTheBedroom>>on <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> messy bed.<<else>>over the back of the couch.<</if>>
<<if $kate.isWearing.includes("skirt")>>\
//[[Take off your skirt.|GNO-58110 Shorts off]]//
<<else>>\
//[[Take off your shorts.|GNO-58110 Shorts off]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You <<if $kate.isWearing.includes("skirt")>>slip off your skirt<<removeSkirt>><<else>>wriggle out of your shorts<<removeShorts>><<removeTrousers>><</if>>. <<if $kateIsInTheBedroom>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes wandering in, curious about your outfit.<</if>>
<<if hasVisited("FNG-12440 Kate buys the jersey dress")>>\
//<span class="greyedOut">[Try on the dress]</span>// [[What do you think?|GNO-58115 Jersey dress try on]]
<<elseif hasVisited("FNG-12450 Kate buys the separates")>>\
//[[Put on the skirt.|GNO-58140 Skirt try on]]//
<<else>>\
//[[Try on the dress.|GNO-58160 Black dress try on]]//
<</if>>\
<</page>><<silently>>
<<wear-dress-lightBlueLowBackRibbedBodyconJerseyDress>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle into your dress and smooth it down into place. "What do you think?"
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pause and think of something nice to say.
"It's cute," $amanda.firstName says.
"Yeah," $zoe.firstName agrees. "And you look great in bodycon."
"Maybe a little long, though?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says<<if $kateIsInTheBedroom>> from the doorway behind you<</if>>.
"Yeah...try pulling it up a little?" $zoe.firstName suggests.
<span class="greyedOut">//[Tug up the hemline]//</span> [[Like this?|GNO-58120 Wear it shorter]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<<set $avatar.clothing.push(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUp-"+$kate.braSize))>>
<<set $avatar.clothing.push(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUp-rear"))>>
<<set $avatar.clothing.delete(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-"+$kate.braSize))>>
<<set $avatar.clothing.delete(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-rear"))>>
<</silently>>\
<<header>>\
<<page>>\
You tug the stretchy hemline up your legs, baring a few more inches of skin. "Like this?"
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> look doubtful. <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kateIsInTheBedroom>>comes around to check out the result<<else>>makes an uncertain noise<</if>>. "Maybe without the bra..." she suggests.
//[[Go braless.|GNO-58125 Hiked up and feminist]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<removeBra>>
<<set $avatar.cleavageCounter -=1>>
<<set $avatar.clothing.pushUnique(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUpFeminist-"+$kate.braSize))>>
<<set $avatar.clothing.pushUnique(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUpFeminist-rear"))>>
<<set $avatar.clothing.delete(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUp-"+$kate.braSize))>>
<<set $avatar.clothing.delete(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUp-rear"))>>
<</silently>>\
<<header>>\
<<page>>\
It's pretty easy to undo your bra through the thin, ribbed material of your dress. You slip it off and slide it out, dropping it onto the <<if $kateIsInTheBedroom>>bed<<else>>couch<</if>> with your other clothes.
The thin, clingy dress feels <<if $kate.braSize == "small">>like you're wearing a skinny tee<<else>>no more supportive than a t-shirt<</if>>.
"It's //cute,// just..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says doubtfully.
"Show us the back?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
//[[Give them a turn.|GNO-58130 Dat ass]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You give the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> a <<if $kate.lastWornDress == "blackKnottedCocktailDress">>[[quick spin|GNO-58131 Lose the bra]]<<else>>[[quick spin|GNO-58135 Nope]]<</if>> to show off your outfit from all angles.
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"I think maybe without the bra?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
//[[Go braless.|GNO-58132 LBD feminist]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
You slip off your bra, and slide it out from under your dress.
"It is nice, it's just..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> trails off.
"Mmm. I //do// like it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists. "Just not sure..."
"I just think it's a bit long," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, and the others nod and //mmm// in ready agreement.
"Why don't we see if I've got something she can..." $amanda.firstName suggests.
"Yeah yeah yeah," $zoe.firstName agrees. "Hey, what about that white dress? [[With the criss cross|GNO-60210 Try this skirt]]..."
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"It is nice, it's just..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> trails off.
"Mmm. I //do// like it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists. "Just not sure..."
"I just think it's a bit long," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, and the others nod and //mmm// in ready agreement.
"Why don't we see if I've got something she can..." $amanda.firstName suggests.
"Yeah yeah yeah," $zoe.firstName agrees. "Hey, what about that white dress? [[With the criss cross|GNO-60210 Try this skirt]]..."
<</page>><<silently>>
<<wear-skirt-taupeBandagePencilSkirtWithFlutedHem>>
<</silently>>\
<<header>>\
<<page>>\
You step into the pencil skirt, pull it up to your waist, and zip it tight at the hip.
"Oh, that's cute," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I like the ruffles."
"Yeah," agrees <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<if $kateIsInTheBedroom>>, hovering in the doorway behind you<</if>>. "Cute."
[[Check out this top.|GNO-58145 Check out this top]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Check out this top." You pull the halterneck from your bag, bright red strings and ribbons dangling in your hand.
It's not really designed to be worn with a bra. You feel a moment's hesitation about just taking it off, even though these girls are strippers and you're a topless barmaid.
[[I can't really wear it with a bra...|GNO-58146 Reluctant feminist]]
//[[Just take it off.|GNO-58150 Feminist]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, can't really wear it with a bra," you murmur.
No one reacts at all.
//[[Take it off.|GNO-58150 Feminist]]//
<</page>><<silently>>
<<emote-calm>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
Feeling a little self-conscious, you reach <<if $kate.lastWornBra == "blackPlungeWithPinkBow">>up to the clasp of your front-fastening bra<<else>>behind your back to find the clasp of your bra<</if>> and unhook it. You slip it off, and drop it on the <<if $kateIsInTheBedroom>>bed<<else>>back of the couch<</if>>.
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are fully dressed and it feels weird getting changed right in front of them.
<<if $kate.braSize == "large">>\
"Great tits, right," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Amazing," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<<else>>\
"Hot, right," <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Gorgeous," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<</if>>\
<span class="greyedOut">//[Wear the top]//</span> [[What do you think?|GNO-58155 Top try on]]
<</page>><<silently>>
<<wear-top-redTieUpHalterneckTop>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You put on the top, and tie everything into place. "What do you think?"
"I love the top," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. <<if $kate.braSize == "small">>"It's really cute."<<else>>"Your tits look great."<</if>>
"Show us the back?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
//[[Give them a turn.|GNO-58130 Dat ass]]//
<</page>><<silently>>
<<wear-dress-blackKnottedCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
You step into your slinky black dress, pull it up over your body, slip the spaghetti straps on over your shoulders.
<<if $kateIsInTheBedroom>>\
"Oh, that's nice." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes through from the living room, attracted by all the activity. She helps you zip it up, standing behind you with her fingertips pressing lightly into the small of your back.
<<else>>\
"Oh, that's nice." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes around to help you zip it up, standing behind you with her fingertips pressing lightly into the small of your back.
<</if>>\
[[What do you think?|GNO-58265 What do you think?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What do you think?"
<<if hasVisited("FNG-12440 Kate buys the jersey dress")>>\
//<span class="greyedOut">[Try on the dress]</span>// [[What do you think?|GNO-58115 Jersey dress try on]]
<<elseif hasVisited("FNG-12450 Kate buys the separates")>>\
//[[Put on the skirt.|GNO-58140 Skirt try on]]//
<<else>>\
"Hmmm...it's really nice," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "It does suit you."
"Yeah...it's really classy," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
From their tones you get the feeling there's a //but// coming.
"Show 'em the back?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks, coming round to join the others.
<</if>>\
//[[Give them a turn.|GNO-58130 Dat ass]]//
<</page>><<silently>>
<<remove-top-whiteFrillySpaghettiStrapVest>>
<<remove-shorts-blueDenimDaisyDukes>>
<</silently>>\
<<header>>\
<<page>>\
You pull off your t-shirt and wriggle out of your daisy dukes.
//[[Wear the dress.|GNO-58300 Wear the dress]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<wear-dress-yellowHalterNeckSummerDress>>
<</silently>>\
<<header>>\
<<page>>\
//TK note that all avatar clothes are in production, this is a placeholder dress.//
--
//TK this is ''dressup path #2, Pygmalion Lite.'' In this path, Kate shows <<Amanda>> what she bought at the mall; <<Amanda>> and the other girls tweak the outfit somehow (e.g. swapping out a top or a skirt; adding a fishnet layer; pairing it with different boots; etc).
Zoe and Gina are quickly drawn in and join in, attracted by the fun of playing dress-up with the new girl. This experience is platonic but intimate.
Actual scenes will be written when wardrobe assets are available.//
--
[[Continue|GNO-61000 Ping arrives]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> start pulling party clothes out of their bags; you follow suit.
"What'd you bring?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
//[[Show her your outfit.|GNO-58100 Try-on]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> start pulling party clothes out of their bags.
You haven't brought anything to change into; for an uncomfortable moment, you just stand there and watch, the odd girl out.
[[Are we dressing up?|GNO-60100 Are we dressing up?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um...are we dressing up?"
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks at your little joke, then sees the look on your face. "Ohmygod, you're for real?"
<span class="redHighlighter"><<Zoe>> ''disliked'' that.</span> <span class="redHighlighter"><<Amanda>> ''disliked'' that.</span> <span class="redHighlighter"><<Gina>> ''disliked'' that.</span>
"She's serious?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks stunned.
"Fuuuck. But I said..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "Okay, [[come with me|GNO-60200 Amanda saves the day]]..."
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<if $amanda.firstName == "Lisa">>
<<set $header.line1 to "''LISA'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<<else>>
<<set $header.line1 to "''ALLI'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<</if>>
<<set $kateIsInTheBedroom to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sunshinePlace/amandasRoom.jpg" 100 1000 500 0>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> marches you through to a small bedroom with a messy unmade bed, strewn with tops and a bra. It's hot and stuffy; she clicks on the aircon.
"Fuck," she murmurs, throwing open a <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>, "we've gotta find you something to wear!"
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follow you in. "What about your white dress," $zoe.firstName asks, "with the criss cross?"
[[I'm really sorry!|GNO-60201 I'm really sorry]]
//TK defensive option?//
<</page>><<silently>>
<<emote-mouth-talking>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"I'm sorry!" You unsling your bag and lay it on the messy bed. "I didn't realise."
"Don't worry," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "we'll fix it."
Meanwhile, <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rummages through her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. "This one?" She pulls out a clothes hanger with a short white halterneck dress dangling from it.
"Yeah yeah yeah. Try this on," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
Even though you've gotten changed with $zoe.firstName and $amanda.firstName before, even though you're a topless barmaid now, you still feel a little self-conscious about just peeling your clothes off. You take a calming sip of vodka pomo first.
<<if $kate.isWearing.includes("dress")>>\
//[[Change out of your dress.|GNO-56302 Un dressed]]//
<<else>>\
//[[Change out of your top.|GNO-56303 Top off]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if not $kateIsInTheBedroom>>\
<<silently>>
<<if $amanda.firstName == "Lisa">>
<<set $header.line1 to "''LISA'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<<else>>
<<set $header.line1 to "''ALLI'S BEDROOM''",
$header.line2 to "MO CHIT / MAY 2018">>
<</if>>
<<set $kateIsInTheBedroom to true>>
<</silently>>\
<<image "/locationPhotos/thailand/sunshinePlace/amandasRoom.jpg" 100 1000 500 0>>\
You follow the girls through to a small bedroom with a messy unmade bed, strewn with tops and a bra. It's hot and stuffy; someone clicks on the aircon while <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rummages through her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.
<<else>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rummages through her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.
<</if>>\
"This one?" She pulls out a clothes hanger with a short white halterneck dress dangling from it.
"Yeah yeah yeah. Try this on," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
<<if $kate.isWearing.includes("skirt")>>\
//<span class="greyedOut">[Change out of your skirt]</span>// [[Okay...|GNO-60213 Un skirted]]
<<else>>\
<<if $kate.lastWornDress == "lightBlueLowBackRibbedBodyconJerseyDress">>\
//<span class="greyedOut">[Change out of your dress]</span>// [[Okay...|GNO-60211 Topless hesitation]]
<<else>>\
//<span class="greyedOut">[Change dresses]</span>// [[Okay...|GNO-60217 Unzipped]]
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you say, taking the hanger.
The dress is white stretchy bodycon. It should fit<<if $kate.braSize == "small">>, even though your boobs are smaller than <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<elseif $kate.braSize == "medium">>; your boobs are about the same size as <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<else>>, although you're bustier than <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><</if>>.
Your bra is on the bed, and you need to take off your dress. You're not sure if you should go change in the bathroom, or just undress right here in front of everybody. $amanda.firstName and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> have both seen you topless anyway, right?
[[I'll change in the bathroom.|GNO-60212 I'll change in the bathroom]]
//[[Take off your dress.|GNO-60215 Un dressed]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll go change in the–"
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head impatiently. "C'mon, we haven't even started getting ready."
"Don't worry," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We're only lesbians on stage."
"Bitch," $amanda.firstName elbows her arm. "Last time you told me you loved me."
//[[Change here.|GNO-60215 Un dressed]]//
<</page>><<silently>>
<<removeSkirt>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." You unzip your pencil skirt and wriggle out of it.
//[[Take off the top.|GNO-60214 Topless again]]//
<</page>><<silently>>
<<emote-calm>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You lay it <<if $kateIsInTheBedroom>>on the bed<<else>>over the back of the couch<</if>> with the rest of your clothes.
//[[Try on the white dress.|GNO-60220 White dress try-on]]//
<</page>><<silently>>
<<removeDress>>
<<if hasVisited("FNG-12440 Kate buys the jersey dress")>>
<<set $avatar.clothing.delete(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUpFeminist-"+$kate.braSize))>>
<<set $avatar.clothing.delete(("clothing/dresses/lightBlueLowBackRibbedBodyconJerseyDress/20_dress-lightBlueLowBackRibbedBodyconJerseyDress-hikedUpFeminist-rear"))>>
<<set $avatar.cleavageCounter to 0>>
<</if>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.lastWornDress == "blackKnottedCocktailDress">>
"Okay..." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes around to help unzip you. You slip out of the dress, and drape it on the messy bed.
"Won't work with a bra," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you.
<span class="greyedOut">//[Take it off]//</span> [[Um, okay.|GNO-60216 Feminist]]
<<else>>\
"Okay..." You just peel off the jersey dress, and lay it on the bed. <<if not hasVisited("GNO-60212 I'll change in the bathroom")>>The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> don't bat an eyelid at you stripping off in front of them.<</if>>
<<if not hasVisited("GNO-60212 I'll change in the bathroom")>>They're<<else>>The other girls<</if>> are all fully dressed; it feels weird being the only one topless, even if it's just for a moment. The aircon's kicking in and you feel your nipples stiffen.
<<if $kate.braSize == "large">>\
"Great tits, right," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Amazing," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<</if>>\
//[[Try on the white dress.|GNO-60220 White dress try-on]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
"Um, okay." You take another swig of vodka pomo before undoing your bra and sliding it off.
The other girls are all fully dressed; it feels weird being the only one topless, even if it's just for a moment. The aircon's kicking in and you feel your nipples stiffen.
<<if $kate.braSize == "large">>\
"Great tits, right," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Amazing," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<</if>>\
//[[Try on the white dress.|GNO-60220 White dress try-on]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes around to unzip you. //Guess I'm getting changed right here.//
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> have both seen you naked anyway, in the dressing room at the club. Undressing in front of them shouldn't be a big deal.
//[[Peel off your black dress.|GNO-60218 Un dressed (black version)]]//
<</page>><<silently>>
<<showFront>>
<<removeDress>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Feeling a little self-conscious, you slip down the shoulder straps, and wriggle out of the long, tight dress in front of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
They're fully dressed and it feels weird to be the only one topless, even if it's just for a moment. The aircon's kicking in and you feel your nipples stiffen.
<<if $kate.braSize == "large">>\
"Great tits, right," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Amazing," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<<else>>\
"Hot, right," <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Gorgeous," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
<</if>>\
//[[Try on the white dress.|GNO-60220 White dress try-on]]//
<</page>><<silently>>
<<emote-calm>>
<<wear-dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress>>
<</silently>>\
<<header>>\
<<page>>\
You step into the tight white dress, pulling it up around your body. After a second, you figure out how the halterneck strap works, and slip your head into it.
"Ah yeah, //that's// more like it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, looking you up and down.
"I like the white," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "It's like the colour says //I'm innocent,// but the cut says //do me."//
"What d'you think?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks you.
//[[Check your reflection.|GNO-60230 White dress mirror check]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You check yourself out in the mirror. Nothing like any dress you've ever owned, but the fit is pretty good.
It feels like your <<if $kate.braSize == "small">>nipples<<else>>boobs<</if>> could just slip out accidentally unless you're very, very careful how you move.
[[Not sure I can dance in this...|GNO-60240 White dress feedback]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Not sure I can //dance// in this..." //TK add more feedback options.//
"We can use tit tape," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
<<if $kate.braSize == "large">>"A whole roll of it,"<<else>>"This is fun!"<</if>> <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kate.braSize == "large">>snickers<<else>>says<</if>>. "We should try something else."
"I'll get the music." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> vanishes next door to get the speaker; $gina.nickname and $amanda.firstName rummage through the closet for another dress.
"Ooh, what about this one?" They pass out a purple dress with spaghetti straps.
//[[Change out of the white dress.|GNO-60250 Un dressed]]//
<</page>><<silently>>
<<emote-calm>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
You peel off the white dress and take the purple one.
//[[Try it on.|GNO-60260 Purple dress try on]]//
<</page>><<silently>>
<<wear-dress-wineAsymmetricHemCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> helps zip you into it.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> returns carrying the little speaker, now pulsing out N.E.R.D's //She Wants To Move.//
//<small>🎵</small>Mister! Look at your girl! She loves it!<small>🎵</small>//
//<small>🎵</small>I can see it in her eyes...<small>🎵</small>//
"Oh, that's cute," she says, checking you out.
"Classy right?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
//"Too// classy," $amanda.firstName says thoughtfully. "I think we should [[go sexier|GNO-60270 Sex her up]],"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
That idea triggers a new hunt through <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clothes.
Between sips of vodka pomo and shaking their asses to <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> Girls' Night Out playlist, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> get you to <<linkreplace "strip off">><<replace "#avatar-container">><<removeDress>><<avatar>><</replace>>strip off<<replace "#textThatChanges">>and try on a <<linkreplace "black dress">><<replace "#avatar-container">><<removeDress>><<wear-dress-blackTwistFrontRuchedCutOutDress>><<emote-brows-rogerMoore>><<avatar>><</replace>>black dress<<replace "#redOne">>[[red one|GNO-60271 Red dress]]<</replace>><</linkreplace>>, then a <span id = "redOne">red one</span> from $amanda.firstName's <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.<</replace>><</linkreplace>> <span id="textThatChanges">and try on a black dress, then a red one from $amanda.firstName's <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.</span>
<</page>><<silently>>
<<removeDress>>
<<wear-dress-redOneShoulderCocktailDress>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"This is fun!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tops up everybody's vodka.
"She's like a <<if $kate.agency == "cia">>sexy little Barbie<<elseif $kate.agency == "mi6">>little British doll<<elseif $kate.agency == "asis">>little Aussie doll<<elseif $kate.agency == "csis">>sexy little Barbie<<elseif $kate.agency == "nzsis">>sexy little doll<<else>>ERROR IN KATE.AGENCY VAR<</if>>," $zoe.firstName agrees.
"Maybe separates? [[Try this skirt|GNO-60280 Lady not in red]]," says $amanda.firstName.
<</page>><<silently>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> unzips you, and the red dress gets added to the mess on the bed.
"This skirt goes with everything," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises.
//[[Try it on.|GNO-60290 Red floral mini try on]]//
<</page>><<silently>>
<<emote-calm>>
<<wear-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You step into the skirt and pull it up around your hips. It's verrry short, barely concealing your <<knickers>>.
"Hm, nice," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"I got a top that might work," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds. "I was thinking about wearing it with my tiger skirt..."
"Show us the back?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Okay.|GNO-60300 Turn]]
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." You [[turn around|GNO-60310 Try this top]] and show off your butt.
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"Try this." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands you a black, stretchy longsleeved top from her bag.
//[[Try it on.|GNO-60320 Black top]]//
<</page>><<silently>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
The top smells of <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> when you pull it over your head.
It's tight, thin and stretchy. You pull the hem down as far as it'll go, down to your ribs, and tug and smooth everything into place.
Your reflection gazes back from the mirror, wearing just three small tight items of clothing. Your lack of a bra is very obvious in this thin<<if $kate.braSize != "small">>, cleavagey<</if>> top.
"Wow," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs approvingly. "Perfect!"
"She needs ankle boots," $zoe.firstName says.
"I was thinking [[strappy heels|GNO-60330 Strappy heels]]?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies.
<</page>><<silently>>
<<wear-shoes-blackStrappyGladiatorHeels>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a pair of strappy black heels to try on. You take a few experimental steps around the bedroom; they're a little tight but the fit is okay.
"No no, [[ankle boots|GNO-60340 Barefoot]]," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists, framing you with her thumbs like she's a fashion photographer. "The whole point is like...acres of leg."
<</page>><<silently>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
You change out of the strappy heels while the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> rummage through <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shoe collection.
"Here," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "[[try these|GNO-60350 Ankle boots]]."
<</page>><<silently>>
<<wear-shoes-amandasBlackHighHeeledAnkleBoots>>
<</silently>>\
<<header>>\
<<page>>\
You zip them on and take a few steps. They pinch a little, but you can wear them.
"Boom!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beams. "Legs for miles."
"That's the look," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "Perfect."
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets out a satisfied little sigh, marvelling at her creation. "We are [[geniuses|GNO-60360 Geniuses]]."
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Geniuses." Glasses are clinked together and everybody finishes their vodka pomo.
$gina.nickname checks the time on her phone. "C'mon, geniuses. We've gotta [[get ready|GNO-61000 Ping arrives]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Oh oh oh!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I know!"
She rummages in her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>> for a purple dress on a hanger. "Try this!"
//[[Take off the top.|GNO-60305 Topless]]//
//[[Take off the skirt.|GNO-60306 Skirtless]]//
<</page>><<silently>>
<<remove-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You peel off <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> top and lay it on the <<if not hasVisited("GNO-60306 Skirtless")>>messy <</if>>bed.
<<if not hasVisited("GNO-60306 Skirtless")>>\
//[[Take off the skirt.|GNO-60306 Skirtless]]//
<<else>>\
//[[Try on the purple dress.|GNO-60310 Purple dress]]//
<</if>>\
<</page>><<silently>>
<<remove-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle out of <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> skirt and drop it on the <<if not hasVisited("GNO-60305 Topless")>>messy <</if>>bed.
<<if not hasVisited("GNO-60305 Topless")>>\
//[[Take off the top.|GNO-60305 Topless]]//
<<else>>\
//[[Try on the purple dress.|GNO-60310 Purple dress]]//
<</if>>\
<</page>><<silently>>
<<wear-dress-wineAsymmetricHemCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
//TK Steph helps zip you into the purple dress. Reactions and feedback//
//TK writing notes for this scene: ''Kate needs dialogue & reactions,'' it doesn't work if she's just wordlessly obeying. The girls should talk about each look. Steph should zip and unzip every dress. Bargirl compliments on Kate's looks and figure, genuinely supportive. SUBTEXT: without being consciously aware of it, the bargirls want Kate to ''look sexy and attract men tonight.''//
Amanda gives you a red dress to try.
//[[Take off the purple dress.|GNO-60315 Purple dress off]]//
<</page>><<silently>>
<<remove-dress-wineAsymmetricHemCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
TK you take off the purple dress.
//[[Try on the red dress.|GNO-60320 Red dress]]//
<</page>><<silently>>
<<wear-dress-redOneShoulderCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
TK zipped up by Steph. Bargirls reaction.
Amanda gives you a black dress to try.
//[[Take off the red dress.|GNO-60325 Red dress off]]//
<</page>><<silently>>
<<remove-dress-redOneShoulderCocktailDress>>
<</silently>>\
<<header>>\
<<page>>\
TK you take off the red dress.
//[[Try on the black dress.|GNO-60330 Black dress]]//
<</page>><<silently>>
<<wear-dress-blackTwistFrontRuchedCutOutDress>>
<</silently>>\
<<header>>\
<<page>>\
TK zipped in, then reactions.
Amanda has one more dress to try.
//[[Take off the black dress.|GNO-60335 Black dress off]]//
<</page>><<silently>>
<<remove-dress-blackTwistFrontRuchedCutOutDress>>
<</silently>>\
<<header>>\
<<page>>\
You take off the black dress.
//[[Try on the white dress.|GNO-60340 White dress]]//
<</page>><<silently>>
<<wear-dress-whiteCrisscrossFrontPeekabooOpenBackBodyconHalterDress>>
<</silently>>\
<<header>>\
<<page>>\
//TK feedback on white dress. Girls ask Kate what she thinks? I like it/might not be able to dance in this. Conversation about tit tape (if Kate is busty, Steph points out they're going to need a lot of tit tape.//
Girls ask Kate what she thinks.
[[I think the top and skirt.|GNO-60350 Kate's preference]]
[[The purple dress?|GNO-60350 Kate's preference]]
[[The black dress?|GNO-60350 Kate's preference]]
[[This one, as long as we use tit tape.|GNO-60350 Kate's preference]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK Kate gives her preference.
The others agree that the first look was the right one. "Try that on again." Steph starts unzipping Kate.
//[[Take off the dress.|GNO-60355 Un dressed]]//
<</page>><<silently>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
You peel off the white dress. Amanda passes you the little red skirt.
//[[Put it on.|GNO-60360 Skirt up]]//
<</page>><<silently>>
<<wear-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle it back up around your hips. Zoe gives you the top.
//[[Put it on.|GNO-60365 Topped up]]//
<</page>><<silently>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You pull the clingy top back on, pulling it down over your breasts.
Zoe and Amanda are on their knees, rummaging in her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>> for shoes. "We need ankle boots," Zoe says.
The girls pass you out a pair of black leather zip-up ankle boots.
//[[Try them on.|GNO-60365 Try on my boots]]//
<</page>><<silently>>
<<wear-shoes-amandasBlackHighHeeledAnkleBoots>>
<</silently>>\
<<header>>\
<<page>>\
You slip on the boots and zip them up.
//Wow, that's the look. Amanda & Zoe high five.//
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> excitedly trot you over to the mirror. The skirt is crazy short and you have to tug the hem down after just taking three steps. You can see the outline of your <<if $kate.piercings.includes("nipplesSilverBarbells")>>nipple piercings<<else>>nipples<</if>> through the thin black top.
"Ohmygod, perfect," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"You look //so// much better," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "I've got a bag that'll go great with it."
"What do you think?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[I like it.|GNO-60340 Kate's final feedback]]
[[Not sure...|GNO-60340 Kate's final feedback]]
[[Maybe with a bra?|GNO-60340 Kate's final feedback]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//TK Kate gives her feedback.//
//TK the bargirls give Kate positive feedback on how amazing she looks. Your boobs look amazing in that top. Guys are not gonna be able to take their eyes off you. Amanda, marvelling at her creation: "We are geniuses."//
//"Geniuses." Glasses are clinked together and everybody finishes the last of their vodka pomo.
Steph checks the time on her phone. "C'mon, geniuses. We've gotta [[get ready|GNO-61000 Ping arrives]]..."//
<</page>><<silently>>
<<if $amanda.firstName == "Lisa">>
<<set $header.line1 to "''LISA'S CONDO''",
$header.line2 to "MO CHIT / MAY 2018">>
<<else>>
<<set $header.line1 to "''ALLI'S CONDO''",
$header.line2 to "MO CHIT / MAY 2018">>
<</if>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-towel-amandasSkimpyRedTowel>>
<<wear-ring-transmitterRing>>
<<first>>
<<addNotification "Buzzed" "Everybody keeps topping up their vodka pomos! You feel relaxed and chatty.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
''4.41 <small>P.M.</small>'' <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arrives to a condo buzzing with activity: half-dressed girls taking turns in the shower, doing their makeup, taking selfies and pre-drinking.
"Hey bir-day girl! Show me your nail." Ping coos over <<Zoe>>'s manicure, then notices you. "Hi $kate.stripperName."
<<link "Hey Ping, it's $kate.cover.firstName." "GNO-610005 Hey Ping I'm Kate">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Hey Ping. Everyone's calling me $kate.cover.firstName now."
"$kate.cover.firstName." She gets her tongue around the foreign name and nods.
[[Should I call you Ping, or...|GNO-610010 Is Ping your stripper name][$kateSays to "rUPing"]]
[[What's yours?|GNO-610010 Is Ping your stripper name][$kateSays to "whatsYours"]]
[[Is Ping your stage name?|GNO-610010 Is Ping your stripper name][$kateSays to "isPingYourStripperName"]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "rUPing">>\
"Should I call you Ping, or..."
<<elseif $kateSays == "whatsYours">>\
"What's yours?"
<<elseif $kateSays == "isPingYourStripperName">>\
"Is Ping your stage name?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Oh...stage name is just for <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girl," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Thai girl, we already have nickname. Easy to remember, haha."
She squeezes into some space and starts getting ready.
[[So...what's your real name?|GNO-610015 Ping's real name]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So...what's your real name?"
"Surassa," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, laying out her makeup. "But my mum, she change it because I very bad girl. She go to monk, monk say I bad because, uh...name have so many S. So my mum, she change to Ping."
[[Surassa's nice.|GNO-610020 Surassa's nice]]
[[Did it work?|GNO-610025 Did it work]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Surassa's nice."
"Thanks. But no one call me it. All family, all friend, [[just Ping|GNO-61200 Dressing room vibes]]."
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Did it work?"
"Nope," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles on her way to the shower.
<span class="greenHighlighter">Ping ''liked'' that.</span>
"<div class="tooltip">Kha<span class="tooltiptext">Right</span></div>," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> caws. "Monk, he still cry, //boohoohoo!// Because [[it not work|GNO-61200 Dressing room vibes]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''4.52 <small>P.M.</small>'' It feels kind of like the dressing room at the club: half-dressed girls glamming themselves up for a night on display. But the pop music and the excited chitter-chatter holds a totally different sense of anticipation: fun, positivity, freedom.
//<small>🎵</small>You're a good girl/I know you want it...<small>🎵</small>//
//<small>🎵</small>The way you grab me/Must wanna get nasty...<small>🎵</small>//
You dab foundation onto your face in time with //Blurred Lines's// funky, upbeat bass riff. This song was banned from your <<university>> campus for misogyny, but it's on $zoe.firstName's Girls' Night Out playlist.
Wearing <span class="imageLink"><<link "just a beach towel">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, she's painting on her eye makeup in bold but delicate strokes.
[[You're so good at eyes.|GNO-62000 Kate compliments Zoe]]
//[[Get started on your own makeup.|GNO-61300 Kate does her own makeup]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You grab your makeup kit.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "GNO-61302 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "GNO-61304 Eyeliner">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GNO-61306 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "GNO-61304 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "GNO-61302 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-61306 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if $kate.isWearing.includesAll("eyeliner", "eyeshadow")>>\
You work on your look in the mirror until you're [[happy with your eyes|GNO-62500 Zoe's boyfriend]] for tonight.
<</if>>\<<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You're so good at eyes."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Yeah? Thanks. Hey, I'll do you if you like?"
[[Have we got time?|GNO-62100 Zoe does Kate's eye makeup]]
[[I'm fine.|GNO-61300 Kate does her own makeup]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Have we got time?"
"Sure." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> brings her makeup kit [[over to you|GNO-62105 Foundation]].
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("/makeup/20_concealerDabs")>>
<<set _katesAttractiveFeatures to []>>
<<if $kate.eyeShape == "cat">>
<<set _katesAttractiveFeatures.pushUnique("catEyes")>>
<</if>>
<<if $kate.eyeColour == "sapphire">>
<<set _katesAttractiveFeatures.pushUnique("sapphireEyes")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> drags her chair up beside you.
Reaching up to your face, she gently dabs cold concealer onto your skin. Her fingertips stroking your cheekbones and around your eyes feel like a tiny massage.
//TK Zoe compliments Kate on some feature. e.g. if Kate has cat eyes, "you've got such pretty eyes, like a cat." if sapphire eyes "such amazing eyes, they're like crystal blue." greek/celestial nose "love your nose. like a cute little button. boop!" hollywood mouth: "such a pretty mouth. i bet you're a great kisser." square face: "such lovely bone structure. i love your cheekbones." diamond/heart face: "such a pretty jawline. really delicate." etc//
Kate response ([[brush off the compliment, thank her, compliment her back|GNO-62110 Thanks]])
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
//Kate reply. Zoe likes being complimented.//
<span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> makeup kit is three times the size of yours. You've never bothered with things like makeup sponges, but she uses one now to blend foundation and concealer smoothly into your skin.
It's incredibly intimate: her soft touch, her chocolate brown eyes gazing intently at your face [[while she works|GNO-62200 Zoeyes]].
<</page>><<silently>>
<<emote-calm>>
<<apply-makeup-eyeshadow-zoesBlueEyeshadow>>
<<emote-eyes-closed>>
<<set $avatar.clothing.delete("/makeup/20_concealerDabs")>>
<</silently>>\
<<header>>\
<<page>>\
You close your eyes as she uses fingertips, brushes and pencils to glam you up for tonight.
//Gentle, delicate touches, trust and intimacy. Kate/Zoe bonding experience. Kate drinking vodka pomo with her eyes closed.//
$zoe.firstName gently blows powder off your eyelids, dabs some away with her thumb. "Okay, check it out."
//[[Open your eyes.|GNO-62300 The reveal]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your reflection gazes back, <<if $kate.eyeColour == "blue">>blue<<elseif $kate.eyeColour == "chestnut">>doe<<elseif $kate.eyeColour == "emerald">>jade<<elseif $kate.eyeColour == "grey">>grey<<elseif $kate.eyeColour == "hazelnut">>honey brown<<elseif $kate.eyeColour == "sapphire">>pale blue<<else>>//ERROR IN KATE.EYECOLOUR VAR//<</if>> eyes framed in glamorous //TK description of Zoe's eye makeup.//
"Whaddya think?"
[[Wow.|GNO-62400 Wow]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<first>>
<<addNotification "New eyeshadow learned" "You'll be able to use this eyeshadow style yourself in future.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Wow," you murmur. "Thanks."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
[[Continue|GNO-62500 Zoe's boyfriend]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''5.05 <small>P.M.</small>'' The air is thick with the smells of baking hair straighteners, makeup, body sprays and perfumes.
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> keeps bustling in and out of her bedroom; you, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoHalfDressed.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> keep jostling around to plug in straighteners or phone chargers, get the prime position in front of a mirror, or refill the drinks.
The towel you borrowed from $amanda.firstName is too small and it feels like it could slip off your body every time you reach up to touch your hair or face. You're constantly [[doing it up and tucking it in|GNO-62505 Ping's messages]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
Outside the club, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are brutally funny when it comes to talking about men and relationships. Mostly it's about people you don't know, so you can't appreciate all the jokes, but <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has all four of you in tears of laughter when she shows you her Tinder messages.
<span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> phone keeps pinging with messages. "Fucking hell, is that Bryan again?" $gina.nickname asks. "He doesn't leave you alone."
[[Who's Bryan?|GNO-62510 Who's Bryan]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Who's Bryan?"
"Guy I'm seeing." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rolls her eyes like he's a pain in the ass, but her voice is tinged with a little pride. "He's kind of attentive when I go out."
"He, ah, knows it's a girls' night, right?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Yeah, yeah, he won't be coming. He's got fight prep, anyway, he can't drink."
[[What kind of fighting does he do?|GNO-65220 What kind of fighter is Bryan]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What kind of fighting does he do?"
"<div class="tooltip">MMA<span class="tooltiptext">Mixed Martial Arts; "cage fighting"</span></div>, back in the States," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He's out here learning <div class="tooltip">Muay Thai<span class="tooltiptext">Thai boxing</span></div>."
"And blowing up your phone!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "What does he want?"
$zoe.nickname unlocks her phone and [[passes it over|GNO-65225 Zoe's phone messages]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderIOS"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">17:09</div><div class="h2"><b>bry ❤️</b></div></div>
<div class="date">\
Text Message
Just now
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
and a new girl called $kate.stripperName
</div>\
</div>\
<div class="npc messages">\
<div class="messageIOS last">\
where r u going tonight
</div>\
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
told you, skybar then hitting a club
</div>\
</div>\
<div class="npc messages">\
<div class="messageIOS">\
what r u gonna do if guys hit on you
</div>\
</div>\
<div class="pc messages">\
<div class="messageIOS last">\
hmmm what do you think i should do?
</div>\
</div>\
<div class="npc messages">\
<div class="messageIOS">\
what do u wanna do bb
</div>\
<div class="messageIOS">\
what r u wearing tonight
</div>\
<div class="messageIOS">\
tell me
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
[[He's jealous?|GNO-65226 Kate diagnoses Bryan with possessiveness]]
[[He's turned on?|GNO-65227 Kate diagnoses Bryan with troilism]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He's jealous?"
"No, it's his kink," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "He likes me seeing other guys."
"Worked out well with your day job," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, brushing her hair.
"Yeahhh, but he //really// likes it when I go out and hook up," $zoe.firstName says. "The sex when I get back is [[amazing|GNO-63000 Boyfriend talk]]."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He...wants you to cheat?"
<span class="greenHighlighter">$zoe.nickname ''liked'' that.</span>
"It's not really cheating. It's just his kink," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "He likes me seeing other guys."
"Worked out well with your day job," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, brushing her hair.
"Yeahhh, but he //really// likes it when I go out and hook up," $zoe.firstName says. "The sex when I get back is [[amazing|GNO-63000 Boyfriend talk]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''5.16 <small>P.M.</small>'' The talk has moved on from <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> Boyfriend to Terrible Exes.
"So he's like, //how much weight have you put on since we met,"// <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you, impersonating her ex's deep voice. "I //wish// I'd told him, about 80 kilos of bloody fucking wanker..."
[[I can't believe he said that.|GNO-63030 Can't believe he said that]]
<<link "I //wish// you'd said that!" "GNO-63010 Wish you'd said that">><</link>>
[[You're not fat.|GNO-63020 You're not fat]]
<</page>><<silently>>
<<emote-mouth-beam>>
<<emote-nose-wrinkle>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
"I //wish// you'd said that," you giggle.
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"I know right, that's my problem. I think of the perfect thing to say but it's like a month after."
<<include "GNO-63040 Kate, worst BF?">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You're not fat."
"Yeahhh," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says dismissively. "I //had// put on a bit of a tummy. Still, not what you need to hear when you're seventeen."
<<include "GNO-63040 Kate, worst BF?">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I can't believe he said that."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
//"Not// what you need to hear when you're seventeen," she says with feeling.
<<include "GNO-63040 Kate, worst BF?">>
<</page>>"$kate.cover.firstName, worst ex?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[My first boyfriend ended up being kind of a dick.|GNO-63050 My first BF was a dick]]
[[All of them.|GNO-63060 All of them]]<<silently>>
<<emote-eyes-calm>>
<<emote-nose-calm>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"My first boyfriend was kind of a dick," you tell them. "I had to beg him to come to my 18th, literally beg. Then about two weeks later I went round his place and saw him making out with his ex through the window."
<span class="greenHighlighter">$zoe.nickname ''sympathised'' with that.</span> <span class="greenHighlighter">$gina.nickname ''sympathised'' with that.</span>
"Ouch," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"He didn't deserve you," says <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
There's another knock at the door. With a fist, not the knuckles. //[[Pum-pum.|GNO-64100 Gina gets it]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"All of them," you quip.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sighs. "Why are blokes so weird?"
"Because they're blokes?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies.
There's another knock at the door. With a fist, not the knuckles. //[[Pum-pum.|GNO-64100 Gina gets it]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just gets up and answers the door in her underwear. Alarmingly...<span class="imageLink"><<link "two rough-looking Thai men">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/jomAndKob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are out in the hallway.
One's old, one's young. They're both wearing sweat pants and wife beater vests, muscular arms wreathed in ornate sleeve tattoos.
Your stomach clenches up, [[tight as a fist|GNO-64200 Fight or flight]].
<</page>><<silently>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
Your pulse thumps and you feel the hairs on your neck lift up. //Oh fuck.//
If you're gonna be taken...it'll happen just like this. You'll be surprised by thugs in a place where your guard's down, your location was known in advance, and there are no civilian witnesses.
//[[Look for a weapon.|GNO-64210 Weapon check]]
[[Check the reactions of the bargirls.|GNO-64220 Et tu Zoe]]
[[Relax, relax, relax.|GNO-64500 Relax]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're trained to use everyday objects as weapons. Your eyes dart sidelong to the <span class="imageLink"><<link "vodka bottle">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/gilbeysVodka.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the counter, easy to grab and smash. //Broken glass is sharper than a razor–//
"Hi Kob," comes a chorus of greetings from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. "Hi Jom."
"<<if $amanda.stripperName == "Amanda">>Amaaanda<<else>>Samaaantha<</if>>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts through to the bedroom. "[[Kob's here|GNO-64600 Kob's here]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your eyes dart sidelong at the other girls. If this is a betrayal, nobody's letting it interrupt their hair and makeup. //Maybe it's not–//
"Hi Kob," comes a chorus of greetings from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. "Hi Jom."
"<<if $amanda.stripperName == "Amanda">>Amaaanda<<else>>Samaaantha<</if>>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts through to the bedroom. "[[Kob's here|GNO-64600 Kob's here]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Relax, relax. Easy!// You catch a glimpse of your own expression in the mirror, serious and alert. //Be $kate.stripperName. Be $kate.stripperName.//
"Hi Kob," comes a chorus of greetings from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. "Hi Jom."
"<<if $amanda.stripperName == "Amanda">>Amaaanda<<else>>Samaaantha<</if>>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts through to the bedroom. "[[Kob's here|GNO-64600 Kob's here]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Hi sluts."
The local toughs step casually into the condo, eyes drinking in all the skin on display. The <span class="imageLink"><<link "older gangster">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jom.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swats <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the ass as she walks back in; the <span class="imageLink"><<link "younger one's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze settles quickly on you. "Hello," he says curiously, swaggering over.
[[Err...hi?|GNO-64700 Er...hi Kob][$kateSays to "Er...hi?"]]
[[Who are you?|GNO-64700 Er...hi Kob][$kateSays to "Who are you?"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"I'm <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>," he says, standing over you, his crow black eyes openly appraising your body.
"This is the new girl we told you about," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "$kate.stripperName."
"Niiice." He's only said a few words, but you can tell his English is excellent; his accent sounds close to American. "They got you serving drinks, huh?"
[[That's right.|GNO-64710 Yep][$kateSays to "That's right"]]
[[Yeah.|GNO-64710 Yep][$kateSays to "Yeah"]]
[[What do you do?|GNO-64710 Yep][$kateSays to "whatBoutU"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "whatBoutU">>\
"What do you do?"
<<elseif $kateSays == "That's right">>\
You nod. "$kateSays."
<<else>>\
"$kateSays," you nod.
<</if>>\
<<if $kateSays == "whatBoutU">>"Few things."<<else>>"Nice."<</if>> <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> dark, amused eyes go straight down to your chest.
Wearing only a skimpy borrowed towel, you're acutely aware that he could just strip you naked with one single finger if he wanted to.
The knot feels suddenly loose, like it might just fall open and save him the effort. You fight the urge to reach up and hold onto it.
//Would anybody even stop him if he–// "Maybe I'll swing in sometime."
"Hey Kob." $amanda.firstName [[comes out from her bedroom|GNO-64800 Drug deal]], <span class="imageLink"><<link "wearing just a pink bathrobe">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
He turns to her and it feels like you can breathe again. "Heyyy, cheerleader."
In the mirror you watch <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> a wedge of colourful Thai banknotes. He counts it expertly, then adds it to a fat money roll from his pocket, wrapped with a pink and blue <<if $kate.agency == "cia" or $kate.agency == "csis">>rubber<<else>>elastic<</if>> band.
He gives her a <span class="imageLink"><<link "baggie full of little pink pills">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/heartShapedPills.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in return. "That all you girls need? No <div class="tooltip">coke<span class="tooltiptext">cocaine</span></div>, no <div class="tooltip">yaba<span class="tooltiptext">a combination of methamphetamine and caffeine, popular in Thailand</span></div>?"
"Naw, just these, [[thanks Kob|GNO-64900 Bye Kob]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Alright, have fun tonight."
The <span class="imageLink"><<link "older gangster">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jom.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles beatifically, then he and <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> depart.
"Kob likes $kate.cover.firstName," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports as soon as the door clicks shut.
"Course he does, she's gorgeous." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "And //new."//
[[Who were those guys?|GNO-65000 Who were those guys?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Who were those guys?"
"Drug dealers," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_beachTowelDoingEyeMakeup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "duh." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tosses her the baggie, and she catches it in one hand.
"Does $kate.cover.firstName know the cover story?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoUnderwear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[What cover story?|GNO-65100 What cover story]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What cover story?"
"If people ask what we do," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"We're //mod-oh,"// <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoHalfDressed.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in, flicking her hair.
"Yeah. Anyone asks, we're models," $amanda.firstName says. "Much easier that way."
//Interesting.// That's the first time the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> have displayed any kind of shame about their profession.
[[Mm, I'll bet.|GNO-65110 I'll bet]]
[[Got it.|GNO-65120 Got it]]
[[Cool, sounds fun.|GNO-65400 Sounds fun]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Mmm," you drily agree. "I'll bet."
<span class="redHighlighter"><<Amanda>> ''disliked'' that.</span> <span class="redHighlighter"><<Zoe>> ''disliked'' that.</span> <span class="redHighlighter"><<Gina>> ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span>
//So now my cover story has a cover story.// Speaking of covering things up: it's time to get dressed.
You fix yourself another vodka pomo and get ready to change into your [[going-out clothes|GNO-65500 Towelling off]] for tonight.
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it." //So now my cover story has a cover story.//
Speaking of covering things up: it's time to get dressed.
You fix yourself another vodka pomo and get ready to change into your [[going-out clothes|GNO-65500 Towelling off]] for tonight.
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Cool, sounds fun."
<span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter"><<Gina>> ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
//Now my cover story has a cover story.// Speaking of covering things up: it's time to get dressed.
You fix yourself another vodka pomo and get ready to change into your [[going-out clothes|GNO-65500 Towelling off]] for tonight.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_pinkBathrobe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes over the music, blasting out a Taylor Swift song through the little condo. A big, distorted bassline throbs out of the little speaker.
//<small>🎵</small>Knew he was a kill-er<small>🎵</small>//
//<small>🎵</small>First time that I saw him<small>🎵</small>//
//<small>🎵</small>Wonder how many girls he had loved and left haun-ted<small>🎵</small>//
<span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoHalfDressed.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tops up your vodka pomo, and you knock down a big swig. The sweet alcoholic kick [[steadies out the adrenaline|GNO-65502 Gotta strip here]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's time to change into the skirt, top and <<knickers>> you'll wear tonight. The three items are stacked in a tiny pile next to your makeup kit, looking too small when they're not being filled out by a woman's body.
There's no space for privacy, so you'll have to [[take off your towel|GNO-65510 Towel reluctance]] right here in the living room.
<</page>><<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _knickers to "panties">>
<<elseif $kate.agency == "mi6">>
<<set _knickers to "knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _knickers to "undies">>
<<else>>
<<set _knickers to "ERROR IN KNICKERS TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It feels a little weird to just strip naked in someone else's living room. But the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are doing it confidently, stripping out of their clothes and not giving a fuck.
//Nobody's even bothered drawing the blinds.// If there's a peeping tom in any of the buildings opposite, he hit the jackpot when he moved in near <<Amanda>>.
You could <<link "put your _knickers on first" "GNO-65520 Knickers on">><</link>>. Although, weirdly, preserving some modesty might draw more attention than just confidently [[taking off your towel|GNO-65540 Nude towel]]. Most of these girls have seen you naked anyway, right?
<</page>><<silently>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
You grab your <<knickers>> and slide them on, tugging the waistband up into place under your towel.
Even though you felt self-conscious, nobody paid you any attention when you did that.
//Oh well.// If there really is a Peeping Tom in a building opposite, at least he's only going to see you topless.
//[[Take off your towel.|GNO-65530 Topless towel]]//
<</page>><<silently>>
<<remove-towel-amandasSkimpyRedTowel>>
<</silently>>\
<<header>>\
<<page>>\
Hesitating only for a moment, you reach up and shrug off your towel. For a moment, you're casually topless in a room full of women bustling around and getting ready.
//[[Put on the skirt.|GNO-65570 Skirted]]
[[Put on the top.|GNO-65580 Untopless]]//
<</page>><<silently>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _knickers to "panties">>
<<elseif $kate.agency == "mi6">>
<<set _knickers to "knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _knickers to "undies">>
<<else>>
<<set _knickers to "ERROR IN KNICKERS TEMP VAR">>
<</if>>
<<remove-towel-amandasSkimpyRedTowel>>
<</silently>>\
<<header>>\
<<page>>\
Hesitating only for a moment, you reach up and tug at your towel. It does what it's wanted to do for the last hour, falling off your bare body.
For a moment, you're totally naked in a room full of women bustling around and getting ready.
//<<link "Put your _knickers on." "GNO-65550 Knickers on">><</link>>//
<</page>><<silently>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
You grab your <<knickers>> and slide them on, tugging the waistband up into place.
//[[Put on the skirt.|GNO-65570 Skirted]]
[[Put on the top.|GNO-65580 Untopless]]//
<</page>><<silently>>
<<wear-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You wriggle into the miniskirt, and tug the hemline down into place.
<<if $kate.isWearing.includes("top")>>\
//[[Check your reflection.|GNO-66000 Jib and Moo]]//
<<else>>\
//[[Put on the top.|GNO-65580 Untopless]]//
<</if>>\
<</page>><<silently>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You pull on the tight top, careful not to smoosh your makeup or smudge any on your black top.
<<if $kate.isWearing.includes("skirt")>>\
//[[Check your reflection.|GNO-66000 Jib and Moo]]//
<<else>>\
//[[Put on the skirt.|GNO-65570 Skirted]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''5.28 <small>P.M.</small>'' While you're checking yourself out in the mirror, Jib and Mem arrive at the door, glammed up and ready to go. Jib's <span class="imageLink"><<link "showing off her boob job">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a tight, skimpy tie-die dress; Mem's wearing a white minidress with <span class="imageLink"><<link "big, daring cutouts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> down the left side.
There are hugs for the other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, //happy bir-days// for <<Zoe>>, and //hi <<= $kate.cover.firstName>>, nice to meet you, hahaha//s when they learn your <<if $kate.cover.firstName != $kate.cover.firstName>>"real"<<else>>real<</if>> first name.
Mem clicks through to the kitchen and mixes up more drinks. "[[Did Kob come yet|GNO-66100 Did Kob come]]?" Jib asks.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds up the baggie of <span class="imageLink"><<link "little pink pills">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/heartShapedPills.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes through to the bedroom to pay <<if $amanda.stripperName == "Amanda">>Aman...<<else>>Saman...<</if>>$amanda.firstName for the drugs.
"Kob threw in a couple for you free," $zoe.firstName tells you. "You rolling with us, right?"
[[What are they?|GNO-66200 What are they?]]
[[Are they Yaba?|GNO-66210 Are they Yaba?]]
[[Are they Molly?|GNO-66220 Are they Molly?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are they?"
"<div class="tooltip">Molly<span class="tooltiptext">Ecstasy/MDMA – a party drug inducing empathy, love, euphoria and sexual arousal. Side effects include mood swings after use; high doses are occasionally fatal</span></div>."
<<include "GNO-66221 It's good shit">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Are they <div class="tooltip">Yaba<span class="tooltiptext">a combination of methamphetamine and caffeine, popular in Thailand</span></div>?"
"Ew, no. <div class="tooltip">Molly<span class="tooltiptext">Ecstasy/MDMA – a party drug inducing empathy, love, euphoria and sexual arousal. Side effects include mood swings after use; high doses are occasionally fatal</span></div>."
<<include "GNO-66221 It's good shit">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Are they <div class="tooltip">Molly<span class="tooltiptext">Ecstasy/MDMA – a party drug inducing empathy, love, euphoria and sexual arousal. Side effects include mood swings after use; high doses are occasionally fatal</span></div>?"
"Yep."
<<include "GNO-66221 It's good shit">>
<</page>>"It's clean," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Kob's the real deal."
You're not a cop; narcotics use is permitted for you in the field, if it's to support a cover. But it could affect your judgement.
[[Yeah, cool.|GNO-66300 Kate agrees to do Molly]]
[[No, I'm good.|GNO-66400 Kate declines Molly]]<<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you nod amiably. //It's the quickest way to fit in with these party girls.// "Cool."
<span class="greenHighlighter">''Slight decrease'' to Suspicion Level.</span>
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
"Awesome."
//[[Finish your makeup.|GNO-65500 Finishing touches]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, I'm good."
<span class="redHighlighter">''Slight increase'' to Suspicion Level.</span>
<span class="redHighlighter">$gina.nickname ''disliked'' that.</span> <span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span> <span class="redHighlighter">Mem ''disliked'' that.</span>
"C'mon, we're all doing it," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Yeah, don't be boring," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "It'll kill the vibe."
"What's wrong?" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[I've never tried it.|GNO-66410 Never tried Molly]]
[[I can't handle the comedowns.|GNO-66415 Can't handle the downs]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Never tried it."
That cues a wave of sympathetic, slightly patronising smiles from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. "Trust us, you're gonna love it," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises.
"It makes you feel great," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "And everything in the club gets better. The lights, the dancing, it all feels amazing."
"We'll take care of you," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Don't worry."
[[I'll stick to drinking.|GNO-66440 I'll stick to drinking]]
[[I'm not sure...|GNO-66420 I'm not sure]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "I hate the comedown."
"This stuff's pure," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Comedown's super mild."
"This isn't like the normal shit," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "We're on Kob's A-list. This is the same stuff he sells to <div class="tooltip">hi-so<span class="tooltiptext">Thai term, meaning "high society". The wealthy elite</span></div>s. You gotta try it."
"Yeah," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in. "No problem, just try it."
[[I'll stick to drinking.|GNO-66440 I'll stick to drinking]]
[[I'm not sure...|GNO-66420 I'm not sure]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know..."
"C'//mon,"// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> urges. "We're all doing it."
"It's just a pill," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds, "no big deal."
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoCasual2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> come out from the bedroom to add more peer pressure. "It's $zoe.nickname's //birthday,"// $amanda.firstName reminds you, "come on, don't be a party pooper."
[[I'll stick to drinking.|GNO-66440 I'll stick to drinking]]
[[Well...alright.|GNO-66430 Oh, alright]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-66440 I'll stick to drinking")>>\
"Alright, alright. Just one, okay?"
<<else>>\
"Oh...alright. What the hell."
<</if>>\
<span class="greenHighlighter">''Slight decrease'' to Suspicion Level.</span>
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
"That's the spirit." The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> break out in encouraging grins; <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a high-five.
//[[Finish your makeup.|GNO-65500 Finishing touches]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll stick to drinking."
"Noooo, it's my birthday," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pouts.
<<if hasVisited("GNO-66420 I'm not sure")>>\
"Come //onnn,"// <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> whines. "We can't relax if you're being all boring."
<<else>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> come out from the bedroom to add more peer pressure. "Come //onnn,"// $amanda.firstName whines. "Tonight's supposed to be fun."
<</if>>\
"<div class="tooltip">Thai thai thai thai<span class="tooltiptext">Why doesn't she want them?</span></div>?" <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"<div class="tooltip">Chan mai roo<span class="tooltiptext">I don't know</span></div>," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoCasual.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
[[I'm not taking it.|GNO-66450 Kate refuses to do Molly]]
[[Alright, alright, just one.|GNO-66430 Oh, alright]]
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Guys, I'm not taking it. I don't want to."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$gina.nickname ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span> <span class="redHighlighter">Mem ''disliked'' that.</span> <span class="redHighlighter">Jib ''disliked'' that.</span>
"Fine," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pouts. "Be boring."
"More for us," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoNearlyReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
//[[Finish your makeup.|GNO-65500 Finishing touches]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>s will be here soon. It's time to put the finishing touches to your makeup.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "GNO-65502 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "GNO-65504 Blusher">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "GNO-65506 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "GNO-65504 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "GNO-65502 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "GNO-65506 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includes("lipstick")>>\
When you're happy with your look, you can [[pack away your makeup|GNO-67000 Barefoot]].
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
''5.45 <small>P.M.</small>'' Just like in the dressing room at the club, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> have gone through a glamorous transformation: from backpackers in denim and flip-flops, to <span class="imageLink"><<link "immaculate babes in makeup and party dresses">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/bargirlCondoMontage.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
The difference is the vibe. In the club, they just look sexy; tonight, they look sexy and beautiful and cool. There's an air of buzzy excitement in the condo as a bunch of barefoot babes finish their drinks, and pack away their makeup.
Your <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>s will be here any minute. <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> passes around the <span class="imageLink"><<link "heart-shaped pills">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/sevenPills.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. One by one, the girls swallow them down with slurps of vodka pomo – sucked through straws now everybody's wearing lipstick.
<<if hasVisited("GNO-66450 Kate refuses to do Molly")>>\
"C'//mon,"// <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> urges you, one last time. "It's just a pill. <<if hasVisited("GNO-66410 Never tried Molly")>>We're all doing it, it's fine.<<else>>Comedown's super mild, I promise.<</if>>"
[[I'm fine.|GNO-67001 I'm fine]]
[[Alright, alright, give me one.|GNO-67005 Alright, alright]]
<<else>>\
You take one and pop it into your mouth.
//[[Swallow it.|GNO-67100 Kate drops Molly]]
[[Pretend to swallow it.|GNO-67200 Kate fakes dropping Molly]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _lavatory to "bathroom">>
<<elseif $kate.agency == "mi6">>
<<set _lavatory to "loo">>
<<elseif $kate.agency == "asis">>
<<set _lavatory to "dunny">>
<<elseif $kate.agency == "csis">>
<<set _lavatory to "washroom">>
<<elseif $kate.agency == "nzsis">>
<<set _lavatory to "loo">>
<<else>>
<<set _lavatory to "ERROR IN LAVATORY TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "I'm fine."
<span class="redHighlighter">$gina.nickname ''disliked'' that.</span>
"Suit yourself," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
"<div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>'s right around the corner," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports.
//[[Find your boots.|GNO-67300 Title card]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Alright, alright," you concede. "Gimme one."
<span class="greenHighlighter">''Slight decrease'' to Suspicion Level.</span>
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
"Oh hell yeah." The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are all encouraging smiles as <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> passes you a little pink pill from the baggie.
//[[Swallow it.|GNO-67100 Kate drops Molly]]
[[Pretend to swallow it.|GNO-67200 Kate fakes dropping Molly]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
//It's just a pill.// You swallow it down with a last strawful of vodka pomo.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
You don't feel anything right away.
"You're defo gonna love it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Kob always has the best stuff..."
"<div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>'s right around the corner," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports.
//[[Find your boots and bag.|GNO-67300 Title card]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Hiding the pill under your tongue, you slurp a strawful of vodka pomo, and make sure everybody sees you gulp that down.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
"You're defo gonna love it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Kob always has the best stuff..."
"Cool," you smile. You don't have to stay mute, you just have to avoid words with too many Ss. //Like Ping's real name.// You can get rid of the pill in a minute, when everyone's forgotten about it.
"<div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>'s right around the corner," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports.
//[[Go use the bathroom.|GNO-67210 Bathroom break]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hm. Be right back."
<<image "/locationPhotos/thailand/sunshinePlace/amandasBathroom.jpg" 200 1000 600 0>>\
You lock the door behind you, then spit the pink pill down the sink.
It had turned bitter in your mouth, but you doubt you swallowed enough for it to have a narcotic effect.
//[[Find your boots and bag.|GNO-67300 Title card]]//
<</page>><<silently>>
<<emote-calm>>
<<wear-shoes-amandasBlackHighHeeledAnkleBoots>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<a data-passage="GNO-67400 Taxi ride">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/bangkokStreetsTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''BACKSEAT''",
$header.line2 to "GRAB CAR / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Down at street level, you climb into the back of one of two waiting <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> cars.
<div class="tooltip">"Sawatdee<span class="tooltiptext">Hello</span></div>, wow, beautiful lady, all beautiful lady..." the driver, dark skinned and balding, with shades and a droopy moustache, bows a little <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> as his backseat fills up with bare legs, shiny hair and perfume.
"Sawatdee kha." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climbs into the passenger seat beside him. "Ooh," she coos, "<div class="tooltip">Thai thai thai thai<span class="tooltiptext">Man with moustache, very handsome</span></div>..."
A little smirk plays on your lips. //Gotta make 'em like you first,// $zoe.firstName said. You think you can tell [[where this is going|GNO-67410 Cruise to Sukhumvit]]...
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Your short skirt rides up high on the backseat; you cross your legs demurely so you don't flash your <<knickers>>. Traffic's heavy on the cruise down to Sukhumvit, but the aircon keeps you chilled.
"Hey, who's got the water," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks from the front seat.
"Me," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Gotta stay hydrated." She takes a big swig from a bottle of sparkling water and passes it on.
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gulps some down, and [[passes you the bottle|GNO-67500 Lovely water]].
<</page>><<silently>>
<<first>>
<<addNotification "Steady buzz" "The 'water' is keeping your buzz going.">>
<</first>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
It's vodka & lemonade. You drink some and pass it forward to <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Mmmm," she murmurs. "Lovely water."
Your driver watches the performance wryly. You get the feeling he knows [[exactly what you're doing|GNO-67600 Coming up]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
<<silently>>
<<first>>
<<addNotification "MDMA come up" "You feel restless and anxious.">>
<</first>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
''6.02 <small>P.M.</small>'' Crawling through the traffic, an anxious energy rises suddenly in your body. You feel like you wanna stand up and move, but you're stuck on the backseat, stuck in the traffic.
You shift on the seat and bounce your foot restlessly. //Fuck fuck fuck.// Your stomach feels fluttery and your pulse starts to race. You take in some deep breaths to steady yourself.
<<else>>\
<<emote-calm>>\
''6.02 <small>P.M.</small>'' Crawling through the traffic, you notice <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> acting a little strangely – fidgeting and shifting on the backseat, stretching her jaw like she's trying to yawn.
<</if>>\
Sitting in the middle, <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has been multi-tasking, chatting with <<if hasVisited("")>><span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<else>>$gina.nickname<</if>> and tap-tap-tapping out instant messages to someone else on <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div>.
Now she takes a break from messaging to get a group backseat selfie.
//[[Lean in for the shot.|GNO-67700 Backseat selfie]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-67100 Kate drops Molly")>>Swallowing your anxiety, you<<else>>You<</if>> lean in close and <<if hasVisited("GNO-67100 Kate drops Molly")>>put on a <</if>>smile for the camera. The three of you look absolutely //gorgeous// on the little Huawei smartphone screen: lipstick smiles, cleavages, sunglasses and great hair.
//Click!//
"Tag me," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"<div class="tooltip">Kha<span class="tooltiptext">Yep</span></div>," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> caws, tap-tap-tapping on her phone screen. "$kate.stripperName, what your Insta."
[[I don't have Instagram.|GNO-67710 Don't have Insta]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Don't have it," you reply. <<if hasVisited("GNO-67100 Kate drops Molly")>>Your stomach feels like you swallowed a butterfly, but talking seems to help.<</if>>
<span class="yellowHighlighter">''Slight increase'' to Suspicion Level.</span>
"Why no'?"
[[Too many creeps in my DMs.|GNO-67720 Too many creeps on Insta]]
[[Don't want my family seeing me in a bikini.|GNO-67730 Family on Insta]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//<<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> frowns on it,// you think. "Too many creepers in my DMs," you say. <<if hasVisited("GNO-67100 Kate drops Molly")>>Your voice came out a little loud; it's exciting to talk, even though it's not really about anything.<</if>>
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "You can block," she suggests.
"Or set up different profiles," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds.
"<div class="tooltip">Kha!<span class="tooltiptext">Right!</span></div>," Jib nods. "I have three profile," she explains, opening up her Insta to show you. "This one [[friend fam-i-ly|GNO-67740 Friend and family]]..."
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
//<<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> frowns on it,// you think. "Don't want my family seeing me in a bikini," you say. <<if hasVisited("GNO-67100 Kate drops Molly")>>Your voice came out a little loud; it's exciting to talk, even though it's not really about anything.<</if>>
"<div class="tooltip">Ăaw<span class="tooltiptext">Aha</span></div>," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "I have three profile," she says, opening up her Insta to show you. "This one [[friend fam-i-ly|GNO-67740 Friend and family]]..."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
On her screen are a few wholesome thumbnails; food pics and family members and no makeup selfies.
"And this [[my main|GNO-67750 This my main]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She switches to a profile with thousands of posts and – wow, 5028 followers. The thumbnails are all sexy selfies: filters, makeup, cleavage.
[[Uh huh...|GNO-67760 Uh huh]]
<<link "Five //thousand?//" "GNO-67770 Five thousand?!">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh huh..." <<if hasVisited("GNO-67100 Kate drops Molly")>>Concentrating on the screen is helping you stay calm during the Molly rush.<</if>>
"And this one [[just for club|GNO-67780 Just for club]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Five //thousand?"//
<span class="greenHighlighter">Jib ''liked'' that.</span>
"<div class="tooltip">Kha!<span class="tooltiptext">Right!</span></div>" <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs melodiously. "And this one, [[just for club|GNO-67780 Just for club]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
She shows you a final profile, with 804 followers. The thumbnails are all taken in the club – <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in lingerie or topless, her nipples covered up by 📸 camera flash emojis. English and Thai captions advertise the dates of her next shift.
"Same same for me," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "One normal, one for clients, one for my mum."
"You know Sam?" Jib asks.
[[Beardy?|GNO-67790 Beardy]]
[[The photographer guy?|GNO-67800 The photographer guy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Beardy?"
"<div class="tooltip">Kha,<span class="tooltiptext">Right,</span></div>" <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "Beardy! Ask him, he do photo of you. Normal and club."
<<include "GNO-67810 Brief recollection">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"The photographer guy?"
"<div class="tooltip">Kha,<span class="tooltiptext">Right,</span></div>" <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Ask him, he do photo of you. Normal and club."
<<include "GNO-67810 Brief recollection">>
<</page>>A brief recollection of the photos lining the stairway up to the brothel flits into your mind: dozens of naked <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, spreading their legs and smiling for the camera.
You don't know if <<if lastVisited("GNO-67790 Beardy") is 0>>Beardy<<else>>Sam<</if>> took those, but it seems likely. //I'm //definitely// never posing for that guy.//
[[Maybe.|GNO-67820 Maybe]]
[[He's kinda creepy.|GNO-67830 He's kinda creepy]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hmm, maybe."
"It does help at work," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You can build up a little fan club. Even [[behind the bar|GNO-68000 Title card]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know. He's kinda creepy."
"Oh, he's a perv," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "But [[he's harmless|GNO-68000 Title card]]."
<</page>><<silently>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-68100 Sukhumvit arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/sukhumvitSunsetTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''6.09 <small>P.M.</small>'' You cruise onto Sukhumvit, Bangkok's answer to Fifth Avenue. This bustling, upscale <div class="tooltip">thanon<span class="tooltiptext">main road</span></div> is known for opulent apartments, trendy nightlife, luxury megamalls and five star hotels.
<<image "/locationPhotos/thailand/sukhumvit/marriottExterior.jpg" 100 1000 600 0>>\
Your <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> rolls up in front of the Marriott Hotel, pulling in behind a yellow Lamborghini.
"So..." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_condoArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tucks her hair behind her ear, smiles at the driver. "<div class="tooltip">Thai thai, thai thai thai thai...<span class="tooltiptext">My friends, they're crazy, they dared me to ask you...</span></div>"
//[[Climb out of the cab.|GNO-68110 Marriott exterior]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You step out into the hot sunset, and tug your skirt back down to cover an extra inch or so of thigh.
Your reflection in the massive, floor-to-ceiling windows of the Marriott's lobby looks chic, sexy and glamorous.
<<if hasVisited("GNO-67100 Kate drops Molly")>>Your anxiety's starting to ease; getting out and breathing [[fresh air|GNO-68111 Hot girls]] helps a lot.<<else>>You fit in just fine with the [[hot girls|GNO-68111 Hot girls]] trying not to flash their <<knickers>> as they climb out of the two <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>s.<</if>>
<</page>><<silently>>
<<first>>
<<addNotification "Bargirl avatars" "The girls' outfits will change through the night.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
For a minute, there's no direction. Disembarked <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> stretch their legs, check their reflections and bask in the sun.
Glancing back into your <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>, you see Mem paying the fare – by pulling her dress down to <span class="imageLink"><<link "bare her breasts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_marriottFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> for the driver.
In the other ride, $amanda.firstName is <span class="imageLink"><<link "doing the same thing">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_marriotFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Oh my god.|GNO-68112 Jeeesus]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Ohmygod.// It's so blatant. You look around instinctively, but there are only <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> around.
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eventually cover their breasts, and climb out to join the rest of you.
The group spontaneously organises and moves off together once its complete; like a wolfpack. But in [[heels and lipstick and smelling great|GNO-68200 Marriott lobby]].
<</page>><<silently>>
<<set $header.line1 to "''MARRIOTT HOTEL''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottLobby.jpg" 100 1000 500 0>>\
//"Told// you we shoulda just taken the <div class="tooltip">BTS<span class="tooltiptext">Bangkok BTS Skytrain</span></div>..."
Doors swoosh open. The clatter of high heels on marble announces your arrival in the cool, high-vaulted lobby. Two Asian businessmen simultaneously look up from their meeting, instinctively checking you out.
The she-wolf pack isn't stopping here. You follow along, straight to the <<if $kate.agency == "cia" or $kate.agency == "csis">>elevators<<else>>lifts<</if>>, trying to look cool and not fixate on your [[lack of a bra|GNO-68300 Lifts]].
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/elevatorCar.jpg" 200 1000 750 0>>\
All seven of you clickity-click into one ornate <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator car<<else>>lift compartment<</if>>. You ride up 45 floors, to a piped soundtrack of jazzy trumpets.
"Damn," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Hotels give me a wide-on."
"Hashtag metoo," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. You're pretty sure she's not using that correctly.
"I want an outcall here," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds, to a murmur of <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> approval.
[[What's an outcall?|GNO-68400 What's an outcall?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's an outcall?"
"Client outside the club," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "Mr K organises them."
"They're nice," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You get to dress up, go somewhere different."
"I'd go crazy without the outcalls," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs.
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_octaveAfterDarkStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks at that. "You crazy already, <div class="tooltip">Ee Bah<span class="tooltiptext">Mrs Crazy</span></div>."
[[What's the best outcall you've ever had?|GNO-68410 Best outcall]]
[[What's the worst outcall you've ever had?|GNO-68420 Worst outcall]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So...what's the best outcall you've ever had?"
A moment's consideration. "Divorced rich guys," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
"Yeahhh," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "Like confident older guys, y'know: kinda guy who stays here. You know it's gonna be good if they wanna hang first, like drinks or dinner first."
"Right," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods along. "Drinks, good chat, then up to a swanky room. It can feel like Tinder when it's good."
//With a guy old enough to be your dad. Who you have to fuck.//
The <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> pings at the [[45th floor|GNO-69000 Octave skybar]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So...what's the worst outcall you've ever had?"
A moment's consideration. "<div class="tooltip">Roofie<span class="tooltiptext">Rohypnol: a date-rape drug. Causes sedation and memory loss</span></div> guy?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
"Ohmygod," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> exclaims. "Roofie guy. He's, uh, Indian right?"
"Pakistani," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Right, Pakistani. Wealthy guy. His thing is you have to go to this nice restaurant and let him slip you a mickey. He takes you back to a hotel and fucks you while you're out of it."
[[That's horrible!|GNO-68430 That's horrible!]]
[[That's dangerous!|GNO-68440 That's dangerous!]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Seriously? That's horrible!"
"Meh," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "He pays extra."
"Mr K said to think of it as passive income," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "earning money in your sleep."
//"Ignore// them," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chides, "they're trying to freak you out. Most of the clients are fine, right?"
"Ah yeah," $gina.nickname agrees. "It's mostly just normal blokes."
A thought occurs to you: //could Roofie Guy be <small>DEVILFISH?</small>// He could easily be, or present as, a wealthy Pakistani. And who knows what his kinks are?
The <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> pings at the [[45th floor|GNO-69000 Octave skybar]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You're kidding, right? What if he..."
"Oh, he's a regular," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He's safe, just messed up."
"Mr K said to think of it as passive income," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "earning money in your sleep."
//"Ignore// them," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chides, "they're trying to freak you out. Most of the clients are fine, right?"
"Ah yeah," $gina.nickname agrees. "It's mostly just normal blokes."
A thought occurs to you: //could Roofie Guy be <small>DEVILFISH?</small>// He could easily be, or present as, a wealthy Pakistani. And who knows what his kinks are?
The <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> pings at the [[45th floor|GNO-69000 Octave skybar]].
<</page>><<silently>>
<<set $header.line1 to "''OCTAVE SKYBAR''",
$header.line2 to "MARRIOTT HOTEL / MAY 2018">>
<<wear-bigBlackSunglasses>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
''6.15 <small>P.M.</small>'' A neon staircase leads up to a cool breeze and a hot sunset.
<<image "/locationPhotos/thailand/sukhumvit/octave1.jpg" 100 1000 540 0>>\
Chilled R&B beats play under the sounds of clinking glasses, conversation and laughter between <div class="tooltip">hi-so<span class="tooltiptext">Thai term, meaning "high society". The wealthy elite</span></div> bar patrons.
It's a world apart from the club, and the cheap backpacker drinking holes dotted around Khao San and the hostel.
//[[Follow the bargirls.|GNO-69100 Bar girls]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveBar.jpg" 100 1000 540 0>>\
Heads turn as the she-wolf pack drifts up to the bar. You tug the hem of your skirt down instinctively.
"<div class="tooltip">Thai thai thai Naai Daeng Kriangsak thai?<span class="tooltiptext">We're Mr Kriangsak's guests?</span></div>" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says to a barman.
"Mr K put a round behind the bar for us," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains, passing you a laminated cocktail menu.
[[Order a "Lamai Beach".|GNO-69200 Mixology][$katesDrink to "Lamai Beach"]] <span class="greyedOut"><small>Gin, Giffard Blue Curaçao, Yuzu Juice, Lychee Juice, Honey, Peach</small></span>
[[Order a "Coconut Island".|GNO-69200 Mixology][$katesDrink to "Coconut Island"]] <span class="greyedOut"><small>Absolut Vanilla Vodka, Frangelico, Honey, Mango, Coconut Milk</small></span>
[[Order a "Pak Khlong".|GNO-69200 Mixology][$katesDrink to "Pak Khlong"]] <span class="greyedOut"><small>Gin, Aperol, Lemon Juice, Watermelon Juice, Hibiscus Syrup</small></span>
[[Order a "Phuket".|GNO-69200 Mixology][$katesDrink to "Phuket"]] <span class="greyedOut"><small>Chalong Bay Basil Rum, Apple Juice, Giffard Caramel, Green Thai Tea, Lime Juice</small></span>
[[Order a "Chiang Mai".|GNO-69200 Mixology][$katesDrink to "Chiang Mai"]] <span class="greyedOut"><small>Chivas 12 yrs Whiskey, Giffard Apricot Brandy, Honey, Orange Bitters</small></span>
[[Order a "Baan Dam".|GNO-69200 Mixology][$katesDrink to "Baan Dam"]] <span class="greyedOut"><small>Bacardi White Rum, Campari, Thai Coffee, Giffard Elderflower, Orange Bitters</small></span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveBarmen.jpg" 100 1000 540 0>>\
"Okay, coming up, hey you girls look like movie stars..."
You watch with professional interest as the barmen mix the round of cocktails. The senior one, the bar manager, casually does that palm spin trick Bonaht taught you with a mixing tin.
Watching him do something cool that you can also do is absurdly enjoyable. You picture yourself working up here, [[mixing drinks topless under a golden sunset|GNO-69300 Hot sun, cold drinks]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Thaaanks!" Carrying chilled and colourful drinks, the she-wolf pack moves up to a space at the balcony.
<<image "/locationPhotos/thailand/sukhumvit/octaveCocktails.jpg" 100 1000 540 0>>\
"To the birthday girl," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> proposes, holding up her cocktail. Glasses clink and ice jingles, then you take a deep sip of your $katesDrink. <<if $katesDrink == "Lamai Beach">>Cold and fruity flavours mask a strong alcoholic kick<<elseif $katesDrink == "Coconut Island">>It tastes like a sweet, strong piña colada<<elseif $katesDrink == "Pak Khlong">>Fresh floral flavours mask a strong alcoholic kick<<elseif $katesDrink == "Phuket">>Fresh herbal flavours mask a strong alcoholic kick<<elseif $katesDrink == "Chiang Mai">>Orange and apricot flavours mask a strong whiskey-and-brandy kick<<elseif $katesDrink == "Baan Dam">>Coffee and bitter flavours mask a strong alcoholic kick<<else>>//ERROR IN KATESDRINK VAR//<</if>>.
Phones come out as the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> seize another selfie opportunity, but you're distracted by the [[breathtaking view|GNO-69400 Stunning view]].
<</page>><<silently>>
<<showRear>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<if $kate.mdmaPillsTaken gt 0>>
<<first>>
<<addNotification "MDMA high" "Everything is beautiful and perfect and full of love.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
It's just stunning.
It's still hot, but the cool breeze makes it pleasant. The Big Mango stretches for miles in every direction, from the <span class="imageLink"><<link "cranes lining the Chao Phraya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/chaoPhrayaDusk.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to the colourful lights of <span class="imageLink"><<link "Baiyoke Sky Tower">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/baiyokeSkytower2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, twinkling in the distance.
<<image "/locationPhotos/thailand/sukhumvit/octaveView.jpg" 100 1000 600 0>>\
Far above the city, the air smells clean and fresh, carrying teasing individual wafts of the [[perfumes and body sprays|GNO-69500 Selfie]] of the different <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
<</page>><<silently>>
<<showFront>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Hey $kate.stripperName." <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls you in for a selfie. You pose together for her camera phone, bathed in golden sunlight, the city stretching out behind you. //Click!//
"It nice," she coos afterwards. "I send it for my family."
[[Do they know what you do?|GNO-69600 Do they know you're a whore]]
[[How's the buffalo?|GNO-69640 How's the buffalo?]]
[[Your English is so good.|GNO-70000 Your English is so good]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _myHomeland to "the States">>
<<elseif $kate.agency == "mi6">>
<<set _myHomeland to "England">>
<<elseif $kate.agency == "asis">>
<<set _myHomeland to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _myHomeland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _myHomeland to "New Zealand">>
<<else>>
<<set _myHomeland to "ERROR IN MYHOMELAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Do they know what you do?" you ask.
"Yeah," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Not many job Isan. So lot of Isan girl come Bangkok, work in bar. Send money home for family."
[[That's cool of you.|GNO-69610 Kate approves of Ping prostituting herself]]
<<link "That would be so weird in _myHomeland." "GNO-69620 So weird in England">><</link>>
[[How do they feel about it?|GNO-69630 How does your family feel about you being a whore]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's really cool of you."
<span class="greenHighlighter">Ping ''liked'' that.</span>
She smiles bashfully. "It normal in Thailand. Family is most important thing. You miss family?"
[[Yeah.|GNO-70100 Kate misses her family][$kateSays to "Yeah"]]
[[Sometimes.|GNO-70100 Kate misses her family][$kateSays to "Sometimes"]]
[[We're not close.|GNO-70300 We're not close]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _myHomeland to "the States",
_yourHomeland to "Mer-cah">>
<<elseif $kate.agency == "mi6">>
<<set _myHomeland to "England",
_yourHomeland to "England">>
<<elseif $kate.agency == "asis">>
<<set _myHomeland to "Australia",
_yourHomeland to "Aus-tray-uh">>
<<elseif $kate.agency == "csis">>
<<set _myHomeland to "Canada",
_yourHomeland to "Can-da">>
<<elseif $kate.agency == "nzsis">>
<<set _myHomeland to "New Zealand",
_yourHomeland to "New Zea-lan">>
<<else>>
<<set _myHomeland to "ERROR IN MYHOMELAND TEMP VAR",
_yourHomeland to "ERROR IN YOURHOMELAND TEMP VAR">>
<</if>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wow. That would be so weird in _myHomeland."
"Everyone rich in _yourHomeland," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Even poor people, very rich compare Thailand. Here, most important is family. You miss family?"
[[Yeah.|GNO-70100 Kate misses her family][$kateSays to "Yeah"]]
[[Sometimes.|GNO-70100 Kate misses her family][$kateSays to "Sometimes"]]
[[We're not close.|GNO-70300 We're not close]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How do they feel about it?"
<span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "It normal in Thailand. My young brother, he help on farm. My old brother, he get job, send money to help farm. Me too, same same. Family is most important. You miss family?"
[[Yeah.|GNO-70100 Kate misses her family][$kateSays to "Yeah"]]
[[Sometimes.|GNO-70100 Kate misses her family][$kateSays to "Sometimes"]]
[[We're not close.|GNO-70300 We're not close]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"How's the buffalo?"
<span class="greenHighlighter">Ping ''liked'' that.</span>
"He good! Doctor come, give him medicine. He get better now." She swipes through her phone to show you a photo of a Thai man and woman, posing proudly with a <span class="imageLink"><<link "pink buffalo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/pingTheBuffalo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "This my mum and dad," she explains. "Aw, miss them. You miss family?"
[[Yeah.|GNO-70100 Kate misses her family][$kateSays to "Yeah"]]
[[Sometimes.|GNO-70100 Kate misses her family][$kateSays to "Sometimes"]]
[[We're not close.|GNO-70300 We're not close]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Your English is so good."
<span class="greenHighlighter">Ping ''liked'' that.</span>
"Really? I go Girl Pow. You know Girl Pow?" You shake your head and she nods eagerly. "It school for <div class="tooltip">bargirl<span class="tooltiptext">club prostitutes</span></div>, teach us English. <div class="tooltip">Naai Daeng<span class="tooltiptext">Mr Kriangsak</span></div>, he pay for with money from club."
//Wait. Kriangsak's a philanthropist?// That...hardly seems possible. Probably a front of some kind. You'll need to look into it.
"You be in Thailand long time," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes on. "You miss family?"
[[Yeah.|GNO-70100 Kate misses her family][$kateSays to "Yeah"]]
[[Sometimes.|GNO-70100 Kate misses her family][$kateSays to "Sometimes"]]
[[We're not close.|GNO-70300 We're not close]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
<span class="greenHighlighter">Ping ''liked'' that.</span>
"Aw. You come Isan one day, meet my family. Meet <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/pingTheBuffalo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>!"
[[I'd like that.|GNO-70400 I'd like to meet your family, Ping]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're not close," you shrug.
"You like $zoe.firstName, she not close to family," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head sadly. "You come Isan one day, meet my family. Meet <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/pingTheBuffalo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>!"
[[I'd like that.|GNO-70400 I'd like to meet your family, Ping]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'd like that."
<span class="greenHighlighter">Ping ''liked'' that.</span>
"Aw, you two so pretty." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets between the two of you, holds up her phone to take a group selfie. <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presses her lips up to Mem's cheek and holds the pose.
//[[Smile.|GNO-70410 Smile]]
[[Throw up a peace sign.|GNO-70420 Peace sign]]
[[Kiss Mem's other cheek.|GNO-70900 Choop choop]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
You beam for the camera, holding your pose until <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clicks the button.
<span class="greenHighlighter">Mem ''liked'' that.</span>
"Aw!" Her thumbs dance on the screen as she adds a filter and uploads the flattering shot to her Insta, lightning fast. She captions it with a stream of [[curly Thai glyphs and colourful emojis|GNO-71000 Join us]].
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
You tilt your hips and throw up a peace sign, holding your pose until <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clicks the button.
<span class="greenHighlighter">Mem ''liked'' that.</span>
"Aw!" Her thumbs dance on the screen as she adds a filter and uploads the flattering shot to her Insta, lightning fast. She captions it with a stream of [[curly Thai glyphs and colourful emojis|GNO-71000 Join us]].
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
You pucker up and kiss <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s cheek for the selfie. //Click!//
<span class="greenHighlighter">Mem ''liked'' that.</span>
"Aw!" Her thumbs dance on the screen as she adds a filter and uploads the flattering shot to her Insta, lightning fast. "<div class="tooltip">Choop choop<span class="tooltiptext">Kiss kiss</span></div>!" She captions it with a stream of [[curly Thai glyphs and colourful emojis|GNO-71000 Join us]].
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You purged all your social media as part of your <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> training: it feels weird to realise that your face is going back on Insta, but it's not like you can avoid it when you're undercover among these selfie queens.
It's not a //huge// problem. Your future <div class="tooltip">legends<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div> will just have to take into account the fact you spent some time in Bangkok when you were $kate.age.
"So $kate.stripperName," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, slipping her phone back into her <<handbag>>. "How's it going behind bar?"
[[Degrading.|GNO-71010 The club is totally degrading]]
[[Not so bad.|GNO-71030 It's fun sometimes]]
[[I prefer this bar!|GNO-71020 Prefer this bar]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Degrading," you answer honestly.
<span class="greenHighlighter">Mem ''liked'' that.</span>
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs melodiously. "You'll get used to it." Her English is a lot more fluent than Ping's.
[[How did you end up there?|GNO-71040 How did you end up there, Mem?]]
[[How long have you been there?|GNO-71050 How long have you been there, Mem?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"I prefer this bar," you say, holding up your <<if $katesDrink == "Lamai Beach">>bright blue<<elseif $katesDrink == "Coconut Island">>creamy<<elseif $katesDrink == "Pak Khlong">>bright red<<elseif $katesDrink == "Phuket">>bright green<<elseif $katesDrink == "Chiang Mai">>bright orange<<elseif $katesDrink == "Baan Dam">>purple<<else>>//ERROR IN KATESDRINK VAR//<</if>> cocktail.
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs melodiously, and clinks her drink to yours. "Me too. To nice bars." Her English is a lot more fluent than Ping's.
[[How did you end up there?|GNO-71040 How did you end up there, Mem?]]
[[How long have you been there?|GNO-71050 How long have you been there, Mem?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Not so bad," you admit.
<span class="greenHighlighter">Mem ''liked'' that.</span>
"<div class="tooltip">Ăaw<span class="tooltiptext">Ah</span></div>, good for you," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Lot of <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls, first few shift...moan moan moan." Her English is a lot more fluent than Ping's.
[[How did you end up there?|GNO-71040 How did you end up there, Mem?]]
[[How long have you been there?|GNO-71050 How long have you been there, Mem?]]
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _mum to "mom">>
<<else>>
<<set _mum to "mum">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"So how did you end up there? At the club?"
"I was working at a fish market," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "With my mum. Mr Kriangsak offered me a job."
[[You are much too pretty for the fish market.|GNO-71070 Too pretty for the fish market]]
<<link "What did your _mum think of that?" "GNO-71065 What did your mum think">><</link>>
[[Your English is great, couldn't you work as a translator?|GNO-71060 Mem you should be a translator]]
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So how long have you been there?"
"Uhhh...year and half? Two years nearly?" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Beats working at the fish market."
[[You are much too pretty for the fish market.|GNO-71070 Too pretty for the fish market]]
[[Your English is great, couldn't you work as a translator?|GNO-71060 Mem you should be a translator]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Your English is //great,"// you tell her. "Couldn't you get a job as a translator or something?"
<span class="redHighlighter">Mem ''disliked'' that.</span>
"Eh." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "You see a job like that for me, [[let me know|GNO-71100 Drink and chat]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _mum to "mom">>
<<else>>
<<set _mum to "mum">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What'd your _mum think about that?"
"Forbade it," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs wryly. "Changed her mind for twenty percent, so...[[can't hate it that much|GNO-71100 Drink and chat]], right..."
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"You are //much// too pretty for the fish market."
<span class="greenHighlighter">Mem ''liked'' that.</span>
<<if hasVisited("GNO-71040 How did you end up there, Mem?")>>\
"Right!" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "That is //exactly// what [[Mr Kriangsak said|GNO-71100 Drink and chat]]..."
<<else>>\
"I know!" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_sunnySkybarStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "[[Exactly|GNO-71100 Drink and chat]]."
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveSettingSun.jpg" 180 1000 640 0>>\
''6.39 <small>P.M.</small>'' The hot sun slips down as smoothly as your chilled cocktail.
You chat and pose for selfies with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> under a stunning [[pink and violet sky|GNO-71110 MDMA peak]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Buzzing on cocktails and Molly, <span class="imageLink"><<link "Lauren">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_sunnySkybar.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are telling you more about <div class="tooltip">outcalls<span class="tooltiptext">visiting clients outside of the club for prostitution</span></div>.
"...if you're booked for a few hours or all night, it's better," $gina.nickname is saying.
<</page>><<silently>>
<<if hasVisited("GNO-67100 Kate drops Molly")>>
<<first>>
<<addNotification "MDMA peak" "Everything is great!">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
The anxiety you felt on the drive is gone, replaced with a tingly, hazy blend of pleasure and excitement. You feel happy, confident and chatty.
Everything feels //perfect.// The view, the drinks, the music, the people. You're having a great time. //Careful, $kate.firstName, it's just the Molly. Gotta control it.//
It wouldn't really be cool to dance up here, not //properly,// but you can't resist the urge to shake your ass to the cheery R&B beat trumpeting out from a nearby speaker.
<<elseif hasVisited("GNO-67200 Kate fakes dropping Molly")>>\
The Molly's definitely kicking in with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. Saucer eyes and excited, happy chatter.
You do your best to subtly play along, copying their nervous energy by shaking your ass to the cheery R&B beat trumpeting out from a nearby speaker.
<<else>>\
The Molly's definitely kicking in with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. Saucer eyes and excited, happy chatter.
You do your best to fit in, not wanting to remind everybody that you're the odd girl out. You smile and play along with their nervous energy, shaking your ass to the cheery R&B beat trumpeting out from a nearby speaker.
<</if>>\
"Hey!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes over to check in with you. "<<if $kate.agency == "mi6">>Pommy!<<else>>$kate.stripperName!<</if>> Having a good time?"
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
[[Yeah, I'm buzzing!|GNO-71120 Yeah, I'm buzzing!]]
<<elseif hasVisited("GNO-67200 Kate fakes dropping Molly")>>\
<span class="greyedOut">//[Lie]//</span> [[Yeah, I'm buzzing!|GNO-71120 Yeah, I'm buzzing!]]
<</if>>\
[[Yeah, this place is great!|GNO-71130 This place is great!]]
[[Yeah, everyone's really nice!|GNO-71140 Everyone's really nice!]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah!" you grin. "I'm buzzing!"
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Awww, bless you!" She stretches out her arms for an impromptu hug. <<if hasVisited("GNO-67100 Kate drops Molly")>>Your skin feels tingly and pleasantly sensitive; it feels great being hugged. She<<else>>Up close she<</if>> smells of moisturiser and Coco Mademoiselle. <<include "GNO-71150 Let's get a selfie">>
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, this place is great!"
"I know, right! And you look amazing!" She stretches out her arms for an impromptu hug. <<if hasVisited("GNO-67100 Kate drops Molly")>>Your skin feels tingly and pleasantly sensitive; it feels great being hugged. She<<else>>Up close she<</if>> smells of moisturiser and Coco Mademoiselle. <<include "GNO-71150 Let's get a selfie">>
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, everyone's really nice!"
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Awww, bless you!" She stretches out her arms for an impromptu hug. <<if hasVisited("GNO-67100 Kate drops Molly")>>Your skin feels tingly and pleasantly sensitive; it feels great being hugged. She<<else>>Up close she<</if>> smells of moisturiser and Coco Mademoiselle. <<include "GNO-71150 Let's get a selfie">>
<</page>>"Wanna do a pic?"
//[[Smile.|GNO-71160 Selfie with Amanda][$kateSays to "smile"]]
[[Peace sign.|GNO-71160 Selfie with Amanda][$kateSays to "peace"]]//
<<if hasVisited("DINBOSS-16760 Rock chick")>>\
<span class="greyedOut">[Rock Chick]</span> //[[Devil horns.|GNO-71160 Selfie with Amanda][$kateSays to "metal"]]//
<<else>>\
//[[Two peace signs.|GNO-71160 Selfie with Amanda][$kateSays to "doublePeace"]]//
<</if>>\<<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "smile">>\
<<emote-nose-wrinkle>>\
<<emote-mouth-wideSmile>>\
<<emote-eyes-squint>>\
Curling your arms around each other's shoulders, you beam for the smart phone. //Flash-click!//
<<elseif $kateSays == "peace">>\
<<emote-mouth-smirk>>\
You tilt your hips and throw up a peace sign for the smart phone. //Flash-click!//
<<elseif $kateSays == "doublePeace">>\
<<emote-mouth-smirk>>\
You bend in a knee, and throw up two cool peace signs for the smart phone. //Flash-click!//
<<elseif $kateSays == "metal">>\
<<emote-mouth-open>>\
<<emote-mouth-lick>>\
You throw up some devil horns for the smart phone, and stick your tongue out like you're in KISS. //Flash-click!//
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swipes to the photo to show you.
//[[Huddle around her phone.|GNO-71170 We look hot]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Haa!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs, "we look cool!" On the screen, two <<if $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>blonde<<else>>glammed-up<</if>> party girls pose in front of a city skyline at dusk, looking sexy and fun. "What's your Insta?"
[[I don't have Insta.|GNO-71172 I don't have Insta]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Don't use it."
<span class="yellowHighlighter">''Slight increase'' to Suspicion Level.</span>
"Huh? You've gotta get Insta."
<<link "Yeah, that's what Jib and $gina.nickname said." "GNO-71174 Yeah yeah yeah">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, yeah, Jib and $gina.nickname were saying the same..."
"No, no, I mean you've //gotta// get Insta. For the club. We do promos on it and stuff. Didn't anyone talk to you about it?"
[[No.|GNO-71176 No]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No..." you shrug. //Fuck...maybe I //do// have to pose for <<if hasVisited("GNO-67790 Beardy")>>Beardy<<else>>Sam<</if>>?//
That might be a red line on this operation – you're not sure <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> would sign off on you having a semi-pornographic profile on Insta like the one Jib showed you. //If it's a thing, maybe I can get out of it.//
"Huh. They're probably waiting to see if you're staying on," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is saying. "Some bitches can't handle it. You gonna stick around, or..."
[[Yeah.|GNO-71177 I'm staying]]
[[For a while, at least.|GNO-71177 I'm staying][$kateSays to "forAWhile"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you nod. <<if $kateSays == "forAWhile">>"For a while, at least." <</if>>//Until <small>DEVILFISH</small> shows up, anyway...//
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Cool. Sometimes, you can just tell they're not gonna last," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I think Connor and Lu are pretty psyched about you, though. Anyway, god, enough about work, sorry."
[[No, no, it's cool...|GNO-71178 No, go on]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, no, it's cool..."
"Bleh," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waves the subject away, "it's our night off. So who are you out here with? Thailand, I mean?"
[[Oh, I came on my own.|GNO-71180 Came out solo]]
[[Friends, but they went home.|GNO-71190 Came out with friends]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, I came out solo."
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Me too! Same same," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I don't ever wanna go back."
[[How come?|GNO-71200 How come]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I came out with friends. But they went home," you lie.
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Huh. I don't ever wanna go back," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies.
[[How come?|GNO-71200 How come]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "whydUGo">>\
"Why'd you leave the States?"
<<else>>\
"How come?"
<</if>>\
"Well...not //never// ever. Just...y'know." She shrugs, in a way that says: //look at me.// The sparkly dress, the glamorous cocktail, the luxury skybar. "Not fixing to get back to Oklahoma."
<div class="tooltip">CTFN<span class="tooltiptext">Combined Task Force <small>NEPTUNE</small></span></div> ran a background check on <span class="imageLink"><<link "$amanda.firstName $amanda.surname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, based on the passport details you captured from her file during the black bag job. She defaulted on about <<if $kate.agency != "cia">>US<</if>>$35k of bank loans and credit card debt back in the US – that'd be a cheap price to buy an agent, if that's what it takes.
But your relationship's not at the point where you can expect her to open up to you about that [[yet|GNO-71210 On display]].
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
Night falls. The rooftop bar is filling up, an exciting babble of voices raised over the happy R&B beats.
People keep sneaking glances at you. Just like in the club, there's an art to the way you're holding yourself: stomach in, chest up, hips tilted, pretending you don't know you're displaying yourself.
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are doing it, too, all girls do it. It's just natural when you're being watched.
The skybar crowd is mostly [[couples and small groups|GNO-71220 Couples and small groups]]. There are also [[two big groups of single guys|GNO-71240 Single guys]], and [[two smaller groups of single girls|GNO-71270 All the single ladies]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's a mix, asians and <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div>, aged from their twenties to their sixties.
<<image "/locationPhotos/thailand/sukhumvit/octaveCivilians.jpg" 100 1000 500 0>>\
Some have dressed up, some are casual. A few have come straight from the office.
An especially attractive farang couple, constantly checking their phones, remind you of Danny and Shira, the wannabe Insta influencers from the hostel.
One guy keeps peering over the shoulder of the woman he's with to watch you. That catches your attention, because it's a [[surveillance technique|GNO-71230 What a pig]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Pretending to look at other things, you observe him in your peripheral vision. Watching him, without ever looking at him.
He has the bland, forgettable face that's desirable in a surveillance officer. But he's lusting after you and the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> so blatantly that you're confident it's just the male gaze, not professional observation.
You feel sorry for the poor girl he's with. //What a dick.// But he's <<if hasVisited("GNO-71240 Single guys") and hasVisited("GNO-71270 All the single ladies")>>[[not a threat|GNO-72000 After dark]]<<else>>not a threat<</if>>.
<<if not hasVisited("GNO-71240 Single guys") and not hasVisited("GNO-71270 All the single ladies")>>\
There are also [[two big groups of single guys|GNO-71240 Single guys]], and [[two smaller groups of single girls|GNO-71270 All the single ladies]] in the skybar.
<<elseif hasVisited("GNO-71240 Single guys")>>\
There are also [[two groups of single girls|GNO-71270 All the single ladies]] in the skybar.
<<else>>\
There are also [[two big groups of single guys|GNO-71240 Single guys]] in the skybar.
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Two guy groups stand out because they're the biggest.
One group is taking up a corner of the railing. They're 20-something <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> tourists, with hipster beards and high fade haircuts; English or Aussie, you can't quite tell.
They're laughing loudly, like they're trying to attract attention, and they keep sneaking glances at your group when they don't think you're looking.
So far none of them have come over, though, or even made eye contact. Their eyes just dart away whenever you look over.
The other group is taking up space at the bar. Also farangs, these guys are older, in their 30s-40s. They're more smartly dressed and less gregarious; you get the sense they might be here on [[business, not pleasure|GNO-71250 Business not pleasure]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
While you're checking them out, you accidentally lock eyes with one of them, <span class="imageLink"><<link "a tall, broody blond">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a slim-fitting black shirt.
Maybe ten years older than you, he's good-looking in a brutal kind of way. He must have been watching you while you were looking around, but he doesn't break it off when your eyes meet.
For just a moment, your gazes lock. Eye to eye connection with a total stranger.
//[[Look away.|GNO-71260 Flinch]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// You break off your glance, a little flustered by the intense, sudden eye contact. You feel a jolt of nervous energy, butterflies in your stomach. Some instinct makes you <<if $kate.hairStyle != "short">>tuck your hair behind your ear<<else>>run a hand through your hair<</if>>.
<<if hasVisited("GNO-71220 Couples and small groups") and hasVisited("GNO-71270 All the single ladies")>>\
You take a [[calming sip of your drink|GNO-72000 After dark]].
<<elseif not hasVisited("GNO-71220 Couples and small groups") and not hasVisited("GNO-71270 All the single ladies")>>\
You take a calming sip of your drink, and complete your sweep of the crowd. There are also [[lots of small groups and couples|GNO-71220 Couples and small groups]], and [[two big groups of single girls|GNO-71270 All the single ladies]] in the skybar.
<<elseif hasVisited("GNO-71220 Couples and small groups")>>\
You take a calming sip of your drink, and complete your sweep of the crowd. There are also [[two groups of single girls|GNO-71270 All the single ladies]] in the skybar.
<<else>>\
You take a calming sip of your drink, and complete your sweep of the crowd. There are also [[lots of small groups and couples|GNO-71220 Couples and small groups]] in the skybar.
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
One group is <div class="tooltip">hi-so<span class="tooltiptext">Thai term, meaning "high society". The wealthy elite</span></div> Thai girls in party dresses. You sense they're doing the same thing as you – drinking somewhere glam before they head off to a club.
The other is a group of tanned <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls in their late 20s. They're pretty and they dressed up, but they're not showing as much skin as the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, so you've stolen their limelight. They occasionally shoot disapproving looks <<if hasVisited("GNO-71220 Couples and small groups") and hasVisited("GNO-71240 Single guys")>>[[at the she-wolf pack|GNO-72000 After dark]]<<else>>at the she-wolf pack<</if>>.
<<if not hasVisited("GNO-71220 Couples and small groups") and not hasVisited("GNO-71240 Single guys")>>\
There are also [[lots of small groups and couples|GNO-71220 Couples and small groups]], and [[two big groups of guys|GNO-71240 Single guys]] in the skybar.
<<elseif not hasVisited("GNO-71240 Single guys")>>\
There are also [[two big groups of guys|GNO-71240 Single guys]] in the skybar.
<<elseif not hasVisited("GNO-71220 Couples and small groups")>>\
There are also [[lots of small groups and couples|GNO-71220 Couples and small groups]] in the skybar.
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GNO-67100 Kate drops Molly")>>
<<first>>
<<addNotification "Steady MDMA peak" "You feel happy, excited and confident!">>
<</first>>
<<else>>
<<first>>
<<addNotification "Tipsy" "You're getting a little drunk! You feel playful and confident.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
''7.01 <small>P.M.</small>'' The buildings light up all around, a magical sight. You drink and talk with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, enjoying the <<if hasVisited("GNO-67100 Kate drops Molly")>>hazy buzz of Molly and talk<<else>>buzz of cocktails and talk<</if>> in this glamorous setting.
<<image "/locationPhotos/thailand/sukhumvit/octaveBarAfterDark.jpg" 100 1000 600 0>>\
<span class="imageLink"><<link "Broody Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> keeps watching you across the rooftop. You don't make eye contact with him again, but you're totally aware you have his attention.
It's kind of exciting. Or...validating, at least, when you're out with six objectively hot girls. Without being obvious about it, you hold your abs tight and <<if $kate.hairStyle == "short">>tilt your neck<<else>>flick your hair<</if>> and smile prettily when you [[know he's looking|GNO-72001 Let's do a mission]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Let's do a mission," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
"Too early," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "We'll do 'em at the club."
[[What mission?|GNO-72100 What are missions?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Huh? What mission?" //I'm already here on a mission, ha!//
"$amanda.nickname's got an app, it gives you random missions. Like pinch a guy's butt, uh...ask a couple for sex advice." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins, as if recalling a funny memory.
"It's fun," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "We'll [[do it in the club|GNO-72200 Russian imports]]."
<</page>><<silently>>
<<emote-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
''7.18 <small>P.M.</small>'' Your drinks are empty; <<handbag>>s get slung, and the she-wolf pack returns to the bar.
You feel a little twinge of anticipation; <span class="imageLink"><<link "Broody Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and his friends are at the bar, and you're walking right up to it.
Are they gonna [[make a move|GNO-72201 Are you gonna go my way]]?
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
When you get there, a bartender's already pouring a round of shots you didn't order.
"Here you go, lady. From those gen-tel-meh," he explains, pointing to <span class="imageLink"><<link "Broody Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and friends. Your eyes meet again; he raises his drink and smiles a little.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives them a wave and a smile, then picks up a shot glass. "<div class="tooltip">Chok dee kha!<span class="tooltiptext">"Good luck!" – a common Thai toast</span></div>" she cries.
[[Chok dee kha!|GNO-72300 Chone gaow!]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Chok dee kha!" Glasses clink, booze spills on your fingers, and you knock down a throat-burning shot of raspberry vodka.
"Fuck, that tasted like poison," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shudders.
"We need chasers. [[Seven beers|GNO-72400 Seven beers for seven sisters]]," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells the barman, "<div class="tooltip">jed khuat<span class="tooltiptext">seven bottles</span></div>."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveSkybarAtNight.jpg" 50 1000 600 0>>\
''7.20 <small>P.M.</small>'' <span class="imageLink"><<link "Broody Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and his friends have circled around the bar to join you. You think they're Russian; their Slavic accents remind you of those guys in the VIP room at the club, the ones bullying you to take your <<knickers>> off.
Well...these guys would probably like that, too. But they're being much more charming about it. "Hey," Blondy clinks his shot glass to your beer bottle. "What's your name."
<<link "$kate.cover.firstName." "GNO-72405 I'm Kate">><</link>>
<<link "$kate.stripperName." "GNO-72410 I'm River">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $katesNameToKolya to $kate.cover.firstName>>
<</silently>>\
<<header>>\
<<page>>\
"$katesNameToKolya."
<<include "GNO-72411 A pleasure">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $katesNameToKolya to $kate.stripperName>>
<</silently>>\
<<header>>\
<<page>>\
"I'm $katesNameToKolya."
<<include "GNO-72411 A pleasure">>\
<</page>>"<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. A pleasure to meet you." His accent is rich and melodic, rolled Rs and interesting intonations. "You're <<if $kate.agency == "cia" or $kate.agency == "csis">>American?<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>Australian?<<else>>English?<</if>>" All around, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are introducing themselves to his friends in three accents.
<<if $kate.agency == "cia">>\
[[Yeah. Are you Russian?|GNO-72420 R U Russian?]]
[[Yeah. Where are you guys from?|GNO-72420 R U Russian?][$kateSays to "whatAboutYou"]]
<<elseif $kate.agency == "mi6">>\
[[Yeah. Are you Russian?|GNO-72420 R U Russian?]]
[[Yeah. Where are you guys from?|GNO-72420 R U Russian?][$kateSays to "whatAboutYou"]]
<<elseif $kate.agency == "asis">>\
[[Yeah. Are you Russian?|GNO-72420 R U Russian?]]
[[Yeah. Where are you guys from?|GNO-72420 R U Russian?][$kateSays to "whatAboutYou"]]
<<elseif $kate.agency == "csis">>\
[[Canadian. Are you Russian?|GNO-72420 R U Russian?]]
[[Canadian. Where are you guys from?|GNO-72420 R U Russian?][$kateSays to "whatAboutYou"]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand. Are you Russian?|GNO-72420 R U Russian?]]
[[New Zealand. Where are you guys from?|GNO-72420 R U Russian?][$kateSays to "whatAboutYou"]]
<<else>>\
//[BAD ERROR IN KATE.AGENCY! PLEASE REPORT THIS! [[CONTINUE ANYWAY|GNO-72420 R U Russian?]]]//
<</if>>\<<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"Yeah. <<if $kateSays == "whatAboutYou">>Where are you guys from<<else>>Are you Russian<</if>>?"
<<elseif $kate.agency == "mi6">>\
"Yeah. <<if $kateSays == "whatAboutYou">>Where are you guys from<<else>>Are you Russian<</if>>?"
<<elseif $kate.agency == "asis">>\
"Yeah. <<if $kateSays == "whatAboutYou">>Where are you guys from<<else>>Are you Russian<</if>>?"
<<elseif $kate.agency == "csis">>\
"Canadian. <<if $kateSays == "whatAboutYou">>Where are you guys from<<else>>Are you Russian<</if>>?"
<<elseif $kate.agency == "nzsis">>\
"New Zealand. <<if $kateSays == "whatAboutYou">>Where are you guys from<<else>>Are you Russian<</if>>?"
<<else>>\
//[ERROR IN KATE.AGENCY]//
<</if>>\
"<<if $kateSays == "whatAboutYou">>Moscow,<<else>><div class="tooltip">Da<span class="tooltiptext">Yes</span></div>!<</if>>" <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kateSays == "whatAboutYou">>answers proudly<<else>>smiles<</if>>. "So what's <<if $kate.agency == "cia">>an American<<elseif $kate.agency == "mi6">>an English<<elseif $kate.agency == "asis">>an Australian<<elseif $kate.agency == "csis">>a Canadian<<elseif $kate.agency == "nzsis">>a Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> girl doing in Beng-kok."
<span class="greyedOut">//[Cover story]//</span> [[Modelling photoshoot.|GNO-72430 I'm a model]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Photoshoot," you lie breezily. "We're models."
"Ah, I see," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, as if this makes sense to him. "We're travelling for work also. Nice to get away from office."
[[What business are you in?|GNO-72440 What business are you in]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What business are you in?"
"Steel exports. All these skyscrapers," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sweeps a hand grandly over the illuminated skyline. "Impossible to build without steel. Do you travel much for modelling?"
[[Yeah, they fly you around all over.|GNO-72450 I love to travel]]
[[Best part of the job.|GNO-72450 I love to travel][$kateSays to "bestPartOfTheJob"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "bestPartOfTheJob">>\
"Best part of the job," you smile.
<<else>>\
"Yeah, they fly you around all over."
<</if>>\
"Uh huh." <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> steely blue eyes are fixed on you like you're the only girl in the skybar. When you talk, he looks at your lips. "So what is best place in world to model."
<span class="greyedOut">//[Lie]//</span> [[Los Angeles.|GNO-72460 I heart LA]]
<span class="greyedOut">//[Lie]//</span> [[Milan.|GNO-72470 I heart Milan]]
<span class="greyedOut">//[Lie]//</span> [[This one beach in Mexico.|GNO-72480 I heart Tulum]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hmm. Gotta say L.A. The whole city feels like a movie set. You feel like a superstar even after you step off the shoot."
"Sounds fun." <<include "GNO-72481 Kolya smiles">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe...Milan. The city's so beautiful, and, y'know, the fashion's amazing. Makes me feel chic just being there."
"Sounds fun." <<include "GNO-72481 Kolya smiles">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hmmm. There's this one beach in Mexico. White sand, turquoise ocean, and these amazing ruins on the water's edge. It was a beautiful shoot."
"Sounds incredible." <<include "GNO-72481 Kolya smiles">>\
<</page>><span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "What is it you'll be modelling here..."
<span class="greyedOut">//[Lie]//</span> [[Fashion.|GNO-72490 Fashion model]]
<span class="greyedOut">//[Lie]//</span> [[Swimwear.|GNO-72491 Bikini model]]
<span class="greyedOut">//[Lie]//</span> [[Lingerie.|GNO-72492 Lingerie model]]<<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fashion. We're doing a photoshoot, then some catwalk stuff..."
<<include "GNO-72493 Harder than it looks">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Swimwear. We're flying out to the islands tomorrow..."
<span class="greenHighlighter">Kolya ''liked'' that.</span>
<<include "GNO-72493 Harder than it looks">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Lingerie, actually. Big shoot tomorrow..."
<span class="greenHighlighter">Kolya ''loved'' that.</span>
<<include "GNO-72493 Harder than it looks">>
<</page>>"Huh. I bet to model is, uh, harder work than people think, no?"
"Mmh, it can be..." it's kind of fun play-acting as an international model. And you like that <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> trying to connect with you, asking about your job, treating you like an actual person instead of [[just a sex object|GNO-72500 Drifting back]] like the guys in the club.<<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
For a while it's just the two of you, chatting in your own little world, apart from your groups of friends.
Another round of drinks orders pulls you both [[back into the group|GNO-72500 Social contract]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"We are," you say, pointing out <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "<span class="imageLink"><<link "She's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> an Aussie, and those three are all Thai."
<<elseif $kate.agency == "mi6">>\
"I am. These two are American...<span class="imageLink"><<link "she's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> an Aussie...and those three are all Thai."
<<elseif $kate.agency == "asis">>\
"We are," you say, pointing out <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "These two are American, and those three are all Thai."
<<elseif $kate.agency == "csis">>\
"Those girls are," you say, pointing out <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "I'm Canadian. <span class="imageLink"><<link "She's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> an Aussie, and those three are Thai."
<<elseif $kate.agency == "nzsis">>\
"She is," you say, pointing out <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "These two are American, and those three are all Thai."
<<else>>\
//[ERROR IN KATE.AGENCY.]]//
<</if>>\
"Huh. Then this is, uh...eenternational summit," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "United nations. What brings you all together?"
[[We're here on a photoshoot.|GNO-72430 We're mod-oh]]
<hr />
//TK update with avatar art for all the girls//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, we're here on a photoshoot."
"We're //mod-oh,"// <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains, appearing on your shoulder. She flicks her hair like she did in the condo. "Hi, I'm Ping."
"Hyello, Ping." Amused by her exuberance, he shakes her hand. "I'm <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. You are...both model?"
[[Yeah, what do you guys do?|GNO-72440 What do you guys do]]
[[She is, I'm a rocket scientist.|GNO-72450 I'm a rocket scientist]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. What is it you guys do?"
"Steel exports. All these skyscrapers," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sweeps a hand grandly over the illuminated skyline. "Impossible to build without us."
"Wow," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "You build all them?"
"Well, ah," he shrugs, "some of them, certainly. What, uh, classification of model are you?"
[[Catwalk.|GNO-72442 Fashion models]]
[[Lingerie.|GNO-72444 Lingerie models]]
[[Swimsuits.|GNO-72446 Swimsuit models]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Catwalk," you tell him.
"Yeah," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "We have fashion show tomorrow. Dress, undress, all day long..." she sighs.
<span class="greenHighlighter">Kolya ''liked'' that.</span>
<span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes flicker briefly down your body as he pictures that. "Sounds like, uh, [[chellenging job|GNO-72500 Social contract]]..."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Lingerie," you tell him.
<span class="greenHighlighter">Kolya ''loved'' that.</span>
"Yeah," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "We have photoshoot tomorrow. Lingerie on, off, hundred time..." she sighs.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swallows nervously, gaze flitting around the others as he pictures that. His eyes flicker briefly down your body before returning to your face. "Sounds like, uh, [[chellenging job|GNO-72500 Social contract]]..."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Swimsuits," you tell him.
<span class="greenHighlighter">Kolya ''loved'' that.</span>
"Yeah," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "We fly to beach tomorrow for photoshoot. Bikini on, off, hundred time..." she sighs.
<span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swallows nervously, gaze flitting around the others as he pictures that. His eyes flicker briefly down your body before returning to your face. "Sounds like, uh, [[chellenging job|GNO-72500 Social contract]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"She is. I'm a rocket scientist."
<span class="greenHighlighter">Kolya ''liked'' that.</span>
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "These guys," he says, indicating his friends, "they all export steel. But I am cosmonaut."
[[So we work in the same industry!|GNO-72460 Common space]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"So we work in the same industry!"
"Da!" <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Maybe we have [[further things in common|GNO-72500 Social contract]]..."
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveAtNight.jpg" 100 1000 540 0>>\
''8.03 <small>P.M.</small>'' <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets pulled away to drink a shot of vodka; <span class="imageLink"><<link "his boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolyasBoss.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has ordered a round of cocktails for the girls.
A chilled purple drink, is pressed into your hand, and all of a sudden you're chatting with a different Russian. "So, <div class="tooltip">devushka<span class="tooltiptext">miss</span></div>, where are you from?"
<<if $kate.agency == "cia">>\
[[America.|GNO-72501 London]]
<<elseif $kate.agency == "mi6">>\
[[London.|GNO-72501 London]]
<<elseif $kate.agency == "asis">>\
[[Australia.|GNO-72501 London]]
<<elseif $kate.agency == "csis">>\
[[Canada.|GNO-72501 London]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand.|GNO-72501 London]]
<<else>>\
//ERROR IN KATE.AGENCY VAR//
<</if>>\
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"America..." you answer sweetly. The cocktail's syrupy and strong.
<<elseif $kate.agency == "mi6">>\
"London..." you answer sweetly. The cocktail's syrupy and strong.
<<elseif $kate.agency == "asis">>\
"Australia..." you answer sweetly. The cocktail's syrupy and strong.
<<elseif $kate.agency == "csis">>\
"Canada..." you answer sweetly. The cocktail's syrupy and strong.
<<elseif $kate.agency == "nzsis">>\
"New Zealand..." you answer sweetly. The cocktail's syrupy and strong.
<<else>>\
//ERROR IN KATE.AGENCY VAR//
<</if>>\
<span class="imageLink"><<link "Kolya's boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolyasBoss.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is //much// too old for you, but you chat politely with him for a couple of minutes anyway.
They buy you expensive drinks, you'll hang out with them; that's the unspoken deal. In a way they're paying for you to entertain them, just like [[in the club|GNO-72502 Patpong rules]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Of course, in the club the drinks would be cheaper. You'd have taken your top off. And the Russian businessmen wouldn't have to try to //charm// the she-wolves out of their clothes.
Weird to think that if they'd only met you in Patpong, they could grope your tits; watch a lesbian show; then take the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> upstairs and //fuck// them, for less than they're spending on cocktails.
But they seem to be having fun anyway, enjoying the fantasy that they're [[partying with a bunch of models|GNO-72505 Buzzed]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
You're enjoying the warm buzz of the Molly, the sounds and sensations and beautiful sights of the skybar, trying not to talk too much even though it feels really good to talk.
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are chattering away happily and excitedly, and you wonder if it's obvious to the Russians that the 'models' are all on party drugs. They don't seem to mind.
<<elseif hasVisited("GNO-67200 Kate fakes dropping Molly")>>\
You're having a nice time, but the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are having a //great// time, laughing and chattering away happily and excitedly. You try to mirror their smiles and restless energy, not that any of the girls are paying particular attention to you right now, they're more interested in flirting with foreign businessmen.
You wonder if it's obvious to the Russians that the 'models' are all on party drugs. They don't seem to mind.
<<else>>\
You're having a nice time, but the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are having a //great// time, laughing and chattering away happily and excitedly. You try to mirror their smiles and fit in, not that any of the girls are paying particular attention to you right now, they're more interested in flirting with foreign businessmen.
You wonder if it's obvious to the Russians that the 'models' are all on party drugs. They don't seem to mind.
<</if>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slips away from his friends to get [[back to your side|GNO-72510 Partying with models]] as soon as he can.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''8.26 <small>P.M.</small>'' "Come on, ladies, one round, we'll show you how to drink vodka like Russians."
The method's simple: you breathe out, you knock down a neat shot, then you suck in a deep breath and feel it in your lungs.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tries it first, and savours the burn; <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes next, and the deep breath makes her shudder. <div class="tooltip">"Ôo hŏo!<span class="tooltiptext">Oh my god!</span></div>" she squeals, to masculine Russian laughter. "Fuu-uck!"
"Ha! [[Who is next|GNO-72512 Kate is next]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$katesNameToKolya," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> answers for you.
All eyes turn to you; Kolya's fingers touch the small of your back, gently pressing you forward.
Skin on skin. A little tingle runs through you. It's the first time he's touched your body and it feels //really// good.
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
<span class="greyedOut">//Push his hand away. [Not available on MDMA]//</span>
<<else>>\
//[[Push his hand away.|GNO-72514 Don't touch me, touch me there]]//
<</if>>\
//[[Let him touch your back.|GNO-72516 Touch-a touch me]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reach back and gently push his hand away. Part of you's expecting him to just grab you again, harder – but he gets the message, and stops fondling you.
It's reassuring that the club hasn't followed you out into the real world.
//[[Take your turn at the bar.|GNO-72520 Vodka bar]]//
<</page>><<silently>>
<<showRear>>
<<first>>
<<addNotification "Arousal +1" "Kolya's touch on your back feels erotic.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Kolya follows you to the bar, his hand lingering on your bare back all the way.
In front of all his friends, it feels [[possessive and sexy|GNO-72520 Vodka bar]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Little shots of neat Stolichnaya are lined up on the bar.
//[[Exhale, drink, inhale.|GNO-72630 Like a Russian]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Exhale and take the shot. //Like on a firing range.//
<<if hasVisited("GNO-72516 Touch-a touch me")>>\
Kolya's thumb slides along the waistband of your skirt while you psych yourself up.
<</if>>\
//Here goes.// You breathe out, lift a shot glass to your lips, and knock it back.
//[[Swallow and breathe.|GNO-72632 Swallow and breathe]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You gulp down the vodka, then suck in a deep breath of fresh night air.
It's a double burn – vodka in your throat, alcohol fumes in your lungs.
You soak up the sensation as the warm shot [[trickles into your belly|GNO-72640 Well done]].
<</page>><<silently>>
<<showFront>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Ura!" The businessmen thump their approval on the bar, like you just did something heroic.
"Now eat zakuski, uh, I mean, uh..." <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gropes for the word. "Sneck. Tapas." The Russians keep ordering bar snacks.
//[[Eat some fries.|GNO-72650 Fries]]
[[Eat a mini duck bun.|GNO-72660 Duck slider]]//
[[I'm good.|GNO-72670 I'm good]]
<</page>><<silently>>
<<emote-eyes-squint>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/fries.jpg" 120 1000 580 0>>\
<<if hasVisited("GNO-72670 I'm good")>>\
"Oh, okay."
<span class="greenHighlighter">Kolya ''liked'' that.</span>
<</if>>\
You munch down a handful of French fries. They're [[hot, crunchy and delicious|GNO-73000 Photo of Zoe]].
<</page>><<silently>>
<<emote-eyes-squint>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/duckSliders.jpg" 180 1000 580 0>>\
<<if hasVisited("GNO-72670 I'm good")>>\
"Oh, okay."
<span class="greenHighlighter">Kolya ''liked'' that.</span>
<</if>>\
You try a little bun: hot juicy chunks of duck with crunchy red cabbage. Three [[little bites of heaven|GNO-73000 Photo of Zoe]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm good."
"No no no," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> protests. "Vodka and impty stomach, not good. To drink in Russian method, always zakuski."
//[[Eat some fries.|GNO-72650 Fries]]
[[Eat a mini duck bun.|GNO-72660 Duck slider]]//
[[I've got a photoshoot tomorrow.|GNO-72680 Photoshoot]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"I've got a photoshoot tomorrow," you lie. "No food."
"<div class="tooltip">Gavno<span class="tooltiptext">Shit</span></div>," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. He pats your elbow reassuringly. "Okay. Go [[easy on the vodka|GNO-73000 Photo of Zoe]], okay?"
<</page>><<silently>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
''8.03 <small>P.M.</small>'' Two drinks later, <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s giving one of them her number and this tall blond guy, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, keeps touching you on the hip or the small of your back when he leans in to talk to you.
They're little, fleeting touches, nothing like the open, casual pawing you get in the club. But there's [[something erotic|GNO-72700 Something erotic]] about it anyway, maybe the subtlety, maybe the intimacy.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Flirting is turning you on.">>
<</first>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
TK <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has some dialogue here, his fingertips resting on your hip.
[[Kate reply #1. (flirty)|]]
[[Kate reply #2. (friendly)|]]
[[Kate reply #3. (aloof)|GNO-73000 Aloof to Kolya]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.mdmaPillsTaken gt 0>>
<<first>>
<<addNotification "MDMA fade" "Your big emotional rush is gently starting to ebb.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
TK Kate replies to <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
Kolya response.
TK a little later, <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> want you to go to the [[bathroom|GNO-74000 Bathroom chat]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Hey <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands you her phone. "Get a photo of me and Venya?"
She's paired off with a <span class="imageLink"><<link "tall, slick-looking Russian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who obligingly poses with his hand on her waist.
[[Sure.|GNO-73010 Say cheese]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You frame the shot. Pressing her body up against <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles sultrily for the camera. //Flash-click!//
"Cute," Venya says when you hand back the phone. "Send to me?"
"Uh huh." $zoe.firstName does – and you're pretty sure she also sends it to her boyfriend, because her phone pings about a thousand times in the next [[20 minutes|GNO-73100 Drinking all afternoon]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
You've been drinking all afternoon, but you don't really feel like you're getting drunk; it's like the Molly is soaking up the alcohol so far. <<if hasVisited("GNO-2920 Kate requests benzedrine")>>
You decide to hold off on taking the <div class="tooltip">benzedrine<span class="tooltiptext">prescription stimulant; causes high alertness. Sometimes used by spies to increase alcohol tolerance</span></div> Clark issued you; it might be [[overkill|GNO-74000 Bathroom chat]].<<else>>Even switching to neat vodka isn't really registering [[so far|GNO-74000 Bathroom chat]].<</if>>
<<else>>\
You've been drinking all afternoon, and switching to neat vodka has made you feel a little drunk. <<if hasVisited("GNO-2920 Kate requests benzedrine")>>//Better take the [[benzedrine|GNO-74000 Bathroom chat]] Clark issued.//<<else>>//Better slow it down.// A surprising number of intelligence operations involve alcohol, and <div class="tooltip">benzedrine<span class="tooltiptext">prescription stimulant; causes high alertness. Sometimes used by spies to increase alcohol tolerance</span></div> isn't always available, so all officers are taught how to drink without getting wasted.
At this rate, you might not be able to avoid getting a little drunk. But at least you [[won't get trashed|GNO-74000 Bathroom chat]].<</if>>
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''LADIES' ROOM''",
$header.line2 to "OCTAVE SKYBAR / MAY 2018">>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottBathroom.jpg" 300 1000 700 0>>\
''8.45 <small>P.M.</small>'' It's nearly time to move on to the club. You head to the ladies' room with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> to [[pee and fix your lipstick|GNO-74001 Zoe's topless selfie]].<<if not hasVisited("GNO-67100 Kate drops Molly") and hasVisited("GNO-2920 Kate requests benzedrine")>> You subtly dry swallow a <div class="tooltip">benzedrine<span class="tooltiptext">prescription stimulant; causes high alertness. Sometimes used by spies to increase alcohol tolerance</span></div> pill in here; you don't feel anything right away, but you should sober up in a few minutes.<</if>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You come out of your stall, to see $zoe.firstName <span class="imageLink"><<link "posing with her boobs out">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> for a mirror selfie! Lucky there are only <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> in here.
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is touching up her lipstick in the next mirror. "Sluttt," she chides.
"It's for Bry."
"Duh. You wanna do a..."
"[[Yeah, okay|GNO-74002 BFFs]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$amanda.firstName curls an arm around <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waist – and <span class="imageLink"><<link "flashes her own breasts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> for the mirror and the camera.
//Click!// Pose. //Click!// Pose. //Click!//
In the mirror, $amanda.firstName's eyes meet yours. "Hey, has he seen–"
"Nope," $zoe.firstName says. "$kate.cover.firstName, come pose for Bry."
[[No thanks, I don't even know him.|GNO-74002.1 I don't even know Bry]]
[[He has to see them in real life first.|GNO-74002.4 Bry has to see them in real life first]]
<<if $kate.kinks.includes("exhibitionist") or hasVisited("GNO-67100 Kate drops Molly")>>\
<span class="greyedOut">//[Exhibitionist or High]//</span> [[Um, okay.|GNO-74002.6 Kate poses topless for Bry]]
<<else>>\
<span class="greyedOut">//[Exhibitionist or High]// Um, okay.</span>
<</if>>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"I'm good. I don't want a guy I haven't even met to see my tits."
"You know you work in a titty bar, right?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[That's different.|GNO-74002.2 That's different]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's differen–"
"BORING," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains. She and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> go back to pouting and posing for topless shots.
//Click!// Pose. //Click!// Pose. //Click!//
<<if hasVisited("GNO-72514 Don't touch me, touch me there")>>\
Then the little photoshoot's over, modesty's restored, and $amanda.firstName casually returns to touching up her makeup. $zoe.firstName taps her phone until you hear the <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> 'photo sent' sound.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerges from her stall a moment later. "So," asks, "we gonna do [[the other...?|GNO-74100 O Captain My Captain]]"
<<else>>\
Then the little photoshoot's over, modesty's restored, and $amanda.firstName casually returns to touching up her makeup. $zoe.firstName taps her phone until you hear the <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> '[[photo sent|GNO-74004 Kolya likes you]]' sound.
<</if>>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry. He's gotta see them in real life before he starts getting photos."
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rewards that with a dirty laugh. "Think you got some competition."
"It could be arranged." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks at you in the mirror. Then the girls go back to pouting and posing for topless shots.
//Click!// Pose. //Click!// Pose. //Click!//
<<if hasVisited("GNO-72514 Don't touch me, touch me there")>>\
Soon the little photoshoot's over, modesty's restored, and $amanda.firstName casually returns to touching up her makeup. $zoe.firstName taps her phone until you hear the <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> 'photo sent' sound.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerges from her stall a moment later. "So," asks, "we gonna do [[the other...?|GNO-74100 O Captain My Captain]]"
<<else>>\
Soon the little photoshoot's over, modesty's restored, and $amanda.firstName casually returns to touching up her makeup. $zoe.firstName taps her phone until you hear the <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> '[[photo sent|GNO-74004 Kolya likes you]]' sound.
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um, okay," you shrug, joining them at the mirror.
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">Slight ''decrease'' to Suspicion.</span>
"Attagirl," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> praises you.
//[[Take off your bag.|GNO-74002.7 Bag off]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
Unslinging your bag and setting it down on the counter, you check in the mirror that you're selfie ready. //Makeup, check.//
//[[Fluff up your hair.|GNO-74002.8 Hair check]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You give your hair a quick tousle with your fingertips. //Hair, check.//
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slips an arm around your waist.
"Three, two, one..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> warns.
//[[Lift up your top.|GNO-74002.9 Top up]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You pull up your top, freeing your breasts for the mirror and the eagerly waiting camera.
//Click!// Pose. //Click!// Pose. //Click!//
"Oh, he'll love that," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveBathroomFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles.
<<if hasVisited("GNO-72514 Don't touch me, touch me there")>>\
Then the little photoshoot's over, modesty's restored, and $amanda.firstName casually returns to touching up her makeup. $zoe.firstName taps her phone until you hear the <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> 'photo sent' sound.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerges from her stall a moment later. "So," asks, "we gonna do [[the other...?|GNO-74100 O Captain My Captain]]"
<<else>>\
Then the little photoshoot's over, modesty's restored, and $amanda.firstName casually returns to touching up her makeup. $zoe.firstName taps her phone until you hear the <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> '[[photo sent|GNO-74004 Kolya likes you]]' sound.
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<if hasVisited("GNO-74002.9 Top up")>>\
<<emote-mouth-smile>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Heyyy. Kolya //digs// you," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. They were talking earlier; you kind of sensed it was about you. "He was like, //does $katesNameToKolya hev boyfriend?"//
[[Ha! Brilliant!|GNO-74010 Brilliant impression!]]
[[You sound more like Borat.|GNO-74020 You sound like Borat]]
<</page>><<silently>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
You laugh. "You sound just like him!"
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
//"Da, da. I build all skyscraper."// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> giggles at her own impersonation. "Anyway, he's into you. You gonna give him your number?"
[[He's not my type.|GNO-74030 Not giving him my number]]
[[Maybe, if he asks.|GNO-74060 Maybe if he asks]]
[[You think I should?|GNO-74070 You think I should?]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"You sound more like Borat."
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "I //love// the accent. Anyway, he's into you. You gonna give him your number?"
[[He's not my type.|GNO-74030 Not giving him my number]]
[[Maybe, if he asks.|GNO-74060 Maybe if he asks]]
[[You think I should?|GNO-74070 You think I should?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "He's not my type."
"Oh? Maybe you like 'em a little more...Scottish?"
[[Haha, shut up!|GNO-74040 Shut up Zoe!]]
<<link "Connor is //not// my type." "GNO-74050 Connor is not my type">><</link>>
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Oh my god," you laugh. "Shut up!"
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles to herself, amused at her own zinger.
<<include "GNO-74090 Moar drugs">>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Connor is //not// my type," you assure her.
"Mmm." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs like she's not convinced.
<<include "GNO-74090 Moar drugs">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe," you shrug. "If he asks, I guess."
"Oh, he's gonna ask," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises.
<<include "GNO-74090 Moar drugs">>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"You think I should?"
"Mm-hmm." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "He likes you and he's got money. Bet he'll take you somewhere nice."
"Mm, get you outta that hostel for a night," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_condoReady.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds. "It'll do ya good."
<<include "GNO-74090 Moar drugs">>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No..." //Might not have made it through <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> vetting if I had...//
"Then sure." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Why not."
<<include "GNO-74090 Moar drugs">>
<</page>><span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerges from a stall. "We gonna do [[the other...?|GNO-74100 O Captain My Captain]]"<<silently>>
<<emote-calm>>
<<if $avatar.clothing.includes("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Yep." There's still only <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> in here for now.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> produces the baggie of <span class="imageLink"><<link "little pink pills">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/heartShapedPills.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and passes them around; <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets the 'water bottle' of vodka and lemonade from her bag.
<<if hasVisited("GNO-67001 I'm fine")>>\
You keep an eye on the door while the bargirls each drop a second pill.
<<include "GNO-74130 Marines we are leaving">>
<<else>>\
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes one first, then passes the bottle to you.
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
//[[Swallow another pill.|GNO-74110 Double drop]]//
<<else>>\
//[[Fake taking another one.|GNO-74120 Fake double drop]]//
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You swallow a second pill with a little sip of vodka lemonade. It doesn't do anything right away.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
<<include "GNO-74130 Marines we are leaving">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Just like before, you hold the pill under your tongue and gulp down some vodka lemonade. You can get rid of it when nobody's looking.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
<<include "GNO-74130 Marines we are leaving">>
<</page>>"C'mon bitches," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says<<if hasVisited("GNO-67001 I'm fine")>> when they're done<</if>>, "let's [[get outta here|GNO-80000 Back to the bar]]..."<<silently>>
<<emote-calm>>
<<set $header.line1 to "''OCTAVE SKYBAR''",
$header.line2 to "MARRIOTT HOTEL / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Neon steps take you back up [[to the roof|GNO-80001 Last look]].
<<image "/locationPhotos/thailand/sukhumvit/neonStaircase.jpg" 0 1000 400 0>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveLastLook.jpg" 100 1000 500 0>>\
You take a last look around the busy skybar. Kolya's gone to the men's room; the other Russians take it in turns to give lingering hugs to you and the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> bids an especially clingy goodbye to <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. For a second it looks like they're going to kiss, but the moment passes and they break apart.
<span class="imageLink"><<link "Kolya's boss">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolyasBoss.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tries to get you to stay for more vodka and zakuski. But the she-wolf pack is <<if hasVisited("GNO-72514 Don't touch me, touch me there")>>[[moving on|GNO-80022 Do svidanya II]]<<else>>[[moving on|GNO-80010 Kolya asks for Kate's number]]..<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You run into <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on your way down the stairs.
<<image "/locationPhotos/thailand/sukhumvit/neonStaircase.jpg" 0 1000 400 0>>\
He blocks your way out; literally blocks you, with an arm up against the wall that stops you leaving. Amused <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> slip round him; you're suddenly close up in each other's space, so close you can smell his cologne, [[clean and woody and masculine|GNO-80011 I want your number]].
<</page>><<silently>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
For a moment you feel like <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> going to just press you up against the wall and kiss you. But he just gazes deeply into your eyes. "I want your number."
<span class="greyedOut">//[Unlocks the ''White Russian'' secondary mission]//</span> [[Okay.|GNO-80040 Kate gives Kolya her number]]
[[I've gotta go.|GNO-80020 Do svidanya, Kolya]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I've– gotta go."
You slip past <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and hurry to catch up with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, your high heels clicking fast on the polished hardwood floor.
<span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holding the <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator door<<else>>lift open<</if>> for you. You shoot one more glance back at Kolya, who's staring after you; then [[walk out of his life|GNO-80300 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hovers around to say goodbye. "Pleasure to make your acquaintance, <<if hasVisited("GNO-72450 I'm a rocket scientist")>>rocket scientist<<else>>$katesNameToKolya<</if>>."
<<if hasVisited("GNO-72450 I'm a rocket scientist")>>\
[[You too, cosmonaut.|GNO-80030 You too, cosmonaut]]
<<else>>\
[[You too, Kolya.|GNO-80030 You too, cosmonaut]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-72450 I'm a rocket scientist")>>\
"You too, cosmonaut. Bye."
<<else>>\
"You too, Kolya. Bye."
<</if>>\
<<include "GNO-80050 Grab's out front">>
<</page>><<silently>>
<<first>>
<<addNotification "Secondary mission unlocked" "\"White Russian\" will start later in the story.">>
<</first>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Um...okay!" you feel a little flustered as you give out your number.
<span class="greenHighlighter">Kolya ''liked'' that.</span>
"Alright," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, " I'll call you. Good luck on photoshoot."
"Thanks." You hurry to catch up with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, your high heels clicking fast on the polished hardwood floor.
<span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holding the <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator door<<else>>lift open<</if>> for you. You shoot one more glance back at Kolya, who's staring after you; then [[carry on with the bargirls|GNO-80300 Title card]].
<</page>>"<div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>'s out front." Taking your arm, <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> steers you back down the [[neon steps|GNO-80300 Title card]].<<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
TK Kate gives <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> her number. Then it's [[time to go|GNO-80300 Title card]].
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
TK Kate says goodbye to <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Then it's [[time to go|GNO-80300 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="GNO-80400 Another taxi">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/sukhumvitNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottExtNight.jpg" 100 1000 600 0>>\
''9.21 <small>P.M.</small>'' Two <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>s are waiting outside the lobby.
"Whose turn is to..."
"$kate.cover.firstName's," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> answers firmly. You realise <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is guiding you straight towards the front passenger door.
//Oh god, they want me to flash the driver to get out of the fare?//
[[No way!|GNO-80402 No way!]]
[[Seriously?|GNO-80406 Seriously?]]
[[I can't!|GNO-80408 I can't!]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"No way!" you protest, but <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> already opening the door for you.
<<include "GNO-80410 U got this">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Wait, seriously?" But <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> already opening the door for you.
<<include "GNO-80410 U got this">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I can't!" you protest, but <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> already opening the door for you.
<<include "GNO-80410 U got this">>
<</page>>"You got this," <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice is close to your ear as she guides you into the front seat. "Remember, it's all about the chat."
//[[Climb into the passenger seat.|GNO-80420 Meet your driver]]//<<silently>>
<<emote-mouth-calm>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Your bare legs stick to the upholstery as you sink onto the seat. //Clunk!// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shuts the door behind you.
"<div class="tooltip">Sawatdee, sawatdee<span class="tooltiptext">Hello, hello</span></div>!" <span class="imageLink"><<link "Your driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> greets you with a <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> and a cheery smile. "I'm Chonny."
[[Hi Chonny!|GNO-80425 Hi Chonny!]]
[[Hi Johnny!|GNO-80430 Hi Johnny!]]
<</page>><<silently>>
<<set $chonny to "Chonny">>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<include "GNO-80440 Hi Chonny">>
<</page>><<silently>>
<<set $chonny to "Johnny">>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<include "GNO-80440 Hi Chonny">>
<</page>>"Er...hi $chonny!"
"Hiii!" he bows to you again, fingers steepled in a <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div>. "$amanda.firstName?"
<span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climb into the back, giggling.
<<link "She's $amanda.firstName, I'm $kate.cover.firstName." "GNO-80450 I'm Kate">><<set $katesNameToChonny to $kate.cover.firstName>><</link>>
<<link "She's $amanda.firstName, I'm $kate.stripperName." "GNO-80450 I'm Kate">><<set $katesNameToChonny to $kate.stripperName>><</link>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
"She's $amanda.firstName, I'm $katesNameToChonny."
"Hi $katesNameToChonny." He twists round and <div class="tooltip">wais<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> to the backseat. "Hi $amanda.firstName. Hi pretty lady. All pretty lady, all beautiful lady. Sathorn Square, I take you there."
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s eyes flicker briefly over your legs when he turns back to the driving position. //Maybe this won't be too difficult.//
<<link "//Examine $chonny's cab.//" "GNO-80460 Chonny's cab">><</link>>
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<set $chonnyRapport to 0>>
<</silently>>\
<<header>>\
<<page>>\
You unsling your bag and look around <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s office as he pulls out of the Marriott and into light traffic on Sukhumvit.
The interior's clean and smells of sweet air freshener. Bland modern T-pop is playing quietly on the stereo. A <span class="imageLink"><<link "sports card">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/muller13.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is affixed to the dashboard; so is a driver ID featuring a photo of a much younger, leaner $chonny.
<<link "How's your night going, $chonny?" "GNO-80470 How's your night going Chonny">><</link>>
[[Who's this guy on the card?|GNO-80480 Who's this guy?]]
[[How long have you been driving taxis?|GNO-80550 How long have you been driving taxis]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"How's your night going, $chonny?"
<span class="greenHighlighter">$chonny ''liked'' that.</span>
"Tonight, uhhh...busy busy." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "Traffic, uh, very bad before. But now not so bad."
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"Who's this guy?" you ask, pointing to the <span class="imageLink"><<link "sports card">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/muller13.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">$chonny ''liked'' that.</span>
"Thomas, Thomas, number 13," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says reverently. "I love football!"
<span class="greyedOut">//[Lie]//</span> [[Me too!|GNO-80480 Me too]]
<<if $kate.agency == "cia">>\
[[I prefer American football.|GNO-80500 Not a football fan]]
<<elseif $kate.agency == "mi6">>\
[[I prefer netball.|GNO-80500 Not a football fan]]
<<elseif $kate.agency == "asis">>\
[[I'm Australian, I prefer rugby.|GNO-80500 Not a football fan]]
<<elseif $kate.agency == "csis">>\
[[I'm Canadian, I prefer hockey.|GNO-80500 Not a football fan]]
<<elseif $kate.agency == "nzsis">>\
[[I'm from New Zealand, I prefer rugby.|GNO-80500 Not a football fan]]
<<else>>\
//ERROR IN KATE.AGENCY VAR//
<</if>>\
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smirk>>
<<set $chonnyRapport += 2>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, me too!" Hardly the worst lie you've told as a spy.
<span class="greenHighlighter">$chonny ''loved'' that.</span>
"<div class="tooltip">Hooi<span class="tooltiptext">Wow</span></div>, you love football? What team?"
<<if $kate.agency == "cia">>\
[[USA.|GNO-80490 I support England]]
<<elseif $kate.agency == "mi6">>\
[[England.|GNO-80490 I support England]]
<<elseif $kate.agency == "asis">>\
[[Australia.|GNO-80490 I support England]]
<<elseif $kate.agency == "csis">>\
[[Canada.|GNO-80490 I support England]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand.|GNO-80490 I support England]]
<<else>>\
//ERROR IN KATE.AGENCY VAR// [[CONTINUE ANYWAY|GNO-80490 I support England]]>>
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"USA."
<<elseif $kate.agency == "mi6">>\
"England."
<<elseif $kate.agency == "asis">>\
"Australia."
<<elseif $kate.agency == "csis">>\
"Canada."
<<elseif $kate.agency == "nzsis">>\
"New Zealand."
<<else>>\
//ERROR IN KATE.AGENCY VAR//>>
<</if>>\
"My team Germany." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> touches the sports card reverently. "World Cup. Germany...winnn!"
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"I prefer American football."
"Hmmm. American football, stop too many time," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains.
[[It's more strategic.|GNO-80510 There is more action in a single American Football game than there ever will be in an entire year of soccer]]
[[But it has cheerleaders.|GNO-80520 But it has cheerleaders]]
<<elseif $kate.agency == "mi6">>\
"I prefer netball."
"Hmmm. Not know netball."
[[You'd love the pace.|GNO-80530 Netball has great pace]]
[[You'd love the uniforms.|GNO-80540 Netball has great uniforms]]
<<elseif $kate.agency == "asis">>\
"I'm Australian, I prefer rugby."
"Yeah, Austra-ya, very good rugby," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> concedes.
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<<elseif $kate.agency == "csis">>\
"I'm Canadian, I prefer hockey."
"Yeah, Canada, hockey on, uhhh...on ice!" <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Thailand, too hot for hockey on ice."
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<<elseif $kate.agency == "nzsis">>\
"I'm from New Zealand, I prefer rugby."
"Yeah! New Zealan', All Black, very good rugby," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> concedes.
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<<else>>\
//ERROR IN KATE.AGENCY VAR!//
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's more strategic," you explain.
"Mmmm." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't seem convinced.
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"But it has cheerleaders."
<span class="greenHighlighter">$chonny ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Cheerlead, it have cheerlead!" He laughs. "Football – even better if have cheerlead."
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You'd love the pace. You only have three seconds to pass or shoot. You should check it out."
"Mmmm," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "I watch one day." Something tells you that day won't come soon.
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"You'd love the uniforms. //Very// short skirts."
<span class="greenHighlighter">$chonny ''liked'' that.</span>
"Oh wow!" <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Netball. Maybe I watch later, hahaha!"
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"How long have you been driving taxis?" you ask.
"Umm...before and now, maybe 15 year now." Based on his ID photo on the dash, that sounds about right.
<span class="greyedOut">[Lie]</span> [[Wow, you don't look 15 years older!|GNO-80560 Wow you don't look the age you look]]
[[You must have looked after a lot of people.|GNO-80570 Lot of people]]
<</page>><<silently>>
<<set $chonnyRapport += 2>>
<</silently>>\
<<header>>\
<<page>>\
"Wow! You don't look 15 years older!"
<span class="greenHighlighter">$chonny ''loved'' that.</span>
"Every day, fresh food, only fresh," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reveals. "And exercise. Every day, exercise."
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>><<silently>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"You must have looked after a lot of people."
<span class="greenHighlighter">$chonny ''liked'' that.</span>
"Yeah, lot of pee-poh," $chonny agrees. "Every customer, I take care. Thai pee-poh, poor pee-poh, rich pee-poh, I take care. Foreigner, same same. Thailand, same same."
<<if hasVisited("GNO-80590 Yeah") or hasVisited("GNO-80600 Yeah, it's Zoe's birthday") or hasVisited("GNO-80610 Do we look okay?")>>\
<<include "GNO-80640 Chonny drive 2">>
<<else>>\
<<include "GNO-80580 Chonny drive 1">>
<</if>>\
<</page>>The traffic's pretty smooth for Bangkok; he's able to make good progress along the downtown streets. "You are go to night club?" $chonny asks.
[[Yeah.|GNO-80590 Yeah]]
<<link "Yeah, it's $zoe.firstName's birthday." "GNO-80600 Yeah, it's Zoe's birthday">><</link>>
[[Yeah, do we look okay?|GNO-80610 Do we look okay?]]<<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you tell him.
"You look nice. All look nice." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beams into the rearview mirror.
<<include "GNO-80620 Chonny stage 2 dialogue options">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you tell him, "it's $zoe.firstName's birthday."
"<div class="tooltip">Aaw<span class="tooltiptext">I see!</span></div>!" <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beams into the rearview mirror. "Hap bir'day $zoe.firstName!"
"Thanks $chonny!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "You're cool."
<span class="greenHighlighter">$chonny ''liked'' that.</span>
<<include "GNO-80620 Chonny stage 2 dialogue options">>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you tell him. "Do we look okay?"
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s brows dart up. "Yeah! Wow. Better than okay. Much better."
<<include "GNO-80620 Chonny stage 2 dialogue options">>
<</page>><<if not hasVisited("GNO-80470 How's your night going Chonny")>>\
<<link "How's your night going, $chonny?" "GNO-80470 How's your night going Chonny">><</link>>
<</if>>\
<<if not hasVisited("GNO-80480 Who's this guy?")>>\
[[Who's this guy on the sports card?|GNO-80480 Who's this guy?]]
<</if>>\
<<if not hasVisited("GNO-80550 How long have you been driving taxis")>>\
[[How long have you been driving taxis?|GNO-80550 How long have you been driving taxis]]
<</if>>\
[[Is this your taxi, or...|GNO-80630 Is this your taxi]]<<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<<set $chonnyRapport += 1>>
<</silently>>\
<<header>>\
<<page>>\
"So, is this your taxi, or..."
<span class="greenHighlighter">$chonny ''liked'' that.</span>
"Yeah. Before, I rent taxi. Now..." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats the wheel proudly, "I own taxi. My wife boss," he laughs. "I...second boss."
<<include "GNO-80640 Chonny drive 2">>
<</page>><<if not hasVisited("GNO-67100 Kate drops Molly") and hasVisited("GNO-2920 Kate requests benzedrine")>>\
<<silently>>
<<first>>
<<addNotification "Benzedrine rush" "You feel alert and excited.">>
<</first>>
<</silently>>\
The benzedrine bubbles up in you suddenly, a rush of excitement that blasts away the alcohol fog and makes you feel confident and alert.
$chonny glances across at you and your eyes meet.
<<else>>\
He glances across at you and your eyes meet.
<</if>>\
//[[Smile encouragingly.|GNO-80650 Kate flirts with Chonny][$kateSays to "smile"]]
[[Touch your hair.|GNO-80650 Kate flirts with Chonny][$kateSays to "hair"]]
[[Cross your legs.|GNO-80650 Kate flirts with Chonny][$kateSays to "legs"]]//<<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "smile">>\
You smile coquettishly back.
<<elseif $kateSays == "hair">>\
You reach up and <<if $kate.hairStyle != "short">>curl your hair behind your ear, showing off your neck<<else>>run a finger through your hair<</if>>.
<<elseif $kateSays == "legs">>\
You cross one bare leg over the other, drawing his eyes down to them for just a moment.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
There's something...mildly erotic about flirting with a random taxi driver, even though you're not at all into him. Kind of like how you can get <<if hasVisited("GNO-67100 Kate drops Molly")>>turned on<<else>>[[horny|GNO-80660 Arousal buff]]<</if>> in the club, despite not being attracted to the guys.<<if hasVisited("GNO-67100 Kate drops Molly")>>
//Or maybe it's just the Molly making me [[horny|GNO-80660 Arousal buff]].//<</if>>
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "You feel sexy and turned on.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Seducing some random guy who wouldn't have a chance with you in real life – //is this a little bit like how <div class="tooltip">bargirling<span class="tooltiptext">club prostitution</span></div> feels?//
Not that you have to actually //seduce// him, of course. But, in a couple of minutes...you might be showing him your tits. In return for a cheap taxi ride.
//God, what's that going to [[feel like|GNO-81000 Title card]]?//
<</page>><<silently>>
<<if $chonny == "Chonny">>
<<set $header.line1 to "''CHONNY\'S TAXI''",
$header.line2 to "BANGKOK / MAY 2018">>
<<else>>
<<set $header.line1 to "''JOHNNY\'S TAXI''",
$header.line2 to "BANGKOK / MAY 2018">>
<</if>>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-81100 Taxi to Sathorn Square">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/sathornSquareNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/sathornSquareExterior.jpg" 100 1000 500 0>>\
''9.43 <small>P.M.</small>'' The <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>s pull up at the foot of a massive office tower. Out in the street, a steady trickle of hip, good looking Thais and <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div> are heading into the lobby.
"Thank you $katesNameToChonny! Thank you $amanda.firstName!" The fare's already paid in the app; <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beams and bows a farewell <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> to you all. <<if hasVisited("GNO-80600 Yeah, it's Zoe's birthday")>>"Hap bir'day, $zoe.firstName!"<</if>>
"Thanks $chonny!" the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> coo from the backseat. But none of them make a move to get out.
//Oh god.// Your mouth is dry and your pulse is throbbing.
<<link "$chonny...before we go..." "GNO-81110 Before I go">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ummm...$chonny." You have to wet your lips so your voice doesn't crack. "Before we go."
"Uh huh?" <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles guilelessly.
<span class="greyedOut">//[Escape the taxi]//</span> [[Never mind, goodnight!|GNO-81120 Kate refuses to flash Chonny]]
[[Well...these girls made me agree to a dare...|GNO-81160 The bargirls made me do it]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-eyes-big>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Never mind!" your hand finds the door handle and pops it open. "Goodnight!"
You grab your bag and escape [[out into the warm night air|GNO-81130 Kate escapes]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-cheeks-blush-fading>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
You slam the door shut. Warm night air on your thighs reminds you to [[tug your skirt back down|GNO-81140 What the heck]].
<</page>><<silently>>
<<emote-nose-scrunch>>
<<emote-mouth-smirk>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span>
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> climb out after you. "Heyyy!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pouts. "What the heck?"
[[I didn't feel like it.|GNO-81150 Kate's excuse][$kateSays to "didntFeelLikeIt"]]
[[It was too embarrassing!|GNO-81150 Kate's excuse][$kateSays to "tooEmbarrassed"]]
[[Sorry!|GNO-81150 Kate's excuse][$kateSays to "sorry"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "didntFeelLikeIt">>\
<<emote-eyes-calm>>\
<<emote-brows-calm>>\
<<emote-nose-calm>>\
<<emote-mouth-talking>>\
You shake your head. "I didn't feel like doing it." Your cheeks feel hot.
<<elseif $kateSays == "tooEmbarrassed">>\
<<emote-mouth-talking>>\
<<emote-nose-calm>>\
You shake your head. "It was too embarrassing." Your cheeks feel hot.
<<elseif $kateSays == "sorry">>\
You shrug. "Sorry!" Your cheeks feel hot.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Bo-ring," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains.
"You had him eating out of your hand," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
$chonny pulls away; in the passenger seat of the other <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>, Jib is holding her stretchy dress <span class="imageLink"><<link "down below her bare breasts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_marriottFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"You owe me <div class="tooltip">110 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$3.30<<elseif $kate.agency == "mi6">>£2.20<<elseif $kate.agency == "asis">>$4.40<<elseif $kate.agency == "csis">>$4.40<<elseif $kate.agency == "nzsis">>$4.40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," $amanda.firstName [[harrumphs|GNO-81500 Lobby]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well...um...before we got in the car, my friends made me agree to a dare..."
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods along, trying to understand where this is going.
[[If you cancel the fare, I have to flash my boobs.|GNO-81170 Indecent proposal]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"If you, uh, if you cancel the fare..." you have to swallow before you can get the rest of the sentence out. "I, uh, I have to flash my boobs."
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points to your chest. "You...show boob? For taxi?"
[[Yeah.|GNO-81180 Yeah]]
[[For ten seconds.|GNO-81182 Ten seconds]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<if $chonnyRapport gte 3>>
<<set _chonnyRapportMod to 2>>
<<else>>
<<set _chonnyRapportMod to 1>>
<</if>>
<<set _attractivenessMod to 1>>
<<if $kate.braSize == "large">>
<<set _braSizeMod to 1>>
<<elseif $kate.braSize == "medium">>
<<set _braSizeMod to 0>>
<<else>>
<<set _braSizeMod to -1>>
<</if>>
<<set _kateD10Modifiers to _chonnyRapportMod + _attractivenessMod + _braSizeMod >>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you nod.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Sex appeal check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _kateD10Modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Sex appeal check.'' Target: 6. You rolled: (<<= _kateD10>><<if _kateD10Modifiers gte 0>>+<</if>>_kateD10Modifiers) = <<= _kateD10 + _kateD10Modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks to the backseat for reassurance. "Is...joke?"<br />
<br />
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles reassuringly. "[[No joke|GNO-81210 No joke]]," she promises.
<<else>>
$chonny's smile falters. "No no," he protests, shaking his head. "You pay fare." <br />
<br />
[[It was just a joke.|GNO-81190 Just a joke]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10<<if _kateD10Modifiers gte 0>>+<</if>>_kateD10Modifiers<span class="tooltiptext">$chonny rapport: +_chonnyRapportMod; attractiveness +_attractivenessMod; bra size <<if _braSizeMod gte 0>>+<</if>>_braSizeMod</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<if $chonnyRapport gte 3>>
<<set _chonnyRapportMod to 2>>
<<else>>
<<set _chonnyRapportMod to 1>>
<</if>>
<<set _attractivenessMod to 1>>
<<set _timeMod to 1>>
<<if $kate.braSize == "large">>
<<set _braSizeMod to 1>>
<<elseif $kate.braSize == "medium">>
<<set _braSizeMod to 0>>
<<else>>
<<set _braSizeMod to -1>>
<</if>>
<<set _kateD10Modifiers to _chonnyRapportMod + _attractivenessMod + _braSizeMod + _timeMod>>
<</silently>>\
<<header>>\
<<page>>\
You nod. "For ten seconds."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Sex appeal check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _kateD10Modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Sex appeal check.'' Target: 6. You rolled: (<<= _kateD10>><<if _kateD10Modifiers gte 0>>+<</if>>_kateD10Modifiers) = <<= _kateD10 + _kateD10Modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks to the backseat for reassurance. "Is...joke?"<br />
<br />
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles reassuringly. "[[No joke|GNO-81210 No joke]]," she promises.
<<else>>
$chonny's smile falters. "No no," he protests, shaking his head. "You pay fare." <br />
<br />
[[It was just a joke.|GNO-81190 Just a joke]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10<<if _kateD10Modifiers gte 0>>+<</if>>_kateD10Modifiers<span class="tooltiptext">$chonny rapport: +_chonnyRapportMod; attractiveness +_attractivenessMod; bra size <<if _braSizeMod gte 0>>+<</if>>_braSizeMod; offered 10 seconds +1</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<if $chonnyRapport gte 3>>
<<set _chonnyRapportMod to 2>>
<<else>>
<<set _chonnyRapportMod to 1>>
<</if>>
<<set _attractivenessMod to 1>>
<<set _photoMod to 2>>
<<if $kate.braSize == "large">>
<<set _braSizeMod to 1>>
<<elseif $kate.braSize == "medium">>
<<set _braSizeMod to 0>>
<<else>>
<<set _braSizeMod to -1>>
<</if>>
<<set _kateD10Modifiers to _chonnyRapportMod + _attractivenessMod + _braSizeMod + _photoMod>>
<</silently>>\
<<header>>\
<<page>>\
You nod. "And you can take a photo."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Sex appeal check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _kateD10Modifiers gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Sex appeal check.'' Target: 6. You rolled: (<<= _kateD10>><<if _kateD10Modifiers gte 0>>+<</if>>_kateD10Modifiers) = <<= _kateD10 + _kateD10Modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks to the backseat for reassurance. "Is...joke?"<br />
<br />
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles reassuringly. "[[No joke|GNO-81210 No joke]]," she promises.
<<else>>
$chonny's smile falters. "No no," he protests, shaking his head. "You pay fare." <br />
<br />
[[It was just a joke.|GNO-81190 Just a joke]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10<<if _kateD10Modifiers gte 0>>+<</if>>_kateD10Modifiers<span class="tooltiptext">$chonny rapport: +_chonnyRapportMod; attractiveness +_attractivenessMod; bra size <<if _braSizeMod gte 0>>+<</if>>_braSizeMod; +2 photo opportunity</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Relax," you tell him, grabbing your bag. "It was just a joke."
//I just avoided flashing my boobs for a <div class="tooltip">฿110<span class="tooltiptext"><<if $kate.agency == "cia">>$3.30<<elseif $kate.agency == "mi6">>£2.20<<elseif $kate.agency == "asis">>$4.40<<elseif $kate.agency == "csis">>$4.40<<elseif $kate.agency == "nzsis">>$4.40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> cab ride.//
You should feel relieved, but you also feel a little bit stung as you [[climb out into the warm night air|GNO-81200 Commiserations]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Warm night air on your thighs reminds you to tug your skirt back down.
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> climb out after you. "Heyyy," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your arm. "Don't worry about it."
"Yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "Guys are cheap, it doesn't mean anything."
"C'mon, bitches," $amanda.firstName says. "[[Let's dance|GNO-81500 Lobby]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances around outside the car; looks at you; then makes a decision. "I cancel fare," he says.
He fumbles with his driver app for a moment. <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s phone pings in her bag.
$chonny looks back at you with dark, excited eyes.
//[[Check no one's outside the car.|GNO-81220 Exterior check]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You glance around.
The streets aren't //empty,// clubgoers are trickling into the building lobby, and traffic is cruising steadily past.
But no one's looking into the taxi, and the interior lights are off. Maybe it won't be easy to see in.
[[You ready?|GNO-81230 You ready?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You ready?"
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods eagerly.
//Fuck fuck fuck, I'm doing it.// A tuk-tuk buzzes past right outside the window. You reach haltingly up for the hem of the clingy, stretchy top.
<<link "//Flash your boobs for the ride.//" "GNO-81240 Showing Chonny">><</link>>
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
//Fuuuck!// You tug the top up above your breasts. Air con washes gently across your nipples.
<span class="greenHighlighter">$chonny ''loved'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"<div class="tooltip">Hooi<span class="tooltiptext">Wow</span></div>!" <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares down at your body raptly.
//"Hell// yeah." <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice is tinged with something like pride. <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs something that makes <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> giggle.
<<if hasVisited("GNO-81182 Ten seconds")>>\
[[Is it 10 seconds yet?|GNO-81260 Ten seconds?]]
<<else>>\
<<link "Worth it, $chonny?" "GNO-81250 Worth it?">><</link>>
<</if>>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Worth it?"
"<div class="tooltip">Chaiii<span class="tooltiptext">Yesss</span></div>," <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods reverently. "Worth it."
//[[Pull your top down.|GNO-81312 Top down 2]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is it ten seconds yet?"
"No!" <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes his head. "That one."
A long pause.
"Two."
<<link "$chonny!" "GNO-81270 Chonny!">><</link>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
"$chonny!"
"Three..."
//[[Check outside the taxi.|GNO-81280 Exterior check 2]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
You glance around outside the taxi. It feels like people are walking around everywhere! You have to fight the urge to cover yourself.
The other <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> has pulled in behind; in the passenger seat, Jib is doing the same as you, paying for the ride by pulling her dress <span class="imageLink"><<link "down below her bare breasts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_marriottFlashingBoobs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. //Fuck, it's so easy to see in!//
"Four..." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> intones.
[[That's more than ten seconds.|GNO-81290 That's ten!]]
//[[Wait for him to finish counting.|GNO-81282 The wait]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Fie..."
You force yourself to sit patiently with your tits out, glancing around nervously in case somebody looks in. "Six..." <span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> intones slowly. "Seben..."
In the car behind, <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_condoCasual2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has covered herself up again, but you're still exposed. "Eight...
"Nine...
"[[Nine and half|GNO-81284 Nine and half]]..."
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
"Oh come on!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> protests.
"Okay, okay. [[Ten|GNO-81286 Ten]]."
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">$chonny ''loved'' that.</span>
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares at your body like he's trying to memorise every goosebump.
[[Worth it?|GNO-81250 Worth it?]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, you've had your ten."
"Yep," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees, "bye $chonny."
She opens her door and the interior bulb comes on, lighting you up.
//[[Pull down your top!|GNO-81300 Lit up]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-eyes-big>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You squeal in protest and [[yank down your top|GNO-81310 Top down]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">$chonny ''loved'' that.</span>
<span class="imageLink"><<link "$chonny">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chonny.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs at your startled reaction. You glance around, but there's no sign anybody saw anything.
"<div class="tooltip">Hooi<span class="tooltiptext">Wow</span></div>. Goodnigh' $katesNameToChonny."
<<link "Bye $chonny." "GNO-81320 Exit">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
//Can't believe I just did that.// You glance around, but there's no sign anybody saw anything.
"<div class="tooltip">Hooi<span class="tooltiptext">Wow</span></div>. Goodnigh' $katesNameToChonny."
<<link "Bye $chonny." "GNO-81320 Exit">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bye $chonny."
You grab your bag and [[climb out of the taxi|GNO-81420 Street]].
<</page>><<silently>>
<<set $header.line1 to "''SATHORN SQUARE''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You climb out and close the door. Warm night air on your thighs reminds you to tug your skirt back down.
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"Awesome job!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins.
"Eating out of your hand." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a high five.
"Yeah, good job," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "He can-soh."
[[Yeah.|GNO-81430 He can-soh]]
[[He what?|GNO-81430 He can-soh][$kateSays to "heWhat"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "heWhat">>\
<<emote-brows-raised>>\
<<emote-nose-calm>>\
<<emote-mouth-talking>>\
"He what?"
"He can-soh," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> repeats.
<<else>>\
"Yeah."
<</if>>\
"C'mon, bitches," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "[[Let's dance|GNO-81500 Lobby]]."
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''LOBBY''",
$header.line2 to "SATHORN SQUARE BLDG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/sathornLobby.jpg" 100 1000 500 0>>\
Heels click on marble as you follow the she-wolf pack into a gleaming, LED-lit corporate lobby.
In the daytime, it'd be filled with office workers and clients; now you mix into a trickle of hip nightclubbers, asian and <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div>, twentysomething boys and girls looking for a good time and dressed to impress.
Black-uniformed security staff are carrying out frisk searches and [[bag checks|GNO-81510 Frisky]].
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
You join onto the ladies' <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> and shuffle forward until you're at the front.
Two dark-skinned Thai women are doing bag checks and pat-downs. Without breaking off their conversation, one rummages briskly through your <<handbag>>; the other [[frisks you for hidden drugs|GNO-81520 Pat down]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She pats your hips; slides her fingertips smoothly all around the waistband of your skirt. "<div class="tooltip">Thai thai thai thai<span class="tooltiptext">He got a job driving a garbage truck,</span></div>," she's telling her friend. "<div class="tooltip">Chai, thai thai thai<span class="tooltiptext">Yeah, it pays well...</span></div>..."
She reaches up and cups your breasts...with such a delicate touch, compared to the way they get manhandled in the club.
Realising you don't have a bra to search, she drops her hands immediately. Making eye contact with you for the first time, she flashes an [[apologetic smile|GNO-81530 Checkpoint passed]].
<</page>><<silently>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
The she-wolf pack regroups on the other side of the frisk check.
Another attendant is here, sending <<if $kate.agency == "cia" or $kate.agency == "csis">>elevators<<else>>lifts<</if>> up to the [[39th floor|GNO-81540 39th floor]].
<</page>><<silently>>
<<set $header.line1 to "''39TH FLOOR''",
$header.line2 to "SATHORN SQUARE BLDG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/koiWelcomeSign.jpg" 120 1000 520 0>>\
39 floors up...upbeat club music pulses out from a glamorous entryway.
You join onto the back of a <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>>, snaking out along the corridor. But you don't have to stay in it [[for long|GNO-81550 Meet the bouncers]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>!"
She's managed to attract the attention of <span class="imageLink"><<link "a bouncer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/happyTheBouncer.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who walks out along the <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>>. "<div class="tooltip">Wat dee<span class="tooltiptext">Hi!</span></div>!" he grins, revealing a few missing teeth.
"<div class="tooltip">Wat dee, Happy<span class="tooltiptext">Hi, Happy</span></div>!" She hugs him affectionately; he paws her ass. "<div class="tooltip">Thai $zoe.stripperName thai<span class="tooltiptext">It's $zoe.stripperName's birthday.</span></div>."
"Aw, hap bir-day." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets a hug and a butt squeeze, too, and the other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> coo greetings at 'Happy'.
"<div class="tooltip">Kon nee krai?<span class="tooltiptext">Who's this?</span></div>" he asks, looking at [[you|GNO-81560 New barmaid]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Thai thai,<span class="tooltiptext">New girl,</span></div>" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_octaveAfterDark.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "<div class="tooltip">Thai thai.<span class="tooltiptext">From <<if $kate.agency == "cia">>America<<elseif $kate.agency == "mi6">>England<<elseif $kate.agency == "asis">>Australia<<elseif $kate.agency == "csis">>Canada<<elseif $kate.agency == "nzsis">>New Zealand<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>"
"Great!" <span class="imageLink"><<link "The bouncer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/happyTheBouncer.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks appraisingly down your body and laughs, showing off his missing teeth.
"<div class="tooltip">Thai thai thai,<span class="tooltiptext">Just a barmaid,</span></div>" Mem clarifies. "<div class="tooltip">Thai thai,<span class="tooltiptext">For now.</span></div>"
"<div class="tooltip">Thai thai.<span class="tooltiptext">Too bad.</span></div>" He holds out a handshake. "Hi, I'm Happy."
<<link "$kate.cover.firstName." "GNO-81570 Hi Happy, I'm Kate">><</link>>
<<link "$kate.stripperName." "GNO-81580 Hi Happy, I'm River">><</link>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.cover.firstName."
<<include "GNO-81590 Happy handshake">>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName."
<<include "GNO-81590 Happy handshake">>
<</page>>His hand feels big and rough and sweaty. "Come," he nods his head back towards the [[entryway|GNO-81600 Queue jumping]]. "I get you in."<<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Happy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/happyTheBouncer.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you and the she-wolves right past the long <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> of other clubbers. You keep your expression nonchalant, but it's secretly quite gratifying to be whisked past everybody else.
<<image "/locationPhotos/thailand/sathorn/koiReception.jpg" 200 1000 600 0>>\
You're checked into the club by glamorous Thai hostesses in red lipstick and tight red uniforms.
"<div class="tooltip">Sawatdee kha!<span class="tooltiptext">Hello!</span></div>" A hostess fixes a club wristband on you, and hands you a few vouchers for free drinks at the bar. It's [[ladies' night!|GNO-81500 Entry corridor]]
<</page>><<silently>>
<<set $header.line1 to "''THE CLUB AT KOI''",
$header.line2 to "SATHORN / MAY 2018">>
<<set $avatar.clothing.pushUnique("clothing/accessories/clubAtKoiWristband/49_wristband-clubAtKoiWristband")>>
<<set $avatar.clothing.pushUnique("clothing/accessories/clubAtKoiWristband/49_wristband-clubAtKoiWristband-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/koiEntryCorridor.jpg" 125 1000 600 0>>\
''9.59 <small>P.M.</small>'' A dark, neon-lit corridor leads you towards the exciting, thumping beat of a dancefloor.
It's like the entrance to the Hard Cock Cafe...except ten times cooler. (And about a thousand times cleaner.)
"We know all the bouncers in town," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is telling you, raising her voice to be heard over the music. "They're all <div class="tooltip">triad<span class="tooltiptext">Chinese transnational organised crime syndicate</span></div>, we party with them sometimes, they let us skip the lines..."
The <div class="tooltip">Red Wa<span class="tooltiptext">Thai organised crime syndicate; launders money through the Hard Cock Cafe</span></div> isn't exactly a triad, but you nod along anyway. At the end of the corridor, you reach a thick black velvet drape.
//[[Push through.|GNO-82000 Title card]]//
<</page>><<silently>>
<</silently>>\
<a data-passage="GNO-82100 The Club At Koi">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/theClubAtKoiTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass through the thick black drape onto a busy dancefloor, rocking to a booming EDM beat.
<<image "/locationPhotos/thailand/sathorn/koiFirstLook.jpg" 100 1000 500 0>>\
It's packed, hot and bustling. A few nearby clubbers notice your entrance: girls checking out what you're wearing, guys just checking you out.
The crowd's young and hip, the lights are beautiful, and the music is much too loud to keep talking.
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats your butt to get your attention: the she-wolf pack is heading [[for the bar|GNO-82200 Bar girls]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Knowing the bouncers can't get you served at the bar any quicker. You <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> up with the she-wolves, and wait for a spot to open up.
<<image "/locationPhotos/thailand/sathorn/koiBusyBar2.jpg" 213 1000 613 0>>\
It's too loud to talk, but the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are smiling and dancing a little while they wait, shaking their hips in anticipation of getting onto the dancefloor.
//[[Scope out the crowd.|GNO-82210 Scope the crowd]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/theCrowdAtKoi.jpg" 200 1000 600 0>>\
The quirky, fun bassline of the booty anthem, //All About That Bass,// kicks in while you gaze out over the crowd.
This is maybe the most cosmopolitan place you've been to in Bangkok. About half the people here are <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div>, south asian, or black; younger and cooler than the ancient sexpats at the Hard Cock Cafe.
Free drinks and free entry have attracted plenty of [[ladies|GNO-82220 Plenty of ladies]] to ladies' night. Also: the prospect of free ladies has attracted plenty of [[men|GNO-82230 Plenty of men]] to ladies' night.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The club's dotted with glamorous little groups of girls: dolled up, dancing, taking selfies and having fun.
<<image "/locationPhotos/thailand/sathorn/koiGirls.jpg" 200 1000 600 0>>\
Mainly they're attractive twentysomethings, of varying nationalities, immaculately presented with glossy hair, sultry makeup, short dresses and towering heels. The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> <<if hasVisited("GNO-82230 Plenty of men")>>[[fit right in|GNO-82240 Bar service]]<<else>>[[fit right in|GNO-82230 Plenty of men]]<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Like in most clubs, there aren't many guys in the sweet spot between //not hot enough// and //so hot I'll definitely get an STD.//
<<image "/locationPhotos/thailand/sathorn/koiFuckboys.jpg" 0 1000 400 0>>\
Mostly wearing the international clubbing uniform of blue jeans and designer shirts, they're dancing, drinking and acting goofy to get attention. But in general it's a much hotter, sexier, younger group than you get at the <<if hasVisited("GNO-82220 Plenty of ladies")>>[[Hard Cock Cafe|GNO-82240 Bar service]]<<else>>[[Hard Cock Cafe|GNO-82220 Plenty of ladies]]<</if>>.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has managed to get the attention of a bartender.
<<image "/locationPhotos/thailand/sathorn/koiBartenderPouringProsecco.jpg" 110 1000 510 0>>\
Drinks vouchers get passed over the bar, and he pours out seven flutes of what you //hope// is champagne, but turns out to be prosecco.
"To $zoe.firstName!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts.
"Yeah me, bitches!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts back.
Seven raised plastic flutes thump together. You take a swig of bubbly, peachy alcohol, and follow the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> out [[onto the dancefloor|GNO-83000 Dancefloor]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
''10.13 <small>P.M.</small>'' You push through the bodies, following <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> deeper into the crowd. The DJ drops N'Sync's //Dirty Pop,// so loud the bassline vibrates through your body.
<<image "/locationPhotos/thailand/sathorn/koiDanceFloorConfetti.jpg" 800 1000 1200 0>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabs your arm excitedly. //"THIS IS MY SONGGGG!"// she squeals in your ear.
[[Great!|GNO-83100 Great!][$kateSays to "GREAT"]]
[[Owww!|GNO-83100 Great!][$kateSays to "OWW"]]
<</page>><<silently>>
<<if $kateSays == "GREAT">>
<<emote-mouth-wideSmile>>
<<emote-nose-wrinkle>>
<<emote-brows-raised>>
<<else>>
<<emote-brows-raised>>
<<emote-mouth-beam>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
//"$kateSays!"// you <<if $kateSays == "GREAT">>shout back<<else>>wince, laughing<</if>>.
<<image "/locationPhotos/thailand/sathorn/koiDancefloor.jpg" 110 1000 510 0>>\
You squeeze into a little pocket of space on the dancefloor, which somehow expands to give seven new girls just enough enough room to [[shake their asses to N'Sync|GNO-83110 Dirty pop]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Do you ever wonder why?<small>🎵</small>//
//<small>🎵</small>This music gets you high?<small>🎵</small>//
For a moment, you're separate from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>: they just slipped into dance mode so effortlessly, so uninhibitedly, that for a moment you're just watching them. Like a shy girl on the sidelines.
You don't need to be a trained observer to realise something important about them in this instant: they //love// dance, it's important to them.
You feel a twinge of nerves and self-doubt as you realise, if you're going to fit in...//<<link "I need to shake my ass like $zoe.firstName." "GNO-83120 Hesitating at the threshold">><</link>>//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A moment's hesitation...then you swallow down your nerves, push down the fear of being judged, and let your body just [[move to the beat|GNO-83130 Kate crosses the threshold]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Pulsing music and bright club lights wash over and through you as you let go, and move your body instinctively with the thudding bassline.
//<small>🎵</small>Feel–it–when–your–<small>🎵</small>//
//<small>🎵</small>Body starts to rock!<small>🎵</small>//
//<small>🎵</small>And baby you can't stop!<small>🎵</small>//
//<small>🎵</small>And the music's all you got!<small>🎵</small>//
There's no pole and their clothes are staying on, but each <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>'s individual dance style is just as sensual and erotic as when she's on stage: gyrating hips; shimmying butts; springy, bouncing boobs.
//[[Join in.|GNO-83140 Uninhibited]]//
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it.//
Your inhibitions hit the floor with your <<handbag>>, and you let your instincts take over. Your jitters melt away in the rhythm and pulse of the music as a new version of you comes to the fore: bold, sexy, artistic and on display.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
You're aware from time to time that guys are noticing you. But you're [[not doing it for them|GNO-83150 Hot bodies, bright lights]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-wideSmile>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
''10.49 <small>P.M.</small>'' Hot bodies, bright lights, loud music. Pop songs cross-fade into one another, each new beat and bassline making your bodies move in a new rhythm.
The dancefloor's packed. You keep bumping up against a European girl in a grey silk dress, dancing right behind you. The first couple of times, you smiled and apologised to each other, now you bump and brush against each other and hardly notice. [[Dancefloor buddies|GNO-83160 Other people are also here]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The she-wolves have occasional dancefloor flirtations with guys, and each other: a couple of times, you end up dancing sensuously close up to <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
It's just fun, although when you're doing it you're aware that guys must think it's hot. Like a very [[mild, innocent version|GNO-83170 Back to the bar]] of the girl/girl shows at the club.
<</page>><<silently>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
''11.11 <small>P.M.</small>'' Seven hot, sweaty she-wolves extricate themselves from the dancefloor and head back to the bar.
<<image "/locationPhotos/thailand/sathorn/koiBusyBar1.jpg" 100 1000 500 0>>\
You <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> up at the bar and wait. <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> causes some excitement when she gets her phone out of her bag. "We're doing [[missions|GNO-83180 Missions]]!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts in your ear.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You quickly figure out how this works: <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes up her phone, and it gives out a random, <<if $kate.agency == "cia" or $kate.agency == "csis">>bachelorette<<else>>hen<</if>> party-style dare.
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is the first victim. She watches with a nervous grin while $amanda.firstName [[shakes her phone|GNO-83190 Kiss from a hobbit]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/dare-kissAHobbit2.png" 0 1000 695 0>>\
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> can't read English; she laughs when <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains what she [[has to do|GNO-83200 Mem kisses a hobbit]].
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
She-wolfy gazes roam around for a target, eventually settling on an guy who looks like a <span class="imageLink"><<link "hobbit from Tokyo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/flodo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. It's possible he bought his flowery shirt in the kids' section.
He looks amazed to be approached by slender, graceful <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, towering over him in stripper heels. She has to bend down to shout in his ear, and again to [[kiss him on the lips|GNO-83210 Zoe's mission]], to the excited girly squeals of the she-wolf pack.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes up her phone to [[decide the birthday girl's fate|GNO-83220 Dare 2: autograph]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/dare-autograph.png" 0 1000 695 0>>\
It takes <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> longer to find a pen than to find a man [[willing to do this|GNO-83230 Sign your name on my heart]].
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You watch a <span class="imageLink"><<link "guy with big teeth">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chad.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cup $zoe.firstName's big, firm breast in one hand.
Enjoying himself and taking his time, he <span class="imageLink"><<link "signs his name on her body">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with a flourish.
She's posing for phone photos with him when <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes up her phone for <span class="imageLink"><<link "Jib's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[mission|GNO-83240 Jib's mission]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/dare-commando.png" 0 1000 695 0>>\
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> can't read English either, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has to shout in her ear to [[explain her mission|GNO-83250 How about my hair clip?]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughingly protests. You can't hear her words, but her reasoning's obvious: //I'm not wearing enough!//
She suggests taking off her hair clip – which <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> refuse to accept – then offers up a shoe.
The girls indicate they're okay with a shoe, but then Jib decides she doesn't want to hobble around for the [[rest of the night|GNO-83260 Commando]].
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> casts a look around the busy bar – then finally agrees to surrender her <<knickers>>.
Reaching up under her dress – right there in the <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> at the bar – she peels down a tiny, baby blue thong that she stuffs into her <<handbag>>.
"Your turn<<if $kate.agency == "mi6">>, Pommy<</if>>," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts. She [[shakes up her phone|GNO-83270 Kate's mission]]...
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/dare-kissAGirl.png" 0 1000 695 0>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grin at the look on your face: so do the Thai <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> once they're briefed on [[your mission|GNO-83280 Should you choose to accept it]].
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ping's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> trying to get served at the bar; <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> still posing for selfies with Big Teeth and his friends.
This feels a little bit like the anguish of your 7th birthday party, at McDonald's. You had to pick just //one// friend to tour the kitchen with.
Not to be egotistical – because you're //sure// it's not about you, just like it wasn't about seeing the stupid kitchen. But all the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are holding themselves just like your friends did when they were seven, holding their breath appealingly, pretending not to care but hoping to be chosen.
//<<link "Kiss $amanda.firstName." "GNO-83300 Kate kisses Amanda">><</link>>//
[[Not doing it.|GNO-83290 Not doing it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "Not doing it!"
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$gina.nickname ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span> <span class="redHighlighter">Mem ''disliked'' that.</span> <span class="redHighlighter">Jib ''disliked'' that.</span>
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pouts. "Don't be such a square!"
"It's just a laugh," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts.
[[I said no.|]]
<span class="greyedOut">//[Kiss $amanda.firstName]//</span> [[Fine.|GNO-83300 Kate kisses Amanda]]
<span class="greyedOut">//[Kiss $gina.nickname]//</span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your eyes just kind of drift naturally to <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. She's the one you know best.
She gives you a little nod, almost imperceptible, moves closer into your space.
There's a brief hesitation as, for a moment, you just look into each other's eyes. Then, slowly, she moves in for the kiss.
She smells like moisturiser and Coco Mademoiselle. Your noses brush then your [[lips gently meet|GNO-83350 Soft lips, soft skin]].
<</page>><<silently>>
<<emote-mouth-oh>>
<<emote-eyes-closed>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are hard, your pussy's wet, you're ready to fuck.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Soft lips, soft skin. Your lips press together, then her tongue's in your mouth, softly exploring. A hard little tongue stud contrasts erotically with her soft sensual kiss.
<<if hasVisited("GNO-67100 Kate drops Molly")>>Kissing someone when you're on Molly is the most incredible experience.<<else>>Kissing a girl is so much slower and softer and more affectionate than kissing a guy.<</if>> Your body tingles and your [[heart beats faster|GNO-83360 Breaking off]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Breaking apart, <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flashes you a cute little smile. Her blue eyes are sparkling and bright.
"Okay, $gina.nickname, [[you're next|GNO-83500 Time skip]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK placeholder
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK placeholder
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK placeholder
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
TK placeholder
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''11.35 <small>P.M.</small>'' You finish your prosecco; then knock down a shot that some guys have bought the she-wolves; then <span class="imageLink"><<link "one of Big Teeth's friends">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/craig.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presses a fresh cold beer into your hand.
"You girls are models, huh?" he shouts in your ear. "I'm in <div class="tooltip">crypto<span class="tooltiptext">digital currencies</span></div>, you know what that is?"
You're rescued by <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who grabs your hand and pulls you [[back out to the dancefloor|GNO-83560 Witching hour]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sneak off for a bathroom break. Several <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> come with you, so you dry swallow the benzedrine tablet in the privacy of a stall.
You don't feel anything [[right away|GNO-83520 Amphetamine sobriety]].
<</page>><<silently>>
<<emote-eyes-big>>
<<first>>
<<addNotification "Benzedrine rush" "You feel sober, but anxious and hyper-alert.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
''11.39 <small>P.M.</small>'' Back out in the club, the benzedrine hits you suddenly – a bubbling rush of excitement that makes you suck in a deep breath to steady yourself.
The alcohol brain fog vanishes, blasted away by sudden confident alertness. Now you've got different sensations to manage – big eyes, nervous energy – but <<if hasVisited("GNO-67200 Kate fakes dropping Molly")>>this will probably help you fake being on MDMA anyway<<elseif hasVisited("GNO-67100 Kate drops Molly")>>it might take the edge off the MDMA, too<<else>>you're alert enough to do that<</if>>.
You're pretty confident the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are too [[drunk and high|GNO-83560 Witching hour]] to notice anyway.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sip your beer, and resolve that any more shots tonight will get subtly ditched.
You're pretty sure the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are [[drinking too hard|GNO-83560 Witching hour]] to notice you slowing down.
<</page>><<silently>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
/* TK add a drug feedback
<<if hasVisited("GNO-83530 Slow down on the booze")>>
<<first>>
<<addNotification "Drunk" "You're feeling kind of drunk. But you're not wasted.">>
<</first>>
<</if>>
<<if hasVisited("GNO-83520 Amphetamine sobriety")>>
<<first>>
<<addNotification "Benzedrine buzz" "You feel energetic and happy!">>
<</first>>
<<elseif hasVisited("GNO-67100 Kate drops Molly")>>
<<first>>
<<addNotification "MDMA haze" "You feel blissed out and happy.">>
<</first>>
<</if>>
TK */
<<emote-mouth-sexy>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/koiRockingDanceFloor.jpg" 113 1000 513 0>>\
''12.07 <small>A.M.</small>'' Bright lights, writhing bodies, booming basslines. You throw yourself back into the music, dancing sexily with <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
Two much older <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> guys keep trying to dance into your space.
//[[Take a break.|GNO-83570 Chill break]]//
//[[Dance with them.|GNO-83700 Double dance]]//
<</page>><<silently>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You signal to <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> that you want to take a break, and she escapes the dancefloor with you, squeezing through the mass of bumping, bouncing bodies.
<<image "/locationPhotos/thailand/sathorn/koiChilloutRoom.jpg" 113 1000 513 0>>\
The club has a chillout balcony with an [[epic view|GNO-83580 Steph gossips]] over central Bangkok.
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
''12.16 <small>A.M.</small>'' "So $amanda.firstName and $zoe.firstName used to share a place." Buzzing on Molly and booze, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is chatting non-stop. "It was really nice, but then $zoe.firstName moved out suddenly. I probably shouldn't be telling you this."
[[It's fine, I won't say anything.|GNO-83590 Easy persuasion][$kateSays to "soulOfDiscretion"]]
<<link "Well you've //gotta// tell me now you've started." "GNO-83590 Easy persuasion">><</link>>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "soulOfDiscretion">>\
"It's fine, I won't say."
<<else>>\
"Well, you've gotta tell me now."
<</if>>\
"Okay...well. $zoe.firstName moves out to be with her new bloke. $amanda.firstName <div class="tooltip">did her block<span class="tooltiptext">got angry (Aussie slang)</span></div> 'cos she's gotta move out, no notice. Those two didn't speak for //weeks// and it's only just getting better again. $zoe.firstName could fix it all if she'd just apologise, but she can never admit she's in the wrong..."
[[Mm-hmm.|GNO-83600 Mm-hmm]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hmm." You murmur sympathetically, while filing away that little nugget of intel in case it'll be useful later.
"Alright chicks!" A <span class="imageLink"><<link "grinning, saucer-eyed Aussie bloke">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bruce.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presents himself. "I'm off my chops!"
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Same, mate."
"I just fuckin' landed. First night in Bangkok."
"Wow!"
"Stop me if I'm talking too much."
"Nah, mate, you [[need to tell us this|GNO-84000 One woman wolf pack]]..."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "One of the guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> dances in close and you just go with it, answering his moves with an instinctive swing of your hips.
He's //way// too old for you, but it's fun to dance. <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pairs off automatically with his friend, and to a thudding electropop bassline you're both [[dancing sexily|GNO-83710 Closer]] with two guys old enough to be your dads.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Soon <span class="imageLink"><<link "your guy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands are on you. Not like at the club, not straight for your chest, but fleeting electric little touches on your hands and wrists.
He pulls you in to talk to you a couple of times – as much as you can talk on a loud dancefloor, anyway. //"WHAT'S-YOUR-NAME?" "WHERE-YOU-FROM?"//
His hand [[lingers on your hip|GNO-83720 In for the kiss]] when he pulls you in like that. You can feel his big chunky fingers through your thin little skirt.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "All the touching is making you hot.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Silver Fox">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> touches your hip again, and pulls you close.
At first you think he's going to shout another question. Then you realise at the last moment he's moving in for a kiss.
//[[Dodge him.|GNO-83730 Denied]]
[[Make out.|GNO-83740 Old guy makeout]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
You turn away at the last instant, dodging the clumsy kiss and getting a cheekful of prickly stubble instead.
There's an awkward moment as you disentangle yourself from <span class="imageLink"><<link "Silver Fox's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grasp. <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabs your hand and the two of you slip away to a [[different corner of the club|GNO-84000 One woman wolf pack]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Stubble pricks your lips, then <span class="imageLink"><<link "Silver Fox's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tongue is in your mouth and his hands are on your ass.
He pulls you in close, squashing your <<if $kate.braSize == "small">>small <</if>>breasts against his chest, pressing his stirring erection [[against your belly|GNO-83750 Up for air]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are rock hard and your underwear's drenched.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
When you come up for air, you glance over at <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBagStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, not sure what she'll think. But when you look, she's busy making out with <span class="imageLink"><<link "her much older dance partner">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paulsFriend.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> as well.
<span class="imageLink"><<link "Silver Fox">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follows your gaze. He smiles and pulls you back in close for [[round two|GNO-83760 Round two]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
His hand cups your breast and his tongue invades your mouth. His cock is hard now and he's using the excuse of the dancefloor to grind it against your stomach.
He's not even your type and it feels almost like he's fucking you right there on the dancefloor.
//[[Break it off.|GNO-83770 Breakaway]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You gently disentangle yourself from <span class="imageLink"><<link "Silver Fox">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/paul.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. This time, <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiNoBagStiffNipples.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> also coming up for air.
She takes your hand and tugs you away from the two guys, who stare after you in confusion as you slip away from them like playful nymphs. "C'mon," $gina.nickname shouts in your ear. "Enough blokes like that [[in the club|GNO-84000 One woman wolf pack]]..."
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/koiBusyBar3.jpg" 213 1000 613 0>>\
''12.52 <small>A.M.</small>'' A <span class="imageLink"><<link "drunk Filipino guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/drunkFilipino.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is buying you a drink at the bar. You lost $gina.nickname a little while ago, and for now you're a one-woman she-wolf pack – until <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> appears suddenly on your shoulder. "Where are the others?" she shouts.
[[I don't know!|GNO-84010 IDK]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know!" you shout back with a shrug.
"Let's find them!" Ditching the Filipino guy, you join <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on a [[hunt for bargirls|GNO-84020 Hunting high and low]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/koiPodiumGirls.jpg" 160 1000 560 0>>\
There are raised podiums on the edges of the dancefloor, where groups of girls are having fun dancing for the crowd.
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> signals to [[climb up onto one|GNO-84030 Gaining the podium]] for a better view.
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> help each other clamber up onto the podium.
It's not easy to do this without flashing your underwear – or, in Mem's case, her //lack// of underwear – but you manage to get up there with your dignity [[mostly intact|GNO-84040 Sea of faces]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sathorn/koiSeaOfFaces.jpg" 160 1000 560 0>>\
Tugging your skirt back down, you gaze out over a sea of faces on the dancefloor, guys and girls half lit in blue and pink.
You try and spot a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> – sweeping the crowd in sectors, like you've been trained – but you can't see any familiar faces or dresses.
You're right next to a speaker. The bassy house beat of Dua Lipa's new song drops, so loud it vibrates up through your whole body.
//[[Dance.|GNO-84050 Podium dancer]]//
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
Instinctively you ditch your bag, and let your body move to the music.
Up here on the podium, it feels like you're up on a stage, dancing both for and with the crowd. Part of the sea of bodies, but also elevated from it, [[picked out and on display|GNO-84060 Rush]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
It's a fucking //rush// and every time you look out into the crowd there's a different set of eyes watching you shimmy and grind to the beat.
Some guys signal to you, some guys smile, mostly they just stare. Up against the podium, a group of Asian guys are making no secret of the fact they're enjoying the view up your skirt.
At least you're wearing underwear. <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBagStiffNipples2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> must be giving them a [[proper show|GNO-84070 Ping]]...
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Finally, a familiar face appears in the crowd. <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> elbows her way up to the podium, and climbs up on the rail to have a shouted conversation with <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBagStiffNipples2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
You dance while they talk – and the Asian guys cast lingering, wistful glances up all three of your hemlines.
Then Mem's climbing down from the podium, beckoning you to follow.
//[[Follow Ping.|GNO-84080 Follow Ping]]//
<</page>><<silently>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You grab your bag and climb down from the podium, helped by one of the Asian voyeurs.
Tugging your skirt back down around your thighs, you follow <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBagStiffNipples2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> through the [[busy club|GNO-106000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
Pulsing music and bright club lights wash over and through you as you let your inhibitions hit the deck with your <<handbag>>, and let your body move instinctively to the beat.
<span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Gina>> ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
TK describe dancing with the bargirls. Kate realises how much these girls //love love love// to dance.
[[Continue|GNO-83600 Hot bodies, bright lights]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
''10.49 <small>P.M.</small>'' Hot bodies, bright lights, loud music. Pop songs cross-fade into one another, each new beat making your bodies move in a new rhythm.
- TK Not the only hot girls in here, but attracting more male gaze. Bargirls leaning into it, Amanda and Zoe dirty dancing with each other while a hot guy in one of the private booths stares at them.
- Missions start! Amanda gets her phone out, Gina shouts “missions” in Kate’s ear.
- You quickly figure out how it works. <<Amanda>> shakes her phone and it gives a random, [[hen party-style dare|GNO-85000 Missions]].
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
''10.54 <small>P.M.</small>'' <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> has to kiss the shortest man in the room. She-wolfy gazes roam around for a target, eventually settling on an guy who looks like a Japanese hobbit, who might possibly have bought his flowery shirt in the kids' section.
She has to bend over to shout in his ear, and again to [[kiss his cheek|GNO-85100 Zoe's mission]] to the excited girly squeals of the she-wolf pack.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''10.57 <small>P.M.</small>'' <<Zoe>>'s mission is to get someone to autograph her chest. It takes her longer to find a pen than to find a man [[willing to do this|GNO-85200 Moosion]]. (Maybe describe him feeling her up while he's doing it) //Note: Zoe's dynamic avatar should now have a signature on her cleavage from now on//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''11.03 <small>P.M.</small>'' <<Amanda>> shakes the phone for Moo's mission:
<div style="text-align: center;">\
//<small>TIME TO GO COMMANDO.</small>//
</div>\
"This again!" she laughs. Moo reaches up under her (TK dress? skirt? etc), and briskly slides her <<knickers>> down, right there on the dance floor. She steadies herself on Jib's shoulder as she [[steps out of them|GNO-85300 Kate's mission]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''11.05 <small>P.M.</small>'' "Your turn!"
<<Amanda>> shakes her phone and shows you the screen. It says:
<div style="text-align: center;">\
//<small>PUCKER UP AND KISS A MATE.</small>//
</div>\
TK Kate can either refuse to do it (everybody ''dislikes'' that), or [[pick a bargirl|GNO-85500 Choop choop]] to kiss.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Kiss scene with the chosen bargirl. Soft hesitant lips, smooth skin, the smell of perfume and makeup, beauty on beauty. Vary this based on bargirl personality; <<Zoe>> might bite Kate's lip, <<Amanda>> might tilt her chin up with a finger, etc.
Aftermath and arousal buff for Kate. Diff bargirl high fives Kate
<<Amanda>> shakes up her phone to get [[Ping's mission|GNO-90000 Bar mission]]..
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''11.35 <small>P.M.</small>'' TK queueing at the bar for more drinks, Jib is buried in her phone as usual. She confides in Kate that she's messaging her new boyfriend.
– Kate has friendly/flirty/aloof dialogue (e.g. "how'd you two meet?" / "show me a photo, oh hot" / "does he know what you do?")
– Jib response
– It's your turn at the bar. A round of seven proseccos or peach punches costs just ฿350 (£7) for a girl to order on Ladies Night. The club isn’t making money from you, of course, it’s making it from all the men who want to be in the same place as the Ladies.
- You've been drinking since the afternoon and the she-wolf pack shows no sign of slowing down. You're getting kinda drunk.
– Kate can either [[keep drinking|GNO-100000 The witching hour]] or start secretly ditching booze
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''12.07 <small>A.M.</small>'' (//Drunk// notification if Kate kept drinking in the last decision point.) The she-wolf pack is losing cohesion. Gina and Ping are missing in action, and men keep dancing into your space and hitting on she-wolves even though it's GIRLS NIGHT.
//[[Dance with one of the guys.|GNO-100100 Dance floor Romeo]]
[[Take a break with Moo.|GNO-101000 Take a break with Moo]]//
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
Kate dances up against a hot Asian guy with shaggy, messy hair. Some shouted conversation ("WHATS-YOUR-NAME?" "WHERE-YOU-FROM?"), and he twirls her which is fun.
– Hot Asian Guy tugs her in close and tries to make out.
[[Pull away.|]]
(if drunk or on MDMA) [[Make out.|GNO-100200 Dance floor make out]]
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Kate makes out with the guy. Contrast his big stubbly face with the soft bargirl kiss from earlier.
[[Continue|GNO-102000 Lone wolf]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
– The club has a chillout area, couches and floor-to-ceiling windows looking out over the sprawling city at night.
– "Too loud," Moo complains. She checks her phone – messages from her babysitter.
– Friendly/flirty/aloof dialogue
– Moo response about her backstory
– Kate notices more Male Gaze, this time from two very young Thai teenagers. They remind Kate of Noodle.
– Kate notices Moo is preening for them.
- Friendly/flirty/aloof (smile / also preen / death glare )
– They don't have the courage to approach anyway
[[Continue|GNO-102000 Lone wolf]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''12.42 <small>A.M.</small>'' Drinking, dancing, shouted conversations. A succession of bathroom, bar, selfie station and DJ booth visits, combined with individual she-wolves being preyed upon by random guys, has totally broken up the pack. For the moment, you're a lone she-wolf.
– Wandering around, the first familiar face you spot is Moo. But she's in a booth, sitting between <<if hasVisited("GNO-101000 Take a break with Moo")>>the two Thai teen boys from the chillout room<<else>>two very young Thai teen boys<</if>>. One is scrolling morosely on his phone, the other is enthusiastically making out with her. His hand is up her dress, and you know she's not wearing underwear...is she letting that kid finger her?
– Then you see <<Zoe>> and <<Amanda>>, still dancing, up on a wide podium raised to the side of the dancefloor. It's lucky neither of them got the TIME TO GO COMMANDO mission from Amanda’s phone, as in their short skirts both bargirls are occasionally flashing their underwear to the room. Their bright lingerie glows in the club lights.
– <<Amanda>>'s face lights up when she spots a lost she-wolf. She beckons you up to [[join them|GNO-103000 Podium]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''12.48 <small>A.M.</small>'' //(note the avatar will be wearing a "flash" version of her outfit, with the hem hiked up to flash her underwear.)// It's not like you're the only girls up here in short skirts. You dance and grind with the two American bargirls, adding your knickers to the rainbow of lycra flashing the dance floor.
– Zoe’s dance moves all seem to involve throwing up her middle fingers up at anyone who looks at her. She’s wasted.
- Raised up above the dance floor, it feels like you’re suddenly attracting ten times the normal male gaze. Everywhere you look in the room there are bearded and clean-shaven and stubbly faces trying to catch your eye.
- You always thought that getting up on a podium to dance was kind of tacky. But now you’re trying it, you get the appeal. Like being a stripper, but you get to keep your clothes on. It’s kind of hot. (Arousal buff)
[[Continue|GNO-104000 Girl/girl show]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.02 <small>A.M.</small>'' Amanda’s hand slips onto your shoulder, pulls you in close. At first you think she wants to talk to you, but she just wants to dance together, close.
– Dirty dance with Amanda. Kate can be friendly/flirty/aloof (pull away)
– If she pulls away, Amanda tugs her back in by pulling on her dress sexily
– After a while she breaks it off, smiling enigmatically. [[What was that about?|GNO-105000 Wanna go to the VIP?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.06 <small>A.M.</small>'' A hot, athletic guy jumps right up to your space at the podium, grabbing onto the rail. Tall, blond and heroically built, he looks like a <span class="imageLink"><<link "Captain America with bad-boy arm tattoos">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Hey! You guys wanna [[come up to the VIP|GNO-106000 Title card]]?"
<</page>><<silently>>
<<set $header.line1 to "''VIP ROOM''",
$header.line2 to "THE CLUB AT KOI / MAY 2018">>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<a data-passage="GNO-106100 VIP room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/vipRoomTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.21 <small>A.M.</small>'' <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you up a roped-off staircase to a small, plush VIP room.
All the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are here, lounging on glam black couches and taking selfies. There are a few women you don't recognise – two young <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls in black dresses, a <span class="imageLink"><<link "blonde">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emily.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and a <span class="imageLink"><<link "redhead">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rose.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – and a Thai <span class="imageLink"><<link "club hostess">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/hostess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a tight red uniform.
There are also six guys up here; western-looking twentysomethings, mostly good looking, with the confident swagger of young men who know they belong in the VIP. Five are farang, one is black. It's quiet enough in here to talk, and their accents are [[American|GNO-106110 Hey Pommy]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> jumps up from her couch and gives you a hug. "We were looking for you! C'mon, meet the guys. This is Chris, Chris this is <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>..."
"Hey <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>." Waving up from his spot on the couch, Chris is tall, blond and heroically built, like <span class="imageLink"><<link "Captain America with bad-boy arm tattoos">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"That's Teo..." $amanda.firstName points to <span class="imageLink"><<link "the black guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sharing a couch with <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. He smiles at you without getting up. "And over there's [[Beau|GNO-106120 Fortunate son]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points out a square-jawed guy who could have come straight from <span class="imageLink"><<link "a casting call for a US Senator's son">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyBeau.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. He's sitting between the <span class="imageLink"><<link "young farang women">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/englishRoses.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and he doesn't look up to acknowledge you.
"No idea who those bitches are," $amanda.firstName uses 'bitch' to mean 'woman', so you don't think her word choice was an insult, but her tone is cattily dismissive. "And that's Beau's cousin <span class="imageLink"><<link "Grant">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyGrant.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; uh...<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>...and <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Guys, this is <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>> and Mem."
$amanda.firstName returns to her seat beside <span class="imageLink"><<link "Captain America">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. There are only a couple of empty spots on the couches for you to choose from.
//[[Sit with Cody.|GNO-106120 Kate sits with Cody]]
[[Sit with Rick.|GNO-106200 Kate sits with Rick]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After hours on your feet in borrowed heels, it feels great to sink down onto a plush black velvet couch.
"Hey, another model?" <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a firm, confident handshake. "Where're you from?"
<<if $kate.agency == "cia">>\
<span class="greyedOut">//[Lie]//</span> [[L.A., you?|GNO-106130 I'm from London]]
<<elseif $kate.agency == "mi6">>\
[[London, you?|GNO-106130 I'm from London]]
<<elseif $kate.agency == "asis">>\
[[Australia, you?|GNO-106130 I'm from London]]
<<elseif $kate.agency == "csis">>\
[[Canada, you?|GNO-106130 I'm from London]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand, you?|GNO-106130 I'm from London]]
<<else>>\
//ERROR IN KATE.AGENCY VAR! [[CONTINUE ANYWAY|GNO-106130 I'm from London]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"L.A.," you lie. <div class="tooltip">Snap covers<span class="tooltiptext">A spy's cover story, invented at short notice</span></div> are most convincing when the details you invent match the target's preconceptions. "What about you guys?"
<<elseif $kate.agency == "mi6">>\
"London. What about you guys?"
<<elseif $kate.agency == "asis">>\
"Australia. What about you guys?"
<<elseif $kate.agency == "csis">>\
"Canada. What about you guys?"
<<elseif $kate.agency == "nzsis">>\
"New Zealand. What about you guys?"
<<else>>\
//ERROR IN KATE.AGENCY VAR! [[CONTINUE ANYWAY|GNO-106130 I'm from London]]//
<</if>>\
"Harvard Business School," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "All of us, except <span class="imageLink"><<link "Grant">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyGrant.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
[[Impressive.|GNO-106140 Impressive]]
[[What does Grant do?|GNO-106150 What does Grant do?]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"Impressive." You unsling your bag, and tug ineffectually at your climbing hemline.
<span class="greenHighlighter">Cody ''liked'' that.</span>
"Thanks. Last semester was pretty hardcore, so, we're blowing off some steam. Drink?" <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lifts a bottle of <span class="imageLink"><<link "Gentleman Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sathorn/gentlemanJack.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from an ice bucket.
[[Small one, lots of Coke.|GNO-106220 Lemmy]]
[[Just ice.|GNO-106230 On the rocks]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After hours on your feet in borrowed heels, it feels great to sink down onto a plush black velvet couch.
"Hey." <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> offers you a shy smile and a slightly limp handshake. "<<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>, right?"
[[Right.|GNO-106210 Right]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"Right." You unsling your bag, and tug ineffectually at your climbing hemline.
"Cool, cool. Um..." <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> seems charmingly tongue-tied. "Want a drink?" He lifts a bottle of <span class="imageLink"><<link "Gentleman Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sathorn/gentlemanJack.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from an ice bucket.
[[Small one, lots of Coke.|GNO-106220 Lemmy]]
[[Just ice.|GNO-106230 On the rocks]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"What does <span class="imageLink"><<link "Grant">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyGrant.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> do?" You unsling your bag, and tug ineffectually at your climbing hemline.
"Oh, consulting. He's in energy." A 'consultant', a couple years older than you; these privileged guys are playing life on easy mode. "Drink?" <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lifts a bottle of <span class="imageLink"><<link "Gentleman Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sathorn/gentlemanJack.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from an ice bucket.
[[Small one, lots of coke.|GNO-106220 Lemmy]]
[[Just ice.|GNO-106230 On the rocks]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Small one. Lots of Coke."
"Say when." <<if hasVisited("GNO-106120 Kate sits with Cody")>><span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> fixes you a Gentleman Jack & Coke on ice. It goes down like a pleasant-tasting alcoholic cough syrup.
"So, $zoe.nickname said you guys are here on a [[fashion shoot|GNO-106240 Chilling in the VIP]]...?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks. Just ice."
<<if hasVisited("GNO-106120 Kate sits with Cody")>><span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> pours you a generous shot of Gentleman Jack on the rocks. You take a tiny sip and it burns in the back of your throat.
"So, $zoe.nickname said you guys are here on a [[fashion shoot|GNO-106240 Chilling in the VIP]]...?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.57 <small>A.M.</small>'' This is a nice, chilled out way to end the night – hanging out in the VIP with some guys your own age, <<if hasVisited("GNO-106220 Lemmy")>>drinking free Jack & Cokes<<else>>sipping free bourbon<</if>>, enjoying the <<if hasVisited("GNO-67100 Kate drops Molly")>>tingly Molly haze<<else>>warm alcoholic buzz<</if>>.
<<if hasVisited("GNO-106120 Kate sits with Cody")>>\
You circulate a little – mostly between <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and his friend <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's a little more shy and sweet. "So my mom used to be a model," he's telling you, "back before she met my old man, I'm talking the nineties..."
<<else>>\
You circulate a little – mostly between <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and his friend <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's a little more cocky and funny. "I'm serious," he's telling you, "if you're coming back to the afterparty, you need to sign a pre-nup..."
<</if>>\
"Hey." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes over to talk to you. There's nowhere to sit, so she perches on [[Cody's lap|GNO=106250 Cody's lap]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"We're gonna go party with these guys," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> taps her nose to imply cocaine.
"Sweeet," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, his hands resting comfortably on her hips. "Let's get some fuckin' <div class="tooltip">yayo<span class="tooltiptext">cocaine</span></div>."
"Where from?" <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"We [[know a guy|GNO-130000 Title card]]," $amanda.firstName promises.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.19 <small>A.M.</small>'' After hours on your feet in heels, it feels great to relax on a plush black velvet couch.
– You end up perched on a three-seater between <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. They're a couple years younger than you, radiating cocky Ivy League confidence.
– Interaction with the guys. "So what kind of modelling do you do."
– "Nice, nice." Not really listening. "We're studying at Yale. More vodka?"
– <<Amanda>> getting on well with <span class="imageLink"><<link "Captain America">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <<Zoe>> getting on well with <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
– Competitor girls being edged out, looking pissed off
— <<Amanda>>: "Want us to bring our friends up?" "Uh...are they girl friends?" "Yeah," she smiles. "[[More models|GNO-115000 More models]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.44 <small>A.M.</small>'' The she-wolf pack has taken over the VIP – minus Moo, who's nowhere to be found and who isn't reading her LINE messages.
– Kate can either gossip that she saw Moo making out with some guy, or keep it to herself.
– After hours of dancing, it's a nice, chilled out way to end the night – hanging out in the VIP with some guys (almost) your own age, drinking expensive vodka, enjoying the [[warm alcoholic/MDMA buzz|GNO-120000 Hit on]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''1.57 <small>A.M.</small>'' "So my mom used to be a model," <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is telling you, "back before she met my old man, I'm talking the nineties..."
– Across on another couch, <<Amanda>> and <<Zoe>> are hooking up with <span class="imageLink"><<link "Captain America">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Lots of whispering, giggling and touching. <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is hitting on Jib and <<Gina>>.
– Rick is just talking to you, he hasn't made a move. Pleasant contrast to the club, being talked to instead of just objectified and groped. Nice to be [[back on a pedestal|GNO-125000 Closing time]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''2.12 <small>A.M.</small>'' "You girls coming back to ours?"
– <<Amanda>> and <<Zoe>> are. Jib, <<Gina>>, Ping are all "nah"
"Come //onnn,"// <<Amanda>> tells you. "Night's [[still young|GNO-130000 Title card]]."
<</page>><<silently>>
<<set $header.line1 to "''SATHORN SQUARE''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<a data-passage="GNO-130100 The breaking of the fellowship">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/sathornSquareNightTitleCard2.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''2.26 <small>A.M.</small>'' It's still warm in the streets outside the club. Not everyone's going back to the afterparty; <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> head off to find some street food, and <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets picked up by her boyfriend, a <span class="imageLink"><<link "sullen-looking Thai">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jibsBoyfriend.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> riding a beat-up GPX motorbike.
There are hugs and goodbyes with the departing <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>; then <span class="imageLink"><<link "the VIPs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoys.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lead you over to two premium Grab cars they have on standby.
<<image "/locationPhotos/thailand/sathorn/toyotaFortuner.jpg" 220 1000 570 0>>\
You climb in the back of a brand new Toyota Fortuner and head across town to [[their place|GNO-140000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''GRABCAR PREMIUM''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
''2.42 <small>A.M.</small>'' The big SUV rolls east, on and on through the city streets. <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabbed the chance to jump in beside you; <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Captain America">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are sat in front of you.
"You know what we need right now is some blow," Cody is saying.
"We [[know a guy|GNO-140000 Title card]]," <<Amanda>> promises.
<</page>><<silently>>
<<set $header.line1 to "''WATTHANA''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="GNO-140100 Watthana">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/watthana/watthanaNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''2.56 <small>A.M.</small>'' The SUVs drop you off at the base of a luxury serviced apartment tower in Watthana District.
"Hear you can get us some <div class="tooltip">blow<span class="tooltiptext">cocaine</span></div>?" <span class="imageLink"><<link "Grant">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyGrant.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks as he swipes into the building.
"Uh huh," smiles <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Fuck yeah, we can!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> squeals, her voice way too loud for 3 <small>A.M.</small> "Let's [[get Kob out of bed|GNO-140200 Waking the toad]], hahahah!"
<</page>><<silently>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/servicedApartment.jpg" 220 1000 570 0>>\
''3.06 <small>A.M.</small>'' <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the phone to the drug dealer you met earlier, but it's not going well. "Oh c'mon, Kob, //pleaaase,// it's just Watthana..."
"We'll pay," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> assures her, "tell this guy we're good for the money."
"Yeah, yeah, she's here. Hold on." $amanda.firstName passes her phone to you.
<span class="greyedOut">//[Answer it]//</span> [[Hello?|GNO-140300 Hey new girl][$kateSays to "Hello?"]]
<span class="greyedOut">//[Answer it]//</span> [[Hey Kob.|GNO-140300 Hey new girl][$kateSays to "Hey Kob."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Heyyy, New Girl." He coughs to clear his throat. His voice sounds husky, like he just woke up. "Out late, uh?"
"She's got this," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is promising the room. "My girl's got a silver tongue, check this out..."
"I already dropped off to you once," Kob complains. "I'm not driving out to fuckin' //Watthana// at three in the morning."
[[What are you, eighty?|GNO-140305 Are you eighty Kob]]
<<link "//Please,// Kob?" "GNO-140310 Pleeease Kob">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-smirk>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are you, eighty? Come //on."//
<span class="greenHighlighter">Kob ''liked'' that.</span>
<<include "GNO-140311 Kob requests a tit pic">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//"Pleaaase,// Kob?" you whine.
<<include "GNO-140311 Kob requests a tit pic">>
<</page>>He groans. //"Maybe.// Send me a photo of your tits, I'll think about it."
[[Seriously?|GNO-140313 Seriously?]]
[[If I do it, will you come out?|GNO-140316 Trained negotiator]]
[[Not happening.|GNO-140318 Not happening]]<<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Seriously?"
"Yeah. I need something to wake me up."
[[Okay.|GNO-140315 Okay]]
[[If I do it, will you come out?|GNO-140316 Trained negotiator]]
[[Not happening.|GNO-140318 Not happening]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You glance around the room. Everybody's looking at you hopefully. "Okay," you murmur.
<span class="greenHighlighter">Kob ''liked'' that.</span>
"I'll call you back." He kills the call.
<<include "GNO-140320 Amanda's expectant brows">>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"If I do, will you come out?"
"If you do, I'll get out of bed."
[[Okay.|GNO-140315 Okay]]
[[Don't need you out of bed, I need you in Watthana.|GNO-140317 Don't need you out of bed]]
[[Not happening.|GNO-140318 Not happening]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't need you out of bed. I need you in Watthana."
"One thing at a time, uh? Come //on,// it's just a tit pic."
[[Okay.|GNO-140315 Okay]]
[[Not happening.|GNO-140318 Not happening]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not happening," you insist.
"Okay." He yawns. "Goodnight, New Girl."
[[Wait, I'll do it.|GNO-140319 Wait I changed my mind]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wait wait wait." You glance around the room. Everybody's looking at you hopefully. "It's fine, I'll do it."
<span class="greenHighlighter">Kob ''liked'' that.</span>
"Yeah? Alright, I'll call you back." He kills the call.
<<include "GNO-140320 Amanda's expectant brows">>
<</page>><span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> makes question marks with her eyebrows.
[[He's gonna call back.|GNO-140320 He'll call back]]<<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He's gonna call back."
<span class="greenHighlighter">Everyone ''liked'' that.</span>
[[Where's the bathroom?|GNO-140325 Where's the bathroom]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Where's the bathroom?"
<span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stands up. "I'll show ya."
//[[Take the selfie on your phone.|GNO-140330 Kob has Kate's number]]
<<link "Borrow $amanda.firstName's." "GNO-140335 Kate borrows Amanda's phone">><</link>>//
<</page>><<silently>>
<<emote-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
You copy Kob's number onto your iPhone, then give <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> her phone back.
<span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shows you to [[the bathroom|GNO-140340 Bathroom break]].
<</page>><<silently>>
<<emote-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
You hold on to <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> phone. She notices, but doesn't say anything.
<span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shows you to [[the bathroom|GNO-140340 Bathroom break]].
<</page>><<silently>>
<<set $header.line1 to "''BATHROOM''",
$header.line2 to "SERVICED APT / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/luxuryBathroom.jpg" 200 1000 600 0>>\
It's floor-to-ceiling marble opulence. Your heels click loudly on the tiles.
<<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>\
//<<link "Look through $amanda.firstName's phone." "GNO-140350 Kate checks out Amanda's phone">><</link>>//
<</if>>\
//[[Take the selfie.|GNO-140360 Take the selfie]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\:: passageName
<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Content
<</page>>
<<header>>\
<<page>>\
Sitting on the <<if $kate.agency == "mi6">>loo<<else>>toilet<</if>>, you swipe quickly through $amanda.firstName's unlocked phone, looking for intel.
<<if not hasVisited("GNO-140351 Appmanda")>>\
//[[Check out her apps.|GNO-140351 Appmanda]]//
<</if>>\
<<if not hasVisited("GNO-140352 Messengers")>>\
//[[Check out her messages.|GNO-140352 Messengers]]//
<</if>>\
<<if not hasVisited("GNO-140353 Photos")>>\
//[[Check out her photos.|GNO-140353 Photos]]//
<</if>>\
<<if hasVisited("GNO-140351 Appmanda") and hasVisited("GNO-140352 Messengers") and hasVisited("GNO-140353 Photos")>>\
//[[Take the selfie.|GNO-140360 Take the selfie]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Apps can tell you a lot about a person. $amanda.firstName has the usual things you'd expect: <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div>, Grab, Spotify, Insta.
She's also got dating apps; dieting apps; various selfie apps; several farming games; a free daily horoscope; and a period tracker.
She has 8,069 unread emails and 40 apps waiting for software updates.
<<if not hasVisited("GNO-140351 Appmanda")>>\
//[[Check out her apps.|GNO-140351 Appmanda]]//
<</if>>\
<<if not hasVisited("GNO-140352 Messengers")>>\
//[[Check out her messages.|GNO-140352 Messengers]]//
<</if>>\
<<if not hasVisited("GNO-140353 Photos")>>\
//[[Check out her photos.|GNO-140353 Photos]]//
<</if>>\
<<if hasVisited("GNO-140351 Appmanda") and hasVisited("GNO-140352 Messengers") and hasVisited("GNO-140353 Photos")>>\
//[[Take the selfie.|GNO-140360 Take the selfie]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She mostly uses <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> for messaging. You don't have time to read through them all, so you swipe through various chats just in case something pops out.
It's mostly banal messages with other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, organising tonight. She's sexting intermittently with three or four different men. Those chats are mainly dick pics, //very// sexual nudes of $amanda.firstName, and occasional agreements to booty calls.
There's what looks like a bargirl chat group called //work bitches.// You swipe through it quickly – it's mostly just arranging shifts, but the <div class="tooltip">CTF<span class="tooltiptext">Combined Task Force</span></div> will definitely be interested in this. //Too bad I don't have a hack drive with me.//
<<if not hasVisited("GNO-140351 Appmanda")>>\
//[[Check out her apps.|GNO-140351 Appmanda]]//
<</if>>\
<<if not hasVisited("GNO-140352 Messengers")>>\
//[[Check out her messages.|GNO-140352 Messengers]]//
<</if>>\
<<if not hasVisited("GNO-140353 Photos")>>\
//[[Check out her photos.|GNO-140353 Photos]]//
<</if>>\
<<if hasVisited("GNO-140351 Appmanda") and hasVisited("GNO-140352 Messengers") and hasVisited("GNO-140353 Photos")>>\
//[[Take the selfie.|GNO-140360 Take the selfie]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Selfies, endless selfies. There are about fifty just from tonight.
You scroll up...more selfies. Some solo, some with $zoe.firstName or $gina.firstName, the occasional snap of <span class="imageLink"><<link "something cool in Bangkok">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/watthana/somethingCoolInBangkok.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
She takes nudes most days. The first couple you see are gorgeous, flattering shots in her mirror or her bathtub. Then – jarringly – $amanda.firstName posing naked on all fours, with her <span class="imageLink"><<link "hairbrush in her ass">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/watthana/amandasHairbrush.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//Ew, I think I borrowed that brush.//
<<if not hasVisited("GNO-140351 Appmanda")>>\
//[[Check out her apps.|GNO-140351 Appmanda]]//
<</if>>\
<<if not hasVisited("GNO-140352 Messengers")>>\
//[[Check out her messages.|GNO-140352 Messengers]]//
<</if>>\
<<if not hasVisited("GNO-140353 Photos")>>\
//[[Check out her photos.|GNO-140353 Photos]]//
<</if>>\
<<if hasVisited("GNO-140351 Appmanda") and hasVisited("GNO-140352 Messengers") and hasVisited("GNO-140353 Photos")>>\
//[[Take the selfie.|GNO-140360 Take the selfie]]//
<</if>>\
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-140350 Kate checks out Amanda's phone")>>\
A quick look's all you've got time for. You unsling your <<handbag>>, and switch to the camera app.
<<else>>\
You unsling your <<handbag>>, and switch to the camera app.
<</if>>\
As an intelligence officer, you're generally not crazy about being photographed. But you've already had to accept some of that for this mission, and Kob only asked for a boob pic. No need to get your face in the shot.
//[[Pull your top up.|GNO-140365 Bared]]//
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You tug up your top so your breasts are bare.
Your nipples are already kinda hard. //From the aircon.//
//[[Get them harder for the photo.|GNO-140370 Pinchy]]//
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "That feels good.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You spend a few moments flicking and tweaking and lightly pinching your nipples, until they're standing proud for the selfie.
//[[Take the photo.|GNO-140375 Snappy snaps]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With <<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>$amanda.firstName's<<else>>your<</if>> phone in selfie mode, you hold it up to your chest and snap away.
//Click!// Your breasts appear on the screen.
//Click!// Bad angle.
//Click!// Better.
//[[Pick the best one.|GNO-140380 Selection]]//
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Sitting down on the <<if $kate.agency == "mi6">>loo<<else>>toilet<</if>>, you swipe through the three shots.
The first one is a bit too square on; the angle in the second one makes your neck look a bit fat.
The third selfie's the most flattering.
//[[Send it to Kob.|GNO-140385 Swoosh]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tap //share// and select Kob's <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> ID as the target.
A field appears for you to add a caption.
//[[Call me back|GNO-140390 Shot, over][$kateSays to "Call me back"]]
[[Come to Watthana!|GNO-140390 Shot, over][$kateSays to "Come to Watthana!"]]
[[Pretty please x|GNO-140390 Shot, over][$kateSays to "Pretty please x"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your thumbs tap-tap-tap on the keyboard. <<if hasVisited("GNO-47800 Kate gets nail extensions")>>Surprisingly, your nail extensions don't seem to get in the way.<</if>>
//$kateSays<<if $kateSays != "Come to Watthana!">>,<</if>>// you type. A photo of your bare breasts is ready to go.
//[[Send it.|GNO-140395 Shot, out]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your thumb hovers over the screen for a moment...then comes down on the //send// button.
//Whoosh,// goes <<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>$amanda.firstName's<<else>>your<</if>> phone.
You stare at <<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>$amanda.firstName's <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> chat with Kob<<else>>the new <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> chat<</if>>. After a couple of seconds, <small>Read</small> appears next to your little topless thumbnail.
//[[Delete the selfies.|GNO-140400 Delete delete delete!]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You delete the three boob shots from <<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>$amanda.firstName's<<else>>your<</if>> photo library, then delete them from the trash.
//[[Also delete it from the LINE chat.|GNO-140405 Unsend]]
[[Just go back to the party.|GNO-140410 3.14]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tap and hold the topless thumbnail, and choose <small>Unsend</small> to delete it from the chat.
If Kob was quick, he might have saved the pic on his phone. But it's gone from this device.
//[[Go back to the party.|GNO-140410 3.14]]//
<</page>><<silently>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
''3.06 <small>A.M.</small>'' Back at the party, all eyes are on you when <<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>$amanda.firstName's<<else>>your<</if>> phone rings<<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>> again<</if>>.
<<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>\
She hands it straight to you.
<</if>>\
<span class="greyedOut">//[Answer it]//</span> [[Hello?|GNO-140415 Hello]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hello?"
"<<if $kate.braSize == "small">>Love the piercings.<<elseif $kate.braSize == "medium">><<if $kate.piercings.includes("nipplesSilverBarbells")>>Love the piercings.<<else>>You've got nice tits.<</if>><<elseif $kate.braSize == "large">>You've got //great// tits.<<else>>//ERROR IN KATE.BRASIZE VAR//<</if>>"
[[Thanks. You coming out?|GNO-140420 I know][$kateSays to "thanks"]]
<<if $kate.braSize == "large">>\
[[I know, you coming out?|GNO-140420 I know][$kateSays to "iKnow"]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"Thanks. You coming out?"
<<elseif $kateSays == "iKnow">>\
<<emote-mouth-smirk>>\
"I know." Guys have been telling you that since you were a teenager. "You coming out?"
<<else>>\
//ERROR IN KATESAYS.VAR//
<</if>>\
"Sure." It sounds like Kob's getting dressed. "If you throw in a little extra when I get there, why not."
[[You mean extra money?|GNO-140425 Extra money?]]
[[Um, okay.|GNO-140430 Um, okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"You mean more money?"
"No no no. Just, uh, you know. Make it worth my while. Okay?"
[[Um, okay.|GNO-140430 Um, okay]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are watching you with puppy dog eyes. "Okay." //What am I agreeing to?//
"Great. Put the cheerleader back on."
<<link "//Give $amanda.firstName her phone back.//" "GNO-145000 Drug deal">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How grateful?"
"Throw in a blowjob and I'll bring it."
[[Yep, no problem.|GNO-140350 Yep no problem]]
[[Uh...|GNO-140330 Uh...]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..."
"Take it or leave it."
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are watching you with puppy dog eyes.
[[Take it.|GNO-140340 Take it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..." you swallow nervously. "Take it."
<span class="greenHighlighter">Kob ''liked'' that.</span>
"Alright. Put the cheerleader back on."
<<link "//Give $amanda.firstName her phone back.//" "GNO-145000 Drug deal">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, yep." You swallow nervously. <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are watching you with puppy dog eyes. "No problem."
<span class="greenHighlighter">Kob ''liked'' that.</span>
"Alright. Put the cheerleader back on."
<<link "//Give $amanda.firstName her phone back.//" "GNO-145000 Drug deal">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yep, sounds good." //What am I agreeing t...//
"Grateful enough to throw in a blowjob," he clarifies.
[[Yep.|GNO-140350 Yep no problem]]
[[Uh...|GNO-140330 Uh...]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You hand the phone back to <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who finalises the deal with Kob and hangs up. "Twenty minutes," she tells the room with a grin. <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a fist bump.
<span class="greenHighlighter">Everybody ''liked'' that.</span>
"Okay, guys, we need <div class="tooltip">twenty k<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$600<<elseif $kate.agency == "mi6">>£400<<elseif $kate.agency == "asis">>$800<<elseif $kate.agency == "csis">>$800<<elseif $kate.agency == "nzsis">>$800<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>." <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> race off to find an ATM; the rest of you [[chill out drinking cold beers|GNO-145010 Preflection]] with MTV USA on in the background.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's a sense of upbeat anticipation while everybody drinks and waits for Kob.
<span class="imageLink"><<link "Beau">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyBeau.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> talks to you for the first time, asking you about your modelling career; so do the two English backpackers who tagged along from the club, <span class="imageLink"><<link "Liz">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emily.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Rose">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rose.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. It's just small talk, politely ingratiating themselves before the drugs arrive.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets you to take a photo of her on the couch with <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s hands on her; <span class="imageLink"><<link "Grant">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyGrant.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> seems to be pairing off with the Thai <span class="imageLink"><<link "club hostess">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/hostess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, still wearing her red uniform; <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is making <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laugh, but you notice her eyes are often on Beau.
//[[Wait for Kob.|GNO-145020 Waiting for Kob]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sip your beer and bounce your foot anxiously. Kob made you agree to 'a little extra' – what did that mean?
With a dozen people listening in to your end of the call, you didn't feel like you could say much.
It's obviously some kind of [[sexual favour|GNO-145021 Preauthorised]]. Kob thinks you're all sluts – that's what he said when he arrived at $amanda.firstName's, //Hi sluts.// You take a nervous swig of your beer. How far will he expect you to go?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Mike Dodaro's words keep coming back to you. //You're pre-authorised for other sexual relationships. No approval needed...//
Blowing the <div class="tooltip">bargirls'<span class="tooltiptext">club prostitutes</span></div> drug dealer can't be what he meant...or is it?
The whole point of coming out tonight was to make them like you, and they all seem [[pretty happy with you now|GNO-145030 You okay?]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Hey...Earth to <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets your attention. "You look miles away."
Maybe you could ask her what to do about Kob. Or maybe that'd be woefully uncool.
[[Can I have a word with you a second?|GNO-145040 Can I have a word?]]
[[Heh, sorry, just thinking.|GNO-145110 Just thinking]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um, can I talk to you about something?"
"Sure." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stands and stretches. "Let's [[get some air.|GNO-145050 Balcony heart to heart]]"
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $header.line1 to "''BALCONY''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Out on the balcony, most of the city's asleep. The streets below are as dark and quiet as they were the black bag job.
<<image "/locationPhotos/thailand/watthana/watthanaDarkNight.jpg" 150 1000 550 0>>\
"What's up?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Kob asked me for something 'extra'.|GNO-145060 Kob wants an extra]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well...Kob asked me for something 'extra' when I pick up.<<if hasVisited("GNO-140425 Extra money?")>> He didn't mean money.<</if>>"
"Ohhh. Yeah, he's, uh..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lowers her voice, even though the balcony doors are shut. "Well, you know. It's kind of ass for grass out here."
[[But we're paying him.|GNO-145070 But we're paying him]]
[[What's he expecting?|GNO-145080 What does he want?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But we're paying him."
"Yeah, yeah. It's not every time he drops off, just...for favours. Y'know, like, if you need a discount. Or coming out at 3 <small>A.M."</small>
[[What's he expecting?|GNO-145080 What does he want?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"What'll he want?"
"Honestly. Quickie BJ'll be fine." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says that like it's nothing...and for a <<if hasVisited("GNO-140353 Photos")>>girl who takes selfies with her hairbrush up her ass<<else>><div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div><</if>>, it probably is.
<<link "Do I //have// to?" "GNO-145090 Must I?">><</link>>
[[Okay, just checking, thanks.|GNO-145100 Okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do I //have// to?"
"We've all done it." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods her head back into the party. "C'mon, it's not a big deal."
[[Ugh, fine.|GNO-145100 Okay]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-145090 Must I?")>>\
"Ugh. Fine."
<<else>>\
"Okay. Just checking. Thanks."
<</if>>\
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"<<if hasVisited("GNO-145090 Must I?")>>That's the spirit.<<else>>No problem.<</if>> Come on, let's get you another beer, [[loosen you up|GNO-150000 Kob's here]]..."
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry. Lost in thought."
You stop worrying about Kob, and switch back in to the conversation. It's just the usual party chit chat: boys trying to impress girls, no intel value.
Sitting on the couch, your tight skirt keeps riding up. It feels like every inch of your legs is on display. At different moments, you notice <span class="imageLink"><<link "each of the guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoys.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[stealing glances|GNO-150000 Kob's here]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-140335 Kate borrows Amanda's phone")>>\
''3.31 <small>A.M.</small>'' <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> phone pings. "Kob's nearly here," she announces.
<<else>>\
<<emote-mouth-talking>>\
''3.31 <small>A.M.</small>'' Your phone pings. "Kob's nearly here," you announce.
<</if>>\
"Fuckin' A," <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands you the <div class="tooltip">฿20K<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$600<<elseif $kate.agency == "mi6">>£400<<elseif $kate.agency == "asis">>$800<<elseif $kate.agency == "csis">>$800<<elseif $kate.agency == "nzsis">>$800<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, a little wedge of crisp fresh brown and violet banknotes.
[[Back soon.|GNO-150010 White knight]]
[[What car does he drive?|GNO-150001 What car?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What car does he drive?"
"Silver little thing," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Think it's a Honda?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds.
[[Back soon.|GNO-150010 White knight]]
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." Standing up from the couch, you smooth down your skirt. "Back soon."
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stands up, too. "I'll go with," he offers.
[[I'll be fine, don't worry.|GNO-150020 I'll be fine]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
"I'll be fine," you tell him, slinging on your bag. "Don't worry."
"You sure?" <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't look keen on letting you go down alone.
[[I'll be back before you know it.|GNO-150030 Kate refuses an escort][$kateSays to "brb"]]
[[Might freak him out if he sees someone new.|GNO-150030 Kate refuses an escort][$kateSays to "streetwise"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "brb">>\
"I'll be back before you know it."
"Well...okay. Be careful." You're not sure if <span class="imageLink"><<link "Rick's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> concerned for your safety, or about you running off with the money, or just wanted to go on an adventure with you.
<<else>>\
<<emote-mouth-talking>>\
"Yeah. Might freak him out if he sees someone new."
"Hrm. Well...be careful." You're not sure if <span class="imageLink"><<link "Rick's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> concerned for your safety, or about you running off with the money, or just wanted to go on an adventure with you.
<</if>>\
But, whatever you're about to do with Kob...you definitely [[don't want an audience|GNO-155000 Kate goes downstairs]].
<</page>><<silently>>
<<set $header.line1 to "''APARTMENT BUILDING''",
$header.line2 to "WATTHANA / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/nightCorridor.jpg" 220 1000 520 0>>\
//At least I'm not wearing a camera this time.// The grey hallways are quiet and eerie.
Your heels thump softly on the carpets as you [[walk through them alone|GNO-155100 Street walker]].
<</page>><<silently>>
<<set $header.line1 to "''WATTHANA STREETS''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Stairs lead down to the lobby. Even at three in the morning, the air feels warm when you step out into the street.
The <div class="tooltip">soi<span class="tooltiptext">street</span></div> is quiet, lined with parked cars.
There's no sign of Kob yet.
<<if hasVisited("GNO-150001 What car?")>>\
//[[Wait for a silver hatchback.|GNO-155110 Vulnerable]]//
<<else>>\
//[[Wait for Kob.|GNO-155110 Vulnerable]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stand around in the warm night, bathed in the glow of a street lamp, trying your best to not look like a hooker waiting for business.
Headlights turn into the <div class="tooltip">soi<span class="tooltiptext">street</span></div>. You look up hopefully...but it's just a laundry van.
Dark, gimlet eyes check you out as it rumbles past. Instinctively, you cross your arms over your chest.
//[[Keep waiting...|GNO-155120 The wait]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The laundry van disappears, and the night returns to stillness.
Standing alone in the street at night, wearing skimpy clothes, you feel self-conscious and vulnerable.
//Where the hell is he?//
Nowhere. A <div class="tooltip">soi dog<span class="tooltiptext">"street dog"; more than 300,000 strays live wild in Bangkok</span></div> slinks by on the other side of the street.
Finally, [[new headlights|GNO-155130 Sporty hatchback]] turn into the junction.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A sporty silver car cruises slowly up the <div class="tooltip">soi<span class="tooltiptext">street</span></div>.
//Silver Honda Civic, <<if $kate.agency == "cia" or $kate.agency == "csis">>sport compact<<else>>sport hatchback<</if>>.// You got good at recognising car models when they trained you in counter-surveillance.
It flashes its headlights as it passes you, then pulls into a gap a little further along.
//[[Approach the car.|GNO-155200 Hot hatchback]]//
<</page>><<silently>>
<<set $header.line1 to "''KOB\'S CAR''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Your heels ring out on the <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalk<<else>>pavement<</if>> as you approach.
<<image "/locationPhotos/thailand/watthana/hondaCivic.jpg" 60 1000 450 0>>\
Circling around to the passenger side, you check out the interior as you go.
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s alone in the car – no surprises lurking on the backseat.
//[[Climb in.|GNO-155210 Climb in]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/redLEDInterior.jpg" 50 1000 500 0>>\
The interior lights up in red LED, lending <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s smile a diabolic air. "Heyyy, $kate.stripperName."
[[Hey, Kob.|GNO-155212 Hey Kob][$kateSays to "heyKob"]]
[[Hey.|GNO-155212 Hey Kob][$kateSays to "hey"]]
[[Hey. You got the stuff?|GNO-155212 Hey Kob][$kateSays to "uHolding"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "heyKob">>\
"Hey, Kob." You climb in and shut the door.
<<elseif $kateSays == "hey">>\
"Hey." You climb in and shut the door.
<<elseif $kateSays == "uHolding">>\
"Hey." You climb in and shut the door. "Got the stuff?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<if $kateSays == "uHolding">>"Uh huh." <</if>><span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches over to touch your bare thigh. His fingers roam casually over your leg as you unsling your bag. "Wanna do a <div class="tooltip">bump<span class="tooltiptext">a small hit of cocaine</span></div> first?"
[[Okay.|GNO-155270 Kate does a bump]]
[[I'm good.|GNO-155220 No thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Unslinging your bag, you shake your head. "I'm good." Your hemline climbs up your legs and you instinctively give it a tug. Your hand bumps his as it roams up your thigh.
"C'mon. You're picking up, you gotta try it."
<span class="greyedOut">//[Shrug]//</span> [[Okay.|GNO-155270 Kate does a bump]]
[[I'll do it at the party.|GNO-155230 I'll do it at the party]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll do it at the party."
<span class="yellowHighlighter">''Minor increase'' to Suspicion Level.</span>
"Whatever." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches up and gropes your breast, squeezing it through $zoe.firstName's stretchy black top. "C'mon then, <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>."
[[I'm not a bargirl.|GNO-155245 Not a bargirl]]
//[[Blow Kob for the drugs.|GNO-155235 Blow kob for the drugs]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
One last glance around the empty <div class="tooltip">soi<span class="tooltiptext">street</span></div>. <<if hasVisited("GNO-155245 Not a bargirl")>>He tugs your nipple insistently. <</if>>You weren't sure you could go through with it but, in the heat of the moment, you realise you can.
<span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
You shuffle into a better position. <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches down and reclines his seat, giving you the space you need to work.
Your eyes meet as you curl your fingers into the waistband of his track pants.
//[[Pull them down.|GNO-155240 Kob's cock]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tug them down. He's not wearing underwear and his cock just pops out, small and <<if $kate.agency == "cia">>uncircumcised and <</if>>semi-erect, jutting up from a trimmed patch of jet black pubic hair.
//[[Lick your lips and suck.|GNO-155325 First contact]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>."
"Whatever," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says again. His fingertips squeeze your stiff nipple through $zoe.firstName's top. He tugs on it casually, drawing you towards him.
<span class="greyedOut">//[Swat him away]//</span> [[Not doing it.|GNO-155250 Not doing it]]
//[[Blow Kob for the drugs.|GNO-155235 Blow kob for the drugs]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You swat his hand away. "Stop."
"Huh?" <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks confused. "What's wrong?"
[[You're getting ฿20K and a topless photo, that's enough.|GNO-155255 Already paid]]
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I brought twenty grand //and// I sent you a topless photo. I'm not //blowing// you as well."
"<div class="tooltip">Thai thai thai<span class="tooltiptext">For fuck's sake</span></div>. Alright, fine, you can keep <div class="tooltip">a thousand<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. If you do it topless."
[[I'm not for hire!|GNO-155260 Not for hire]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not for hire!" you insist.
"<div class="tooltip">Thai thai thai<span class="tooltiptext">Fuck me</span></div>." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks at you in confoundment. "Who's up there? $zoe.stripperName up there?"
[[Yeah.|GNO-155265 Kob calls Zoe][$kateSays to "yeah"]]
[[Why?|GNO-155265 Kob calls Zoe][$kateSays to "why"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yeah">>\
<<emote-brows-calm>>\
"Yeah."
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grunts, pulls out his phone, and dials a number.
<<elseif $kateSays == "why">>\
"Why?"
Ignoring you, <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls out his phone and dials a number.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Hey, Brown Sugar. Yeah yeah, fine. Just need you down here, okay? Good girl, [[chop chop|GNO-155270 Zoe is the cavalry]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you the silent treatment while you wait in the car.
After a couple of minutes, the apartment doors open and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> steps out into the night.
She glances around the <div class="tooltip">soi<span class="tooltiptext">street</span></div>. Kob flashes his headlights, and she [[walks over|GNO-155275 What's up?]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Red strappy heels click on <<if $kate.agency == "cia" or $kate.agency == "csis">>asphalt<<else>>tarmac<</if>>. <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rolls down his window, and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans in like a hooker.
Her eyes flicker from you to Kob. "What's going on?"
<<link "Kob wants twenty grand, a topless photo, //and// a blowjob. I told him to go fuck himself." "GNO-155280 Kob wants the earth">><</link>>
//[[Let Kob explain it.|GNO-155285 Kob explains]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Kob wants twenty grand, a topless photo, //and// a blowjob. It's ridiculous, I told him to go fuck himself."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
She snickers at that. "You see what I'm fucking dealing with?" <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains.
"No problem," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "$kate.stripperName, get in the back."
[[Fine.|GNO-155290 Swap sluts]]
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
"Absolutely nothing," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "that's the problem. Little Miss Cocktease here won't do shit. Even offered her a grand."
<span class="yellowHighlighter">''Minor increase'' to Suspicion Level.</span>
"Yeah?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks at you curiously. "$kate.stripperName, get in the back."
[[Fine.|GNO-155290 Swap sluts]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-pout>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
"Fine." You grab your bag, step out into the night, and slither onto the backseat.
"She's a buzzkill," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains to $zoe.firstName, as she takes your place in the passenger seat.
"She's new, don't worry about it." $zoe.firstName casually <span class="imageLink"><<link "tugs down the front of her dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, baring her <<if $kate.braSize != "large">>big, round <</if>>breasts. "Tell you what..."
She leans over the centre console, puts her lips to his ear, softly murmuring.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Perception check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 5>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Perception check.'' Target: 6. You rolled: (_kateD10+1) = <<= _kateD10+1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You only catch a few words. //"Girl/girl...when Mister K..."//<br />
<br />
Whatever it is, Kob likes it. His dark eyes look at you, then back to $zoe.firstName. "Okay," he grins. "[[Okay|GNO-155295 Shut me up]]."
<<else>>
You don't hear what she says...but Kob likes it. His dark eyes look at you, then back to $zoe.firstName. "Okay," he grins. "[[Okay|GNO-155295 Shut me up]]."
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+1<span class="tooltiptext">+1 //Perception//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins at him, then reaches down to tug on <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> track pants. "//Mmmm,// Kob," she coos, curling her fingers around his shaft. "I want you to //fuck// my mouth, baby. I'm a dirty little bitch...mmph!"
Kob grunts with pleasure as he pushes $zoe.firstName's head down into his lap.
Then the car goes quiet except for the wet [[sucking and slurping sounds|GNO-155300 Eat it]] of soft lips on a hard dick.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Thai thai thai<span class="tooltiptext">Oh yeah, that's it</span></div>," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "<div class="tooltip">Thai thai thai<span class="tooltiptext">Suck it, you black bitch.</span></div>"
//Shlup, shlurp, squelch, shlup.// <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mouth bobs up and down in his lap. He reaches under her to play with her boobs, cupping and squeezing them, pinching her nipples.
She murmurs encouragingly, voice muffled on his cock. Kob's dark eyes meet yours in the rearview.
//[[Look away.|GNO-155305 Look away]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
You pointedly look away, gazing out into the quiet street.
It goes on for [[several long minutes|GNO-155310 Vinegar strokes]]...soft wet squelching and muffled, feminine moans.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Finally, <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finds his voice, grunting with pleasure as his orgasm approaches.
The slurping of <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lips turns into a staccato rhythm of little chokes and gasps as Kob takes over, holding her down with two fistfuls of hair, humping her mouth.
"I'm coming," he warns breathily. "Oh yeah, here it comes. Here it fucking comes. You [[black fucking bitch|GNO-155315 Kob money shot]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Holding her down, <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> groans while he comes in her mouth.
"<div class="tooltip">Thai thai thai<span class="tooltiptext">Fuck...fuck...</span></div>..." he murmurs, savouring the sensation, holding her hair in his fists. With flushed cheeks, his eyes meet yours again in the rearview.
He holds $zoe.firstName down in place for several more seconds, getting his breath back. Then, finally, he [[lets her up for air|GNO-155320 Up for air]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Looking <span class="imageLink"><<link "a little bedraggled">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, $zoe.firstName sits up. "God," she protests. "Now I'm fucking horny."
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sniggers, and paws her breast. "Some dude from the party's going balls deep in that pussy, huh."
"Definitely," she agrees.
"You're a fuckin' //slut.// Okay...Buzz Kill," he addresses you over his shoulder, "give me the cash."
//[[Give him the ฿20K.|GNO-155325 Pay the man]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smacks <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> ass as she climbs out into the night with the drugs.
You pass him the <div class="tooltip">฿20K<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$600<<elseif $kate.agency == "mi6">>£400<<elseif $kate.agency == "asis">>$800<<elseif $kate.agency == "csis">>$800<<elseif $kate.agency == "nzsis">>$800<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. He counts it quickly, then adds it to his money roll.
"Next time you score from me, you're sucking my cock. Got it?"
[[Whatever.|GNO-155326 Whatever Kob]]
[[Fuck you.|GNO-155327 Fuck you Kob]]
[[Never gonna happen.|GNO-155328 Never gonna happen Kob]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Whatever."
<<include "GNO-155329 Exit Kate">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck you."
<<include "GNO-155329 Exit Kate">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Never gonna happen," you insist.
<<include "GNO-155329 Exit Kate">>
<</page>>You grab your bag, and [[climb out into the night|GNO-155340 Kate and Zoe in the street]].<<silently>>
<<emote-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<set $header.line1 to "''WATTHANA''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step out into the street and shut Kob's door.
Your skirt feels like it's round your hips.
//[[Adjust it.|GNO-155350 Hem down with Zoe]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You pull your skirt back down into as you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> walk around the front of the car. The engine purrs back into life, bathing you in the glow of the headlights; $zoe.firstName gives him a cheery wave goodbye.
<<image "/locationPhotos/thailand/watthana/hondaCivic.jpg" 60 1000 450 0>>\
"You owe me one," she says.
[[Thanks.|GNO-155355 Thanks Zoe]]
[[What did you whisper to him?|GNO-155340 What did you whisper to Kob, Zoe]]
[[I'm not a bargirl.|GNO-155345 I'm not a bargirl, Zoe]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you murmur.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"No problem." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_kobCarBJ3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> touches the top of your arm reassuringly as you walk back to the entrance, heels clicking on <<if $kate.agency == "cia" or $kate.agency == "csis">>asphalt<<else>>tarmac<</if>>. "C'mon, let's [[do some lines|GNO-155350 Zoe freshens up]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"What'd you whisper to him?"
"Just some sexy shit."
She's not going to tell you. You walk back to the [[entrance|GNO-155350 Zoe freshens up]], heels clicking on <<if $kate.agency == "cia" or $kate.agency == "csis">>asphalt<<else>>tarmac<</if>>.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>."
"Yet." Her smug, sing-song tone is annoying, but you let her have the last word as you walk back to the [[entrance|GNO-155350 Zoe freshens up]], heels clicking on <<if $kate.agency == "cia" or $kate.agency == "csis">>asphalt<<else>>tarmac<</if>>.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''APARTMENT BUILDING''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/elevatorCar.jpg" 60 1000 450 0>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pops a breath mint, and touches up her hair and makeup on the way back up to the [[apartment|GNO-160000 Back to the party]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes off his pendant. It has a skull at one end, and a little scoop on the other.
<<image "/locationPhotos/thailand/watthana/kobsPendantResized.jpg" 0 1000 400 0>>\
He digs the scoop into the baggy of white powder, lifts it to a nostril, and inhales it with a sharp little sniff.
"C'mon," he urges, offering you the skull, "do a bump. We're partying, right?"
<span class="greyedOut">//[Shrug]//</span> [[Fine.|GNO-155270 Kate does a bump]]
[[Really, I'm good.|GNO-155250 Really no]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Really, I'm good."
"Whatever," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. He seals up the baggie, and tucks it down the side of [[his seat|GNO-155300 Seat back]].
<</page>><<silently>>
<<if hasVisited("GNO-155280 Ladies first") or hasVisited("GNO-155290 Ladies second")>>
<<emote-mouth-talking>>
<<else>>
<<emote-calm>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-155280 Ladies first") or hasVisited("GNO-155290 Ladies second")>>"Course." <</if>>You pull out the crisp <div class="tooltip">฿20K<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$600<<elseif $kate.agency == "mi6">>£400<<elseif $kate.agency == "asis">>$800<<elseif $kate.agency == "csis">>$800<<elseif $kate.agency == "nzsis">>$800<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> wedge from your <<handbag>>, and hand it over.
The red interior light dims when he takes it. Seeing by the streetlights outside, <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flicks through the money quickly, then adds it to his money roll, tying it with <<if $kate.agency == "cia" or $kate.agency == "csis">>a rubber<<else>>an elastic<</if>> band.
The roll goes back in his pocket. "Okay," he says, casting a quick look around outside the car. "Now you just gotta thank me for driving [[all the way out to fucking Watthana|GNO-155300 Trackies down]] at 3 <small>A.M.</small>..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug.
<span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
He stops pawing your leg to produce a <span class="imageLink"><<link "baggy of white powder">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/watthana/cocaineBaggyRedLit3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from the pocket of his track pants. Reaching up behind his neck, he undoes his pendant and hands it to you.
It has a skull at one end, and a little scoop at the other.
<<image "/locationPhotos/thailand/watthana/kobsPendantResized.jpg" 0 1000 400 0>>\
//[[Scoop up a bump of cocaine.|GNO-155275 Scoop up a bump]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You open up the baggy, and dig the scoop into the soft white powder.
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> paws your leg again. His hand slides up your inside leg, from your knee to your bare thigh, all the way up to the hem of your short skirt.
//[[Keep your knees together.|GNO-155280 Demure Kate]]
<span class="greyedOut">//[Submissive or High Arousal]//</span> [[Open your legs for him.|GNO-155290 Slutty Kate]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You keep your knees demurely close together.
But your skirt's not long enough to offer any serious resistance. The knife edge of his hand slips between your legs and presses up against your crotch, only the thinnest layer of hot wet $knickers.material between <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand and your hot, wet pussy.
<<include "GNO-155295 Loading the bump">>
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "Kob's finger went straight for your clit.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You instinctively part your legs. <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand slithers between your legs. His fingertip touches your pussy through a thin scrap of hot wet $knickers.material.
<span class="greenHighlighter">Kob ''liked'' that.</span> <span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
<<include "GNO-155295 Loading the bump">>
<</page>>While he fondles you, you lift the skull scoop up to your nose. It smells like <<if $kate.agency == "cia" or $kate.agency == "csis">>gasoline<<else>>petrol<</if>>.
//[[Snort it up.|GNO-155300 Snort the bump]]//<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Pressing one nostril shut, you inhale the coke with a sharp little //sniff.//
Your sinus tingles. <<if hasVisited("GNO-155280 Demure Kate")>>The knife edge of <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand keeps grinding against your pussy.<<else>><span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingertip keeps massaging your pussy through your <<= $knickers.description.random()>>.<</if>>
"You like that?" You're not sure if he means the coke or his <<if hasVisited("GNO-155280 Demure Kate")>>hand<<else>>finger<</if>>.
[[Mm-hm.|GNO-155305 I like it][$kateSays to "mhm"]]
[[Yeah.|GNO-155305 I like it][$kateSays to "yeah"]]
//[[(Soft murmur.)|GNO-155305 I like it][$kateSays to "ooh"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "mhm">>\
"Mm-hm," you nod, looking into his dark eyes.
<<elseif $kateSays == "yeah">>\
<<emote-mouth-sexy>>\
"Yeah," you tell him, meeting his dark eyes.
<<elseif $kateSays == "ooh">>\
<<emote-mouth-sexy>>\
Looking into his dark eyes, you let out a soft, feminine murmur in reply.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Show me." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hooks his thumb into the waistband of his track pants, pushes them down to reveal his cock.
It's <<if $kate.agency == "cia">>uncircumcised, <</if>>kinda small and semi-erect, jutting up from a trimmed patch of jet black pubic hair.
<span class="greyedOut">//[Arousal too high] Refuse.//</span>
[[Suck it.|GNO-155310 Fuck it]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it.// You weren't sure you could go through with it but, in the heat of the moment, you realise you can.
<span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
You shift position on the passenger seat. Your pussy moves out of <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> range; leaning across the centre console, your mouth moves into kissing distance with his dick.
//[[Lick your lips and suck.|GNO-155325 First contact]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<</silently>>\
<<header>>\
<<page>>\
You wet your lips and lower your mouth onto the drug dealer's cock.
<span class="greenHighlighter">Kob ''liked'' that.</span>
<<if hasVisited("GNO-155230 I'll do it at the party")>>\
Sucking cock in a parked car. With a guy you just met earlier, for a bag of drugs.
You feel like such a [[bad girl|GNO-155330 Bad girl]].
<<else>>\
The bump of coke hits you at about the same time: numb, tingly lips, a bitter taste in the back of your throat, a rush of excitement as your heart thumps faster.
It just makes you feel like more of a [[bad girl|GNO-155330 Bad girl]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmh," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs, his hand resting on the back of your head. "Fuck yeah,"
His cock feels squidgy and semi-hard in your mouth. Eyes closed, breathing through your nose, you [[slide your tongue up and down|GNO-155335 Tits grope]] on it.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Kob's free hand comes up and cups your breast. Braless, in the thin clingy top you borrowed from $zoe.firstName, there's nothing to stop him squeezing your breasts and playing with your nipples.
<<if $kate.braSize == "large">>\
"Fuck," he murmurs, "you're stacked."
<</if>>\
//[[Keep sucking his cock.|GNO-155340 Tits out]]//
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "large">>\
"Your fucking tits are huge..."
<</if>>\
Your mouth's filling up with spit. You gulp it down and keep sucking.
Kob tugs your top up, baring your breasts. He flicks and tweaks your stiff <<if $kate.piercings.includes("nipplesSilverBarbells")>>pierced <</if>>nipples while you [[suck|GNO-155345 Hardening]].
<</page>><<silently>>
<<emote-mouth-blowjob>>
<<first>>
<<addNotification "Arousal +1" "Your pussy's wet, hot and tingling.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Kob's dick stiffens gradually in your mouth 'til you realise it's rock hard.
Everything outside's forgotten as your soft, wet mouth slips rhythmically up and down on the drug dealer's stiff cock.
He pinches and tugs your nipples in a way that feels so good it could almost make you come. Your neglected pussy feels like //lava.//
//[[Try to get him off in your mouth.|GNO-155350 Bathed in light]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Slurping lips and your soft, encouraging murmurs harmonise with his breathy little grunts.
His hands come off your body and you feel him moving a little in his seat.
At first you think he might be about to come, but then your eyelids are [[bathed in white light|GNO-155420 Girl on film]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You dig the scoop into the baggy of white powder.
Blocking one nostril, you lift the scoop to the other, and inhale it with a sharp little sniff that makes your sinus tingle.
<span class="greenHighlighter">Kob ''liked'' that.</span> <span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes back the skull scoop, digs it into the baggie, sniffs up a little bump of his own.
"Fuck," he murmurs. He seals up the baggie, tucks it down the side of [[his seat|GNO-155300 Seat back]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You snort up the sharp, sinus-tingling bump of cocaine, and give <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> his stupid drug necklace back.
<span class="greenHighlighter">Kob ''liked'' that.</span> <span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
"There you go." He seals up the baggie, tucks it down the side of [[his seat|GNO-155300 Seat back]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> casts a furtive glance around. Seeing that the coast is still clear, he reaches down and pulls a lever, easing his seat back.
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls a lever, easing his seat back. "Okay." He casts a quick glance around outside the car, checking that the coast is still clear. "You ready?"
<<link "I'm //not// sucking your dick." "GNO-155310 Not sucking your dick">><</link>>
<span class="greyedOut">//[Shrug]//</span> [[I guess.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm //not// sucking your dick."
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> knits his brow. "Huh?"
[[I'm not a bargirl.|GNO-155320 Not a bargirl]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>, Kob." <<if hasVisited("GNO-155250 Really no")>>You shake your head.<<else>>Bitter mucus trickles down the back of your throat, making you swallow.<</if>> "I'm not doing it."
"Wha?" <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks perplexed. "I got outta bed for this."
[[Don't care, not doing it.|GNO-155330 Don't care]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't care, I'm not giving you a blowjob for it."
"But..." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks astonished.
[[I sent you the pic, and I've got ฿20K.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shuffles his butt forward in the driver's seat. He tucks his thumb in the waistband of his track pants, and just casually pushes them down, exposing his cock. It's small and flaccid<<if $kate.agency == "cia">> and uncircumcised<</if>>, jutting up from a trimmed patch of jet black pubic hair.
//Jesus!// Its sudden appearance felt as startling as getting a dick pic. You do another instinctive check outside the vehicle, but the streets are still quiet.
"Literally //only// picked up when I saw it was you sluts..." he's saying.
[[Uh huh.|GNO-155310 Uh huh][$kateSays to "Um...uh huh"]]
[[Right.|GNO-155310 Uh huh][$kateSays to "Uh...right"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays," you murmur.
"Don't know where old man Kriangsak finds you girls..." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches up casually for the back of your head, pulls you closer like you're a piece of furniture.
You stiffen, instinctively resisting for a moment. Then you realise you shouldn't...like fighting the urge to cover your breasts when you're working in the club.
//[[Stop resisting.|GNO-155320 Relax]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
After the tiniest of power struggles, you force your back muscles to relax.
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> guides your head down towards his lap – like you need his help to find it – and you shift instinctively on your seat to get into a better blowjob position. //Okay, this is happening...//
"That's it," he murmurs, his little dick inches from your lips. "Say thank you, Kob."
[[Thank you, Kob.|GNO-155330 Thank you Kob]]
[[Fuck you, Kob.|GNO-155340 Fuck you Kob]]
//[[Suck his cock.|GNO-155350 Taste the toad]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Thank you, Kob."
<span class="greenHighlighter">Kob ''liked'' that.</span>
"You're welcome." You can //hear// the smirk on his face as he [[presses you down onto his cock|GNO-155350 Taste the toad]]...
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck you, Kob."
<span class="greenHighlighter">Kob ''loved'' that.</span>
"Shut up." He [[presses down on the back of your head|GNO-155350 Taste the toad]]...
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-155340 Fuck you Kob") or hasVisited("GNO-155330 Thank you Kob")>>\
//Fuck it.// Instinctively, you wet your lips, and take him into your mouth.
<<else>>\
//Fuck it.// Your head drops into his lap. You wet your lips, and take him into your mouth.
<</if>>\
<span class="greenHighlighter">Kob ''liked'' that.</span>
For a moment...you can't believe you're actually sucking some drug dealer's cock in a parked car. But <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s so casual about it, you can't believe $amanda.firstName and $zoe.firstName and the others haven't all been in exactly this position.
//It's all part of fitting in, all part of my cover.//
//[[Suck his cock.|GNO-155360 Turgid toad]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
It probably helps that <<if hasVisited("GNO-67100 Kate drops Molly")>>you're a little altered by the Molly<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>you're feeling a little altered by the benzedrine and the booze<<else>>you're a little drunk<</if>>. His cock is small and soft and it tastes of skin and sweat. You suckle on it, swirling your tongue instinctively to wake it up.
"Mmmh, yeah." <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand rests on the back of your head. "That's it."
Slowly, stirringly, you can feel him [[getting harder in your mouth|GNO-155370 Hardening]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-155270 Kate does a bump")>>\
<<silently>>
<<first>>
<<addNotification "Coke bump" "You feel a sudden rush of excitement and energy.">>
<</first>>
<</silently>>\
Your heart beats faster and your lips feels tingly and numb as the coke hits you. Bitter mucus drips down the back of your throat, masking the taste of his dick.
<</if>>\
<span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cock gradually stiffens, hardening under the tender ministrations of your soft mouth.
One hand rests on the back of your head, the other curls under your arm, reaches for your chest. He squeezes your breasts, playing with them, [[stroking and flicking your nipples|GNO-155380 Tits out]] through the thin clingy top you borrowed from $zoe.firstName.
<</page>><<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Your mouth bobs softly and rhythmically up and down on <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cock.
He tugs your top up, playing with your stiff <<if $kate.piercings.includes("nipplesSilverBarbells")>>pierced <</if>>nipples while you suck. "Oh, //fuck// yeah," he murmurs breathily. "That's it, baby..."
//[[Try and get him off with your mouth.|GNO-155390 BJ check]]//
<</page>><<silently>>
<<emote-mouth-blowjob>>
<<first>>
<<addNotification "Arousal +1" "Your pussy's wet, hot and tingling.">>
<</first>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 0>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
The outside's forgotten as your head bobs up and down in <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lap. He pinches your sensitive nipples and cups and squeezes your breasts. His skinny cock is //rock hard// in your mouth and your neglected pussy feels like //lava.//
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''BJ check.'' \
<<link "Roll 6 or higher">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if _kateD10 + 0 gte 6>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: (_kateD10+0) = <<= _kateD10 + 0>>. <<if _skillCheckSucceeded>>//BJ quality: excellent.//<<else>>//BJ quality: normal.//<</if>>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-mouth-blowjob>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
Your soft, encouraging murmurs harmonise with his breathy little grunts. His fingers curl in your hair and squeeze your breasts as he gets [[closer and closer|GNO-155400 Don't spill any]]...
<<else>>\
Your soft lips slip up and down on his stiff cock. It feels like he could make you come just from the way he's [[pinching your nipples|GNO-155410 Say cheese]].
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> with <div class="tooltip">1D10+0<span class="tooltiptext">Sexpert skill +0</span></div> to make Kob come quickly.
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your mouth slips rhythmically up and down on his dick for several minutes.
"Fuck yeah...fuck yeah...here it comes..."
<<if hasVisited("GNO-155460 Don't show anyone")>>Holding the camera phone in your face,<<else>>With a firm grip in your hair,<</if>> <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> other hand drops away from your breasts and grabs at the base of his hard little cock, jerking it frantically into your mouth. "Don't fucking spill any..."
The tip tastes suddenly wet and bitter, then Kob groans as his cock twitches and spurts in your mouth.
//[[Take it in your mouth.|GNO-155470 Gulp]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"That's it," <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs encouragingly. His hand falls away from your breasts and you can feel him rummaging for something.
You're expecting him to take another bump of coke, but then your eyelids are [[bathed in white light|GNO-155420 Girl on film]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You open your eyes to the dazzling white light of Kob's camera phone in your face.
[[No pictures!|GNO-155430 No pictures!]]
<span class="greyedOut">//[Exhibitionist or high Arousal]//</span> //[[Let him film you.|GNO-155460 Don't show anyone]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<<set $avatar.body.delete("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<</silently>>\
<<header>>\
<<page>>\
"Mmph!" With a squeak of protest, you come up off his cock, holding up a palm to block the camera.
Kob aims it around your hand, shining the light in your face and on your bare breasts. "C'mon," he chides. "I won't show anyone."
[[No way, turn it off!|GNO-155435 Privacy policy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No way," you say, swiping for it again and missing. "Turn it off!"
"C'//mon,"// he repeats. You suddenly realise that you're sitting up in a dark car on the street, with a bright light shining on your bare breasts. "It's just for me, I promise."
He reaches out for the back of your head, trying to pull you back down into position.
[[No, Kob!|GNO-155440 Kate stands her ground]]
<span class="greyedOut">//[Reluctantly comply]//</span> [[For fuck's sake...|GNO-155470 Fuck's sake...]]
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
"No!" you insist. You swipe again for the phone, and manage to grab it this time. "Turn it off!"
<span class="redHighlighter">Kob ''disliked'' that.</span>
"Fine, fine!" He kills the light, and the phone goes back in his track pants. "Don't need to be a bitch about it, <div class="tooltip">Thai thai thai<span class="tooltiptext">just a fucking video</span></div>..."
[[Fuck you.|GNO-155445 Fuck you]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck you," you snap.
"Fuck //you,"// is his less-than-witty retort. "Fuckin'...finish me up, here."
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches up for the back of your head. None too gently, he pulls you [[back down into position|GNO-155450 Pissed off BJ]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You feel pissed off enough to //bite// him. But Kob doesn't care, pushing your mouth roughly back down onto his cock.
//[[Suck it.|GNO-155455 Kob redresses the balance]]//
<</page>><<silently>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
His hand holds the back of your head – firmer, this time, pushing you down, not letting you set your own pace.
His other hand goes back to your breasts – harsher, this time, pinching your nipples angrily.
A wave of hot resentment simmers up in your stomach – you're not used to being [[treated like this|GNO-155460 Ow ow ow]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Kob pinches and squeezes and tugs on your nipples. //Ow, ow, ow.// <<if $kate.kinks.includes("masochist")>>The harder he pinches, the wetter your pussy gets.<<else>>You breathe through your nose and try to get through it.<</if>>
//[[Keep sucking.|GNO-155465 Vinegar strokes]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 0>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
Your mouth rises and falls on Kob's stiff, slender dick.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''BJ check.'' \
<<link "Roll 6 or higher">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if _kateD10 + 0 gte 6>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: _kateD10+0 = <<= _kateD10 + 0>>. <<if _skillCheckSucceeded>>//BJ check ''succeeded.''//<<else>>//BJ check ''failed.''//<</if>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
Breathing through your nose, ignoring the dully aching muscles in your jaw, you suck and slurp and slide rhythmically on his cock.
Kob breathes harder as his orgasm approaches. His right hand grips a handful of your hair, his left squeezes your breast painfully hard.
His hips buck up under you, [[fucking your mouth|GNO-155480 The toad cometh]]. If his dick were bigger, it'd be going right down your throat.
<<else>>\
<<set $kobTookHisTime to true>>\
Breathing through your nose, your jaw aches as you suck and slurp up and down on his dick.
You can sense he's close, but you can't quite get him over the edge.
Eventually, he takes matters into his own hands. Gripping your hair in one hand and his cock in the other, Kob jerks off in your mouth.
It's kind of humiliating to be used like a sex toy. But it'll be over soon, so you [[put up with it|GNO-155480 The toad cometh]]...
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> with <div class="tooltip">1D10+0<span class="tooltiptext">Sexpert skill +0</span></div> to make Kob come in your mouth.
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"For fuck's sake..." You grumble, but let him pull you back down into position with one hand, the [[lit-up camera phone|GNO-155475 Film star]] in the other...
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
Closing your eyes against the bright light, you slip your mouth back onto his dick.
"That's it," Kob murmurs. "Suck it, <div class="tooltip">thai thai thai<span class="tooltiptext">you stupid white bitch</span></div>." His free hand comes back up under your breasts, tweaking and tugging your hard nipples.
//[[Keep sucking.|GNO-155465 Film acceptance]]//
<</page>><<silently>>
<<set $avatar.body.delete("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<</silently>>\
<<header>>\
<<page>>\
You apply a little more biting force in reply.
"Okay, okay! Fine." The phone slips back in his track pants.
//[[Finish the blowjob.|GNO-155450 Steady finish]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<set $avatar.body.pushUnique("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<</silently>>\
<<header>>\
<<page>>\
With your modesty restored, you relax your bite and go back to using your lips and tongue on <span class="imageLink"><<link "Kob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stiff skinny shaft.
"Didn't know you were //shy,"// he says, his hands going back to your hair and your nipples. He chuckles. "That's actually kinda cute. Shy little <<if $kate.agency == "cia">>Yank<<elseif $kate.agency == "mi6">>Brit<<elseif $kate.agency == "asis">>Aussie<<elseif $kate.agency == "csis">><<if $kate.ethnicity == "French Canadian">>French<<else>>Canada<</if>><<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> slut. With her <<if $kate.braSize == "large">>big <<elseif $kate.braSize == "small">>little <</if>>tits out at the bar five nights a week. Oh <<link "//fuck// yeah" "GNO-155400 Don't spill any">><</link>>."
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
//What the hell.// You close your eyes and drop your mouth back onto his cock, face bathed in the white light of his camera phone.
<span class="greenHighlighter">Kob ''liked'' that.</span>
"Fuck yeah," he murmurs, "that's it." His free hand comes back up under your breasts, tweaking and tugging your hard nipples.
//[[Keep sucking.|GNO-155465 Film acceptance]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your head bobs up and down in his lap.
Kob plays with your breasts with one hand, and films you sucking cock with the other. Each time he tweaks or pinches a nipple it makes your clit throb.
//[[Try to get him off with your mouth.|GNO-155465 Vinegar strokes]]//
<</page>><<silently>>
<<set $avatar.body.delete("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<<set $avatar.clothing.pushUnique("cumshots/100_cumshot-mouthful2")>>
<</silently>>\
<<header>>\
<<page>>\
"Unh..." Kob <<if $kobTookHisTime>><<unset $kobTookHisTime>>finally <</if>>groans. "Fuck..."
His dick twitches and spurts on your tongue, flooding your mouth with his gooey seed.
//[[Swallow it.|GNO-155490 Gulp]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<<if not hasVisited("GNO-155440 Kate stands her ground")>>
<<emote-eyes-squint>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("GNO-155440 Kate stands her ground")>>\
You gulp it down. <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> films you sitting up, then kills the camera.
<<else>>\
You gulp it down, and sit up.
<</if>>\
That took what, five or ten minutes? You glance around outside the car, but the <div class="tooltip">soi<span class="tooltiptext">street</span></div> is still dark, quiet and empty.
//[[Pull your top down.|GNO-155495 Modesty restored]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<emote-brows-calm>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
You adjust your top and restore your modesty. <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> does the same, pulling up his track pants.
//Fuck.// You're outrageously turned on. But Kob's done with you.
<<if hasVisited("GNO-155440 Kate stands her ground")>>\
"Got the money?"
<<else>>\
"<div class="tooltip">Thai thai<span class="tooltiptext">Fuck</span></div>, I needed that. Thanks. Got the money?"
<</if>>\
[[Mmhm.|GNO-155500 Kate pays]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmhm." You reach into your bag for the <div class="tooltip">฿20K<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$600<<elseif $kate.agency == "mi6">>£400<<elseif $kate.agency == "asis">>$800<<elseif $kate.agency == "csis">>$800<<elseif $kate.agency == "nzsis">>$800<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, and hand it to <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Nice." He counts it quickly, then adds it to his money roll, and stuffs it back in his pocket. "Alright. Go enjoy your party."
[[See you around.|GNO-155505 Exit the car]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"See you around."
You put the baggie in your <<handbag>>, and climb back out [[into the warm night|GNO-155510 Warm night]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<set $header.line1 to "''WATTHANA''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step out into the street and shut Kob's door.
Your skirt feels like it's round your hips.
//[[Adjust it.|GNO-155515 Hem down]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You pull your skirt back down into as you're walking around the front of the car. The engine purrs back into life, bathing you in the glow of the headlights.
<<image "/locationPhotos/thailand/watthana/hondaCivic.jpg" 60 1000 450 0>>\
Kob drives off. You walk back to the entrance and [[buzz up to the apartment|GNO-155520 Make up touch up]].
<</page>><<silently>>
<<set $header.line1 to "''APARTMENT BUILDING''",
$header.line2 to "WATTHANA / MAY 2018">>
<<set $avatar.clothing.delete("cumshots/100_cumshot-mouthful2")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/elevatorCar.jpg" 60 1000 450 0>>\
//Fuck, fuck, fuck.// You feel flustered and horny.
You touch up your lipstick on the way back up to the [[apartment|GNO-160000 Back to the party]].
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> watches you cover your breasts, a satisfied grin on his face. "Thanks."
//ⓘ *DEV NOTE: I wasn't happy with this scene and I want to rewrite it, but it's 2148hrs on Dec 23rd, so the hotter version (with an option for $kate.firstName to refuse and outwit Kob) will be added in a future episode. Sorry I didn't get time to do this.//</span>
[[Continue|GNO-160000 Back to the party]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Right. You got the stuff?"
"All business. Thought we were gonna get to know each other first."
[[Why's your English so good?|GNO-156000 Why u speak so good]]
[[Dialogue TBD|]]
[[Third thing here.|]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How come your English is so good?" He's //fluent,// using complete sentences and slang instead of the clunky <div class="tooltip">Tinglish<span class="tooltiptext">Thai English</span></div> you're getting used to.
"My dad was English."
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
[[And your mom?|GNO-156100 And your mom?]]
<<else>>\
[[And your mum?|GNO-156100 And your mom?]]
<</if>>\
[[Dialogue TBD|]]
[[Third thing here.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"And your <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>>?"
He shoots you a look. "<div class="tooltip">Bargirl<span class="tooltiptext">club prostitute</span></div>. Like you." <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches down the side of his seat, reclining it with twists of a dial. "You sure talk a lot."
[[I'm not a bargirl.|GNO-156200 Not a bargirl]]
[[Dialogue TBD|]]
[[Third thing here.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a bargirl," you object.
"Good, 'cause you're not getting paid." He points to his crotch. "Okay, let's see what you can do."
[[I'm not sucking your cock.|GNO-156300 Not sucking your cock]]
[[Right here?|GNO-157000 Right here?]]
[[Um...okay.|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not sucking your cock, Kob."
"Huh?" A look of confusion crosses his <span class="imageLink"><<link "face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "What //are// you gonna do?"
[[Pay you for the drugs then go back to the party.|GNO-156400 Pay you and that's it]]
[[Dialogue TBD|]]
[[Third thing here.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Pay you for the drugs, then go back to the party."
"The fuck?" <span class="imageLink"><<link "Kob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "You serious? Blow for blow."
[[Do you want the money or not?|]] <span class="greyedOut"><- TK Kate can get out of giving Kob a BJ here – he's a dealer, he's not going to //not// take the money. For now go back and give him the BJ</span>
[[Dialogue TBD|]]
[[Third thing here.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um..." You glance instinctively along the quiet street. Your mouth is suddenly dry and you have to swallow and lick your lips to talk. "Right here?"
NOTES
– Kob just wants a BJ
– It should take several minutes. Kate needs to get him hard and then get to work on the stiff cock in her mouth, over and over until he becomes rock hard then blows his load all over her tongue and throat
– Kate should make choices that buff her skill rolls. Make noises/be quiet. Jerk him off in your mouth.
– Kob should also make choices. Grope her tits, hand on back of head, feedback.
– During this whole thing Kate should get seriously turned on. Nipples stiff, pussy soaked
– the realisation //I am sucking cock for drugs.//
– Goes [[back to the party|GNO-160000 Back to the party]] with dick on her breath, sperm in her stomach and a quarter of coke in her bag
<</page>><<silently>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/servicedApartmentFalseDawn.jpg" 220 1000 570 0>>\
''3.48 <small>A.M.</small>'' You get a hero's welcome when you bring the drugs back to the apartment; nobody asks why it took you 15 minutes to pick up.
The night sky is lightening as <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> carve chunky lines of cocaine out on the kitchen counter. //Grind, grind, scrape.// Everybody keeps glancing at them eagerly, willing them to speed it up.
Finally, Chris stands back, and offers a gallant wave. "[[Ladies first|GNO-160002 Ladies first]]."
<</page>><<silently>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
"Fuckin' A." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> bends over the counter with a rolled-up red banknote, her dress stretched tightly around the contours of her butt.
There's a long loud unladylike //sniff// and then she straightens up and throws her head back exultantly. "Fuuuck."
She holds out the rolled banknote to you.
//[[Do a line.|GNO-160040 Kate does a line]]//
[[I'm good, I wanna be able to sleep.|GNO-160010 I wanna be able to sleep]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm good," you say, holding up a hand. "I wanna be able to sleep."
"Just do half of one," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
"Don't be boring, $kate.cover.firstName," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> calls out.
"Huh? Who's $kate.cover.firstName..." <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
//[[Do half a line.|GNO-160030 Kate does half a line]]//
[[Maybe later.|GNO-160020 Kate stays off the blow]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe later."
<span class="yellowHighlighter">''Minor increase'' to Suspicion Level.</span>
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> breezes past you, and takes the banknote and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> place at the kitchen counter. Her cutout white dress is a [[centimetre away from a wardrobe malfunction|GNO-160070 Coming up]] as she leans over it. //Snifff...//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug, taking the rolled-up banknote. //Gotta fit in with these bad girls. And I guess I earned it...// "Just half."
<span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
//[[Bend over the counter.|GNO-160050 Over the counter]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you say, taking the rolled-up banknote. //Gotta fit in with these bad girls. And I guess I earned it...//
<span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
//[[Bend over the counter.|GNO-160050 Over the counter]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You push the banknote into your nose, and lean over the counter.
<<image "/locationPhotos/thailand/watthana/cocaineLines.jpg" 140 1000 540 0>>\
Pressing one nostril shut, you <<if hasVisited("GNO-160030 Kate does half a line")>>[[snort up half a line|GNO-1600060 Boom]]<<else>>[[snort up a line|GNO-1600060 Boom]]<</if>> with the other.
<</page>><<silently>>
<<showFront>>
<<emote-calm>>
<<emote-eyes-big>>
<<first>>
<<addNotification "Cocaine rush" "Instant adrenaline!">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Boom.// The effects hit you almost immediately: the petrol bitter taste dripping in the back of your throat; the numb and tingly lips and gums; the exciting quivery spike of energy.
You pass the banknote to <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's next in line, and [[suck down a deep breath|GNO-160070 Coming up]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
''4.26 <small>A.M.</small>'' The <span class="imageLink"><<link "guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoys.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are renting two apartments, side by side.
Flitting between them and going out on the balconies, drinking and talking, brings back pleasant memories of house parties at <<university>>. Except it's a much more [[luxurious venue|GNO-160072 Luxurious venue]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are putting together a Spotify playlist and have been for the last half hour.
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is going on about his MBA course at Harvard, but can't resist glancing up at <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> every 20 seconds.
Chris is struggling to cut up a dozen lines fast enough for the party, so <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clicks through to the kitchen to help [[speed him up|GNO-160074 Speed him up]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Course, that won't tell you what a stock's //actually// gonna do," Rick is saying. "For that you need tealeaves and a crystal ball..."
Your neck's a little sore, probably from twisting back and forth trying to keep track of all the different conversations.
//[[Stretch it off.|GNO-160080 Neck rub]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Hey." Back from the bathroom, <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes up behind you on the couch. His hands settle on your shoulders, his thumbs gently kneading your muscles.
<span class="greyedOut">//[Arousal too high] Swat him away.//</span>
//[[Get a neck rub.|GNO-160090 Massage from Cody]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> keeps giving you a mini-MBA while <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s fingers knead your back through the thin black top.
Sometimes his fingertips touch the bare skin on your neck and shoulders, slipping fleetingly inside your top, just for a moment, just for a millimetre.
It's both deniably innocent and very, very sensual. You wonder if he has any idea how much he's [[turning you on|GNO-160095 Later]].
<</page>><<silently>>
<</silently>>\
<<page>>\
//[[LATER...|GNO-160500 Simulation theory]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
''4.54 <small>A.M.</small>'' You are experiencing a coke-fuelled mansplanation of one of <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s favourite topics. "Simulation Theory is basically the idea that we're all just characters in some massive computer game..."
"Not necessarily //player// characters, though –"
"No no no, we all //think// we're real but..."
"It could be aliens or –"
"Let's [[do another line|GNO-160505 Later]]," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> urges.
<</page>><<silently>>
<</silently>>\
<<page>>\
//[[LATER...|GNO-165100 Another line]]//
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<<Amanda>> passes Kate the rolled-up purple banknote. Kate approaches the table, leans over forward, instinctively tugs her hem, [[sniffs up a line|GNO-160200 Boom]].
<</page>><<silently>>
<<showFront>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
TK describe the harsh petrolly hit of the drugs, the drip of sharp chemical mucous filling her throat and making her gulp.
//[[Hand Cody the banknote.|GNO-165000 Cocaine high]]//
<</page>><<silently>>
<<first>>
<<addNotification "Cocaine rush" "You're excited, confident and sociable!">>
<</first>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
''3.51 <small>A.M.</small>'' You are experiencing a coke-fuelled mansplanation of one of <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s favourite topics. "Simulation Theory is basically the idea that we're all just characters in some massive computer game..."
"Not necessarily //player// characters, though –"
"No no no, we all //think// we're real but..."
"It could be aliens or –"
"Let's [[do another line|GNO-165100 Another line]]," <<Zoe>> urges.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''BALCONY''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
''5.26 <small>A.M.</small>'' "Don't be crazy, everyone likes you," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, patting your hand reassuringly.
You're out on the balcony, taking it in turns to puff on <span class="imageLink"><<link "Teo's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> CBD flavour vape pen. Male laughter rolls out from inside at $zoe.firstName, holding court. "You're fitting in fine."
[[Who haven't I met yet?|GNO-165200 Who haven't I met yet?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Some of them are kinda stand-offish."
"They're just getting used to you," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Who haven't I met yet?"
"Hm," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "You met Ilsa?"
"Yeah." A vivid recollection of <span class="imageLink"><<link "the Slavic blonde">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ilsa.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – bouncing up and down on some Russian guy's cock in the VIP – flashes through your mind.
"You met Katya?"
[[With the short hair?|GNO-165210 Katya]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...with the short hair?" You've seen <span class="imageLink"><<link "Katya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/katya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on two of your shifts, but never really spoken to her.
"Uh huh," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Watch yourself, she can be a bull dyke with new girls."
"Okay." Ilsa and Katya are not the girls you're interested in.
<<link "At the bar, some guy was asking for <<Sadie>>?" "GNO-165300 What guy">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Some guy at the bar was asking for <<Sadie>>? Who's that?"
"Oh yeah?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sucks in a lungful of weed-flavour vape, and blows it out into the thin light of the pre-dawn sky. "What guy?"
An idea pops into your head that you //know// is risky. But she's high on coke and pills – and after twelve hours of drinking, dancing and partying together, your instincts tell you that you can push your luck.
//Is it possible that $amanda.firstName knows <small>DEVILFISH?</small>//
<span class="greyedOut">//[Amanda rapport +2]//</span> [[Some arab guy.|GNO-165400 Some Arab guy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Some arab guy," you shrug, taking the vape pen.
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Maybe that was the guy with one nut."
[[Sorry, what?|GNO-165500 One nut?][$kateSays to "Sorry, what"]]
[[Huh?|GNO-165500 One nut?][$kateSays to "Huh"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays?"
"She had this client," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "Ay-rab guy, came in on the semi-regular. Dude only has one nut."
"You're kidding."
"There are weirder clients than that," she promises. "There's this one guy who can't come unless you //slap// his nuts..."
[[Ohmygod, really?|GNO-165600 OMG rilly]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Ohmygod, really?"
"Yeah! You have to get them like red and hot..."
You laugh along at her story, but your mind is racing to process the new information about <<Sadie>>.
So she //did// have a regular 'ay-rab' client. And this guy had a distinguishing mark? //Fuck, we really need to talk to her.//
[[Did you ever work with One Nut Guy?|GNO-165610 Did you fuck Devilfish?]]
<<link "<<Sadie>> still at the club?" "GNO-165700 Sadie still at the club?">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"You, uh, you ever work with One Nut Guy?"
"Naw." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "Don't know who he is."
<<link "<<Sadie>> still at the club?" "GNO-165700 Sadie still at the club?">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"<<Sadie>> sounds cool. She still at the club?"
"Uh-uh, she left," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Bitches move on. Prolly went back to Germany."
"Hey you two." <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes out onto the balcony, rests an arm around $amanda.firstName's waist. "C'mon, <<if hasVisited("GNO-160020 Kate stays off the blow")>>you got [[a line waiting|GNO-165705 Later]]<<else>>got your [[lines stacked up|GNO-165705 Later]]<</if>>..."
<</page>><<silently>>
<</silently>>\
<<page>>\
//[[LATER...|GNO-170000 Coked out bliss]]//
<</page>><<silently>>
<<showRear>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/watthana/watthanaSunrise.jpg" 0 1000 400 0>>\
''5.52 <small>A.M.</small>'' The sun rises over the Big Mango, and the whole party gathers on both balconies to watch.
The noise of the city coming to life drifts up from the streets below – light traffic, chirps and honks of exotic birdsong, a rumbling skytrain.
<<if hasVisited("GNO-160020 Kate stays off the blow")>>\
<<if hasVisited("GNO-67100 Kate drops Molly")>>\
The buzz of the Molly is finally being overtaken by your tiredness. Your whole body feels relaxed and dreamy, [[ready for bed|GNO-170100 Bed prep]].
<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>
The wakeful buzz of the benzedrine has long faded, overtaken by tiredness. Your whole body feels relaxed and dreamy, [[ready for bed|GNO-170100 Bed prep]].
<<else>>\
You've been keeping up with a party of girls high on MDMA and cocaine, and you're [[exhausted|GNO-170100 Bed prep]].
<</if>>\
<<else>>\
You're in that weird, dreamy state at the end of a cocaine binge: mentally alert, physically tired. Your whole body feels [[tingly and relaxed and turned on|GNO-170100 Bed prep]].
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Gazing out over the city as it wakes up, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> yawns, and that triggers a wave of getting ready for bed. "Everyone make sure you've got water," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> instructs.
"Yes mom," $zoe.firstName says tiredly, padding into the kitchen with <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Still got blow left," <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> protests, not ready for the night to end.
"Knock yourself out, bro," <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies, steering $amanda.firstName [[off to his bedroom|GNO-170200 Where u sleeping]] with a hand on her back.
<</page>><<silently>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("GNO-66400 Kate declines Molly")>>$kate.cover.firstName<<elseif $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>, where you gonna sleep?" <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks. "You can crash in my bed, no funny business." He holds up a three-finger salute. "Scout's honour."
[[Okay, thanks.|GNO-175000 Kate sleeps in Cody's room]]
<span class="greyedOut">//[Lie]//</span> [[Rick already offered me.|GNO-176000 Kate sleeps in Rick's room]]
[[I'll sleep on the couch.|GNO-178000 I'll crash on the couch]]
<</page>><<silently>>
<<set $header.line1 to "''CODY\'S ROOM''",
$header.line2 to "WATTHANA / MAY 2018">>
<<emote-mouth-talking>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug, "thanks." Crashing in a bed sounds pretty good at this point.
<span class="greenHighlighter">Cody ''loved'' that.</span> <span class="greenHighlighter">Slight ''decrease'' to Suspicion.</span>
"Night everybody," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says quickly. "This way, <<if hasVisited("GNO-66400 Kate declines Molly")>>$kate.cover.firstName<<elseif $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>."
You pour yourself a big glass of water, and click through to his room. This must be the master suite; there's a king sized bed and a bathroom en suite.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> draws the <<if $kate.agency == "cia" or $kate.agency == "csis">>drapes<<else>>curtains<</if>>, blocking out the pink and blue early morning sky. "You can use my toothbrush," he offers.
[[Thanks.|GNO-175100 Ablutions]]
[[I brought one.|GNO-175100 Ablutions][$kateSays to "bePrepared"]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "bePrepared">>\
"Got one," you pat your <<handbag>>. "Be prepared, that's my motto."
<<else>>\
"Thanks."
<</if>>\
You clean up in the luxurious en suite<<if $kateSays == "bePrepared">>, dropping your toothbrush in the pot next to his.<<else>>, washing his toothbrush thoroughly before you drop it back in the pot.<</if>>
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes into the bathroom when you're finished, leaving you alone in the bedroom.
It's dark in here, with dawn's light peeping out around the outline of the drapes. A yawn wells up in your chest. Time for bed.
//[[Kick off your boots.|GNO-175110 Socks]]//
<</page>><<silently>>
<<removeShoes>>
<<remove-makeup-pedicure>>
<<wear-hosiery-blackTrainerSocks>>
<</silently>>\
<<header>>\
<<page>>\
Sitting on the bed, you unzip your boots, and kick them off.
//Bliss.// It feels //great// to finally be out of heels.
//[[Take off your socks.|GNO-175120 Barefoot]]//
<</page>><<silently>>
<<remove-hosiery-blackTrainerSocks>>
<<= '<<apply-makeup-pedicure "' + $kate.lastWornPedicure + '">>'>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your little trainer socks, bundle them into a ball, and tuck them into a boot.
It'd be nice to take off your emergency transmitter ring. But it might be safer to sleep with it on. Just in case.
//[[Wear it to bed.|GNO-175140 Kate maintains emergency comms]]
[[Take it off.|GNO-175130 Ringless]]//
<</page>><<silently>>
<<remove-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
You slip it off your finger and set it on the nightstand, where it'll still be within reach.
<<include "GNO-175142 Cody brushes his teeth">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Better not take it off for now.
<<include "GNO-175142 Cody brushes his teeth">>
<</page>>You can hear Cody brushing his teeth next door. You're about to share a bed with a guy you've only known for a few hours; you're not sure how much you should undress.
//[[Sleep in your clothes.|GNO-175160 Bedtime for Bonzo]]
[[Take off your skirt.|GNO-175130 Sleep skirtless]]//<<silently>>
<<remove-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You slide the tight little skirt down your legs and off. That should be more comfy.
//[[Sleep like this.|GNO-175160 Bedtime for Bonzo]]
[[Take off your top.|GNO-175140 Sleep topless]]//
<</page>><<silently>>
<<remove-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You cast a quick look at the bathroom door, then peel off $zoe.firstName's top over your head.
//[[Sleep topless.|GNO-175160 Bedtime for Bonzo]]//
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">//[Exhibitionist]//</span> [[Sleep naked.|GNO-175150 Sleep naked]]
<<else>>\
<span class="greyedOut">//[Exhibitionist] Sleep naked.//</span>
<</if>>\
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
You slide off your <<knickers>>, and tuck them away with the rest of your clothes.
//[[Go to bed.|GNO-175160 Bedtime for Bonzo]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You slip under the sheets and try to relax. Cody's still in the bathroom; a shower's running somewhere else in the apartment.
<<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>\
You feel a sudden twinge of anxiety about the <<Sadie>> situation. Specifically, that you might forget the intel you picked up if you don't report it immediately.
But that's silly, you don't forget things that important. The report can wait.
//<span class="greyedOut">[Narcotic anxiety]</span> [[Better report it.|GNO-175300 Better report it]]//
<<else>>\
That conversation with $amanda.firstName, out on the balcony...that was potentially dynamite. You don't know yet if <<Sadie>>'s 'ay-rab' client is <small>DEVILFISH...</small>but she //was// definitely working on the night he came into the club.
It's possible you've just learned that one of the CIA's high value targets has a very distinguishing feature. //One testicle!// You can't wait to write up your contact report.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes back through from the bathroom; you quickly close the app to delete the message at your end.
"Hey," he smiles in the dim light.
[[Hey.|GNO-175400 Cody undresses]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After a moment's indecision, you grab your phone, and tap-tap-tap a mini contact report.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">06:07</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 06:06
</div>\
<div class="pc messages">\
<div class="messageSignal">\
<<Sadie>> is german national. She did have a semi regular arab client. This client has one testicle(!), not sure if this is devilfish yet. Source: <<Amanda>>
</div>\
<div class="messageSignal last">\
Full report tomorrow
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes back through from the bathroom; you quickly close the app to delete the message at your end.
"Hey," he smiles in the dim light.
[[Hey.|GNO-175400 Cody undresses]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-175300 Better report it")>>\
"Hey." You slip your phone into your <<handbag>><<if not $kate.isWearing.includes("top")>>, holding the sheets over your bare breasts<</if>>. Ian won't message when you're offline; you don't need to worry about an incriminating reply popping up on your screen while you're asleep.
<<else>>\
"Hey." You grab your water from the nightstand and take a sip<<if not $kate.isWearing.includes("top")>>, holding the sheets over your bare breasts<</if>>.
<</if>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> undresses to his [[Calvin Klein boxers|GNO-175500 In bed with Cody]], revealing his body in the dim light. He's lean and hot, with gym-carved muscles in all the right places. A thin tuft of dark hair rises up between his trim pecs<<if $kate.bikiniLine != "hollywood">>, as neatly trimmed as your bikini line<</if>>.
<</page>><<silently>>
<<emote-calm>>
<<first>>
<<addNotification "Arousal +1" "Your nipples are stiff, your pussy's wet, you're ready to fuck.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You feel a waft of aircon on your bare <<if $kate.isWearing.includes("top")>>legs<<else>>body<</if>> as <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls back the sheets, and slips into bed beside you.
Any doubts about his intentions <<if not $kate.isWearing.includes("knickers")>>for the naked girl in his bed <<elseif not $kate.isWearing.includes("top")>>for the topless girl in his bed <</if>>are dispelled immediately. His hands are on you straight away – cupping your <<if not $kate.isWearing.includes("skirt")>>naked <</if>>hip, rolling you up onto your side so you're face to face.
His nose brushes yours, his breath smells minty fresh.
[[What about Scout's honour?|GNO-175510 What about scout's honour?]]
//<span class="greyedOut">[High Arousal]</span> [[Kiss him.|GNO-175520 Kate kisses Cody]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What about Scout's honour?"
"They kicked me out." <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand roams onto your <<if $kate.isWearing.includes("skirt")>>butt, fondling it through your thin skirt<<elseif $kate.isWearing.includes("knickers")>>butt, fondling it through your underwear<<else>>naked butt<</if>>. "Bad behaviour."
He pulls your body in close against his, and then [[you're kissing in the dark|GNO-175520 Kate kisses Cody]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("GNO-175510 What about scout's honour?")>>\
Your lips brush and then you're kissing in the dark, your hand cupping his face, his roaming onto your <<if $kate.isWearing.includes("skirt")>>butt, fondling it through your thin skirt<<elseif $kate.isWearing.includes("knickers")>>butt, fondling it through your underwear<<else>>naked butt<</if>>.
<</if>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s actually a little younger than you. But making out with him feels much more natural than gross kisses from Connor or Kriangsak.
His lips are firm and his skin is taut, clean-shaven but with a hint of stubble scrape. His tongue tastes of toothpaste and it probes your mouth with [[demanding masculine energy|GNO-175530 Cody mounts Kate]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presses your <<if not $kate.isWearing.includes("top")>>bare <</if>>shoulders down onto the bed, climbs on top of you.
You're not sure how far you should let this go. It feels good, but Cody's nothing to do with the mission, not really, and you just met him tonight...
[[Cody, stop.|GNO-175540 Cody nipple lick][$kateSays to "stop"]]
//[[Kiss him.|GNO-175540 Cody nipple lick][$kateSays to "mwah"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "stop">>\
<<emote-mouth-talking>>\
"Stoppp," you whisper.
"Shhhh."
<<else>>\
<<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
You cup his face in your hands and pull him back down to your mouth, kisses and soft murmurs in the dark.
<</if>>\
<<if $kate.isWearing.includes("top")>>\
<<silently>>
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shuffles down in the bed, slides your clingy little top up easily above your breasts. It's too thin and skimpy to offer him any resistance.
Then he sucks a [[bare stiff nipple into his mouth|GNO-175550 Nipple play]].
<<else>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kateSays == "mwah">>breaks off and <</if>>kisses his way down your neck, onto your bare breasts. Then he sucks a [[bare stiff nipple into his mouth|GNO-175550 Nipple play]].
<</if>>\
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You gasp as little jolts of pleasure criss-cross through your body. <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s tongue flicks and lashes over one bullet hard nipple, his fingertips toy with the other.
He switches over, tweaking and tugging on your wet right nipple, licking and sucking the left.
His free hand drifts down your body, towards your groin...
[[Cody, stop...|GNO-175560 Cody tests the waters][$kateSays to "uh uh"]]
//[[Open your legs for him.|GNO-175560 Cody tests the waters][$kateSays to "wfo"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "uh uh">>\
"Cody, stop..." you murmur breathily, as <<if $kate.isWearing.includes("knickers")>><<if $kate.isWearing.includes("skirt")>>his hand slips up your tiny skirt, finding<<else>>his finger finds<</if>> the flimsy scrap of hot wet $knickers.material that's protecting your pussy.<<else>>his hand cups your naked pussy, a finger slipping between your hot wet lips.<</if>>
"Shhh." He stops sucking your tit just long enough to shush you, then drops his head and goes back to work on your breast. Hot waves of arousal surge through you as <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kate.isWearing.includes("knickers")>>strokes your clit <<link "through your wet <<knickers>>." "GNO-175570 Feels so good">><</link>><<else>>[[strokes your clit|GNO-175570 Feels so good]].<</if>>
<<elseif $kateSays == "wfo">>\
You part your legs almost instinctively. <<if $kate.isWearing.includes("knickers")>><<if $kate.isWearing.includes("skirt")>>His hand slips up your tiny skirt, finding<<else>>His finger finds<</if>> the flimsy scrap of hot wet $knickers.material that's protecting your pussy.<<else>>His hand cups your naked pussy, a finger slipping between your hot wet lips.<</if>> Hot waves of arousal surge through you as <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kate.isWearing.includes("knickers")>>strokes your clit <<link "through your wet <<knickers>>." "GNO-175570 Feels so good">><</link>><<else>>[[strokes your clit|GNO-175570 Feels so good]].<</if>>
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-67100 Kate drops Molly") and not hasVisited("GNO-160020 Kate stays off the blow")>>Your body's tingling with the ebbing waves of Molly and cocaine<<elseif not hasVisited("GNO-160020 Kate stays off the blow")>>Your body's tingling with the ebbing rush of cocaine<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>Your body's tingling with the ebbing rush of benzedrine<<else>>You're hazily drunk<</if>>, and <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tongue and fingers are stirring jolts of arousal and pleasure through your whole body.
You thread your fingers through his hair and trace them over his lean, gym-sculpted shoulders as he licks and sucks and fondles you.
His mouth and his hand come off your breasts. He shifts in the bed, and then <<if $kate.isWearing.includes("skirt")>>his fingers are curling inside the waistband of your little skirt<<elseif $kate.isWearing.includes("knickers")>>his fingers are curling inside the waistband of your <<knickers>><<else>>you're face to face, with Cody moving up between your legs<</if>>...
<span class="greyedOut">//[Arousal too high] Get up and leave the room.//</span>
//[[Let him fuck you.|GNO-175580 Kate lets Cody fuck her]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("skirt")>>\
<<remove-skirt-redFloralTieSideMini>>\
<<removeKnickers>>\
Your skirt comes off with your <<knickers>>, sliding off down your legs and tossed away into the darkness.
<<elseif $kate.isWearing.includes("knickers")>>\
<<removeKnickers>>\
Your <<knickers>> slide down and off, tossed away into the darkness.
<</if>>\
Mounting on top of you, <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> throws aside the sheet, gazes down on your body in the dim light. <<if $kate.braSize == "large">>"Holy shit," he murmurs, cupping your breasts.<<else>>"Jeez," he murmurs, "you're gorgeous."<</if>>
Then the tip of his cock is nudging between your [[wet lips|GNO-175590 Penetration]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
You mew and grip his shoulders as his hard cock eases inside you, filling you up inch by inch.
Then you're having sex in the dark, your hips rocking in unison at a natural, instinctive pace.
In your <<if hasVisited("GNO-67100 Kate drops Molly") and not hasVisited("GNO-160020 Kate stays off the blow")>>mildly high<<elseif not hasVisited("GNO-160020 Kate stays off the blow")>>mildly high<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>post-benzedrine<<else>>half drunk<</if>>, tired state, the sex feels comfortable, like being with a boyfriend. Even though you've only known him [[a few hours|GNO-175600 Cody fucks Kate]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers are toying with your nipples. His cock's pumping rhythmically inside you. Your normally busy mind is quiet, occupied by the feelings of the moment.
<<if $kate.braSize == "large">>\
Like most guys, he's obsessed with your breasts, lavishing them with gropes and squeezes and nipple tugs and licks. Like a full shift behind the bar, but all at once, and all from one guy. "Your tits are //massive,"// he murmurs. Like you didn't know.
<<else>>\
He's very affectionate, kissing your cheeks and your neck while he ravishes you. "You're fuckin' //beautiful,"// he murmurs.
<</if>>\
You're so turned on it only takes a couple of minutes. His cock thrusting steadily inside you, his pubic bone bumping into your clit, flicking and licking your stiff sensitive nipples. An orgasm rises up naturally inside your body then [[crashes over you|GNO-175610 Kate orgasm]] in a fountain of release.
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Gripping his lean strong shoulders, you find your voice as he makes you come, crying out softly in the darkness.
<span class="greenHighlighter">Cody ''loved'' that.</span>
As the feelings subside, his cock slips out of you, making you feel suddenly empty as <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> manhandles you into a <<if $kate.braSize == "large">>[[new position|GNO-175620 Cowgirl]]<<else>>[[new position|GNO-175900 First date doggy]]<</if>>.
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rolls onto his back. With his hands on your hips and your ass, he guides you up and on top of him, straddling over him in the cowgirl position.
<<if $kate.isWearing.includes("top")>>\
//[[Take off your top.|GNO-175630 Topless]]//
<</if>>\
//[[Get back on his cock.|GNO-175640 Cowgirl mounts]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<<remove-top-zoesBlackLongsleevedTop>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You peel the top off over your head, and toss it off the side of the bed. It feels better to be naked.
<span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> guiding his erection back into your wet pussy.
//[[Take it back inside you.|GNO-175640 Cowgirl mounts]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
Reaching down, you grasp his hard, wet shaft and <<if hasVisited("GNO-175630 Topless")>>help him <</if>>guide the tip back into you. "Oh yeah," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs, "oh Jeez yeah."
You sink down on it, feeling him fill you up from a new angle. Cowgirl's not your favourite, but you've already come. Now you just need to [[return the favour|GNO-175650 Cowgirl ride]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
With your hands resting on his firm chest, you start twerking on his cock, slowly at first then finding the rhythm.
"Oh //fuck// yeah." <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands come back up to your breasts, cupping them, feeling the weight, tweaking your nipples. Right after your orgasm, they're a little sensitive.
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">//[Masochist]//</span> [[You can be rough, I don't mind.|GNO-175660 Rough ride]]
<<else>>\
<span class="greyedOut">//[Masochist] You can be rough, I don't mind.//</span>
<</if>>\
//[[Ride him.|GNO-175770 Easy rider]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You can be rough with them," you murmur in the darkness. "I don't mind."
At first you're not sure he's heard you. Then, experimentally, he pinches them a little bit harder.
<span class="greyedOut">//[Masochist]//</span> [[Harder.|GNO-175670 Harder]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Harder."
You bob up and down on his cock more energetically to encourage him. <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't say anything, just pinches your nipples a bit more forcefully.
It hurts but it feels good. You feel a twinge of renewed arousal in your groin at being handled like this. Like when Kriangsak fucked you*.
//[[Try the Singapore Grip.|GNO-175680 Kate pulls out the Singapore Grip]]//
<span class = "greyedOut"><hr />
//ⓘ *DEV NOTE: the Kriangsak scene is getting a rewrite for masochists.//</span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your mind flashes back to that night in your room at the hostel, Kriangsak //squeezing// your nipples every time he wanted you to squeeze your pussy on his dick.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pinches your nipples again – much more mercifully than Kriangsak – and you clench your vaginal muscles tight.
<span class="greenHighlighter">Cody ''liked'' that.</span>
"Fuck," he croaks, startled by the sensation.
[[Yeah baby.|GNO-175690 Yeah baby]]
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, baby," you coo encouragingly. "Like that."
//Pinch. Squeeze. Pinch. Squeeze.// All while you're riding up and down on his dick. //Like Ilsa in the VIP.//
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets less and less nice to you as his orgasm gets close. Soon he's mauling your tits just as harshly as Kriangsak or one of the nipple cripplers in the bar, the ones Roxy dodges but you like, and you //love// it and if he keeps going like this [[you're going to–|GNO-175700 Cody orgasm]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His hips buck frantically under you, and he yanks your nipples hard enough to make you yelp, pulling you down face-to-face.
<span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tongue plunges into your mouth. His fingers squash your nipples cruelly hard, one last time. Then his thrusts subside and he flops back in the bed and you realise [[he just came|GNO-175710 Roll off]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You dismount, and roll back onto the bed beside him. //God.// He almost made you come //twice.// You need to lie there and just breathe for a minute.
The back of his hand finds yours, and your fingers curl together. The next word out of his mouth is surprising. "Sorry," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "I've never done that before."
You guess he's talking about the harsh nipple play, not the sex.
<span class="greyedOut">//[Lie]//</span> [[Me either.|GNO-175720 Me either]]
[[What did you think?|GNO-175722 What did you think?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Me either," you murmur. <<if $kate.isWearing.includes("top")>>Sitting up in the bed, you peel off $zoe.firstName's top and toss it aside, then lie back down again.<<remove-top-zoesBlackLongsleevedTop>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>><</if>>
"Don't know what came over me."
[[I asked for it.|GNO-175730 I was asking for it]]
[[Me. Very nearly twice.|GNO-175722 Me, nearly twice]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("top")>>Sitting up in the bed, you peel off $zoe.firstName's top.<</if>> "What did you think?" you ask him<<if $kate.isWearing.includes("top")>> as you lie back down.<<remove-top-zoesBlackLongsleevedTop>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>><</if>>
"Don't know. I //liked// it, but...I feel kinda bad about it. Like...I don't know what came over me."
[[I asked for it.|GNO-175730 I was asking for it]]
[[Me. Very nearly twice.|GNO-175722 Me, nearly twice]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Me." You lean across and kiss his cheek. "Very nearly twice."
<span class="greenHighlighter">Cody ''loved'' that.</span>
He chuckles and squeezes your hand in the dark. "You're cool, <<if hasVisited("GNO-66400 Kate declines Molly")>>$kate.cover.firstName<<elseif $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>."
[[Just hope you haven't bruised me up before my photoshoot.|GNO-175740 Bruised me up]]
[[Let's get some sleep.|GNO-175760 Let's get some sleep]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I asked you for it." You turn and kiss him on the cheek. "Don't worry about it."
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> squeezes your hand in reply.
[[Just hope you haven't bruised me up before my photoshoot.|GNO-175740 Bruised me up]]
[[Let's get some sleep.|GNO-175760 Let's get some sleep]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Just hope you haven't bruised me up before my photoshoot."
You said it as a joke, and maybe to titillate him or yourself a little – you're still turned on. But <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sounds remorseful. "Oh god, sorry," he mumbles. "Did I?"
[[Don't worry, they've got makeup.|GNO-175750 They've got makeup]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry about it," you reassure him, "they've got makeup."
You feel like the idea of a topless model showing up for work with bruised tits after a one-night stand is pretty startlingly hot, but obviously <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't agree. //Why am I kinkier than a boy? God.// Maybe it's just because he's already come.
Yeah. Must be that.
[[Let's get some sleep.|GNO-175760 Let's get some sleep]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Let's get some sleep."
"Mmh." Sounds like he's nearly there already. You pull the bedsheets back around you, and try to [[drift off|GNO-200000 Sex dream]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cups and fondles your breasts as you glide up and down on his stiff wet cock.
"Unhh," he grunts, bucking his hips to thrust up into you faster, making you change the pace. His hands grab onto your breasts like handles, holding them steady as the rest of you [[bounces up and down|GNO-175780 Bouncy ride]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Driving with your butt and thighs, you rise and fall on <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stiff shaft, a fast, primal rhythm that you sense is going to get him off //soon.//
His hands fall away from your breasts, letting them jiggle and bounce with the rest of you.
//[[Hold them steady with your arm.|GNO-175790 Arm bra]]
[[Let them bounce.|GNO-175820 Let em bounce]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reach up and cover them with an 'arm bra'. You've always been a bit self-conscious about how...jiggly they are when you're topless and moving, and...
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches up for your arm bra, grasps your wrist, [[tugs it down|GNO-175800 No arm bras allowed]].
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
It's just as erotic as being //stripped.// You stop for a second, but <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> keeps thrusting, making your boobs shake.
Your eyes meet his, and he thrusts again, and you know exactly what he wants.
//[[Ride him.|GNO-175810 Give them a shake for the Ben-man, will ya]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<set _katesDominantKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
You can't look him in the eyes when you're doing it. Not that he's looking at your eyes anyway.
With both hands on his chest, you resume the pace, twerking up and down on his rock-hard cock. You let go of your self-consciousness about your breasts and just let them bounce and bob and shake in the dim light.
<<if _katesDominantKink == "masochist" or _katesDominantKink == "exhibitionist">>The vulnerability you feel<<else>>Doing what he wants<</if>> is //hot.// You feel a [[twinge of renewed arousal|GNO-175830 Cody cowgirl creampie]] in your groin at <<if _katesDominantKink == "exhibitionist">>displaying yourself<<else>>performing<</if>> like this.
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
You look down at <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in the dim light. He doesn't even notice you're looking at him; his eyes are locked on your breasts, fascinated by how they move when they're totally unconstrained.
With your hands resting on his shoulders, you put on a show, twerking up and down on his rock-hard cock, making your boobs jiggle and bounce and bob.
Something tells you he's not going to [[last too much longe–|GNO-175830 Cody cowgirl creampie]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hips buck frantically under you. He grabs your boobs one more time, squeezing them hard and groaning.
Then his thrusts subside, and he flops back down in the bed, and you realise that [[you just made him come|GNO-175840 Roll off]].
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You dismount, and roll down onto the bed beside him. The back of his hand finds yours, and your fingers curl together.
"Wow," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Did you come?"
[[Was that not obvious?|GNO-175850 Wasn't that obvious?]]
[[Nearly twice.|GNO-175860 Nearly twice]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smirk>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("top")>>Sitting up in the bed, you peel off $zoe.firstName's top and toss it aside.<<remove-top-zoesBlackLongsleevedTop>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>><</if>> "Wasn't it obvious?"
<span class="greenHighlighter">Cody ''liked'' that.</span>
He chuckles and squeezes your hand in the dark. "You're cool, <<if hasVisited("GNO-66400 Kate declines Molly")>>$kate.cover.firstName<<elseif $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>."
[[Let's get some sleep.|GNO-175760 Let's get some sleep]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hmm." <<if $kate.isWearing.includes("top")>>Sitting up in the bed, you peel off $zoe.firstName's top and toss it aside.<<remove-top-zoesBlackLongsleevedTop>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>><<else>>You lean across and kiss his cheek.<</if>> "Very nearly twice."
<span class="greenHighlighter">Cody ''liked'' that.</span>
He chuckles and squeezes your hand in the dark. "You're cool, <<if hasVisited("GNO-66400 Kate declines Molly")>>$kate.cover.firstName<<elseif $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>."
[[Let's get some sleep.|GNO-175760 Let's get some sleep]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
With his hands on your hips and your ass, <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flips you over [[onto your front|GNO-175910 All fours]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls you up onto your hands and knees, in the doggy style position.
It feels like you're presenting yourself to him. You look over your shoulder and your eyes meet briefly in the dim light before his gaze drops hungrily [[to your ass|GNO-175920 Doggy penetration]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a hand on your waist, <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> uses the other to guide the tip of his cock back inside you.
A moment's brief resistance; then you gasp as he [[fills you up again|GNO-175930 Finding the rhythm]] from a different angle.
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
His hands grip your waist as you find the rhythm, riding his stiff cock, your back arched sexily as you're fucked on all fours.
It's quick and intense, and <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't last much longer now he's got you into [[this position|GNO-175940 Cody money shot]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A few minutes of intense thrusting, your butt bouncing on his thighs, his hands holding your waist. <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s a quiet lover: you let your voice come out in low, breathy gasps and murmurs so he's not doing you in silence.
A crescendo of slamming thrusts, then Cody finds his voice, //"uh! uh! uh!"// His cock throbs and twitches deep inside you, then he's spent, and you both [[slump down onto the bed|GNO-175950 Doggy afterglow]].
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
The back of his hand finds yours, and your fingers curl together.
"Wow," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Did you come?"
[[Was that not obvious?|GNO-175850 Wasn't that obvious?]]
[[Nearly twice.|GNO-175860 Nearly twice]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, but Rick already offered me." That's not actually true, but you feel like you'll be safer and more in control sharing a bed with <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> than with <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">Rick ''loved'' that.</span> <span class="greenHighlighter">Slight ''decrease'' to Suspicion.</span>
"Yeah, uh huh," he stammers, the remaining coke forgotten. "I'm next door, <<if hasVisited("GNO-66400 Kate declines Molly")>>$kate.cover.firstName<<elseif $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>. Like I said, remember."
[[Yeah, Rick, I remember.|GNO-176010 Going next door]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, Rick." You grab your <<handbag>>. "I remember."
<<image "/locationPhotos/thailand/watthana/nightCorridor.jpg" 220 1000 520 0>>\
The pair of you cross over to the other rented apartment, where <span class="imageLink"><<link "Beau">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyBeau.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Grant">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyGrant.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are also staying.
Having struck out with <span class="imageLink"><<link "Liz">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emily.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Rose">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rose.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – who are crashing in here on the couch – Beau is heading for bed with <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; Grant is already in his room with the <span class="imageLink"><<link "hostess from the club">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/hostess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Head to Rick's room.|GNO-176020 Rick's room]]//
<</page>><<silently>>
<<set $header.line1 to "''RICK\'S ROOM''",
$header.line2 to "WATTHANA / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
His small room is decorated in the same sterile, luxurious style as everything else in this place. There's a double bed, and a closet, and just enough room to walk between the two.
"Bathroom's next door," <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> offers. "You can use my toothbrush if you like."
[[Thanks.|GNO-176030 Pre-Rick ablutions]]
[[I brought one.|GNO-176030 Pre-Rick ablutions][$kateSays to "bePrepared"]]
<</page>><<silently>>
<<set $header.line1 to "''BATHROOM''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "bePrepared">>\
"Got one," you pat your <<handbag>>, "but thanks."
<<else>>\
"Thanks."
<</if>>\
You slip into the bathroom before <span class="imageLink"><<link "Liz">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/emily.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> or <span class="imageLink"><<link "Rose">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rose.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> can take it over, and freshen yourself up before bed.
Bright daylight streaming in through the frosted glass window reminds you [[how long you've been awake|GNO-176040 Return to Rick's room]].
<</page>><<silently>>
<<set $header.line1 to "''RICK\'S ROOM''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tries to get into the bathroom next, leaving you alone in his room.
Bright morning sunlight reflects off the windows of the building opposite.
//[[Close the curtains.|GNO-176050 Close the curtains]]//
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
You take off your <<handbag>>, close the curtains, and sit down on the bed.
A yawn wells up in your chest. Time for bed.
//[[Kick off your boots.|GNO-176060 Socks]]//
<</page>><<silently>>
<<removeShoes>>
<<remove-makeup-pedicure>>
<<wear-hosiery-blackTrainerSocks>>
<</silently>>\
<<header>>\
<<page>>\
You unzip them, and kick them off.
//Bliss.// It feels //great// to finally be out of heels.
//[[Take off your socks.|GNO-176070 Barefoot]]//
<</page>><<silently>>
<<remove-hosiery-blackTrainerSocks>>
<<= '<<apply-makeup-pedicure "' + $kate.lastWornPedicure + '">>'>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your little trainer socks, bundle them into a ball, and tuck them into a boot.
It'd be nice to take off your emergency transmitter ring. But it might be safer to sleep with it on. Just in case.
//[[Wear it to bed.|GNO-176080 Kate maintains emergency comms]]
[[Take it off.|GNO-176090 Ringless]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Better not take it off for now.
<<include "GNO-176100 Rick queues for the bathroom">>
<</page>><<silently>>
<<remove-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
You slip it off your finger and tuck it into your <<handbag>>.
<<include "GNO-176100 Rick queues for the bathroom">>
<</page>>You can hear talking out in the main apartment; sounds like Rick didn't beat the <<if $kate.agency != "mi6">>English <</if>>girls to the bathroom, and he's talking to one of them. //Maybe about his MBA.//
You're about to share a bed with a guy you've only known for a few hours; you're not sure how much you should undress.
//[[Sleep in your clothes.|GNO-176140 Bedtime for Bonzo]]
[[Take off your skirt.|GNO-176110 Sleep skirtless]]//<<silently>>
<<remove-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You slide the tight little skirt down your legs and off. That should be more comfy.
//[[Sleep like this.|GNO-176140 Bedtime for Bonzo]]
[[Take off your top.|GNO-176120 Sleep topless]]//
<</page>><<silently>>
<<remove-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You cast a quick look at the bedroom door, then peel off $zoe.firstName's top over your head, and add it to your little pile of stuff on the floor.
//[[Sleep topless.|GNO-176140 Bedtime for Bonzo]]//
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">//[Exhibitionist]//</span> [[Sleep naked.|GNO-176130 Sleep naked]]
<<else>>\
<span class="greyedOut">//[Exhibitionist] Sleep naked.//</span>
<</if>>\
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
You slide off your <<knickers>>, and add them to the pile.
//[[Go to bed.|GNO-176140 Bedtime for Bonzo]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You slip under the sheets, and try to relax. Rick still hasn't made it into the bathroom.
<<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>\
You feel a sudden twinge of anxiety about the <<Sadie>> situation. Specifically, that you might forget the intel you picked up if you don't report it immediately.
But that's silly, you don't forget things that important. The report can wait.
//<span class="greyedOut">[Narcotic anxiety]</span> [[Better report it.|GNO-176150 Better report it]]//
<<else>>\
That conversation with $amanda.firstName, out on the balcony...that was potentially dynamite. You don't know yet if <<Sadie>>'s 'ay-rab' client is <small>DEVILFISH...</small>but she //was// definitely working on the night he came into the club.
It's possible you've just learned that one of the CIA's high value targets has a very distinguishing feature. //One testicle!// You can't wait to write up your [[contact report tomorrow|GNO-176160 Drifting off]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After a moment's indecision, you get your phone out of your bag, and tap-tap-tap a mini contact report.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">06:07</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 06:06
</div>\
<div class="pc messages">\
<div class="messageSignal">\
<<Sadie>> is german national. She did have a semi regular arab client. This client has one testicle(!), not sure if this is devilfish yet. Source: <<Amanda>>
</div>\
<div class="messageSignal last">\
Full report tomorrow
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
Okay, now [[you can relax|GNO-176160 Drifting off]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You lay still in the dim light peeping around the curtains<<if hasVisited("GNO-67100 Kate drops Molly") and not hasVisited("GNO-160020 Kate stays off the blow")>>, your body tingling with the ebbing waves of Molly and cocaine<<elseif not hasVisited("GNO-160020 Kate stays off the blow")>>, your body tingling with the ebbing rush of cocaine<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>, your body tingling with the ebbing rush of benzedrine<<else>>. Your head's swimming in an alcoholic haze<</if>>.
You feel both tired and horny. If you were alone, you'd jill off, and that'd probably help you sleep.
But Rick's [[coming back soon|GNO-176170 Or is he?]].
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
//Or is he?// A shower starts up next door. Rick might //never// get in that bathroom.
//Huh. Maybe I've got time.//
You strain your ears to listen for his voice in the main apartment.
But you can't hear anything except the smooth steady //hiss// of the [[hot water|GNO-176180 Like a waterfall]] next door.
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
Rushing
like A
[[waterfall|GNO-176200 Office dream]]
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false,
$kate.isUndercover to false>>
<<set $header.line1 to "''???''",
$header.line2 to "??? / ???">>
<<emote-calm>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
After a while, you're in a meeting...but you can't understand why you're back at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey House<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>>. Wasn't it important that you stayed in Bangkok?
<<image "/locationPhotos/thailand/watthana/officeDream.jpg" 150 1000 550 0>>\
"We had to pull you out," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "It was too dangerous."
That makes sense. But you feel a //bitter// pang of disappointment about being taken out of the field anyway. Back to your desk job, without capturing <small>DEVILFISH.</small>
It was all for nothing. They shouldn't have pulled you out. You were [[doing so well|GNO-176210 Up close with Cody]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, it's too bad." Cody's behind you now, kissing your neck, fondling your breasts. Even though this is a meeting.
Isn't it? His breath is hot in your ear and he's unbuttoning your blouse and his hands are in your bra and he's [[tugging your nipples|GNO-176220 Wake up!]]...
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false,
$kate.isUndercover to true>>
<<set $header.line1 to "''RICK\'S ROOM''",
$header.line2 to "WATTHANA / MAY 2018">>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-squint>>
<<if $kate.isWearing.includes("top")>>\
<<if $kate.piercings.includes("nipplesSilverBarbells")>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-piercedPokies-"+$kate.braSize)>>
<<else>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-pokies-"+$kate.braSize)>>
<</if>>
<<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-rear")>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</if>>
<<showRear>>
<<first>>
<<addNotification "Arousal +1" "You're close to orgasm.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You wake up in a dark bed, laying on <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arm. He's cupping your bare breasts, tugging your stiff nipples, his erection pressing against <<if not $kate.isWearing.includes("knickers")>>your wet naked pussy<<else>>the soaked little scrap of $knickers.material between your legs<</if>>.
Body heat on your back, hands on your tits, his lips nuzzling your neck. It's like waking up part way through being //fucked.// For a second, you're not even exactly sure where you are – //<<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "nzsis">>Wellington<<else>>HQ<</if>>? [[Bangkok?|GNO-176230 Where am I]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The tip of Cody's cock <<if not $kate.isWearing.includes("knickers")>>slips between your wet lips<<else>>pushes so insistently into your crotch that if you weren't wearing <<knickers>> he'd be inside you<</if>>. You let out a startled, feminine little gasp.
He freezes for a second.
Then he gives your nipples a gentle //squeeze,// tugs them, and kisses your neck, grinding his rock-hard erection against you.
<span class="greyedOut">//[Arousal too high] Get up and leave the room.//</span>
<<if $kate.isWearing.includes("knickers")>>\
//[[Wake up sex with Cody.|GNO-176250 Knickers off]]//
<<else>>\
//[[Wake up sex with Cody.|GNO-176260 Flipped into position]]//
<</if>>\
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
His hand curves around your belly, slides inside your <<knickers>>.
A finger traces over your <<if $kate.bikiniLine == "hollywood">>bare shaved pussy<<else>>neatly trimmed bikini line<</if>>, slips easily between your hot wet lips.
Waves of pleasure simmer up through you as he massages your pussy. Then his fingers curl inside the elastic waistband, and your <<knickers>> come <<link "down and off" "GNO-176260 Flipped into position">><<removeKnickers>><</link>>.
<</page>><<silently>>
<<showFront>>
<<emote-brows-raised>>
<<emote-eyes-closed>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
He rolls you onto your back, tosses aside the bedsheets, climbs on top of you in the dark.
<span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands curl around the backs of your thighs, spreading your legs a little wider. Then; his cock glides up inside you, all the way.
You're so wet and ready that it [[feels like it just slips in|GNO-176270 Bodies in motion]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You curl your hands around his slim waist as he thrusts inside you, rock-hard and frantic.
You still feel jumbled. It's like waking up from a sex dream, into another sex dream.
<<if $kate.braSize == "large">>\
His mouth drops to your breast, suckling a stiff nipple into his mouth and sending jolts of pleasure [[zipping through you|GNO-176280 Guess who]] with every swirl and lash of his tongue.
<<else>>\
His mouth drops to yours, [[kissing you hungrily|GNO-176280 Guess who]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His stiff cock thrusts inside you like a piston. <<if $kate.braSize == "large">>His tongue laps your stiff wet nipple.<</if>> You're going to come.
Then your waking mind is gripped by a [[sudden, startling realisation|GNO-176290 Pickle Rick]].
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
Cody was in the dream. //But...//
Someone else's bare cock surges and ebbs inside you. Slamming thrusts and inevitable friction.
[[Rick?|GNO-176300 Rick?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Rick?"
"Mmh." <span class="imageLink"><<link "Rick's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice is muffled on your breast in his mouth. His stiff cock thrusts into you, over and over.
[[Oh fuck.|GNO-176310 Kate orgasm]]
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
"Oh fuck!"
His cock thrusts inside you, the tip bumping right up against your cervix. Your orgasm washes over you suddenly and irresistably, [[rocking through your whole body|GNO-176310 Rick orgasm]] and making you cry out.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes almost at the same time, his tongue lapping frantically on your nipple as his cock pulses and unloads his cum [[deep inside you|GNO-176320 Slumped in the darkness]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slumps down on the bed, laying beside you in the dark.
You feel kind of dazed. //Was I even //awake// when that started?// You feel...you don't know how you feel.
Rick's fingers intertwine with yours. He kisses you on the shoulder, [[pulls the sheet back over your body|GNO-176330 Rick is attentive]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("top")>>You peel off $zoe.firstName's top and toss it off the foot of the bed.<<remove-top-zoesBlackLongsleevedTop>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-"+$kate.braSize)>> <<set $avatar.clothing.delete("clothing/tops/zoesBlackLongsleevedTop/20_top-zoesBlackLongsleevedTop-flash-rear")>>
<</if>>\
Slowly, in the still darkness, you [[drift back to sleep|GNO-176340 ???]]...
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<page>>\
//[[???|GNO-176350 Morning with Rick]]//
<</page>><<silently>>
<<emote-eyes-squint>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You don't know how long you were asleep, but the apartment is still dark and quiet.
<span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is asleep beside you, squashed up against your naked back.
//[[Slip out of bed.|GNO-176360 Wake up dead]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You ease yourself gently out of <span class="imageLink"><<link "Rick's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arms, and slip out of the sheets.
He murmurs something in his sleep, then rolls over.
You pad quietly around the room, [[finding your things|GNO-176370 Missing knickers]] in the dark.
<</page>><<silently>>
<<wear-ring-transmitterRing>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You find everything...except your <<knickers>>. <<if hasVisited("GNO-176130 Sleep naked")>>They're not with the rest of your clothes on the floor by your bag.<<else>>You don't know what <span class="imageLink"><<link "Rick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyRick.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> did with after he peeled them off you last night.<</if>>
//[[Go commando.|GNO-176380 Commando exfil]]//
<</page>><<silently>>
<<wear-skirt-redFloralTieSideMini>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it.// You pull your skirt back on, sling on your bag, and [[pad back out to the main apartment|GNO-176390 Dark apartment]], carrying your boots.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The living room's dark, blinds drawn.
There are people asleep on the couch and the floor. Trying not to wake them, you slip out quietly and [[walk barefoot next door|GNO-176400 Next door]].
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Heyyy."
Next door, everyone's up. <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is making coffee; <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are lounging around in boxers and vests; and <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are looking a little dishevelled in last night's dresses and makeup.
[[Morning.|GNO-176410 Morning scumbags]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Morning." You flop down in an armchair and relax.
Coffee brews. Mem comes through from next door, also rocking the <span class="imageLink"><<link "morning after look">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"We're gonna send for breakfast," <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"You want us to pick you up something?" <span class="imageLink"><<link "Chris's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tone isn't exactly welcoming.
"It's okay," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "We got a <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> coming."
//[[Put your boots on.|GNO-179010 Let's wait downstairs]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Heyyy." <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> up, looking a little dishevelled in last night's clothes and makeup. In the kitchen, <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is making coffee.
[[Morning.|GNO-176430 Morning Chris and Amanda]]
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Morning." You flop down in an armchair and relax.
Soon $zoe.firstName and <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerge from their room; $zoe.firstName also looking somewhat <span class="imageLink"><<link "the worse for wear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Where's Mem?" she asks.
[[Next door.|GNO-178930 Mem's next door]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll crash on the couch."
"Promise I'll behave," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists.
[[Okay, thanks.|GNO-175000 Kate sleeps in Cody's room]]
[[The couch is comfy, I'll be fine.|GNO-178010 I'll be fine on the couch]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's a comfy couch. I'll be fine."
<span class="yellowHighlighter">Cody was ''disappointed.''</span>
<span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finds you a spare bedsheet. You brush your teeth, and get set up on the couch while everybody else gets [[ready for bed|GNO-178020 Ready for bed]]: taking turns in the bathroom, getting water from the fridge (boys) or the sink (girls, who've been here long enough to know the tapwater in Bangkok is fine).
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_clubAtKoiNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes to bed with <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_clubAtKoiSignedNoBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; and <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes to his room alone.
Everybody else goes next door to sleep, and finally you're alone in the living room. Bright morning light streams in through the balcony doors.
//[[Draw the blinds.|GNO-178030 Cloak of darkness]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Click, click, click,// go your heels on the floor as you move around in the quiet apartment, drawing all the blinds you can.
//[[Take off your boots.|GNO-178040 Socks]]//
<</page>><<silently>>
<<removeShoes>>
<<remove-makeup-pedicure>>
<<wear-hosiery-blackTrainerSocks>>
<</silently>>\
<<header>>\
<<page>>\
Sitting on the couch in the darkness, you unzip your boots, and kick them off.
//Bliss.// It feels //great// to finally be out of heels.
//[[Take off your socks.|GNO-178050 Barefoot]]//
<</page>><<silently>>
<<remove-hosiery-blackTrainerSocks>>
<<= '<<apply-makeup-pedicure "' + $kate.lastWornPedicure + '">>'>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your little trainer socks, bundle them into a ball, and tuck them into a boot.
It'd be nice to take off your emergency transmitter ring. But it might be safer to sleep with it on. Just in case.
//[[Wear it to sleep.|GNO-178070 Kate maintains emergency comms]]
[[Take it off.|GNO-178060 Ringless]]//
<</page>><<silently>>
<<remove-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
You slide it off your finger and slip it into your <<handbag>>.
<<include "GNO-178080 Sleepwear choices">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Better not take it off for now.
<<include "GNO-178080 Sleepwear choices">>
<</page>>You can hear water running in one of the en suite bathrooms. Everyone's gone to bed, but you're not sure how far to undress, out here in the main apartment.
//[[Sleep in your clothes.|GNO-178200 Bedtime for Bonzo]]
[[Take off your skirt.|GNO-178090 Sleep skirtless]]//<<silently>>
<<remove-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You slide the tight little skirt down your legs and off. That should be more comfy.
//[[Sleep like this.|GNO-178200 Bedtime for Bonzo]]
[[Take off your top.|GNO-178100 Sleep topless]]//
<</page>><<silently>>
<<remove-top-zoesBlackLongsleevedTop>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _knickers to "panties">>
<<elseif $kate.agency == "mi6">>
<<set _knickers to "knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set _knickers to "undies">>
<<else>>
<<set _knickers to "ERROR IN KNICKERS TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You cast a quick look at the nearest bedroom door, then peel off $zoe.firstName's top over your head.
You should <<link "sleep in your _knickers" "GNO-178200 Bedtime for Bonzo">><</link>>, probably no one wants your naked ass on their couch.
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You slip under the sheet, and try to relax. A shower's running somewhere in the apartment.
<<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>\
You feel a sudden twinge of anxiety about the <<Sadie>> situation. Specifically, that you might forget the intel you picked up if you don't report it immediately.
But that's silly, you don't forget things that important. The report can wait.
//<span class="greyedOut">[Narcotic anxiety]</span> [[Better report it.|GNO-178300 Better report it]]//
<<else>>\
That conversation with $amanda.firstName, out on the balcony...that was potentially dynamite. You don't know yet if <<Sadie>>'s 'ay-rab' client is <small>DEVILFISH...</small>but she //was// definitely working on the night he came into the club.
It's possible you've just learned that one of the CIA's high value targets has a very distinguishing feature. //One testicle!// You can't wait to write up your contact report.
//[[Try to sleep.|GNO-178310 Try to sleep]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After a moment's indecision, you grab your phone, and tap-tap-tap a mini contact report.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">06:07</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 06:06
</div>\
<div class="pc messages">\
<div class="messageSignal">\
<<Sadie>> is german national. She did have a semi regular arab client. This client has one testicle(!), not sure if this is devilfish yet. Source: <<Amanda>>
</div>\
<div class="messageSignal last">\
Full report tomorrow
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
Okay. Now you can relax.
//[[Try to sleep.|GNO-178310 Try to sleep]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You close your eyes and try to drift off<<if hasVisited("GNO-67100 Kate drops Molly") and not hasVisited("GNO-160020 Kate stays off the blow")>>, your body tingling with the ebbing waves of Molly and cocaine<<elseif not hasVisited("GNO-160020 Kate stays off the blow")>>, your body tingling with the ebbing rush of cocaine<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>, your body tingling with the ebbing rush of benzedrine<<else>>. Your head's swimming in an alcoholic haze<</if>>.
There's a strong drinking culture at <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>. It's normal to drink after work, and during your training <<if $kate.agency == "cia">>at The Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>> you finished most days by drinking in the bar with your fellow recruits.
The reason is simple: alcohol is involved in a surprising number of intelligence operations. Officers have to [[build up a tolerance|GNO-178320 Drifting off]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Thinking about the office helps calm your rushing thoughts. You'll be going back someday, back to your real life of meetings and reports and quiet, civilised after-work drinks.
You're not ready for that yet. What was it <<Amanda>> said at the skybar? //Not fixing to get back to Oklahoma.//
The Task Force keeps telling you that you're making fast progress. But your mission's still in the early stages. Unless <small>DEVILFISH</small> just happens to show up – and you or some analyst watching the security feeds manage to personally ID him, based on the artist's sketch – you could easily be undercover as '$kate.stripperName' for weeks and weeks.
Maybe [[months|GNO-178330 Zoe]].
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You were just sinking into sleep when you hear one of the bedroom doors open quietly.
It's $zoe.firstName, <span class="imageLink"><<link "barefoot and topless">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_toplessGettingWater.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in the dim light.
You watch through heavy eyes as she pads softly through to the kitchen and gets some more water.
//[[Go to sleep.|GNO-178340 Go to sleep]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You close your eyes and let consciousness [[slip away|GNO-178350 ???]]...
<</page>><<silently>>
<</silently>>\
<<page>>\
//[[???|GNO-200000 Sex dream]]//
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You awaken in darkness, disorientated and confused. //I could //taste// her.//
It takes you a couple of seconds to remember [[where you are|GNO-178500 Where am I]].
<</page>><<silently>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<<set $kate.isUndercover to true>>
<<first>>
<<addNotification "Arousal +1" "That was a very sexy dream.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You don't know how long you were asleep, but the apartment is still dark and quiet.
You woke up in the middle of a vivid and sexy dream – although the details are already slipping from your mind. //Something about <<Zoe>>?//
Your nipples are stiff and your <<knickers>> are [[hot and soaking wet|GNO-178600 Experimental touch]].
<</page>><<silently>>
<<emote-mouth-oh>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<</silently>>\
<<header>>\
<<page>>\
You reach down and experimentally feel your crotch. A little jolt of pleasure runs up through you as you touch the flimsy little scrap of hot wet $knickers.material.
//Fuck I'm so turned on.//
//[[Go back to sleep.|GNO-178700 Kate tries to sleep]]
[[Play with your nipples.|GNO-178800 Nipple play]]//
<hr />
//TK waiting for bedsheet jilling off art//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You try to get back to sleep, but your body just won't co-operate. You're too hot and horny and flustered.
//[[Play with your nipples.|GNO-178800 Nipple play]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You cup your breasts, give your hard nipples a little //flick// <<if $kate.isWearing.includes("top")>>through your thin top<<else>>under the sheet<</if>>. Then a gentle little //squeeze.//
It feels nearly as good as touching your clit. Your body's //so// ready. And no one's up.
//[[Fondle your pussy.|GNO-178900 Fingerbang]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<</silently>>\
<<header>>\
<<page>>\
Your reach down again, stroking your pussy through the flimsy scrap of thin wet $knickers.material.
You're so hot and so wet that you don't think this is going to take long. If one of the guys were to come out and find you like this – he could probably [[make you come|GNO-178910 Fantasy]] in about sixty seconds.
<</page>><<silently>>
<<emote-eyes-closed>>
<<set _dominantKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
The idea of being caught like this sends <<if _dominantKink == "exhibitionist">>an exhibitionistic<<elseif _dominantKink == "masochist">>a self-destructive<<else>>a submissive<</if>> little thrill through you.
You imagine Chris or Teo coming out to find <<if hasVisited("GNO-66400 Kate declines Molly")>>you<<elseif $kate.agency == "mi6">>'Pommy'<<else>>'$kate.stripperName'<</if>>, horny and masturbating on their Airbnb couch.
And making <<if hasVisited("GNO-66400 Kate declines Molly")>>you<<else>>her<</if>> [[carry on|GNO-178920 Carry on my wayward daughter]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Or maybe just yanking the sheet off and fucking <<if hasVisited("GNO-66400 Kate declines Molly")>>you<<else>>her<</if>> hard.
It'd be so hot to be caught. With one hand down the front of your <<knickers>> and the other toying with your nipples, the idea occurs to you that this little //ménage à moi// would be even hotter if you were //naked.//
Then you couldn't cover up so easily if one of them //did// come out.
//[[Strip naked.|GNO-178930 Clothes off]]//
<</page>><<silently>>
<<emote-eyes-squint>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("skirt")>>\
<<remove-skirt-redFloralTieSideMini>>\
<<remove-top-zoesBlackLongsleevedTop>>\
As soon as you think it, you know you're going to do it.
Quickly and efficiently, you strip off your skirt and $zoe.firstName's top. They go on the floor with your <<handbag>> and shoes.
Then your <<knickers>> follow them. Down your legs and off. You're naked under the sheet.
<<elseif $kate.isWearing.includes("top")>>\
<<remove-top-zoesBlackLongsleevedTop>>\
As soon as you think it, you know you're going to do it.
You peel $zoe.firstName's top off over your head. It goes on the floor with your <<handbag>>, skirt and shoes.
Then your <<knickers>> join them. Down your legs and off. You're naked under the sheet.
<<else>>\
As soon as you think it, you know you're going to do it. Lifting your butt off the couch, you slide your <<knickers>> down and off.
They go on the floor with your clothes, shoes and <<handbag>>. You're naked under the sheet.
<</if>>\
//[[Get back to your 'me time'.|GNO-178940 Self service]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
It feels even sexier now you're naked. Anyone could come in and find you like this, jilling off under a flimsy bedsheet.
You can picture it all so clearly. The shocked look on your face when you're caught.
That moment when you realise that Teo or Chris don't think it's awkward, they just think it's sexy.
Totally [[overwhelmed with desire|GNO-178950 Overwhelmed with desire]].
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
No words. You imagine him just yanking the bedsheet away. Pulling your naked legs apart. And sliding his cock up into you without asking if that's okay.
You strum your stiff, wet little clit, picturing yourself being fucked on the couch after the party. His stiff cock thrusting rhythmically up inside you. His hand cupped over your mouth <<if $kate.firstName != "Zoe" and $kate.firstName != "Zooey" and $kate.firstName != "Zoey" and $kate.firstName != "Zoë" and $kate.firstName != "Zoé">>[[so you don't wake Zoe|GNO-178960 Don't wake Zoe]]<<else>>[[So you don't wake Izzy|GNO-178960 Don't wake Zoe]]<</if>>...
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Mashing your clit and squeezing a stiff nipple, your body's rocked by a clenching orgasm. Your breath comes out in a crescendo of sharp, quiet little gasps that you don't care if anybody hears.
//Fuck, fuck, fuck.// For a moment, [[all you want|GNO-178970 All that she wants]] is for someone to find you doing this.
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-squint>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets-meTime")>>
<</silently>>\
<<header>>\
<<page>>\
Then reality returns, and so do your real desires.
The apartment's still dark and quiet and empty.
No one heard you; [[everyone's asleep|GNO-178980 Blissful and relaxed]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You lay there in the dark for a while, savouring how good you feel after doing that.
<<if hasVisited("GNO-178100 Sleep topless")>>You should put your <<knickers>> back on.<<else>>You should put some clothes back on.<</if>>
But you're feeling so [[blissful and relaxed|GNO-178990 ???]] right now...
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<</silently>>\
<<page>>\
//[[???|GNO-178900 Wakey wakey]]//
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You awaken to bright light streaming in through the glass balcony doors.
They're ajar: the sound of Bangkok traffic drifts in from the street below.
<span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is up, making coffee.
$amanda.firstName emerges from his room, looking <span class="imageLink"><<link "a little dishevelled">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[Morning guys!|GNO-178910 Morning person]]
//[[Groan.|GNO-178920 Not a morning person]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Morning guys!"
"Hey," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles tiredly. <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just grunts.
Soon $zoe.firstName and <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerge from their room; $zoe.firstName also looking somewhat <span class="imageLink"><<link "the worse for wear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Where's Mem?" she asks.
[[Next door.|GNO-178930 Mem's next door]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You groan and block out the sunlight with one arm.
You peep out again when $zoe.firstName and <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emerge from their room; $zoe.firstName also looking somewhat <span class="imageLink"><<link "the worse for wear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Where's Mem?" she asks.
[[Next door.|GNO-178930 Mem's next door]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Next door<<if hasVisited("GNO-178920 Not a morning person")>>," you croak.<<else>>."<</if>>
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> heads off to rouse her.
<<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>\
Yawning and stretching, <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes out of his room, wearing PJ bottoms. "Hey bro." He goes [[straight through to the kitchen|GNO-178932 Mem returns]] to talk to <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<else>>\
"Hey guys." <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes out of his room, wearing PJ bottoms. His upper body is lean and sculpted and fit. "How was the couch?"
[[Comfy.|GNO-178940 Whatever][$kateSays to "Comfy"]]
[[Peaceful.|GNO-178940 Whatever][$kateSays to "Peaceful"]]
[[I got a crick in my neck.|GNO-178940 Whatever][$kateSays to "I got a crick in my neck"]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Coffee brews. <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes back with Mem, also rocking the <span class="imageLink"><<link "morning after look">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"We're gonna send for breakfast," <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"You want us to pick you up something?" <span class="imageLink"><<link "Chris's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tone isn't exactly welcoming.
"It's okay," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "We got a <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> coming."
//[[Put your boots on.|GNO-179010 Let's wait downstairs]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, and heads into the kitchen to talk to <span class="imageLink"><<link "Chris">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Hey bro."
Coffee brews. <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes back with Mem, also rocking the <span class="imageLink"><<link "morning after look">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
You'd better [[get dressed|GNO-178950 Getting dressed]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
Clutching the bedsheets around you, you try to get dressed without putting on a peep show.
That's easier said than done when it comes to putting on your top.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You somehow manage to wriggle into it one-handed [[without flashing your boobs|GNO-178960 Dude where's my knickers]].
<<else>>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets-nipSlip")>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
You try to wriggle into it without providing a nip slip. All three of the boys watch you doing this, and you're [[not confident you succeeded|GNO-178960 Dude where's my knickers]].
<br />
<br />
<span class="greenHighlighter">Chris ''liked'' that.</span> <span class="greenHighlighter">Cody ''liked'' that.</span> <span class="greenHighlighter">Teo ''liked'' that.</span>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-eyes-calm>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You fumble on the floor for your <<knickers>>...but you can't find them.
They're not on the floor. You check in your <<handbag>>, but they're not in there either.
//[[Check under the sheet.|GNO-178970 Sheet check]]
[[Check in the couch cushions.|GNO-178980 Cushion check]]
[[Go commando.|GNO-178990 Commando]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sweep your hands around under the sheet, but fail to find a little bundle of balled-up lycra.
<<if not hasVisited("GNO-178980 Cushion check")>>\
//[[Search the couch cushions.|GNO-178980 Cushion check]]//
<</if>>\
//[[Go commando.|GNO-178990 Commando]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You poke your fingers into all the nooks and crannies you can find. There's nothing in there except dust.
<<if not hasVisited("GNO-178970 Sheet check")>>\
//[[Search under the sheet.|GNO-178970 Sheet check]]//
<</if>>\
//[[Go commando.|GNO-178990 Commando]]//
<</page>><<silently>>
<<wear-skirt-redFloralTieSideMini>>
<</silently>>\
<<header>>\
<<page>>\
You slide on the miniskirt under the sheets, and tug it down as far as it'll go.
"We're gonna send for breakfast," <span class="imageLink"><<link "Teo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyTeo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> announces.
"You, uh, want us to pick you up anything?" <span class="imageLink"><<link "Chris's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tone is not exactly welcoming.
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "We got a <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> coming."
//[[Get up.|GNO-179000 On your feet soldier]]//
<</page>><<silently>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets-nipSlip")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You do a half-assed job of folding up the bedsheet, and lay it over the back of the couch.
Last visual check: nope, your underwear's not sitting on a cushion.
It's possible that it's gone under the couch, but there's no way you're going to [[crawl around on the floor|GNO-179010 Let's wait downstairs]] in //this// skirt.
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-176410 Morning scumbags") or hasVisited("GNO-178932 Mem returns")>>\
This isn't easy to do without having a wardrobe malfunction.
<<else>>\
"It's nearly here," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, talking about the <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div>.
Goodbyes are said while you're putting on your boots; again, this is very hard to do without having a wardrobe malfunction.
<</if>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<silently>>
<<wear-shoes-amandasBlackHighHeeledAnkleBoots>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
<</silently>>
You angle your legs so all the boys can see is thigh.<br />
<br />
Cody, Chris and Teo all [[watch you putting your boots on|GNO-179020 Title card]] anyway.
<<else>>
<<silently>>
<<wear-shoes-amandasBlackHighHeeledAnkleBoots>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
<</silently>>
Sitting on the couch, you lift your legs and zip on your boots on as demurely as you can, in a stretchy 10" skirt and no underwear.<br />
<br />
The boys [[sip coffee and discreetly watch the show|GNO-179020 Title card]].
<br />
<br />
<span class="greenHighlighter">Chris ''liked'' that.</span> <span class="greenHighlighter">Cody ''liked'' that.</span> <span class="greenHighlighter">Teo ''liked'' that.</span>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $header.line1 to "''WATTHANA''",
$header.line2 to "BANGKOK / MAY 2018">>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<wear-bigBlackSunglasses>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<a data-passage="GNO-179030 Waiting in the street">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/watthana/watthanaTitleCardWarmDay.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''WATTHANA''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Down in the street, you yawn and stretch in the hot sun while you wait for the <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> to turn up.
It's 12.30. You probably got four hours sleep or so, but you still feel tired and out of sync.
"Ugh," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_watthanaHotMess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> groans. "We're a [[hot mess|GNO-179040 Hot mess]]."
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<set _lauren to $zoe.firstName>>
<</silently>>\
<<header>>\
<<page>>\
Your <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber</span></div> arrives. You climb in the back, trying ineffectually to avoid flashing the rearview mirror as you shuffle into the middle between <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_watthanaHotMess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_watthanaHotMess2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
No one can be bothered to flirt with the driver, so <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_watthanaHotMess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just pays the fare when he drops you at <<link "_lauren's favourite breakfast spot" "GNO-179050 Title card">><</link>>.
<</page>><<silently>>
<<set $header.line1 to "''MAKE ME MANGO''",
$header.line2 to "PHRA NAKON / MAY 2018">>
<<remove-bigBlackSunglasses>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<a data-passage="GNO-179060 Ordering breakfast">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/makeMeMango/makeMeMangoTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This is a cute little café, hidden down a non-descript <div class="tooltip">soi<span class="tooltiptext">side street</span></div> across from the Temple of the Reclining Buddha. It's bustling with locals on a Friday lunchtime.
You <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> up at the counter, and order a healthy [[smoothie bowl|GNO-179070 Smoothie bowl]] like the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
There's a table free up on the mezzanine, where the chunky wooden stools are high and arranged so you feel like you're giving everybody on the staircase an amateur version of that scene from //Basic Instinct.//
You adjust your skirt about a thousand times before you give up on it.
//[[Cross your legs and eat your mango smoothie bowl.|GNO-179080 Mem hates mango]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/makeMeMango/mangoSmoothieBowl.jpg" 100 1000 500 0>>\
"I hate mango," <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> telling you. "In my house where I grew up, we had three big mango trees. It was mango fucking everything. Every summer, the house smell like jam. I must be the only Thai–"
"Hi bitch-es!" Meeting up for lunch, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_mangoCafeArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes up the stairs, carrying a plate of mango and sticky rice. "<div class="tooltip">Dtáai<span class="tooltiptext">Good lord</span></div>, you look terr-boh! [[What I miss last night|GNO-179090 What I miss?]]?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mehhh. Rich frat boys," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says dismissively.
"I had a good time," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks, tap-tap-tapping on her phone. She sits up to show Ping the two different men's names scrawled on her cleavage. "Bry's going //crazy// about this. Don't think he's gonna let me shower."
"Who that say?" <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_eatingBreakfastMangoCafe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Teo. The black guy," $zoe.firstName says.
"Ohhh, he big?"
"Eh...[[normal size|GNO-179100 Normal size]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Who wanna hear about my night," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mutters darkly. "I go for the hottest one. I have to compete with those two skinny English bitches.<<if $kate.agency == "mi6">> No offence," she pats your leg.<<else>>."<</if>>
"Oh, they were little //cunts,"// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"<div class="tooltip">Khâ<span class="tooltiptext">Yes</span></div>. Anyway. I eventually get him to, uh...his room. And guess what?"
[[What?|GNO-179110 Magazine, what happen?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What?"
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds up her little finger, crooks it to mime erectile dysfunction. "Mother fucker, he [[can't get up|GNO-179120 Beau has ED]]."
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"No way," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> exclaims.
"Yeah way." <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> revelation gets a surprised, musical laugh from the other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
"[[Didn't you try|GNO-179130 I try everything]]–" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> begins, her texting with Bryan forgotten.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I try everything," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists, "every fucking thing. It was the cocaine, alright, nothing worked. I have to cuddle him. //Oh, don't worry, <div class="tooltip">mai pen rai<span class="tooltiptext">it's not a big deal</span></div>.// The one time I try to go out and have sex not for money..."
"Ohmygod," <span class="imageLink"><<link "$amanda.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughing so hard that she snorts. "Stop."
"I got fuckin' //railed,"// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is giggling. "Like three times!"
"Twice," $amanda.firstName holds up two fingers.
Following along, <span class="imageLink"><<link "Ping's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_eatingBreakfastMangoCafe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze turns to you, expecting a number.
<<if hasVisited("GNO-200200 Morning sex")>>\
[[Twice.|GNO-179140 I slept on the couch]]
<<elseif not hasVisited("GNO-178010 I'll be fine on the couch")>>\
[[Once.|GNO-179140 I slept on the couch]]
<<else>>\
[[I slept on the couch.|GNO-179140 I slept on the couch]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-200200 Morning sex")>>\
<<emote-brows-calm>>\
You hold up two fingers. "Twice."
<span class="greenHighlighter">''Slight decrease'' to Suspicion Level.</span> <span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
<<elseif not hasVisited("GNO-178010 I'll be fine on the couch")>>\
<<emote-brows-calm>>\
You hold up a finger. "Once."
<span class="greenHighlighter">''Slight decrease'' to Suspicion Level.</span> <span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
<<else>>\
<<emote-mouth-talking>>\
You shrug. "I slept on the couch."
<</if>>\
"<div class="tooltip">Aaw<span class="tooltiptext">I see</span></div>," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_eatingBreakfastMangoCafe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. A guy carrying his lunch up to the mezzanine gets distracted by your legs, and nearly trips up the stairs.
//[[Adjust your skirt.|GNO-179180 Hemline]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-brows-attentive>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<</silently>>\
<<header>>\
<<page>>\
You tug your hem down automatically, shuffling your butt on the stool to try and stretch out an extra inch of coverage.
Beside you, <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[does the same thing|GNO-179190 Are we gonna do the thing]].
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You go back to eating your smoothie bowl. "Are we gonna do the, uh, the thing..." <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Yeah, I guess."
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Definitely."
You notice that <span class="imageLink"><<link "Ping's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_eatingBreakfastMangoCafe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> staying quiet, like she's not involved in the thing, whatever it is.
[[What thing?|GNO-179200 What thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<</silently>>\
<<header>>\
<<page>>\
Part of being undercover is not being afraid to ask the questions you //would// ask, if you weren't worried about people thinking you were a spy. "What thing?"
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> share a glance. <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> casts a cautious glance around the busy café before she answers in a low voice. "Well...we know a guy. Cop guy. If we send him a text, he'll go to the apartment, y'know...find the stuff, threaten to bust 'em."
[[Unless...|GNO-179210 Unless]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<</silently>>\
<<header>>\
<<page>>\
"Unless..."
"They're rich. He'll scare the shit out of them, then they'll pay a 'fine' to get out of it." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> makes air quotes with her fingers. "That'll be it."
[[Does the club know about this?|GNO-179220 Does the club know?]]
[[Do we get a cut?|GNO-179230 Do we get a cut?]]
[[Leave me out of it.|GNO-179250 Leave me out of it]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Does the club know?"
"Yeah," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, "that's how we know him."
[[Do we get a cut?|GNO-179230 Do we get a cut?]]
[[Leave me out of it.|GNO-179250 Leave me out of it]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do we get a cut?"
<span class="greenHighlighter">Slight ''decrease'' to Suspicion.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span>
<<if hasVisited("GNO-178010 I'll be fine on the couch")>>\
//"We// get a cut," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. //"You// didn't fuck anybody."
[[Neither did Mem.|GNO-179240 Neither did Mem]]
<<else>>\
"Club does," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "We get a cut of the cut."
"Plus we stay on the cops' good side," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds.
"We split [[four ways|GNO-179231 Four ways?]]?" <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_morningAfter2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> checks.
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "She fucked <<if hasVisited("GNO-175500 In bed with Cody")>>Cody<<else>>Rick<</if>>, we cut her in."
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "$kate.cover.firstName did more than you, Mem."
"Ugh, don' remind me. [[Fuck my life|GNO-179260 Amanda betrays the frat boys]]."
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Neither did Mem."
"Ugh, don' remind me. Fuck my life."
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks, but shakes her head. "You can earn when [[you're a bargirl|GNO-179260 Amanda betrays the frat boys]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Whoa. Leave me out of this."
<span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">Mem ''disliked'' that.</span>
<<if hasVisited("GNO-178010 I'll be fine on the couch")>>\
"You weren't //in// it," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "It's <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> only."
<<else>>\
"Fine," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Three way split."
<</if>>\
<span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_eatingBreakfastMangoCafe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a little shrug. "Don' worry about those guys," she says, "they [[jus' have to pay|GNO-179260 Amanda betrays the frat boys]]. <div class="tooltip">Mai pen rai<span class="tooltiptext">it's not a big deal</span></div>."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sends a text message to someone. "It's done," she announces.
"I had a great birthday," $zoe.firstName leans back and stretches, raising her arms so high that her boobs nearly <span class="imageLink"><<link "pop out of her dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_mangoCafeFlash.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Ohmygod," she laughs, tugging it back up.
//"Sluttt,"// clucks $amanda.firstName. "You going back to yours?"
"Yeah." $zoe.firstName's phone pings yet again. "Better get moving. I'll swing by to pick up my stuff [[tomorrow|GNO-179300 Out in the street]]."
<</page>><<silently>>
<<set $header.line1 to "''PHRA NAKON''",
$header.line2 to "BANGKOK / MAY 2018">>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<wear-bigBlackSunglasses>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Out in the <div class="tooltip">soi<span class="tooltiptext">side street</span></div>, you get long goodbye hugs from <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_watthanaHotMess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_watthanaHotMess2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_watthanaHotMess.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_mangoCafeArrival.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. //Thanks for coming, that was fun, are you gonna call that Russian guy, see you at work.//
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> pile into separate taxis, and [[head home|GNO-179305 Endex]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You watch them go. That's it...you can finally relax. You stand around in the street, just basking in the hot sunlight and working out how you feel.
//Sleep deprived, exhausted, vulnerable...//but also free, relieved and happy that it's all over. //What a night.//
You've gotta write a report, but you're [[out from under the microscope|GNO-179306 Free as a bird]] for now.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
For a moment, you're tempted to go across the street and see the Reclining Buddha. Just because you can.
Maybe you could even pay a few Baht and get blessed by a monk? Might be a good hangover cure.
Then you realise that there's no way you'd be allowed into a temple dressed [[like this|GNO-179310 Tuk tuk]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Back to the hostel, then, where you can chill out. A <div class="tooltip">mo sai<span class="tooltiptext">motorcycle taxi</span></div> would be the best way to get through the thick traffic, but you don't want to board one in this skirt.
<<image "/locationPhotos/thailand/makeMeMango/tukTuksOutsideWatPho.jpg" 100 1000 500 0>>\
You grab a tuk-tuk instead. It won't get you there as fast, but <div class="tooltip">mai pen rai<span class="tooltiptext">it's not a big deal</span></div>, there's no rush.
Agreeing the fare in advance with the driver, you [[climb onto the big bench seat in the back|GNO-179320 Tuk tuk ride]], and relax.
<</page>><<silently>>
<<set $header.line1 to "''CITY STREETS''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini")>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-rear")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/makeMeMango/viewFromTukTuk.jpg" 100 1000 500 0>>\
The tuk-tuk splutters north, stop-starting through thick Bangkok traffic. It gives you time to think.
Well: you think you did okay. You feel like you got a bit closer to the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> last night, and that was [[the main objective|GNO-179330 Reflections I]].
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemHigh2")>>
<<set $avatar.clothing.pushUnique("clothing/skirts/redFloralTieSideMini/20_skirt-redFloralTieSideMini-hemReallyHigh2")>>
<</silently>>\
<<header>>\
<<page>>\
Last night was pretty raucous. It started with getting your nails done, and ended in a cocaine party with a bunch of <<if $kate.agency != "cia">>American <</if>>guys you picked up in a nightclub. You haven't had a night out like that since <<university>>.
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> party hard when they're off the clock. You did your best to fit in, <<if hasVisited("GNO-67100 Kate drops Molly")>>doing Molly <<if not hasVisited("GNO-160020 Kate stays off the blow")>>and coke<</if>> with them<<elseif not hasVisited("GNO-160020 Kate stays off the blow")>>doing coke with them<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>matching them drink for drink without getting wasted, thanks to the benzedrine<<else>>although you're sure you'd be feeling a lot worse if you'd matched them drink for drink once you got to the club<</if>>.
<<if not hasVisited("GNO-178010 I'll be fine on the couch")>>\
When you woke up, you had that sense of...dread and shame that sometimes comes the morning after a one night stand. Laughing about it over breakfast helped – the bargirls really don't give a shit about it, it's normal to them. Doing it probably helped you [[fit in|GNO-180000 Title card]].
<<else>>\
<<if not hasVisited("GNO-160020 Kate stays off the blow")>>\
Your nose is blocked up and you feel tired and run-down. It'll be great to have a [[shower, and a rest|GNO-180000 Title card]].
<<elseif hasVisited("GNO-67100 Kate drops Molly")>>\
You're in that dreamy, MDMA morning-after haze: not quite a comedown, not quite a rush, you just feel...altered. It'll be great to have a [[shower, and a rest|GNO-180000 Title card]].
<<else>>\
A whole night around a bunch of people high on Molly and coke was emotionally exhausting. It'll be great to have a [[shower, and a rest|GNO-180000 Title card]].
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<avatar-getWet>>
<<emote-eyes-closed>>
<<wear-shoes-greyToeThongFlipFlops>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="GNO-180010 Shower scene">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In the lukewarm spray of the hostel shower, you scrub away the sweat and smells of the girls' night out, and think about the structure of your full report.
The big news is the gossip you picked up from $amanda.firstName – <<Sadie>> did have a regular 'ay-rab' client, and this client had an identifying feature, one testicle.
It may not be <small>DEVILFISH,</small> but she //was// working on the night he came into the club, so it's a lead that [[can't be dismissed|GNO-180020 Kate is an analyst]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Analysts back at the Combined Task Force and <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> will be able to assign it an exact % chance. That kind of thing is your job back in <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, so you think through how you'd approach it.
//Hmmm...//probably rewatch the security footage, and count how many Middle Eastern-looking men each <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> has to fuck. Make that into a spreadsheet: bargirls vs client ethnicities.
Cross-referencing //that// with <<Sadie>>'s shift patterns from the notebook should get you to a [[solid estimate|GNO-180030 Kate is an operator]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Picturing the office makes you realise the team meetings back at Faslane and Langley must be //surreal.// Highly trained officers, trawling through thousands of hours of footage from a Bangkok sex parlour, trying to generate leads on a terrorist <div class="tooltip">HVT<span class="tooltiptext">High Value Target</span></div>.
And your job isn't making spreadsheets any more. Everything the team is learning about the club, every lead that gets you a little closer to <small>DEVILFISH,</small> is coming about because you agreed to [[strip off and go undercover|GNO-180040 Not done yet]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You don't know where the hunt for <small>DEVILFISH</small> is going to take you, but you do know that your work in the Hard Cock Cafe is nowhere near done.
Your next shift's tomorrow. You don't think they'll make you wear the necklace cam again, but you're still going to be topless on the security feed. Probably //fucked// on the security feed, and god knows who's going to watch it.
You're not sure why. Maybe it's just hangover horniness. But...you're kind of [[looking forward to it|GNO-200000 Report]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<remove-shoes-greyToeThongFlipFlops>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
Sitting on your bed, drying out in the hot morning air, you grab your phone and get started on your [[report about last night|GNO-200010 Mind map]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You start, as always, with a <div class="tooltip">mind map<span class="tooltiptext">visual diagram that helps organise and connect ideas</span></div>. It's fiddlier on your phone than on the computer back at your desk<<if not hasVisited("GNO-47700 Kate chooses short nails")>> – especially with nail extensions –<<else>>,<</if>> but it still helps you organise your thoughts.
<<image "/locationPhotos/thailand/hostel/iphoneContactReportMindMap.jpg" 0 1000 371 0>>\
You start with the basics. The key takeaway from last night is the //possible// distinguishing mark on <small>DEVILFISH,</small> the one testicle thing, but you also got closer to the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, and learned a bit more about them and the club's operations.
That'll all need to go [[in your report|GNO-200020 Salacious details]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Last night you made a couple of operational decisions that you need to make sure you frame correctly.
Drug use is the first thing. <<if hasVisited("GNO-67100 Kate drops Molly") or $iAmTestingTheDebriefScene>>You took Molly<<if not hasVisited("GNO-160020 Kate stays off the blow")>> and cocaine<</if>> with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> last night.<<elseif not hasVisited("GNO-160020 Kate stays off the blow")>>You took cocaine at the party in the apartment.<<else>>The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> took Molly and cocaine; you didn't join in.<</if>>
<<if (hasVisited("GNO-67100 Kate drops Molly") or $iAmTestingTheDebriefScene) and not hasVisited("GNO-160020 Kate stays off the blow")>>\
//[[Leave that out of your report.|GNO-200030 (GNO report) Kate leaves out her drug use]]
[[Explain that you did it to build trust and rapport.|GNO-200040 (GNO report) Kate took drugs to build rapport]]//
<<else>>\
//[[Explain you wanted to keep a clear head.|GNO-200050 (GNO report) Kate avoided drugs to keep a clear head]]//
//[[Explain you didn't want to use narcotics without authorisation.|GNO-200060 (GNO report) Kate avoided drugs because she wasn't authorised]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You can report the drug use generally, without putting down in writing exactly what you did.
<<include "GNO-200070 How you got the drugs">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're not a cop: narcotics use is permitted for you in the field, if it's to support a cover. You'll explain that you assessed it was the best way to build trust and rapport with these party girls.
//[[Request formal authorisation to continue drug use.|GNO-200050 (GNO report) Kate requests authorisation for drug use]]
[[Move on.|GNO-200070 Move on]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You decide to explain that you wanted to stay as sober and in control as you could. <<if hasVisited("GNO-67200 Kate fakes dropping Molly")>>You faked taking an MDMA pill, and everybody seemed to accept that you just didn't want to start taking cocaine at 3 <small>A.M.</small><<else>>The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> did try to peer pressure you into using with them, but you were still able to bond with them later.<</if>>
<<include "GNO-200070 How you got the drugs">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Might as well cover my <<if $kate.agency == "cia" or $kate.agency == "csis">>ass<<else>>butt<</if>>.// You decide you'll request pre-authorisation for narcotics use in similar situations in future.
//[[Move on.|GNO-200070 Move on]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You decide to explain that you wanted to avoid narcotics use without pre-authorisation from HQ. <<if hasVisited("GNO-67200 Kate fakes dropping Molly")>>You faked taking an MDMA pill, and everybody seemed to accept that you just didn't want to start taking cocaine at 3 <small>A.M.</small><<else>>The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> did try to peer pressure you into using with them, but you were still able to bond with them later.<</if>>
<<include "GNO-200070 How you got the drugs">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<include "GNO-200070 How you got the drugs">>\
<</page>>You also need to think about how you //got// the cocaine at the party. <<if hasVisited("GNO-155270 Zoe is the cavalry")>>A vivid memory of $zoe.firstName's head bobbing up and down in Kob's lap flashes into your mind.<<else>>A vivid memory of leaning over the gear stick in Kob's car flashes into your mind.<</if>>
<<if hasVisited("GNO-155270 Zoe is the cavalry")>>\
//[[Explain that you narrowly avoided oral sex with the drug dealer.|GNO-200080 (GNO report) Kate narrowly avoided blowing Kob]]//
<<else>>\
//[[Leave that out of the report.|GNO-200090 (GNO report) Kate leaves out the Kob BJ]]//
//[[Explain it was necessary to get the drugs.|GNO-200100 (GNO report) Kate reports the Kob BJ]]//
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
You were alone in a car with a drug dealer who's //used// to getting sexual favours from these girls. The only way you could get out of it was calling $zoe.firstName down.
You decide to report that she performed oral sex on him for the coke. <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> needs to appreciate the fine line you're walking.
<<include "GNO-200110 Hookup culture">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
That's //not// going in your report.
<<include "GNO-200110 Hookup culture">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your first impulse is to just not mention it...but <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> himself pre-authorised you for this kind of thing. //Is there a way I can phrase this...//
You tap out a rough first draft:
<small>The bargirls had agreed to provide cocaine for the afterparty, but the dealer (kob) would only agree to come out in return for oral sex. This arrangement seems to be normal for kob and the girls. Because I am the 'new girl' he wanted it from me, and I complied in order to maintain my cover and build rapport, in line with guidance received from cia dctc on 18/5/18 via sat phone.</small>
Huh. You can finesse it later, but...that actually doesn't sound too bad.
<<include "GNO-200110 Hookup culture">>\
<</page>><<if hasVisited("GNO-178010 I'll be fine on the couch")>>\
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> all hooked up with guys after the party.
//[[Report that you slept on the couch.|GNO-200120 (GNO report) Kate slept on the couch]]//
<<elseif hasVisited("GNO-175000 Kate sleeps in Cody's room")>>\
The other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> all hooked up with guys after the party. You yourself ended up in bed with Cody.
//[[Leave that out of your report.|GNO-200130 (GNO report) Kate leaves out her one-night stand]]
[[Report that you did it to fit in with the bargirls and gain their trust.|GNO-200140 (GNO report) Kate reports her one-night stand]]//
<<else>>\
The other <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> all hooked up with guys after the party. You yourself ended up in bed with Rick.
//[[Leave that out of your report.|GNO-200130 (GNO report) Kate leaves out her one-night stand]]
[[Report that you did it to fit in with the bargirls and gain their trust.|GNO-200140 (GNO report) Kate reports her one-night stand]]//
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
You'll report that you slept alone on the couch. //And leave out the weird sex dream, and the bit where I woke up, stripped off all my clothes and masturbated on a stranger's couch. Fuck.//
<<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>>\
Okay: //I blew a drug dealer in a car.// Not exactly standard <<if $kate.agency == "cia">>Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> protocol; you need to frame this carefully.
//[[Argue this is the only way you're going to fit in.|GNO-200150 (GNO report) Only way to fit in]]
[[Log that you're not crazy about any of this, but you're willing to keep going for now.|GNO-200160 (GNO report) Not crazy about it]]//
<<elseif hasVisited("GNO-200080 (GNO report) Kate narrowly avoided blowing Kob") or hasVisited("GNO-200120 (GNO report) Kate slept on the couch")>>\
//[[Report you'll continue trying to avoid sex.|GNO-200180 (GNO report) I'll continue to avoid sex]]
[[Warn you won't be able to avoid sex indefinitely.|GNO-200190 (GNO report) Can't dodge the D forever]]//
<<else>>\
Okay, this part of the report is actually pretty straightforward<<if hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ") or hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>>, especially if you just leave out the incriminating details<</if>>. Time to [[move on to the next section|GNO-200200 Report away]]...
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> doesn't need to know every single little detail.
<<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>>\
Okay: //I blew a drug dealer in a car.// Not exactly standard <<if $kate.agency == "cia">>Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> protocol; you need to frame this carefully.
//[[Argue this is the only way you're going to fit in.|GNO-200150 (GNO report) Only way to fit in]]
[[Log that you're not crazy about any of this, but you're willing to keep going for now.|GNO-200160 (GNO report) Not crazy about it]]//
<<elseif hasVisited("GNO-200080 (GNO report) Kate narrowly avoided blowing Kob") or hasVisited("GNO-200120 (GNO report) Kate slept on the couch")>>\
//[[Report you'll continue trying to avoid sex.|GNO-200180 (GNO report) I'll continue to avoid sex]]
[[Warn you won't be able to avoid sex indefinitely.|GNO-200190 (GNO report) Can't dodge the D forever]]//
<<else>>\
Okay, this part of the report is actually pretty straightforward<<if hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ") or hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>>, especially if you just leave out the incriminating details<</if>>. Time to [[move on to the next section|GNO-200200 Report away]]...
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>>\
If you're reporting Kob, you might as well report <<if hasVisited("GNO-175500 In bed with Cody")>>Cody<<else>>Rick<</if>>.
<small>The party wrapped up at around 0600. The bargirls each paired off with a male partner for a one night stand. I paired off with <<if hasVisited("GNO-175500 In bed with Cody")>>Cody<<else>>Rick<</if>> in order to fit in and support my cover, again in line with dctc guidance.</small>
<<else>>\
Your first impulse is to just leave <<if hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ")>>this out too<<else>>it out<</if>>...but <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> himself pre-authorised you for this kind of thing. //Is there a way I can phrase this...//
You tap out a rough first draft:
<small>The party wrapped up at around 0600. The bargirls each paired off with a male partner for a one night stand. I paired off with <<if hasVisited("GNO-175500 In bed with Cody")>>Cody<<else>>Rick<</if>> in order to fit in and support my cover, in line with guidance received from cia dctc on 18/5/18 via sat phone.</small>
You can finesse it later, but...that actually doesn't sound too bad.
<</if>>\
<<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>>\
Okay: //I <<if hasVisited("GNO-200040 (GNO report) Kate took drugs to build rapport")>>got high, <</if>>gave a drug dealer a blow job, and had sex with a guy I met in a club.//
Not exactly standard <<if $kate.agency == "cia">>Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> protocol. You need to explain all this in a way that doesn't make them worry you've gone off the rails.
//[[Argue this is the only way you're going to fit in.|GNO-200150 (GNO report) Only way to fit in]]
[[Log that you're not crazy about any of this, but you're willing to keep going for now.|GNO-200160 (GNO report) Not crazy about it]]//
<<else>>\
Okay: //I <<if hasVisited("GNO-200040 (GNO report) Kate took drugs to build rapport")>>got high, <</if>>went back to a cocaine party and had a one-night stand.// Not exactly standard <<if $kate.agency == "cia">>Agency<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> protocol; you need to frame this carefully.
//[[Argue this is the only way you're going to fit in.|GNO-200150 (GNO report) Only way to fit in]]
[[Log that you're not crazy about any of this, but you're willing to keep going for now.|GNO-200160 (GNO report) Not crazy about it]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> has simply //got// to understand that you can't sell the '$kate.cover.firstName $kate.cover.surname' character if she's constantly making sensible life decisions.
This is a girl willing to work topless and hook up with her manager, making friends with prostitutes and strippers. You can't play her as both a girl gone wild and a standoffish prude.
//[[Make sure they know you're just playing a role.|GNO-200170 Just a role]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You need to make it absolutely clear that you're doing all this for the mission, you're not some kind of closet nymphomanic.
<small>I'd like to note for the record that while I have reservations about this aspect of the tasking, I do feel it's effective, and I agree with <div class="tooltip">dctc<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div>'s assessment that it's necessary to maintain my cover. Therefore, I'm willing to continue until my position can be phased out through <div class="tooltip">sigint<span class="tooltiptext">intelligence gathering from electronic signals and communications</span></div> or new <div class="tooltip">humint<span class="tooltiptext">intelligence gathering from human sources</span></div>.</small>
Something like that, you can [[finesse it later|GNO-200200 Report away]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Finding or inventing things in common with potential assets is so key to recruitment that <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> has given it a name: //You, Me, Same Same.//
The Task Force wants you to fit in with and assess the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>; that means you have to mirror them. They like nice clothes, shoes and bags; they like drinking and taking Molly; they like clubbing and hooking up with guys after.
//So I'm doing that. Them, Me, Same Same. As long as HQ knows this isn't the real me.//
You'll need to word this very carefully, but now you've made the decision, you actually feel okay about reporting it. You //are// pre-authorised to have sex, you shouldn't need to [[lie about it|GNO-200200 Report away]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your report will say that you're acting in accordance with your briefing from DCTC: using sex to the minimum extent required.
Okay, this part of the report is actually pretty straightforward<<if hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ") or hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>>, especially if you just leave out the incriminating details<</if>>. Time to [[move on to the next section|GNO-200200 Report away]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You decide you'd better make sure <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>'s aware you're not going to be able to avoid casual sex forever. If '$kate.stripperName' is the only one who never hooks up, it's going to quickly get suspicious.
Okay, this part of the report is actually pretty straightforward<<if hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ") or hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>>, especially if you just leave out the incriminating details<</if>>. Time to [[move on to the next section|GNO-200200 Report away]]...
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-nearlyGoneHennaTattoo"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-nearlyGoneHennaTattoo-rear")>>
<</if>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
You keep working for another hour, writing, reading and rewriting.
<<if hasVisited("GNO-200150 (GNO report) Only way to fit in") or hasVisited("GNO-200160 (GNO report) Not crazy about it")>>\
It's a solid piece of work, but...you hesitate before you hit <small>SEND.</small> //Is this really a good idea?//
You feel like you explained everything in a professional and rational way. But you can't shake off a reluctance to admit to <<if hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand") and hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>>two sexual encounters<<else>>a sexual encounter<</if>> in a work report.
Your confidence is wavering, but you impulsively just tap <small>SEND</small> before you can change your mind. //Fuck it, it's done now.// You use a special command on your phone to permanently erase all your notes.
<<else>>\
Finally satisfied that it's a solid piece of work, you hit <small>SEND.</small> Then you use a special command on your phone to permanently erase all your notes.
<</if>>\
//God, I'm drained.// Your next shift at the club is tomorrow, so your plan is to chill out and get a [[very early night|GNO-200210 Very early night]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
But in your line of work, [[plans often change|WW-100 Title card]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The thing they'll most be interested in is the gossip about <<Sadie>>'s 'ay-rab' client, the one with one testicle.
It may not be <small>DEVILFISH</small> – but she was working on the night he was in the club, so it's definitely a possibility.
You need <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> to analyse the security footage and cross-reference it with the shift patterns in the notebook to tell you exactly //how// possible.
But your [[instincts|GNO-179350 Instincts]] tell you this is high value <div class="tooltip">product<span class="tooltiptext">information obtained by an intelligence operation</span></div>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You suspect that when your report lands, finding <<Sadie>> will become an even higher mission priority.
You don't have any idea how to do that, yet, except for just getting into the club as often as you can and keeping your eyes open.
<</page>><<silently>>
<<remove-towel-whiteBathSheet>>
<<remove-knickers-nudeStringWithTwoBowsOnStraps>>
<<remove-bra-nudeStrapless>>
<<remove-makeup-lipstick-rubyWoo>>
<</silently>>\
<<header>>\
<<page>>\
//TK Cody sex scene. Notes:
- He won't rape her. If she's insistent he'll stop, but she'll need to insist over and over. Meanwhile she's getting fondled and fingered through her thong while Cody promises he won't tell anyone, it's no big deal, let's fuck. (He can tell she's turned on.)
– If she challenges him on Scout's Honour, he confesses that he got kicked out of the scouts
– If they have sex, it starts with kissing. The whole vibe of this scene is "young consensual one night stand sex" – not too kinky, just two hot turned on twentysomethings deciding to fuck
– Kate can optionally go down on him (reflect on the second cock in her mouth tonight if she also blew Kob)
– Cody is a good lover. Nipple licking, neck nibbling, sweeping aside the sheets to spread her legs and lick her clit.
– Gets on top and fucks her in the missionary position, then manoeuvres her into cowgirl (if she has big tits) or doggystyle (if not).
– [[Drift asleep in each other's arms|GNO-200000 Sex dream]] afterwards.//
<hr />
NOTE the Rick path is structurally similar, with the following differences:
– Rick goes for a shower while Kate undresses for bed. Kate messages Ian and drifts into a light sleep.
– Woken up when he gets into bed with her. Kate arousal +1
– Intimate scene of them both holding each other, turned on, not speaking, each not sure if the other is awake/knows they're awake.
– Rick very tentative fondling. Kate can either shut him down (ends the sex scene) or let him do it (Kate arousal +1)
– Kate escalates this to sex by kissing him. Rick climbs on top of her and fucks her in the missionary position, no conversation, just an instinctive hot tender fuck.
– Similar dream/wakeup sequence as with Cody
NOTE in the couch path:
– Kate falls asleep on the couch
– Woken in the night by Zoe, naked, padding quietly out into the kitchen for water. Falls asleep again.
– Sex dream is same but with Zoe
– Wakes up horny. Can't sleep. Strips naked and masturbates on the couch. Falls asleep naked.
– Wakes up with everyone milling around. Has to wear the bedsheet to the bathroom to get dressed.
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false,
$kate.isUndercover to false>>
<<set $header.line1 to "''???''",
$header.line2 to "??? / ???">>
<<set $avatar.clothing.pushUnique("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.pushUnique("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<emote-calm>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You're naked, but so is <<if hasVisited("GNO-178010 I'll be fine on the couch")>><<Zoe>><<else>><<Amanda>><</if>>. "C'mon," she takes your hand. "It's okay."
<<image "/locationPhotos/thailand/watthana/sexDream.jpg" 150 1000 550 0>>\
She leads you out into the walled garden of the safehouse, where Kriangsak and Ian and Clark are waiting for the girl/girl show.
You've got no idea what to do, but she guides you down into position, lying on her back on the tiles, you crouching on all fours above her in a sixty-nine position.
Your nipples are stiff, your pussy's hot and wet...but it's still //embarrassing.// You look up but your colleagues are impassive, unfazed by your actions. //Is it really okay?//
"Go for it," someone tells you in an encouraging voice. You lower your hips and then you're tonguing each other's pussy, <<if hasVisited("GNO-178010 I'll be fine on the couch")>>[[while everyone watches|GNO-178400 Awoken from a sex dream]]<<else>>[[while everyone watches|GNO-200100 Wake up horny]]<</if>>...
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You awaken in darkness, disorientated and confused. //I could //taste// her.//
It takes you a couple of seconds to remember [[where you are|GNO-200110 Orientation]].
<</page>><<silently>>
<<set $header.line1 to "''CODY\'S ROOM''",
$header.line2 to "WATTHANA / MAY 2018">>
<<set $kate.isUndercover to true>>
<<first>>
<<addNotification "Arousal +1" "That was a very sexy dream.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You don't know how long you've been asleep. The daylight framed around the curtains looks bright, and you can hear someone moving around in the main apartment.
You awoke from a vivid and sexy dream – although the details are already slipping from your mind. //Something about <<Amanda>>?//
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stirs in the bed beside you, his erection pressing into your back.
//[[Morning sex.|GNO-200200 Morning sex]]
[[Just get up.|GNO-200120 Slip out of bed]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You ease yourself gently out of <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arms, and slip out of the sheets.
He's snoring softly. You pad quietly around the room, [[finding your things|GNO-200130 The case of the missing knickers]] in the dark.
<</page>><<silently>>
<<wear-ring-transmitterRing>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You quickly find everything, except your <<knickers>>. <<if hasVisited("GNO-175150 Sleep naked")>>They're not with the rest of your clothes on the floor by your bag.<<else>>You don't know what <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> did with after he peeled them off you in the night.<</if>>
//[[Look under the bed.|GNO-200140 The knicker monster under the bed]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You get down on your hands and knees, peering under the dark bed and rummaging around for a little scrap of lycra and elastic.
They're not under there.
//[[Go commando.|GNO-200150 Commando exfil]]//
<</page>><<silently>>
<<showFront>>
<<wear-skirt-redFloralTieSideMini>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-200330 Clothes hunting")>>\
Leaving Cody in the bathroom, you pull your skirt back on, sling on your bag, and [[pad out to the main apartment|GNO-176420 Main apartment]] with your boots in your hand.
<<else>>\
You pull your skirt back on, sling on your bag, and [[pad back out to the main apartment|GNO-176420 Main apartment]], carrying your boots.
<</if>>\
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your pussy's hot and wet, your nipples are stiff, and there's an erection grinding into your butt.
You lie there in his arms for a while, trying to figure out if he's awake.
You're just considering waking him with a blowjob, when he comes round naturally. You feel a little jolt in his body, then he swallows, and groggily clears his throat.
[[Morning.|GNO-200230 Morning]]
//[[Give him a blowjob.|GNO-200210 Morning BJ]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You slither under the sheets, and greet his morning glory with your lips and tongue.
"Mmmh." <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs contentedly as your soft wet mouth slides rhythmically [[up and down|GNO-200220 Blowjob]] on his stiff cock.
<</page>><<silently>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
Up, down, up, down. Your nipples and pussy are crying out for attention as you concentrate on pleasuring the cock in your mouth.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s fingers curl into your hair, fingertips lightly pressing against your head, holding you in position. His murmurs turn to gratified little grunts.
His hips start gently shifting up off the bed, rising to meet you, trying to get deeper up into your mouth.
It's getting hot under the bedsheets. You're breathing through your nose and your jaw's starting to ache. He's so rock hard that you're pretty sure he's going to come down your throat if you keep this up.
//[[Climb on his cock.|GNO-200280 Mounted]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Morning."
"Morning," he croaks back.
You lie there in silence while <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets his bearings. You can picture his brain running through its startup process: //erection, check. Naked girl in my arms, check.//
He cups your breast. His touch on your rock-hard nipple makes you gasp breathily.
//[[Turn over face-to-face.|GNO-200240 Rollover]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You turn over so you're face to face.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cups your ass, pulls you in so close your noses brush together. His naked erection presses into your groin.
//[[Make out.|GNO-200250 Kitten breath kiss]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You kiss him in the darkness, morning breath dispelled by the taste of each other's tongue.
His fingers find your nipples, kneading and tugging them urgently while his cock [[grinds against your naked body|GNO-200260 Penetration]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tugs away the bedsheets, mounts on top of you.
The most cursory touch on your pussy – just checking you're wet enough – then his naked cock [[thrusts back inside you|GNO-200270 Missionary morning]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
Your hands curl around his lean, strong waist and roam down onto his butt while he fucks you. He cups your <<if $kate.braSize == "large">>big round<<elseif $kate.braSize == "small">>small<</if>> breasts, [[pinching and tugging|GNO-200300 Girl, interrupted]] your stiff nipples.
<</page>><<silently>>
<<set $avatar.clothing.delete("accessories/ikeaBedsheets/50_ikeaBedsheets")>>
<<set $avatar.background.delete("accessories/ikeaBedsheets/5_ikeaBedsheets-rear")>>
<<showFront>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You throw off the bedsheets and climb up on top of him, straddling his hips.
He cups your <<if $kate.braSize == "large">>big round<<elseif $kate.braSize == "small">>small<</if>> breasts while you reach down and curl your fingers around his stiff shaft. It's wet with your spit.
//[[Guide it into your pussy.|GNO-200290 Penetration]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
The tip slips between your wet lips, then you're sinking down onto him, feeling his cock pressing up inside you.
"Fuck," <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gasps. With his hands on your breasts, he lifts his hips, driving up into you as you grind on his cock, [[over and over|GNO-200300 Girl, interrupted]].
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName?" You're so distracted you didn't hear the bedroom door open.
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> freezes; you <<if hasVisited("GNO-200270 Missionary morning")>>peep round past him<<else>>twist around<</if>> to see the door.
"Fuck, sorry!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_morningAfter.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> ducks out of the room when she sees that you're naked and <<if hasVisited("GNO-200270 Missionary morning")>>under<<else>>straddling<</if>> Cody.
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">Slight ''decrease'' to Suspicion Level.</span>
Cody chuckles, shrugs and gets straight [[back into motion|GNO-200310 Fuck to finish]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
You're both so turned on that $amanda.firstName doesn't have to wait for you long. You come, <<if hasVisited("GNO-200270 Missionary morning")>>with <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cock thrusting fast and hard inside you<<else>>bouncing up and down on <span class="imageLink"><<link "Cody's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cock<</if>>, and he pulls out and [[squirts all over your belly|GNO-200320 Belly cumshot]] soon after.
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("cumshots/100_cumshot-belly1")>>
<<emote-eyes-calm>>
<<emote-brows-raised>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Ew."
<span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snickers. You [[mop it off your body with the bedsheets|GNO-200330 Clothes hunting]].
<</page>><<silently>>
<<set $avatar.clothing.delete("cumshots/100_cumshot-belly1")>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<wear-ring-transmitterRing>>
<<wear-top-zoesBlackLongsleevedTop>>
<</silently>>\
<<header>>\
<<page>>\
You rummage around for your things while he's in the bathroom.
You quickly find everything...except your <<knickers>>. <<if hasVisited("GNO-175150 Sleep naked")>>They're not with the rest of your clothes on the floor by your bag.<<else>>You don't know what <span class="imageLink"><<link "Cody">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyCody.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> did with after he peeled them off you in the night.<</if>>
//[[Look under the bed.|GNO-200140 The knicker monster under the bed]]//
<</page>><<silently>>
<<set $header.line1 to "''SERVICED APARTMENT''",
$header.line2 to "WATTHANA / MAY 2018">>
<<emote-calm>>
<<emote-eyes-squint>>
<<wear-dress-blackBodyconSleevelessMiniDress>>
<</silently>>\
<<header>>\
<<page>>\
Wearing last night's clothes – minus your <<knickers>>, which have mysteriously vanished – you feel drained, grimy and achey. Your nose is blocked and a vague anxiety gnaws at your stomach.
The apartment's a total state. Empty beer bottles are everywhere, there are spills on the carpet, and the remnants of the coke are strewn on the black table you were snorting it off last night. Looking at it now in the cold light of day makes you feel a twinge of nausea.
"We're sending out for breakfast," <span class="imageLink"><<link "Captain America">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fratBoyChris.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. Wearing a muscle shirt and his boxers, he's looking a little the worse for wear. "You hanging around?"
"We already booked a [[Grab|GNO-206000 Title card]]," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells him.
<</page>><<silently>>
<<emote-calm>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<wear-shoes-blackStrappyGladiatorStilettoSandals>>
<<set $header.line1 to "''SUSIE WONG BEERS & BUNS''",
$header.line2 to "KHAO SAN ROAD / MAY 2018">>
<</silently>>\
<a data-passage="GNO-206100 Susie Wongs">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/khaoSanRoad/susieWongsKSRTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A little later, the three of you are sitting up at the bar in Susie Wong's, a lunch spot just off Khao San known for tasty, hangover-busting <div class="tooltip">bánh mìs<span class="tooltiptext">Vietnamese sandwiches</span></div> and grilled meat skewers.
<<image "/locationPhotos/thailand/khaoSanRoad/susieWongsSkewer.jpg" 750 1000 1150 0>>\
"That was a hell of a night," <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"Happy birthday, babe," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles.
<<link "Tell me I'm not the only one who lost her <<knickers>> in there." "GNO-206200 3 Commando">><</link>>
[[Dialogue TBD.|]]
[[Third Thing Here.|]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Tell me I'm not the only one who lost her <<knickers>> in there."
<span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span>
"Hahaha! They got mine too."
"And mine! Wonder what they //do// with them..."
//TK morning after one night stand girl talk – need to think about how to make this real. Kate might feel a natural awkwardness/reticence about this, then realise the bargirls do not give a fuck about her having casual sex.//
<hr />
– Ping shows up to meet them for lunch. "So how was it. We doing the thing?" "Yep. Address is..."
– Ping steps outside to call her police contact. If Kate asks what's happening, the girls explain that Ping's tipping off the cops about some rich farangs with drugs in their apartment.
– Kate's told don't worry about it, they won't get in trouble, they'll just have to pay a bribe. They can afford it
– If Kate expresses feeling bad: it's just how they do things here. Everyone's so poor. This keeps the cops happy with us and we also get a lil cut. They won't even get in trouble, just get a scare.
– Don't feel sorry for them, they're fucking rich, they got all the breaks in life.
– Do I get a cut? Answer: yes, if she fucked one of them.
– Fat Aussie guy walks past, noting their party dresses and dishevelled look. "Hey girls, [[heavy night last night|GNO-210000 Denouement]] huh?"
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
– TK Title card Baan Krung Thep
– It's mid-afternoon when you finally get back to the hostel. "Oh hi Kate." "Oh hi Noodle."
– Kick off your heels and crash on your hot little bed. You missed a message on your phone – HI KATE IT'S KOLYA. HOW WAS YOUR NIGHT?/YOUR FRIEND ZOE GAVE ME YOUR NUMBER...
– Can't be bothered to reply. You're tired and feeling emotionally delicate after the drugs (and the one night stand, though she won't admit that in her inner monologue)
– Open up Signal and message Ian. GET MY MESSAGE RE SADIE?
– Ian reply, positive & encouraging. Yes Clark already has people going through the footage counting testicles 😂
– You're doing great, everything OK?
– Yeah / I'm fine / I guess
– Awesome, when's your next shift?
– Sunday
– Great. Chin up, just keep going, everybody's impressed with you
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The guys are a couple decades older than you and the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, well-groomed and wealthy looking.
"Hey guys, thanks for the drinks," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"No problem," one of the men replies. His voice sounds Slavic and easy-going.
"Uh...Americans?" his <span class="imageLink"><<link "friend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks, addressing you.
[[We're from all over. You?|GNO-72500 From all over]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're from all over," you explain. <<Zoe>> presses a cold beer into your hand. "Where are you guys from?"
"Russia," he says proudly, rolling the //R.// "I'm <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
<<link "$kate.stripperName." "GNO-72600 River">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName."
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a gentle handshake with a big, masculine paw. The accents remind you of the last Russians you met – in the VIP room at the club, the ones who wanted your <<knickers>> off.
Well...these guys probably want that, too. But they're being much more civilised about it. "You mind if we join you?"
[[Not one bit.|]]
[[Sure.|]]
[[Sorry, it's a girl's night.|GNO-72900 Sorry it's a girls night]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry," you tell him, "it's a girls night."
//TK Kolya reaction, basically ignoring the dismissal. "Just one drink then."//
[[Continue|GNO-73000 Drinking with the Russians]]
<</page>><<silently>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveSkybarAtNight.jpg" 50 1000 600 0>>\
''8.03 <small>P.M.</small>'' A couple of drinks later, <<Zoe>>'s giving her number to a Russian, and you're spinning tall tales about your international modelling career to <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Be friendly.|]]
[[Be flirty.|]]
[[Be aloof.|GNO-73300 Third thing here]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.mdmaPillsTaken gt 0>>
<<first>>
<<addNotification "MDMA fade" "Your big emotional rush is slowly coming back under control.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
TK Kate gives a flirty, friendly or aloof reply.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaction.
[[Continue|GNO-74000 Bathroom chat]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why?"
"He's loaded," <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in. "Duh."
"Yeah, bet he'd take you somewhere fancy," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Get you outta that hostel for a night, it'd do you good."
[[Nah, I'm good.|GNO-74400 No way]]
[[I'll think about it.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Nah, I'm good."
<<if hasVisited("GNO-66300 Kate agrees to do Molly")>>\
"Pfft. Here," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you another <span class="imageLink"><<link "heart-shaped pill">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/sevenPills.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and her water bottle.
<<if $kate.mdmaPillsTaken gt 0>>\
//[[Take another pill.|GNO-74500 Kate drops another pill]]//
<<else>>\
//[[Pretend to take another pill.|GNO-74600 Keeping up appearances]]//
<</if>>\
<<else>>\
"Pfft. You need to loosen up."
//TK Amanda and Gina both take another pink pill here.//
[[Continue|]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<set $kate.mdmaPillsTaken += 1>>
<</silently>>\
<<header>>\
<<page>>\
You swallow it down with a swig from <<Amanda>>'s water bottle.
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You pop the pill under your tongue, and make sure the girls see you swallow a big swig of <<Amanda>>'s water.
You can get rid of the pill [[in a minute|]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"C'mon," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says to you. "We've gotta find you some clothes."
<<if hasVisited("GNO-12400 Kate buys going out clothes")>>\
[[I did bring some stuff.|GNO-57100 Annoyingly Kate did buy going out clothes]]
<<else>>\
<<include "GNO-57200 In Amanda's room">>
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I did bring some stuff," you say, grabbing your <<handbag>>.
"Cool. Bring it through, let's see."
<<include "GNO-57200 In Amanda's room">>
<</page>><<image "/locationPhotos/thailand/sunshinePlace/amandasRoom.jpg" 100 1000 500 0>>\
She leads you to a small bedroom with a messy, unmade bed. It's hot and stuffy until she clicks the aircon on.
<<if hasVisited("GNO-57100 Annoyingly Kate did buy going out clothes")>>\
//[[Show her the dress you bought.|GNO-59000 Pygmalion lite]]//
<<elseif hasVisited("GNO-60100 Are we dressing up?")>>\
"They won't even let you in looking like that," she grumbles. "Let's [[find you a skirt|GNO-58000 Pygmalion]]..."
<<else>>\
"I got this [[pink skirt|GNO-58000 Pygmalion]] that goes with anything..." she muses.
<</if>>\<<silently>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
//TK Dressup path #1 (Pygmalion). <<Amanda>> gets Kate to model different things; the other girls drift in, attracted by the chance to play dress-up with the new girl, and dress her up like she's their doll.
<span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter"><<Gina>> ''liked'' that.</span>
In this sequence, Kate tries various things; we cycle through the avatar trying various looks (with the girls critiquing them), until we achieve the look everyone's happy with.
[[Later|GNO-61000 Ping arrives]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//TK Dressup path #2 (Pygmalion Lite). Kate shows <<Amanda>> what she bought at the mall; <<Amanda>> and the other girls tweak the outfit somehow (e.g. swapping out a top or a skirt; adding a fishnet layer; pairing it with different boots; etc).
In this sequence, Kate tries various things; we cycle through the avatar trying various combinations, until we achieve one that everybody's happy with.
[[Later|GNO-61000 Ping arrives]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-12400 Kate buys going out clothes")>>\
<span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> start pulling party clothes out of their bags; you follow suit.
Zoe pulls out a glittery gold top. "I love that top, your boobs look amazing in it," Gina says.
"What are you wearing tonight, $kate.stripperName?" Zoe asks.
//[[Show her the dress you bought.|GNO-59000 Pygmalion lite]]//
<<else>>\
<span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> start pulling party clothes out of their bags. You haven't brought anything to change into; for an uncomfortable moment, you just stand there and watch, the odd girl out.
[[Are we dressing up?|GNO-60100 Are we dressing up?]]
<</if>>\
<</page>><<silently>>
<<first>>
<<addNotification "Buzzed" "The drinks are taking the edge off. You feel relaxed and chatty.">>
<</first>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>
<<wear-bra-nudeStrapless>>
<<wear-skirt-blackMiniWorkSkirt>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
The condo buzzes with activity: half-dressed girls haggling for shower slots, starting on their makeup, taking selfies and pre-drinking. <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s edgy mumble rap album comes to a chill, downtempo end; <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hooks her phone up to the speaker and blasts out some Pitbull. Party music.
There's a tap at the front door: Gina opens it to <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "You look gorgeous," she tells Gina. "Hey bir-day girl! Oh hi $kate.stripperName!"
[[Hi Ping.|]]
[[Hey Ping!|GNO-61300 Hey Ping!]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hey Ping!" She squeezes into some space and starts getting ready.
It feels kind of like the dressing room at the club; girls talking and pre-drinking and glamming themselves up for a night on display. But the music and the atmosphere is giving you a totally different sense of anticipation; fun, positivity, freedom.
//TK <<Zoe>> starts [[doing Kate's makeup|GNO-61400 Zoe's makeover]] now. [Ask Behbeh for guidance on how to do this in a way that feels natural.]//
<</page>><<silently>>
<<emote-calm>>
<<apply-makeup-eyeliner-elizabeth>>
<</silently>>\
<<header>>\
<<page>>\
//TK describe the sensation of having your makeup done by another woman. Gentle touches, trust and intimacy. [Get Behbeh's advice.]
Continue to [[step 2|GNO-61500 Zoe's makeover stage 2]] of the makeover//
<</page>><<silently>>
<<apply-makeup-eyeshadow-smoky>>
<<apply-makeup-blusher-rosy>>
<</silently>>\
<<header>>\
<<page>>\
//TK stage 2 of the makeover. Brushes, powder, a sultry transformation taking place in the mirror.//
Another [[knock at the door|GNO-61600 Pum-pum]]. With a fist, not the knuckles. //Pum-pum.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> answers it. Alarmingly...<span class="imageLink"><<link "two rough-looking Thai men">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/jomAndKob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are in the hallway.
One's old, one's young. Both wear sweat pants and wife beater vests, masculine arms covered by sleeve tattoos.
//They're Thai
Your stomach lurches and your pulse thumps. //Pum-pum, pum-pum.// If you're gonna be <div class="tooltip">lifted<span class="tooltiptext">abducted by opposing forces</span></div> – it'll be at a time like this, when your location's known, and there are no civilian witnesses.
//[[Identify a weapon.|]]
[[Look for signs of betrayal.|]]
[[Relax, relax, relax.|GNO-61900 Relax!]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Cool, sounds fun." //Now my cover story has a cover story.//
<span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter"><<Gina>> ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo2.png']]")>>
<<set Dialog.open()>>
<</link>></span> arrive shortly after, and soon <<Amanda>>'s condo is packed with girls in various stages of dress and makeup.
<span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> counts pills out of the baggie – one, two, three, four, five, six, seven. "Kob threw in yours for free," she tells you.
[[What are they?|]]
[[Are they yaba?|GNO-63100 Are they yaba?]]
[[No thanks.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Are they <div class="tooltip">yaba<span class="tooltiptext">a combination of methamphetamine and caffeine; popular in Thailand</span></div>?"
<span class="greenHighlighter"><span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> ''liked'' that.</span>
"<div class="tooltip">Molly<span class="tooltiptext">MDMA – a party drug inducing empathy, love, euphoria and sexual arousal. Side effects include mood swings after use; high doses are occasionally fatal</span></div>," she corrects you. "You're rolling with us, right?"
[[Hell yeah.|GNO-63200 Hell yeah I'm rolling]]
[[Nah, I'm good.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hell yeah."
<span class="greenHighlighter"><<Zoe>> ''liked'' that.</span> <span class="greenHighlighter"><<Amanda>> ''liked'' that.</span> <span class="greenHighlighter"><<Gina>> ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
<span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lays out the <span class="imageLink"><<link "heart-shaped pills">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sunshinePlace/sevenPills.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and, one by one, the girls swallow them down with gulps of beer or alcopop.
You take one and pop it into your mouth.
//[[Swallow it.|GNO-63400 Kate drops Molly]]
[[Pretend to swallow it.|GNO-63300 Kate fakes dropping Molly]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
Holding the pill under your tongue, you gulp down a swig of Chang.
Time to put on some lipstick. And [[sneak the pill out into your hand]]. //TK this path is not written yet – go back and take the drugs, you massive pussy//
<</page>><<silently>>
<<set $kate.mdmaPillsTaken to 1>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it, I'm trying to build rapport.// You gulp down the pink pill with a swig of Chang. You don't feel anything right away.
//[[Put on some lipstick.|GNO-65000 Baby, I'm ready to go]]//
<</page>><<silently>>
<<emote-calm>>
<<apply-makeup-lipstick-rubyWoo>>
<<wear-dress-blackBodyconSleevelessMiniDress>>
<<removeSkirt>>
<<wear-shoes-blackStrappyGladiatorStilettoSandals>>
<</silently>>\
<<header>>\
<<page>>\
A little after six, everybody's looking //gorgeous.// Dressed to the nines – but in normal going-out clothes, not the tacky stripper dresses they wear in the club – they look like normal girls on a night out, not sex workers.
The remaining pills are split into two baggies – <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> use tit tape to stick them to their legs, hiding them inside their thigh-high boots.
<span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has booked two taxis on <div class="tooltip">Grab<span class="tooltiptext">A taxi-hailing app; Asia's answer to Uber.</span></div>. You scoop up your <<handbag>>, and follow the girls [[down to the street|GNO-66000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<<wear-bigBlackSunglasses>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<a data-passage="GNO-66100 Taxi to Sukhumvit">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/sukhumvitSunsetTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pile into two taxis and cruise down to Sukhumvit, Bangkok's answer to Fifth Avenue. This bustling, upscale <div class="tooltip">thanon<span class="tooltiptext">main road</span></div> is known for expensive apartment blocks, trendy nightlife, high tech megamalls and five star international hotels.
<<if $kate.mdmaPillsTaken gt 0>>\
<<silently>>
<<first>>
<<addNotification "Molly rush" "The MDMA kicked in. You feel excited, happy and full of love!">>
<</first>>
<</silently>>\
You feel the rush of the drug before you recognise what it is. A giddy feeling of lightness and excitement swells up inside you, and suddenly the air tastes //good// and the T-pop blaring on the stereo makes you want to //dance.//
Sitting between you and <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the backseat, <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> holds up her phone to take a group selfie.
//[[Lean in for the shot.|GNO-66200 Backseat selfie]]//
<<else>>\
<</if>>\
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-63400 Kate drops Molly")>>\
You and <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lean in close and smile for the camera. The three of you look absolutely //gorgeous// on the little smartphone screen: lipstick smiles and sunglasses and great hair.
//Click!//
You didn't realise until now how absolutely //beautiful// <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> is. How sculpted and perfect her face is. The cute button nose; those wide-set, soulful dark eyes; her cute, perpetual smirk.
Beautiful. Those guys in the club don't know how lucky they are. You feel like you want to hug her and tell her she's amazing...then realise all this affection is probably drug-induced.
<<link "Be cool, $kate.firstName." "GNO-66300 Marriott arrival">><</link>>
<<else>>\
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottExterior.jpg" 100 1000 600 0>>\
Your taxi rolls up in front of the Marriott Hotel, pulling in behind a yellow Lamborghini. <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pays the driver as you [[climb out into the hot sunset|GNO-66400 Marriott lobby]].
<</page>><<silently>>
<<set $header.line1 to "''MARRIOTT HOTEL''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottLobby.jpg" 100 1000 500 0>>\
"Ohmygod our driver stank, we had to roll down all the windows..."
The clickety-click of high heels on marble announces your arrival in the cool, high-vaulted lobby. Two Thai businessmen glance up from their meeting to check you girls out.
But the she-wolf pack isn't stopping here. You follow along, straight to the <<if $kate.agency == "cia" or $kate.agency == "csis">>[[elevators|GNO-66410 Lifts]]<<else>>[[lifts|GNO-66410 Lifts]]<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/elevatorCar.jpg" 200 1000 750 0>>\
You pile into an ornate <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator car<<else>>lift compartment<</if>>, and ride it up to the 45th floor to the sound of jazzy trumpet music. "I fucking love hotels," <<Amanda>> says.
"Yeah yeah yeah," <<Zoe>> agrees. "My favourite."
//"Love// to get an outcall here," <<Gina>> adds to a murmur of <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> approval.
[[What's an outcall?|GNO-66420 What's an outcall?]]
//[[Just listen.|]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's an outcall?"
"When you have a client outside the club," <<Amanda>> replies. "Mr K organises it."
"Outcalls are nice," <<Gina>> says. "You get to dress up, go somewhere different."
"I'd go crazy without the outcalls," <<Zoe>> murmurs.
Mem smirks at that. "You crazy already, <div class="tooltip">Ee Bah<span class="tooltiptext">Mrs Crazy</span></div>."
The <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> pings at the [[45th floor|GNO-66500 Octave skybar]].
<</page>><<silently>>
<<set $header.line1 to "''OCTAVE SKYBAR''",
$header.line2 to "MARRIOTT HOTEL / MAY 2018">>
<<wear-bigBlackSunglasses>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
A neon staircase leads up to a cool breeze and a hot sunset.
<<image "/locationPhotos/thailand/sukhumvit/octave1.jpg" 100 1000 540 0>>\
Chilled R&B beats play under the sounds of clinking glasses, conversation and laughter between the well-heeled patrons.
It's a totally different crowd from the club, or the backpacker drinking holes dotted around Khao San and the hostel.
//[[Follow the bargirls.|GNO-66600 The bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveBar.jpg" 100 1000 540 0>>\
The she-wolf pack drifts up to the bar. "<div class="tooltip">Thai thai thai Naai Daeng Kriangsak thai?<span class="tooltiptext">We're Mr Kriangsak's guests?</span></div>" <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo2.png']]")>>
<<set Dialog.open()>>
<</link>></span> says to a barman.
"These are on Mr K," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains, "birthday present for <<Zo>>." Soon you're choosing a free drink from a laminated cocktail menu.
[[Order a "Lamai Beach".|GNO-66700 Mixology][$katesDrink to "Lamai Beach"]] <span class="greyedOut"><small>Gin, Giffard Blue Curaçao, Yuzu Juice, Lychee Juice, Honey, Peach</small></span>
[[Order a "Coconut Island".|GNO-66700 Mixology][$katesDrink to "Coconut Island"]] <span class="greyedOut"><small>Absolute Vanilla Vodka, Frangelico, Honey, Mango, Coconut Milk</small></span>
[[Order a "Pak Khlong".|GNO-66700 Mixology][$katesDrink to "Pak Khlong"]] <span class="greyedOut"><small>Gin, Aperol, Lemon Juice, Watermelon Juice, Hibiscus Syrup</small></span>
[[Order a "Phuket".|GNO-66700 Mixology][$katesDrink to "Phuket"]] <span class="greyedOut"><small>Chalong Bay Basil Rum, Apple Juice, Giffard Caramel, Green Thai Tea, Lime Juice</small></span>
[[Order a "Chiang Mai".|GNO-66700 Mixology][$katesDrink to "Chiang Mai"]] <span class="greyedOut"><small>Chivas 12 yrs Whiskey, Giffard Apricot Brandy, Honey, Orange Bitters</small></span>
[[Order a "Baan Dam".|GNO-66700 Mixology][$katesDrink to "Baan Dam"]] <span class="greyedOut"><small>Bacardi White Rum, Campari, Thai Coffee, Giffard Elderflower, Orange Bitters</small></span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveBarmen.jpg" 100 1000 540 0>>\
You watch with professional interest as the barmen mix the round of cocktails. The senior one, the bar manager, casually does that palm spin trick Bonaht taught you with a mixing tin.
Watching him do something cool that you can also do is absurdly enjoyable. You imagine yourself working up here, [[mixing drinks topless under a golden sunset|GNO-66800 Hot sun, cold drinks]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Carrying chilled, colourful drinks, the she-wolf pack moves up to a space at the balcony.
<<image "/locationPhotos/thailand/sukhumvit/octaveCocktails.jpg" 100 1000 540 0>>\
"To the birthday girl," <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> proposes, holding up her cocktail. Glasses clink, then you take a deep sip of your $katesDrink. <<if $katesDrink == "Lamai Beach">>Cold and fruity flavours mask a strong alcoholic kick<<elseif $katesDrink == "Coconut Island">>It tastes like a strong, sweet piña colada<<elseif $katesDrink == "Pak Khlong">>Fresh floral flavours mask a strong alcoholic kick<<elseif $katesDrink == "Phuket">>Fresh herbal flavours mask a strong alcoholic kick<<elseif $katesDrink == "Chiang Mai">>Orange and apricot flavours mask a strong whiskey-and-brandy kick<<elseif $katesDrink == "Baan Dam">>Coffee and bitter flavours mask a strong alcoholic kick<<else>>//ERROR IN KATESDRINK VAR//<</if>>.
Phones come out as the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> seize another selfie opportunity, but you're distracted by the [[breathtaking view|GNO-66900 Stunning view]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
It's just stunning. The city stretches out for miles, from the cranes lining the docks on the Chao Phraya, along skyscraper-lined Sukhumvit, to the colourful lights of Baiyoke Sky Tower, twinkling in the distance.
<<image "/locationPhotos/thailand/sukhumvit/octaveView.jpg" 100 1000 600 0>>\
You sip your cocktail and gaze out over the Big Mango at dusk. It's still hot, but the cool breeze makes it pleasant.
Far above the exhaust fumes and street foods and ripe <div class="tooltip">klongs<span class="tooltiptext">canals</span></div>, the air smells clean and fresh, with occasional wafts of the [[individual scents|GNO-67000 Selfie]] the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> sprayed on themselves.
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hey $kate.stripperName." <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls you in for a selfie. You pose together for her camera phone, bathed in gold sunlight, the city stretching out behind you.
"It nice," she coos afterwards. "I send to my family."
[[Do they know what you do?|GNO-67100 Do they know you're a whore]]
[[How's the buffalo?|]]
[[Your English is so good.|GNO-67200 Your English is so good]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do they know what you do?" you ask.
"Yeah," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Not many, ah...many job Isan. Lot of Isan girl come Bangkok. Send money home to family."
[[That's appalling.|]]
[[That's weird.|]]
[[That's noble.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Your English is so good."
<span class="greenHighlighter">Ping ''liked'' that.</span>
"Really? I go Girl Pow. You know Girl Pow?" You shake your head and her dark eyes light up. "It school for <div class="tooltip">bargirl<span class="tooltiptext">club prostitutes</span></div>, teach English. <div class="tooltip">Naai Daeng<span class="tooltiptext">Mr Kriangsak</span></div>, he pay for with money from club."
//Wait. Kriangsak's a philanthropist?// That...hardly seems possible. Probably a front of some kind. You'll need to look into it.
"You stay in Thailand long time," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes on. "You miss family from back home?"
[[Yeah.|]]
[[Sometimes.|]]
[[We're not close.|GNO-67600 We're not close]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're not close," you shrug.
"You like $zoe.firstName, she not close to family," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head sadly. "You come Isan one day, meet my family. Meet <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/pingTheBuffalo.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>!"
[[I'd like that.|GNO-67700 I'd like to meet your family, Ping]]
[[What's your family like?|]]
[[Why are you so obsessed with this buffalo?|]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'd like that."
<span class="greenHighlighter">Ping ''liked'' that.</span>
"Aw, you two so pretty," Moo smiles. "You should be <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>, $kate.stripperName."
<span class="greyedOut">//[Lie]//</span> [[I'm thinking about it.|GNO-67800 I'm thinking about bargirling]]
[[I like being a barmaid.|]]
[[I don't think I could.|]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm thinking about it," you lie.
<span class="greenHighlighter">Moo ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"<div class="tooltip">Khâ<span class="tooltiptext">Yes</span></div>," Moo nods along. "You should do it. You make a lot money."
"[[A lot|GNO-70300 After dark]]," Ping agrees.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are missions?"
"<<Mandy>>'s got an app, it gives you random missions," says <<Zoe>>.
"It's fun," <<Gina>> promises, "we'll do it in the club."
The she-wolf pack is striking and vivacious. Maybe intimidatingly so; despite attracting lots of male gaze from different parts of the rooftop, nobody's come over to talk to you yet.
//[[Stand around and look pretty.|GNO-70400 Russian exports]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
A little later, when you're <<if $kate.agency == "cia" or $kate.agency == "csis">>waiting<<else>>queueing<</if>> at the bar with <<Amanda>>, the bartender serves you up two <span class="imageLink"><<link "whiskey sours">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/whiskeySour.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> without prompting.
"From those gentlemen," he explains, pointing out two fit-looking fortysomethings wearing summer shirts and expensive watches. One smiles and raises his glass.
//[[Smile back.|GNO-70500 Smile back]]
[[Look away.|]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You smile and toast him back with the cocktail he bought you. It's cold, smooth and velvety, with a strong kick.
"C'mon," <<Amanda>> says, "let's go say hi."
[[What about the girls?|GNO-70600 What about the girls?]]
[[Okay.|GNO-70700 Okay]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What about the girls?" you ask. You two were supposed to be buying a round.
"They'll be fine for five minutes," <<Amanda>> insists.
[[Okay.|GNO-70700 Okay]]
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." Clutching your whiskey sours, the pair of you circle around to their place at the bar.
"Hey, thanks for the drinks," she tells them. Despite being a couple of decades older than you, both men are in good shape and look wealthy. They'd be high value targets if they came into the club.
"Heyyy, no problem." His voice sounds Slavic and easy-going. "Americans?"
<<if $kate.agency == "cia">>\
[[Yeah, where are you guys from?|GNO-70800 Where u from?]]
<<else>>\
"I am, she's <<if $kate.agency == "mi6">>British<<elseif $kate.agency == "asis">>an Aussie<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>a Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>>."
[[Where are you guys from?|GNO-70800 Where u from?]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<<if $kate.agency == "cia">>Yeah<<else>>Hi<</if>>," you say, "where are you guys from?" You slip naturally into the role of <<Amanda>>'s wingwoman, like when you two are coyoting.
"Russia," he says proudly, rolling the //R.// "I'm Kolya, this is Ilik."
"<<Amanda>>."
<<link "$kate.stripperName." "GNO-70900 River">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName." You get two gentle handshakes from their big, masculine paws, remembering the last Russians you met – in the VIP room at the club, the ones who wanted you to take off your <<knickers>>.
//Well...these guys probably want that too.// But they're being much less aggressive about it. "You girls staying in this hotel, or...?"
<span class="greyedOut">//[Lie]//</span> [[Yes.|GNO-71000 Kate pretends to be a Marriott guest]]
[[No.|]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hmm," you nod, lying just for the hell of it.
<span class="greenHighlighter">Kolya ''liked'' that.</span> <span class="greenHighlighter">Ilik ''liked'' that.</span> <span class="greenHighlighter"><<Amanda>> ''liked'' that.</span>
"Cool, cool," Kolya nods. "You girls on holiday, or...?"
[[We're here for a photoshoot.|GNO-71100 We're models]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're here for a photoshoot," you lie. "We're models."
"Ohhhh," Kolya nods. "I see."
"We thought something like models, or actress," Ilik adds.
"You see the black girl? It's her birthday," <<Amanda>> says. "We'd better get back to her."
"Oh, no no no," Kolya protests. "Bring her over. We buy her a [[birthday drink|GNO-71200 Birthday drink]], no?"
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveSkybarAtNight.jpg" 50 1000 600 0>>\
Summoning the she-wolf pack ends up costing them five more drinks, and more to keep you around. But you get the feeling Ilik and Kolya are more than happy splashing out a few thousand Baht, in return for getting to hang out at a skybar with a bunch of models.
You drink and chat and pose for selfies. Kolya puts his hand around your waist when it's your turn. Later, he slips you his <div class="tooltip">business card<span class="tooltiptext">he works for EVRAZ, a Russian steel company</span></div>. Even though he's [[old enough to be your dad|GNO-71300 Bathroom chat]]...
<</page>><<silently>>
<<set $header.line1 to "''WOMEN\'S RESTROOM''",
$header.line2 to "OCTAVE SKYBAR / MAY 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottBathroom.jpg" 300 1000 700 0>>\
"Kolya's totally into you," <<Amanda>> tells you as you're touching up your lipstick.
[[Ew.|]]
[[Obviously.|]]
[[He's old enough to be my dad.|GNO-71600 Old enough to be my dad]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He's old enough to be my dad," you point out.
"Huh. Hot dad," <<Gina>> chimes in, fumbling for her hidden stash of pills.
"You should give him your number," <<Amanda>> says.
[[No way.|]]
[[Why?|GNO-71800 Why?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why?"
"He's loaded," <<Gina>> says. "Duh."
"Yeah, let him take you out," <<Amanda>> urges. "Get you outta that hostel for a night, it'd do you good."
[[No way.|GNO-71900 No way]]
[[I'll think about it.|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"No way."
"Pfft. Here," <<Amanda>> gives you another heart-shaped pink pill and her water bottle.
//[[Take a second MDMA pill.|GNO-72000 Back to the bar]]//
<hr />
//TK need alternate paths here – Kate can pretend to take it again, or be offered the chance if she refused earlier.//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''OCTAVE SKYBAR''",
$header.line2 to "MARRIOTT HOTEL / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You each swallow down another pill, and head back up to the roof.
<<image "/locationPhotos/thailand/sukhumvit/neonStaircase.jpg" 0 1000 400 0>>\
Kolya and Ilik try to persuade you to stay for one more drink. But it's time for the she-wolf pack to move on.
//[[Give Kolya your number.|]]
[[Just leave.|GNO-72200 Bye Kolya]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bye, Kolya."
"Do svidaniya. Call us if the party sucks!"
You told them you were going on to a private party, models only. They'd have followed you if they knew you were [[going clubbing|GNO-72300 Taxi to Sathorn Square]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
Down in the street, another taxi takes you west, towards the river.
//TK either describe Kate coming up on her first/second Molly pill, or describe the journey.//
[[Continue|GNO-75000 Title card]]
<</page>><<silently>>
<<set $header.line1 to "''SATHORN SQUARE''",
$header.line2 to "BANGKOK / MAY 2018">>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-75100 Taxi to Sathorn Square">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/sathornSquareNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Following directions from <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo2.png']]")>>
<<set Dialog.open()>>
<</link>></span>, the taxi drops you off at the base of a massive office tower. The she-wolf pack joins a trickle of hip, good looking Thais and <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div> heading inside.
In a gleaming, LED-lit corporate lobby, you join a <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> where uniformed security staff are carrying out frisk searches and [[bag checks|GNO-75200 Frisky]].
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<set $header.line1 to "''SATHORN SQUARE OFFICE TOWER''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
At the front of the <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>>, one dark-skinned Thai woman rummages briskly through your <<handbag>>; another frisks you for hidden drugs.
She pats your hips, cups <<if $kate.braSize != "small">>the underside of <</if>>your breasts. <<if $kate.isWearing.includes("bra")>>Her fingers trace all over the contours of your bra, feeling for anything slipped under a strap or hidden in a cup.<<else>>Realising that you're not wearing a bra, she lets go immediately, flashing you an apologetic smile.<</if>>
Her touch is [[so gentle|GNO-75300 Checkpoint passed]] compared to the guys in the club.
<</page>><<silently>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
You regroup with the rest of the she-wolf pack – who all made it through the frisk check with no problems – and ride a mirrored <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> car up to the 39th floor.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo2.png']]")>>
<<set Dialog.open()>>
<</link>></span> are at the bar, in conversation with a <span class="imageLink"><<link "handsome older farang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/henrik.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a smart check shirt. They bring him back to the group, carrying drinks on trays.
"Guys," Gina says<<if $kate.agency != "asis">> in her<<if $kate.agency != "nzsis">> melodic<</if>> Aussie twang<</if>>, "this is Henrik, he paid for these drinks."
"Who is the birthday girl?" he asks, in a Nordic accent<<if hasVisited("MALAY-51000 MO Bar")>> that makes you think of Max<<elseif hasVisited("MALAY-32000 What's in Penang?")>> that reminds you of that defence contractor guy in Malaysia<</if>>.
"Me!" beams <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Thanks for the [[drinks|GNO-70500 Second drink]]!"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sip your second strong cocktail while <span class="imageLink"><<link "Henrik">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/henrik.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chats up <span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – //how old are you, where you from, you here on holiday,// that kind of thing.
Seeing that he's broken the ice, <span class="imageLink"><<link "his group">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/henriksGroup.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes over to join him. They're professional looking <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div>; two old enough to be friends with your dad, and one closer to your own age.
"Guys, it's <<Zoe>>'s birthday," Henrik tells them. "These are her friends, ah, <span class="imageLink"><<link "<<Gina>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/gina2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, uh, <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo2.png']]")>>
<<set Dialog.open()>>
<</link>></span>..."
His gaze turns to you.
<<link "$kate.stripperName." "">><</link>>
<<link "$kate.stripperName, hi guys!" "GNO-70600 Cheery introduction">><</link>>
//[[Icy glare.|]]//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName," you smile winningly. "Hi guys!"
<span class="greenHighlighter">Everybody ''liked'' that.</span>
The introductions go round; <span class="imageLink"><<link "Henrik's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/henrik.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> friends are <span class="imageLink"><<link "Mario">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/mario.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – who speaks with a Mediterranean accent you can't quite place – and <span class="imageLink"><<link "Gerry">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gerry.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Justin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/justin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, both English.
"We were just talking about your hair," Gerry tells <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/ping.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Very unusual."
"What is it you guys do?" asks Justin.
"We're //model,"// she replies, flipping her hair like she did at <<Amanda>>'s.
"Cool! We're <div class="tooltip">NGO<span class="tooltiptext">Non-Governmental Organisation: a non-profit organisation furthering some humanitarian or social mission around the globe</span></div> guys."
[[What NGO?|]]
[[What's an NGO?|GNO-70800 What's an NGO?]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's an NGO?"
<span class="greenHighlighter">Gerry ''liked'' that.</span> <span class="greenHighlighter">Justin ''liked'' that.</span> <span class="yellowHighlighter">''Minor decrease'' to Suspicion Level.</span> <<set $kate.suspicionLevel -= 1>>
"That means //non-governmental organisation,"// <span class="imageLink"><<link "Gerry">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gerry.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mansplains. "Like Amnesty or Oxfam, but we're more regional specialists. We're basically here to help the people of Thailand."
"We're building schools in Mae Sai," <span class="imageLink"><<link "Justin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/justin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> adds. "That's up in the north; lots of poverty."
"Getting the kids into school is the best way to keep them out of the sex trade, or forced labour," Gerry says.
[[Wow, that's impressive.|GNO-70900 That's impressive]]
[[Dialogue dialogue.|]]
[[Dialogue dialogue dialogue.|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wow, that's impressive."
<span class="greenHighlighter">Gerry ''liked'' that.</span> <span class="greenHighlighter">Justin ''liked'' that.</span>
"Mm-hm. So, what kind of modelling is it you do?"
[[Fashion.|]]
[[Lingerie.|]]
[[Topless.|GNO-71400 We're topless models]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Topless," you reply. "We're here for a calendar shoot."
<span class="greenHighlighter">Gerry ''loved'' that.</span> <span class="greenHighlighter">Justin ''loved'' that.</span> <span class="greenHighlighter"><<Amanda>> ''liked'' that.</span>
"Oh, um...wow," <span class="imageLink"><<link "Justin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/justin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stammers. <span class="imageLink"><<link "Gerry">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gerry.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swallows nervously and swigs his beer. Both of them are making an intense effort to keep their eyes up on your face.
"I'm Miss April," <<Amanda>> says, appearing on your shoulder and playing along. "$kate.stripperName's Miss June."
"My birthday's in June," Gerry mumbles.
"So do you guys have like portfolios?" Justin asks.
[[No, we're on exclusive contracts.|GNO-71500 Exclusive contracts]]
[[The website's being rebuilt.|]]
[[Forget the modelling, tell us more about these schools.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're on exclusive contracts. You have to be an agency client to see them."
"Do we sometimes use model agencies?" <span class="imageLink"><<link "Justin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/justin.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks. "For marketing and education and stuff?"
"Yeah, I, uh, I think we do," <span class="imageLink"><<link "Gerry">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gerry.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies, pulling out his phone. "What's your agency? Maybe we can get you some work."
[[Thanks, but we're fully booked.|GNO-71800 We're fully booked]]
[[You just want to see our boobs.|]]
[[Storm Model Management.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks. We're fully booked, though."
//TK more dialogue with the guys.//
[[Continue|GNO-73000 Champagne]]
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You finish the drink <span class="imageLink"><<link "Henrik">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/henrik.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> bought you; he disappears to the bar again, and comes back with a tray of champagne cocktails. "To <<Zoe>>'s birthday," he announces with a beneficent smile.
You sip yours, thinking about how all these drinks are ultimately being paid for by charity money.
"Let's go to the bathroom," <<Gina>> says, taking your arm.
"Why is it women always [[go to the bathroom together|GNO-73100 Topping up Molly]]?" muses <span class="imageLink"><<link "Gerry">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gerry.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottBathroom.jpg" 300 1000 700 0>>\
This time, the answer is: to drop another MDMA pill. <<Gina>> gives you your second little pill; you swallow it with a mouthful of Tiffany mimosa.
//TK dialogue with <<Gina>>.//
[[Continue|GNO-74500 Leaving Octave]]
<hr />
//TK write alt path if Kate is not on Molly here – give her another chance to partake.//
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/octaveSkybarAtNight.jpg" 50 1000 600 0>>\
Back on the roof, you say your goodbyes to <span class="imageLink"><<link "the NGO guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ngoGuys2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "No no, stay for one more cocktail," Henrik implores, but everyone's had enough of the skybar.
It's time to [[kick this party up a gear|GNO-75000 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She briskly pats your hips, cups the underside of your breasts. <<if $kate.isWearing.includes("bra")>>Her hands trace around the contours of your bra, probing for anything concealed in a strap or a cup.<</if>>
<<if $kate.isWearing.includes("bra")>>\
Her touch is so gentle compared to the men in the club. Once she's satisfied the only things hidden in there are your boobs, she smiles apologetically and [[lets you through|GNO-75400 Checkpoint passed]].
<<else>>\
Expecting a bra – but cupping your springy, yielding breasts instead – she releases them immediately. //So gentle compared to the men in the club.// With an apologetic smile, she [[lets you through|GNO-75400 Checkpoint passed]].
<</if>>\
<</page>><<silently>>
<<set $header.line1 to "''THE CLUB AT KOI''",
$header.line2 to "SATHORN / MAY 2018">>
<<emote-calm>>
<</silently>>\
<a data-passage="GNO-76100 Entry corridor">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/floor39.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A red-lit corridor, lined with photos of catwalk models, leads you towards the pulsing beat of a nightclub.
It's kind of like the entrance corridor at the Hard Cock Cafe, lined with nude pop starlets – only about a //million// times more glamorous.
At the end is a thick black velvet drape.
//[[Push through.|GNO-76200 Title card]]//
<</page>><<silently>>
<</silently>>\
<a data-passage="GNO-76300 The Club At Koi">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sathorn/theClubAtKoiTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass through the thick black drape onto a busy dancefloor, rocking to a booming EDM beat.
<<image "/locationPhotos/thailand/sathorn/koiFirstLook.jpg" 100 1000 500 0>>\
A few nearby clubbers notice your entrance: girls checking out what you're wearing, guys just checking you out. The crowd's young and hip, the lights are beautiful and the music is much too loud for conversation.
<<Amanda>> pats your butt to get your attention. The girls are heading [[to the bar|GNO-76400 Bar girls]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A bartender swaps your pink slips for glasses of prosecco.
<<image "/locationPhotos/thailand/sathorn/koiBartenderPouringProsecco.jpg" 100 1000 500 0>>\
"To <<Zo>>!" <<Amanda>> shouts.
"Yeah me, bitches!" <<Zoe>> shouts back.
Raised glasses clink. You take a swig of bubbly, peachy alcohol, and follow the girls [[onto the dancefloor|GNO-76700 Enough space]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<<set _kateD10 to random(6,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
You push through the bodies, following <<Zoe>> deeper into the crowd. The music's so loud it throbs and vibrates through you.
<<image "/locationPhotos/thailand/sathorn/koiDanceFloorConfetti.jpg" 800 1000 1200 0>>\
You and the girls squeeze into a little pocket of space, which expands somehow to give you just enough room, pressed in amongst all the hot bodies.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Dance check''. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Dance check.'' Target: 6. You rolled: (_kateD10) = <<= _kateD10>>. <<if _skillCheckSucceeded>>//[[Success|GNO-76800 Dance dance revolution]].//<<else>>//Failure.//<</if>>
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//. +0 //Dance// skill.</span></div>. <small>''TK TESTING NOTE THIS DICE IS CURRENTLY RIGGED, YOU CAN'T FAIL''</small>
</div>
</td>
</tr>
</table>
<</nobr>></div>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The beat drops and the girls start moving to the music. The first thing you realise is that these girls //love// to dance. You've seen all of them except <<Gina>> dance to entertain; here in the nightclub they're moving just for the joy of it.
Being a part of it feels special and intimate. Pulsing music and bright club lights wash over and through you as let your inhibitions fall away, and instinctively move your body to the beat.
<span class="greenHighlighter">The bargirls ''liked'' that.</span>
//[[Cool dance.|]]
[[Silly dance.|]]
[[Sexy dance.|GNO-77100 Sexy dance]]//
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Obviously they're not taking their clothes off, but each of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> still gives off an instinctive sensual vibe in her movements. It's not just grace and beauty on display here in your little piece of the dancefloor – it's something vampy and seductive, too.
//Confidently, casually sexy. They're not being sexy, they just are sexy. Sexy and they know it.//
You'd normally feel silly if you danced like this for too long. Self-conscious, unless you turned it into a joke. But right here, with these girls, it feels okay to let your inner sexbomb [[express herself|GNO-77200 Crossfade anthems]] with your hips.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Hot bodies, bright lights, loud music. EDM anthems cross-fade into one another, each new beat making you move in a new rhythm.
<<if hasVisited("DINBOSS-16760 Rock chick")>>Even a rock chick can't help but have fun.<<else>>You're having fun.<</if>> But you can only dance in high heels for so long before you start to flag; you're getting hot and sweaty, and the prosecco you gulped down is a distant memory.
//[[Keep dancing!|GNO-78000 Dance magic dance]]
[[Take a break.||]]
[[Go buy a round of drinks.|GNO-77500 Kate buys the first round]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
//TK Some girls flake out; Kate stays with the hard core, losing herself in the music.//
//NOTE: the avatar's clothes will switch to "dancefloor versions" if appropriate - slipped shoulder strap, rising hemline, etc.//
//Kate makes a ''beauty check'' vs the other girls.//
[[Kate wins.|GNO-78100 Fuckboy hip bump]]
[[Another girl wins.|]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//TK Kate gets a playful hip bump from a hot guy. Cocky, good looking, cheeky smile...total fuckboy.//
//[[Dance with him.|GNO-78200 Kate dances with the fuckboy]]
[[Dance with the girls.|]]//
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
Content
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Hard to believe these are the same girls.// Last time you saw <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/moo2.png']]")>>
<<set Dialog.open()>>
<</link>></span> dance, she was humping a beer bottle; now she's beaming and bouncing, throwing her hands up to the beat.
<span class="imageLink"><<link "<<Zoe>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/zoe.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "<<Amanda>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/amanda.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> have gone from nude oil wrestling and performance lesbianism, to giggling at each other as they throw out increasingly weird elbow-based dance moves.
You just look like any other group of girlfriends. The music's much too loud to talk; all there is to do is [[dance and have a good time|GNO-77200 Crossfade anthems]].
<</page>><<silently>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Hot bodies, bright lights, loud music. EDM anthems cross-fade into one another, each new beat making you move your bodies in a new rhythm.
<<if hasVisited("DINBOSS-16760 Rock chick")>>Even a rock chick can't help but enjoy herself.<<else>>It's so much cooler than the dad rock classics they play at the Hard Cock Cafe.<</if>> But you can only dance in high heels for so long before you start to flag; you're getting hot and sweaty, and your prosecco's a distant memory.
//[[Keep dancing!|]]
[[Take a break.||]]
[[Go buy a round of drinks.|GNO-77500 Kate buys the first round]]//
<</page>><<silently>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
Through shouting and sign language, you explain you're going to the bar; <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> comes with you to help.
The pair of you thread your way out of the scrum, pressing against people to move past them. If you did this in the Hard Cock Cafe you'd get groped and smacked; here everybody just moves aside coöperatively.
The bar's heaving. As you <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> up, Jib pulls out her phone. You brace yourself for yet another selfie, but she opens <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> and taps out a message on a screen filled with curly Thai text and colourful emojis of <span class="imageLink"><<link "cartoon animals">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sathorn/lineFriends.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
Now you think about it: she's been messaging all night.
[[Who're you talking to?|]]
[[Boyfriend?|GNO-77700 Boyfriend?]]
//[[Ignore it.|]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Boyfriend?" you guess.
"Hm? Oh!" <span class="imageLink"><<link "Jib's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> smile is a mix of shyness and pride. "Yeah. Boyfren'."
[[How long have you been together?|GNO-77900 How long, how long]]
[[Where's he from?|]]
[[Dialogue dialogue.|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How long have you been together?"
"Almost two month," she smiles fondly. "I love him."
[[That's awesome!|]]
[[Does he know you're a bargirl?|GNO-80100 Does he know you're a whore?]]
[[Dialogue dialogue.|]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Does he know you're a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>?"
"Yeah. He not like." She shrugs as you shuffle closer to the bar.
[[I bet.|]]
[[Why don't you quit?|GNO-80300 Why don't you quit?]]
[[What are you going to do?|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why don't you quit?"
"Money," she shrugs again. "I work two, three night. Make what he earn in whole month. Like <div class="tooltip">Naai Daeng<span class="tooltiptext">Mr Kriangsak</span></div> say, man make money when he old. Girl make money when we young. How old you?"
<<link "$kate.age." "GNO-80400 I'm 25">><</link>>
[[Mr Daeng isn't right about everything.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set _ageDifference to ($kate.age-18)>>
<<if _ageDifference lte 6>>
<<set _ageDifferenceInWords to "six">>
<<elseif _ageDifference == 7>>
<<set _ageDifferenceInWords to "sev-oh">>
<<elseif _ageDifference == 8>>
<<set _ageDifferenceInWords to "eight">>
<<else>>
<<set _ageDifferenceInWords to "">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I'm $kate.age."
"You should start bargirl," she advises. "I start..._ageDifferenceInWords year before you. You never catch up."
[[I'll think about it.|GNO-80500 I'll think about it]]
[[I'm not gonna be a bargirl.|]]
[[Shut up, you brat.|GNO-80700 Shut up, brat]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll think about it," you lie. //As if.//
<span class="greenHighlighter">Jib ''liked'' that.</span>
You reach the bar.
<span class="greyedOut">//[Jib rapport: moderate]//</span> [[Hey, is there a bargirl called Sadie?|GNO-80800 Kate asks Jib about Sadie]]
[[What do you want to drink?|]]
[[Dialogue dialogue|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey, is there a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> called <<Sadie>>?"
"Yeah, why?"
[[A customer was asking for her.|]]
[[It's the stage name I wanted.|GNO-90000 Bitch stole my name]]
[[The girls were bitching about her earlier.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.firstName != "Sadie">>
<<first>>
<<addNotification "Insight gained" "Sadie – Nationality (German)">>
<</first>>
<<else>>
<<first>>
<<addNotification "Insight gained" "Mercedes – Nationality (German)">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"It's the stage name I wanted," you lie. "Miss Lu told me it was taken."
"Heh. She look like you," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "A bit. <<if $kate.hairColour == "Brown" or $kate.hairColour == "black">>Dark hair<<elseif $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>Blon'<<elseif $kate.hairColour == "ginger" or $kate.hairColour == "Auburn">>Red hair<<else>>//[ERROR IN KATE.HAIRCOLOUR VAR//<</if>> <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div>, <<if $kate.braSize == "small">>pierce nipp-oh<<elseif $kate.braSize == "medium">><<if $kate.piercings.includes("nipplesSilverBarbells")>>pierce nipp-oh<<else>>pretty girl<</if>><<else>>big tit<</if>>. But she German."
[[She still around?|GNO-90100 She still around?]]
[[Maybe I'll meet her.|]]
[[Dialogue dialogue.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"She still around? At the club?"
"Haven' see her in while," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/jib2.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Maybe she go home."
//Yeah, maybe.// The bartender who served you earlier leans across the bar to [[take your order|]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Content
<</page>> 0<<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shorts-offWhiteVelour70sTrackShorts>>
<<wear-top-petrolBlueDeathHornetCropTop>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 200 1000 600 0>>\
<<if hasVisited("TNG-800 Lazy day")>>You're reading <span class="imageLink"><<link "Shantaram">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span> in your room<<else>>In your room, you're reading a <span class="imageLink"><<link "fat novel">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span> you borrowed from the book exchange<</if>> when your phone chimes.
You have a new <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> message from...Connor.
//[[See what he wants.|GTH-110 Wear something gothy]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You swipe open the app. You're at work tonight, so maybe it's something to do with your shift...
-
<small>//in LINE message UI//</small>
Connor: Wear something gothy tonight
-
[[gothy?|]]
[[huh why?|GTH-200 Huh why]]
[[don't exactly have a huge wardrobe here|]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
-
<small>//in LINE message UI//</small>
Connor: Wear something gothy tonight
huh why
Connor: B/c your manager told you to
-
Annoyance simmers up inside you; escapes your body in an galled little huff. //TK: Kate annoyed at a man just casually telling her what to wear, like everything she does at the club isn't already enough, feels attacked because he doesn't like her normal look, sense of injustice//
[[k|GTH-300 k]]
[[you don't always have to be such a dick|]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The resentment, the annoyance, you force it all back down. You've got a terrorist <div class="tooltip">HVT<span class="tooltiptext">High Value Target</span></div> to catch; there's no sense rocking the boat over something so unimportant.
You type a single letter as a reply. //k.//
//[[Send it.|GTH-310 Send over]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
-
<small>//in LINE message UI//</small>
Connor: Wear something gothy tonight
huh why
Connor: B/c your manager told you to
-
Your thumb hovers reluctantly over the [[Send|GTH-320 Shot out]] button.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You swallow your pride and tap the button.
-
<small>//in LINE message UI//</small>
Connor: Wear something gothy tonight
huh why
Connor: B/c your manager told you to
k
-
Not even a reply. //He's such a pig.// If it weren't for the mission, you wouldn't give him the time of day.
//At least he's thinking about me when I'm not there.// Guess that might be useful, somehow.
//[[Something gothy...|GTH-400 Something gothy...]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Something gothy...//
Your first thought is that maybe the top you're wearing could work...then you remember you won't be //wearing// a top at work.
//So...do I need to buy something?//
You remember walking past an alternative kind of store on one of your <div class="tooltip">cleaning runs<span class="tooltiptext">a spy's complex journey, designed to break you out of surveillance</span></div>. It was in //TK LOCATION;// if you stop reading and get ready //now,// you should have time to shop there on your way to work.
<span class="greyedOut">//[Shop]//</span> //[[Better make an effort.|GTH-500 Grab a shower]]//
<span class="greyedOut">//[Don't shop]//</span> //[[Meh. Black lipstick'll do.|]]//
<</page>><<silently>>
<<set $header.line1 to "''SHARED BATHROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<avatar-getWet>>
<<wear-shoes-greyToeThongFlipFlops>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/showerBlock.jpg" 115 1000 515 0>>\
With a sigh, you dog-ear <span class="imageLink"><<link "Shantaram">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span>, and walk down the hall to grab a quick shower.
You only walked past that shop, so you don't know what they've got. Some gothy <<knickers>>, maybe? A choker, or something?
It's weird trying to plan a look when you'll be wearing [[so little|GTH-510 Trok warren]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<showRear>>
<<wear-shorts-blueDenimDaisyDukes>>
<<wear-top-pinkRibbedButtonFrontCroppedTShirt>>
<<wear-bigBlackSunglasses>>
<<wear-shoes-pinkToeThongFlipFlops>>
<<wear-ring-transmitterRing>>
<<wear-bohoBrownLeatherBag>>
<<set $header.line1 to "''TROK WARREN''",
$header.line2 to "BANGLAMPHU / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/trokWarrenExit.jpg" 0 1000 400 0>>\
Twenty-five minutes later, you're out in the stifling heat, strolling out to the main road behind another couple of <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls from the hostel.
On Soi Sam Sen, you wave down a <span class="imageLink"><<link "hot pink taxi">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/hotPinkTaxi.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and [[climb in the back|GTH-520 Title card]].
<</page>><<silently>>
<<showFront>>
<</silently>>\
<a data-passage="GTH-530 Victory Monument">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/victoryMonument/victoryMonumentTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''VICTORY MONUMENT''",
$header.line2 to "RATCHATHEWI / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Few Thais actually know what this monument's <div class="tooltip">for<span class="tooltiptext"><small>winning the Franco-Thai war of 1940-41 (you looked it up)</small></span></div>.
Today it's most popular as a street shopping haven, with tons of clothing stalls, street food and mini-malls. Bustling crowds and dozens of exit routes make it a great spot to include in a <div class="tooltip">cleaning run<span class="tooltiptext">a spy's complex journey, designed to break you out of surveillance</span></div>.
//[[Find the alternative clothing store.|GTH-540 Alt store]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
After a couple of wrong turns, you track down the alt store. <<if hasVisited("DINBOSS-16760 Rock chick")>>It looks like the kind of place you used to buy all your clothes from, in your teens.<<else>>It looks like the kind of place weird girls shop at.<</if>>
<<image "/locationPhotos/thailand/victoryMonument/bieber.jpg" 100 1000 500 0>>\
The shop assistant, a young Thai guy with <span class="imageLink"><<link "long hair and a neck tattoo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ped.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, looks you up and down as you step inside.
//<<link "Look for <<knickers>>." "GTH-550 Help with something">><<set $kateSays to "knickers">><</link>>
[[Look for accessories.|GTH-550 Help with something][$kateSays to "accessories"]]//
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<set $avatar.foreground.pushUnique(("malaysia/60_sunglasses-bigShadesTuckedInShirt"))>>
<<set $header.line1 to "''DARK LOTUS''",
$header.line2 to "VICTORY MONUMENT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/victoryMonument/gothShopInterior.jpg" 100 1000 500 0>>\
Inside, the air-conditioned store is an Aladdin's Cave of band t-shirts, tie-dye dresses, and pewter //memento mori.// <span class="imageLink"><<link "Ink Neck">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ped.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is watching a Joe Rogan podcast on his phone.
"I help you something?" he asks.
<<if $kateSays == "knickers">>\
[[No thanks.|GTH-560 Goth knickers]]
<<else>>\
[[Just browsing.|GTH-570 Gothcessories]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GTH-570 Gothcessories")>>\
<<emote-calm>>\
<<else>>\
<<emote-mouth-talking>>\
"No thanks."
<</if>>\
You head over to a display of rock and roll underwear: bras and <<knickers>> decorated with skulls and occult symbols instead of ribbons and flowers.
//TK KATE SELECTS A WITCHY THONG HERE//
<<if hasVisited("GTH-570 Gothcessories")>>\
//[[Look around.|GTH-600 Goth boots]]//
<<else>>\
//[[Look for accessories.|GTH-570 Gothcessories][$kateSays to "accessories"]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GTH-560 Goth knickers")>>\
<<emote-calm>>\
<<else>>\
<<emote-mouth-talking>>\
"I'm just browsing, thanks."
<</if>>\
//TK describe available accessories based on artwork (e.g. chokers? fishnet arm wraps?)//
//TK Kate picks an accessory here//
<<if hasVisited("GTH-560 Goth knickers")>>\
//[[Look around.|GTH-600 Goth boots]]//
<<else>>\
//<<link "Look for <<knickers>>." "GTH-560 Goth knickers">><<set $kateSays to "knickers">><</link>>//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're drawn to a really //striking// pair of boots. Thigh high black leather, with chunky heels, and laces and buckles all the way up.
You picture yourself wearing them later, then tentatively check the price tag: <div class="tooltip">฿2,699<span class="tooltiptext"><<if $kate.agency == "cia">>$81<<elseif $kate.agency == "mi6">>£54<<elseif $kate.agency == "asis">>$108<<elseif $kate.agency == "csis">>$108<<elseif $kate.agency == "nzsis">>$108<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, marked down from <div class="tooltip">฿2,990<span class="tooltiptext"><<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
That's //much// cheaper than they'd be back in <<if $kate.agency == "cia">>the States<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>...but a big chunk of change to '$kate.cover.firstName $kate.cover.surname'.
//[[Ignore them.|GTH-644 Kate refuses the goth boots]]
[[Try them on.|GTH-610 Goth boot try on]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The club doesn't know exactly how much cash you had when you started work there. And you have been pretty steady at earning 'bonuses', from Connor and the thing with Bonaht.
//It's always a balance.// '$kate.cover.firstName $kate.cover.surname' is supposed to be broke; but she's also at least a little bit impulsive and irresponsible. Who's to say she wouldn't splurge on a pair of boots?
[[Can I try these on?|GTH-620 Can I try them on]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You carry them up to the counter. "Can I try these on?"
"Sure," <span class="imageLink"><<link "Ink Neck">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ped.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points to a changing area, about the size of a [[shower cubicle|GTH-630 Changing booth]].
<</page>><<silently>>
<<remove-bohoBrownLeatherBag>>
<<emote-calm>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
You pull the curtain shut, and [[change into the boots|GTH-640 Changing boots]].
<</page>><<silently>>
<<set $avatar.barefoot to false>>
<<set $avatar.clothing.pushUnique("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<</silently>>\
<<header>>\
<<page>>\
//TK let's have a description of sliding into a pair of thigh high leather boots here Crush.//
You zip them up, and check your reflection from several angles.
//TK Kate reflection on how good she looks; Rock Chick hasn't worn this stuff since university (she matured her look when she joined the agency). Normie Kate likes the rock and roll aesthetic.//
Still...<div class="tooltip">฿2,699<span class="tooltiptext"><<if $kate.agency == "cia">>$81<<elseif $kate.agency == "mi6">>£54<<elseif $kate.agency == "asis">>$108<<elseif $kate.agency == "csis">>$108<<elseif $kate.agency == "nzsis">>$108<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
//[[Put them back.|GTH-644 Kate refuses the goth boots]]
[[Buy them.|GTH-642 Kate buys the goth boots]]
[[Ask Connor to buy them for you.|GTH-650 Kate asks Connor to buy the goth boots]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it.//
You change back into your flip flops, and take everything [[to the counter|GTH-680 Everybody pays]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Too expensive.//
You <<if hasVisited("GTH-640 Changing boots")>><<set $avatar.barefoot to true>><<set $avatar.clothing.delete("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>take them off<<else>>leave them on the shelf<</if>>, and take your other purchases [[to the counter|GTH-680 Everybody pays]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You get your phone out of your <<handbag>>, pose flatteringly for a mirror selfie, and send it to Connor.
-
<small>//in LINE message UI//</small>
this what you had in mind?
they're ฿2699 ¯\_(ツ)_/¯
-
//[[Wait for a reply.|GTH-660 Connor replies]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A few seconds later, your phone chimes with a reply.
-
<small>//in LINE message UI//</small>
this what you had in mind?
they're ฿2699 ¯\_(ツ)_/¯
Connor: 💦🍆
Connor: U got LINE pay?
no
Connor: Send yr bank details
-
//[[Send him yr bank details.|GTH-670 Bank details]]//
<</page>><<silently>>
<<first>>
<<addNotification "Intel gained" "Connor – Clydesdale Bank account details">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You tap out and send him the details for your '$kate.cover.firstName $kate.cover.surname' account.
About a minute later, the <<if $kate.agency == "cia">>JPMorgan Chase banking<<elseif $kate.agency == "mi6">>HSBC banking<<elseif $kate.agency == "asis">>Westpac banking<<elseif $kate.agency == "csis">>ScotiaBank<<elseif $kate.agency == "nzsis">>KiwiBank<<else>>ERROR IN KATE.AGENCY VAR<</if>> app on your phone pops up an alert.
//<small>You received <<if $kate.agency == "cia">>$80.97<<elseif $kate.agency == "mi6">>£53.98<<elseif $kate.agency == "asis">>$107.96<<elseif $kate.agency == "csis">>$107.96<<elseif $kate.agency == "nzsis">>$107.96<<else>>ERROR IN KATE.AGENCY VAR<</if>> from C MCSWEENEY
(GB55CLYD 826813 30671351)</small>//
<div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> probably already has this info. You'll forward it to them in tonight's report, just in case they haven't tracked down all of Connor's accounts.
//[[Pay for your stuff.|GTH-680 Everybody pays]]//
<</page>><<silently>>
<<set $avatar.barefoot to true>>
<<set $avatar.clothing.delete("uni/20_ukUniBoots-blackSuedeOverTheKneeHighHeeledBoots")>>
<<wear-shoes-greyToeThongFlipFlops>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ink Neck">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ped.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rings up your purchases.
It's weird buying a pair of <<knickers>> from a man; hard not to feel like you're inviting him to picture you wearing them.
Then again; you'll be wearing them in public in a couple of hours. Probably shouldn't [[worry about it|]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Testing note: in the real game, the next part depends on whether $kate.firstName was invited to yoga during Girls' Night Out. You can choose which path to take:
[[Go to yoga|TNG-99.5 Dream sequence][$yogaTest to true]]
[[Stay at the hostel|TNG-99.5 Dream sequence]]
//
<</page>><<silently>>
<<set $kate.isUsingHerStripperName to false,
$kate.isUndercover to false>>
<<set $header.line1 to "''???''",
$header.line2 to "??? / ???">>
<</silently>>\
<<page>>\
<<image "/locationPhotos/dreams/tightDressDream.jpg" 0 1000 555 0>>\
You're wearing a beautiful dress, and everyone's looking at you, but it's too tight and it's hard to move.
A crowd of faceless men stare at you intently. The more you try to move, the tighter the dress becomes, [[suffocating you|TNG-100 Title card]]...
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<apply-makeup-eyeshadow-smoky>>
<<apply-makeup-eyeliner-jessica>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<wear-top-whiteRipleyVest>>
<<emote-eyes-squint>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<<if hasVisited("GNO-56208 Yoginis") or $yogaTest is true>>
<a data-passage="TNG-110 Wake up dead">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/brolliesNextDayTitleCard.jpg"+' >'>>
</a>
<<else>>\
<a data-passage="TNG-699 Wake up dead">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/brolliesNextDayTitleCard.jpg"+' >'>>
</a>
<</if>>\<<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Your alarm wakes you from a weird dream. You reach out and stop the beeping, trying to recall where you were. Something about...a date?
It's gone, you can't remember. Part of you just wants to roll over and go back to sleep.
But you force yourself to roll out of bed and [[pad out to the bathroom|TNG-111 Ablutions]].
<</page>><<silently>>
<<set $header.line1 to "''SHARED BATHROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<<wear-shoes-greyToeThongFlipFlops>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/showerBlock.jpg" 115 1000 515 0>>\
//No time for a shower,// even though you still smell like the club. Bleary eyed, you roll on some deodorant and brush your teeth.
The <span class="imageLink"><<link "woman from across the hall">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes in, wearing a bathrobe and flip flops. She's tall and statuesque with curly auburn hair, steely grey at the roots. She and her husband are tourists from <<if $kate.agency == "mi6">>Sussex<<else>>England<</if>>; he chatted to you once, when she wasn't around.
Your eyes meet briefly in the mirror. You catch a hint of what feels like disapproval or judgement, but she mumbles a good morning.
[[Hey.|TNG-112 Hey]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey," you mumble back through a mouthful of minty toothpaste.
She turns away to the showers, her flip-flops slapping against the floor tiles. A faucet squeaks, and the room fills with the [[sound of running water|TNG-113 Open stalls]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
When the water's tepid – as hot as it ever gets here – she slips off her bathrobe and hangs it up on a hook.
The showers are just an open block, so you can see her naked form as she steps into the spray, hair tied back to keep it dry. She's tall and hourglass-shaped, carrying some extra weight into middle age. A faded tramp stamp, thorns and love hearts, sits above two round curvy buttocks.
You spit your toothpaste into the sink, and rinse out your mouth.
//[[Wash off last night's makeup.|TNG-114 Wash your face]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-makeup-eyeshadow-smoky>>
<<remove-makeup-eyeliner-jessica>>
<</silently>>\
<<header>>\
<<page>>\
As the makeup washes away, your reflection stares back at you.
Your true identity. Stripped of every disguise, you feel vulnerable and exposed.
//[[Put on some mascara.|TNG-114.5 Mascara]]//
//[[Go back to your room.|TNG-115 Skipping breakfast]]//
<</page>><<silently>>
<<apply-makeup-eyeliner-ramona>>
<</silently>>\
<<header>>\
<<page>>\
//Haven't really got time for this.// But you uncap your mascara, and swipe the brush gently through your lashes, elongating and darkening them.
That feels a little bit better.
//[[Go back to your room.|TNG-115 Skipping breakfast]]//
<</page>><<silently>>
<<removeShoes>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
The smell of breakfast cooking drifts up to your room. You skipped a meal yesterday and you're //starving,// but you're gonna be late if you stop to eat.
Pills for breakfast, then. You swallow down your birth control pill, plus the battery of [[antivirals and immune system boosters|TNG-117 title card]] that Commander <<if $kate.surname == "Perry" or $kate.cover.surname == "Perry">>Holland<<else>>Perry<</if>> prescribed you.
<</page>><<silently>>
<<set $header.line1 to "''BANGLAMPHU NEIGHBOURHOOD''",
$header.line2 to "BANGKOK / MAY 2018">>
<<remove-knickers-whiteBikiniPantsRipley>>
<<remove-top-whiteRipleyVest>>
<<emote-calm>>
<<wear-ring-transmitterRing>>
<<wear-leggings-pinkCutOffYogaLeggings>>
<<wear-bra-blackAloYogaPeakBra>>
<<wear-shoes-whiteAdidasTrainers>>
<<wear-hosiery-whiteTrainerSocks>>
<<wear-bohoBrownLeatherBag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<a data-passage="TNG-120 Leaving the hostel">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/trokWarrenTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
//Gonna be late.// You slip out of the hostel, into the hot shady <div class="tooltip">troks<span class="tooltiptext">alleys</span></div> that surround it, and walk fast out to the main <div class="tooltip">soi<span class="tooltiptext">street</span></div>.
<<image "/locationPhotos/thailand/bangkok/samsenRoad.jpg" 100 1000 560 0>>\
It's Sunday morning, so the traffic's flowing pretty fast for once. You flag down a taxi, climb into the air-conditioned backseat, and [[ride crosstown to Lumphini|TNG-200 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''LUMPHINI PARK''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="TNG-210 Lumphini Arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/lumphini/lumphiniParkMorningTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thank you!"
Fifteen minutes later, you climb out and cross over a hot, busy street to step into Lumphini Park.
<<image "/locationPhotos/thailand/lumphini/lumphiniPath2.jpg" 115 1000 515 0>>\
Early on a Sunday, the air is hot and the park is stirring with healthy activity. Birds sing to the joggers and walkers pounding along sun-baked <<if $kate.agency == "cia" or $kate.agency == "csis">>asphalt<<else>>tarmac<</if>>.
This is where the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> meet up for yoga, once a week. Shared hobbies are a great way for intelligence officers to build rapport with potential assets, so you jumped at the chance to join in.
<div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> is expecting a contact report afterwards.
//[[Find the bargirls.|TNG-220 Tai Chi]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You start to wake up as you thread through the park with the sun on your face. Fragrant smells of jasmine and lotus flowers mingle on the breeze.
You pass a pavilion, where some locals are practising Tai Chi. The haunting strains of a bamboo flute drift out from a speaker, their bodies moving slowly in unison.
<<image "/locationPhotos/thailand/lumphini/taiChiInLumphini.jpg" 115 1000 515 0>>\
Joggers trot past locals out for their morning stroll. One or two men glance briefly over your lycra-clad form as you pass them by, but it's wholesome compared to the way you get [[leered at in the club|TNG-230 Animeaux]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your walk curves around the big lake, along a path dotted with shrines and pavillions. A group of orange-robed monks pass you by, avoiding eye contact.
Empty paddle boats, shaped like swans, float out on the still water. There's a menagerie of wildlife on the banks: cawing crows and chunky pigeons, mingling on the grass with stray cats and monitor lizards.
<<image "/locationPhotos/thailand/lumphini/lumphiniLake.jpg" 115 1000 515 0>>\
Curving around the lake, you finally reach a large group of people with rolled out yoga mats. Mostly women, almost all asian, but you spot a few familiar <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> faces.
[[Morning!|TNG-240 Morning bitches]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Morning!"
"<<if $kate.agency == "mi6">>Pommy<<else>>$kate.cover.firstName<</if>>, you made it!" Makeup-free and dressed for exercise, <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> radiate a wholesome aura that's sharply at odds with their stage personas from last night.
Last time you saw these two together, they were humping different ends of a dildo. It's weird how much you've //seen// of these girls. Kind of embarrassing, except they rarely seem embarrassed about it.
"Love that top!" $amanda.firstName says. "Where'd you get it?"
[[Online, I think?|TNG-241 Online I think]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"Online, I think? Back home," you tell her, unslinging your bag.
[[I think it's got the brand on the back.|TNG-242 Brand on the back]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Think it's got the, uh..." you turn around to show off the brand.
"Alo," she reads aloud. "Cool. Love the straps."
[[Thanks.|TNG-243 Thanks]]
[[Thanks, yours is cool too.|TNG-244 Thanks, yours is cool too]]
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks."
<<include "TNG-245 Ready to get your zen on">>
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks. Yours is cool, too."
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
<<include "TNG-245 Ready to get your zen on">>
<</page>><span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "Ready to get your zen on?"
[[I'm gonna out-zen all you bitches.|TNG-246 I'm the most zen]]
[[I'm more like zonked out, but let's do this.|TNG-247 More like zonked out]]<<silently>>
<<emote-mouth-smirk>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"I'm gonna out-zen all you bitches," you promise.
"Bring it, <<if $kate.agency == "mi6">>Pommy<<else>>$kate.cover.firstName<</if>>," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a tired grin. Even though she had the night off, she seems worse for wear than the others, with messy hair and a washed-out look.
<<include "TNG-248 Ping says hi">>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"I'm more like zonked out," you admit, "but let's do this."
"Hashtag me too," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> stifles a yawn. Despite having the night off, she seems worse for wear than the others, with messy hair and a washed-out look. "Morning <<if $kate.agency == "mi6">>Pommy<<else>>$kate.cover.firstName<</if>>."
<<include "TNG-248 Ping says hi">>
<</page>>"Hiii <<if $kate.agency == "mi6">>Pommy<<else>>$kate.cover.firstName<</if>>." <span class="imageLink"><<link "Ping's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_yogaGear2.png']]")>>
<<set Dialog.open()>>
<</link>></span> voice is as sweet and sing-song as ever. "Good morniiing."
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> have set out their yoga mats; the class is about to start.
//[[Set up and join in.|TNG-250 Yoga setup]]//<<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<remove-shoes-whiteAdidasTrainers>>
<<remove-hosiery-whiteTrainerSocks>>
<</silently>>\
<<header>>\
<<page>>\
You roll out your mat, and slip off your <<trainer>>s and socks.
The grass under your toes feels calming and natural. Reconnecting you to the earth, in the middle of a massive concrete jungle.
"<div class="tooltip">Swạsdii dtaawn cháo túk khon!<span class="tooltiptext">Good morning everyone!</span></div>" The teacher is a petite Thai woman, whose dark eyes shine with a warm, welcoming energy. <div class="tooltip">"Rao maa reerm dûay gaan long meuu lae khăa, dt̀riiam phráwm sảhng h̀rạb samrǎi mâew-wǎaaa...<span class="tooltiptext">Let's begin by coming onto our hands and knees, cat cow...</span></div>"
"Cat-cow," Ping translates, and as one the bargirls descend gracefully to their hands and knees.
//[[Get into position.|TNG-260 Cat cow]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You sink down to all fours on the mat. As you arch your back like a stretching cat, your gaze drifts up to the treetops. Sunlight dances on the leafy canopy, and glints off the high-tech office towers beyond it.
In sync with the group, you gracefully transition between cat and cow poses. The scents of the lake, the grass, and the blooming flowers fill your nostrils, soothing your senses as you [[breathe, stretch and relax|TNG-270 Yoga class]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You've been doing this since <<university>>, and a familiar calmness rises up in response to the movements. Your thoughts settle, and you immerse yourself in your body and your breathing.
Only the instructor talks, but the energy of the group is serene and uplifting. Stress slips away, replaced by feelings of [[grace, stillness, nature and connection|TNG-280 Corpse pose]].
<</page>><<silently>>
<<showFront>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
The long practice ends with Shavasana, corpse pose. Lying on your back in the open space, basking in the warm morning sun, you feel at peace and one with nature.
As the group embraces tranquility, a gentle snore emerges from an elderly man nearby, unexpectedly breaking the silence. It catches everyone's attention, and a [[ripple of good-natured laughter|TNG-290 Haha he fell asleep]] spreads through the class.
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
Sitting up, your eyes meet with the others. There's something different in the air today, something more real. You feel close to them, because...//fuck.//
//You're// the thing that's more real. You just got to be yourself with them for half an hour. Not $kate.stripperName, not '$kate.cover.firstName $kate.cover.surname' – just you. For the first time. //Fucking hell, $kate.firstName. These aren't your friends. Switch on.//
Nobody talks for a moment.
"You know what?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> has a thoughtful expression on her face. "Every time I skip this class, I end up having a shit week."
"Yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> muses. "[[Same same|TNG-300 Same same]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
As the class wraps up, your little group rises up and starts packing to leave.
"BB?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stretches and glances around at the group.
"Mm, yeah, starvin'," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses.
"Uh huh," nods <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_yogaGear2.png']]")>>
<<set Dialog.open()>>
<</link>></span>. You catch <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> stifling a<<if hasVisited("TNG-247 More like zonked out")>>nother<</if>> yawn as she nods her agreement.
"Grab some brunch?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks you.
[[Yeah, sure.|TNG-340 Sure]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"No. Thanks for inviting me."
<span class="greenHighlighter">$amanda.firstName ''liked'' that.</span>
"Awww, you're welcome. You coming to brunch with us?"
[[Sure.|TNG-340 Sure]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<wear-shoes-whiteAdidasTrainers>>
<<wear-hosiery-whiteTrainerSocks>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, sure." Gives you a chance to spend more time with them //– plus, I'm starving too.// You don't care what BB is, you <<if hasVisited("GNO-80040 Kate gives Kolya her number")>>just wanna eat.
"Heyyy..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> nudges your shoulder. "What's goin' on with you and that Russian guy?"
She means Kolya, the tall broody blond from the skybar. He managed to get your number, and he's sent you a couple of texts, but you decided not to see him again. He's nothing to do with the mission.
[[Uh, nothing.|TNG-350 Nothing]]<<else>>[[just wanna eat|TNG-500 Title card]].<</if>>
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, nothing much."
"Oh, c'mon, spill the tea." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You two were hitting it off, right? Any sparks?"
[[Maybe a little one.|TNG-352 Little spark]]
[[Why?|TNG-430 Why]]
[[Nothing serious.|TNG-370 Trivial spark]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("TNG-370 Trivial spark")>>Well...maybe a little spark," you admit.<<else>>Well...maybe a little one." A memory of the skybar flits back into your head.<</if>>
<span class="greyedOut">//[Exhibitionist]//</span> [[Kinda liked that first moment of eye contact.|TNG-354 Kolya met an exhibitionist]]
<span class="greyedOut">//[Masochist]//</span> [[He kind of pressed me up against the wall when we were leaving...|TNG-356 Kolya met a masochist]]
<span class="greyedOut">//[Submissive]//</span> [[I do like confident men.|TNG-358 Kolya met a submissive]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Kinda liked that bit before we spoke. Not that he wasn't interesting," you add, "I just mean...y'know, that bit at the beginning. When a guy's noticed you and he just can't stop looking at you."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"Right!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. "And you get like butterflies. You //know// he's gonna talk to you and you're just kinda waiting."
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins as she slips on her shades. "Too bad normally they open their mouths and [[fuck it up|TNG-440 Anyway]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"When we were leaving, he kinda pressed me up against the wall. Well, I mean...like blocked me with his arm 'til I gave him my number. It was kinda hot."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"Ohmygod." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes light up. "I //love// when blokes do shit like that. Total power move."
//"Sluttt,"// <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clucks.
"Seriously." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins as she slips on her shades. "I'da been like, sploosh, mate, you're [[shaggin' me in the toilets|TNG-440 Anyway]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He was kinda //bossy.// Not in a bad way. I just mean kind of like...in charge."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"Heh." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks knowingly. "Russian charm."
[[Is it a cultural thing?|TNG-360 Cultural thing]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You raise an eyebrow, intrigued. "Is it a cultural thing?"
"Ah yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We get a lot of 'em in the club. There's defo a vibe."
"Very old school," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in. "Very patriarchal."
"Yeah. [[I like it|TNG-440 Anyway]]," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> admits, to murmurs of agreement from the others.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<<if $kate.agency == "cia" or $kate.agency == "csis">>Naw<<else>>Nah<</if>>, not a serious one," you shrug. "Just part of a fun night, y'know?"
"Really?" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> raises a brow.
"We saw you two cozying up," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[Well...maybe a little spark.|TNG-352 Little spark]]
[[We were just talking.|TNG-380 Just talking]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We were just talking," you insist.
"Yeah?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks, a mischievous smile forming. "Well, he's into you."
[[How do you know?|TNG-390 How do you know]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How d'you know that?"
"His friend's been up in my DMs," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> says with a smirk. "Asked me to put in a good word. It's kinda cute actually. Y'know, hyping up his bro."
[[Ohhh.|TNG-400 Ohhh]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ohhh."
"Yeah. Ohhh." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "How 'bout we make it a double date? You and Kolya, me and Venya."
//Interesting...//Kolya's not an intelligence target, but $zoe.firstName's on the list of potential assets to recruit. <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> would approve of you getting to know more about her.
[[Sure, why not.|TNG-450 Sure why not]]
[[Hmmm, don't know...|TNG-410 Hmmm not sure]]
<span class="greyedOut">//[Cancels ''White Russian'']//</span> [[I'm good, you guys have fun.|TNG-420 I'm good]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hmmm, don't know..."
"C'monnn," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> urges, "it'll be <div class="tooltip">sanook<span class="tooltiptext">Thai joy of life. Embracing fun & enjoyment when it's available. Integral part of Thai culture</span></div>."
"Mm, yeah," <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_yogaGear2.png']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "Do sanook."
[[Sure, why not.|TNG-450 Sure why not]]
<span class="greyedOut">//[Cancels ''White Russian'']//</span> [[I'm good, you guys have fun.|TNG-420 I'm good]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "I'm good, you guys have fun."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$gina.nickname ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span>
<span class="yellowHighlighter">''Minor increase'' to Suspicion Level.</span>
"Bo-ring," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> complains.
"I'll go," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> offers.
"Coool," $zoe.firstName agrees. "We can get ready at mine."
"C'mon," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGearAndShades.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "let's [[get brunch|TNG-500 Title card]], bitches."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why d'you ask?"
"Well, his friend's been up in my DMs," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> says with a smirk. "Asked me to put in a good word. It's kinda cute actually. Y'know, hyping up his bro."
[[Ohhh.|TNG-400 Ohhh]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Aaanyway. His friend's been up in my DMs," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> says with a smirk. "Asked me to put in a good word. It's kinda cute actually. Y'know, hyping up his bro."
[[Ohhh.|TNG-400 Ohhh]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, sure," you shrug. "Why not."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">''Minor decrease'' to Suspicion Level.</span>
<span class="greyHighlighter">//Fitting in with the bargirls reduces Suspicion.//</span>
"Coool. Hey, we can get ready at mine," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGearAndShades.png']]")>>
<<set Dialog.open()>>
<</link>></span> suggests. "You can meet Bry."
//Bry, the boyfriend. Whose kink seems to be her being with other men.// <<if hasVisited("GNO-74002.6 Kate poses topless for Bry")>>A memory of impulsively flashing your boobs for that photo she sent him pops into your mind. //Oh god, why did I do that?//<</if>>
"Bry Bry Bry," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGearAndShadesWithBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chides. "Let's [[do brunch|TNG-500 Title card]], bitches."
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''BROOKLYN BAKER''",
$header.line2 to "LUMPHINI / MAY 2018">>
<</silently>>\
<a data-passage="TNG-510 Brooklyn Baker">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/lumphini/brooklynBakerTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A short walk from the park, tucked away down a long <div class="tooltip">trok<span class="tooltiptext">alley</span></div> lined with market stalls and tiny shops, is a small, hipsterishly cute little café, one of the <div class="tooltip">bargirls'<span class="tooltiptext">club prostitutes</span></div> favourite brunch spots.
<<image "/locationPhotos/thailand/lumphini/brooklynBaker.jpg" 100 1000 500 0>>\
The aroma of freshly roasted coffee mingles with scents of toast and bacon as you step inside. Artisanal pastries are showcased at the counter, each one a tiny work of art. Thai indie music playing in the background lends the place a laid-back ambience.
//[[Grab a table.|TNG-511 Table]]//
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
You and the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> take seats at a rustic wooden table with mismatched vintage chairs. <<if hasVisited("TNG-420 I'm good")>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sit shoulder-to-shoulder, swiping through a Steph's phone for an appropriately sexy yet effortless photo to send to Venya.<<else>>Quirky Polaroids line the wall, infusing the place with some history and personality – like the ones behind the bar at the club, except these ones feature women fully clothed.<</if>>
A waitress, [[dressed casually in shorts and a t-shirt|TNG-512 Dressed casually]], brings over the menus and hovers by your table in that attentive Thai style.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Spending //your// work hours in just high heels and a few inches of lycra means you're starting to eat sparingly on days when you have a shift. The last thing you remember eating was a som tum salad, about a thousand years ago.
Your stomach growls insistently while you peruse the menu.
//[[Order Egg Rothko (eggs & cheese on toast, with bacon and sausage, ฿270).|TNG-520 Order up][$kateSays to "eggRothko"]]
[[Order Shakshouka (poached eggs on a thick spicy tomato sauce, with toast, ฿260).|TNG-520 Order up][$kateSays to "shakshouka"]]
[[Order Hello Sunshine (waffles, bacon, egg, maple sausage, ฿220).|TNG-520 Order up][$kateSays to "helloSunshine"]]//
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
Your waitress disappears off to the kitchen with your order.
"How was work?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Ugh," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grumbles. "This one guy going //on and on// about his ex-wife."
"Hate the clingy ones." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> rolls her eyes. "Like dude, I'm not paid enough to be your therapist."
"I had one bloke who wanted a role play," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chimes in. "I //hate// role plays."
[[I got groped in the VIP.|TNG-550 I got groped]]
[[What role play?|TNG-540 What role play]]
[[That stage show you two did was pretty intense.|TNG-620 Stage show was intense]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What kind of role play?" you ask.
"Something stupid," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, rolling her eyes. "I couldn't be arsed. I was like, got a better idea. How about...you be you, and I'll be the [[dirty fucking whore|TNG-541 lol]]."
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''loved'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
<span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> snorts and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> laughs so boisterously that everyone glances at your table.
Just as it starts to settle, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_yogaGear2.png']]")>>
<<set Dialog.open()>>
<</link>></span> – who's been translating everything in her head – giggles softly as she processes the humour. Her endearing, slightly delayed laughter makes the moment [[even funnier|TNG-640 Time for brunch]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You glance around the other tables, and lower your voice before joining in with the bitching session. "The VIPs were //assholes// last night. Guy literally tried to pull my <<knickers>> down while I had my hands full with drinks."
"VIPs are such dicks," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, her voice tinged with annoyance. "Put 'em in a back room and they think they can do anything they want."
"Eh. Part of the job though," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs nonchalantly. "Gotta roll with it."
"You guys remember...what was her name..." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pauses, searching her memory. "Uhhh...<<Adriana>>."
"Ohmygod, yeah!" <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "What a fucking drama queen!"
[[Who's that?|TNG-560 Who's Adriana]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Who's that?"
"Barmaid," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, her tone a litle dismissive. "This //tall// blonde South African chick. Like 6'4 in heels, no shit."
"She was doing //fine,"// <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Then one night, this one guy smacks her ass on the dancefloor. No one knows why, but <<Adriana>>, she just lost it."
"Like, //seriously// lost it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> emphasises, her eyes bright and excited. "She's screaming, slapping the bloke. She even went after his mates, they're all running away on the dancefloor..."
"And she's so mad she chases right after them," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Imagine, all these guys running away, being chased by this one big pissed chick in a g-string! Like a scene from a movie."
[[What happened to her?|TNG-570 What happened]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sounds wild. What happened to her?"
The bargirls exchange glances, sharing a secret amusement. "Fired," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> explains.
"Connor //did// give her a chance," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He was like, okay Adi, here's what's happening. You're gonna take all these guys upstairs and you're gonna make it up to them. //They'll// decide if you get your job back."
"<<Adriana>> being <<Adriana>>, she's like, //Fuck you, I'd rather fuck a dog."// <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice is a mix of admiration and amusement. "She was just like...y'know. One of those girls <<link "with a //lot// of pride" "TNG-571 Too much pride">><</link>>."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods along, lips pursed. "She was a bitch. Con's //totally// had enough. He marches her to the back door, literally //throws// her out in the alley, like in a g-string. Gets her shit out of her locker and tosses it out right after her."
"And that was Adriana," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Went out in a blaze of glory, but, you know. Paid the price." Her tone implies that it serves her right.
"Mmm. Heard she got deported right after," nods <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//Deported? Or trafficked?//
[[Wow.|TNG-580 Callous]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wow."
You can't help but notice the gleam in their eyes, a mix of amusement and something else, as they recall <<Adriana>>'s fiery outburst. There's a part of you that's both fascinated and disturbed by their reaction. It's like they take a strange pleasure in <<Adriana>>'s downfall.
None of them say anything for a moment, it's like they're expecting you to say something else.
[[I feel sorry for her.|TNG-590 Feel sorry for Adriana]]
[[Wonder why she reacted like that.|TNG-600 Wonder why she kicked off]]
[[Can't believe she made such a fuss.|TNG-610 What a drama queen]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I feel sorry for her."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span> <span class="redHighlighter">$amanda.firstName ''disliked'' that.</span> <span class="redHighlighter">$gina.nickname ''disliked'' that.</span> <span class="redHighlighter">Ping ''disliked'' that.</span>
"Pfft. Don't," $amanda.firstName scoffs, rolling her eyes dismissively.
"Brought it on herself," $zoe.firstName chimes in, her tone dripping with nonchalance.
"Seriously, $kate.firstName," $gina.nickname says, taking on a cautionary tone. "Don't turn out to <<link "be an <<Adriana>>" "TNG-640 Time for brunch">><</link>>."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Huh," you shrug. "Wonder why she reacted like that."
"She just wasn't cut out for it," $amanda.firstName shrugs. "We all get our share of jerks, but she took it to another level."
"Yeah, she was just a drama queen," $gina.nickname's tone is dismissive, like you missed the point of the story. "But that night was [[so funny|TNG-640 Time for brunch]]. Guess you had to see it."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Drama queen for sure. I don't make a big fuss about getting slapped on the ass."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">$amanda.firstName ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''loved'' that.</span> <span class="greenHighlighter">Ping ''liked'' that.</span>
"Right." The bargirls exchange satisfied looks. "Gotta [[pick your battles|TNG-640 Time for brunch]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That, uh..." you lower your voice and glance around the cafe before continuing. "That stage show you guys did was pretty intense."
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> arches a brow. "We did the girl/girl," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains to her. "It's just acting," she tells you.
"Yeah, no biggie," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "I mean...the first couple of times it's kind of weird, I guess. [[Is it weird|TNG-630 Is is weird that we do lesbian floorshows]]?" she asks, glancing at the others.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Nawww," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_yogaGear.png']]")>>
<<set Dialog.open()>>
<</link>></span> answers.
"You get used to it," <span class="imageLink"><<link "$amanda.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/amanda/amanda_yogaGear.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains to you. "Guys just //love// watching girls fuck. That's all there is to it."
"Yeah, it's just...that. It doesn't affect our friendships." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_yogaGearSlightPokies2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs and leans back in her chair. "It's not like we're actually into each other," she adds, as if [[reassuring herself|TNG-640 Time for brunch]].
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "helloSunshine">>\
<<image "/locationPhotos/thailand/lumphini/helloSunshine.jpg" 200 1000 600 0>>\
Your food arrives – eggs, bacon, sausage, waffles<<if $kate.agency == "csis">>. The maple syrup is a little pot of home.<<else>>, with a pot of maple syrup on the side.<</if>>
<<elseif $kateSays == "shakshouka">>\
<<image "/locationPhotos/thailand/lumphini/shakshouka2.jpg" 400 1000 800 0>>\
Your food arrives – poached eggs on a bed of spicy tomato, served with chunky fresh toast.
<<elseif $kateSays == "eggRothko">>\
<<image "/locationPhotos/thailand/lumphini/eggRothko.jpg" 400 1000 800 0>>\
Your food arrives – a poached egg nested in a doorstep chunk of toast, topped with melted cheddar, served with sausage and bacon on the side.
<<else>>\
//[ERROR IN KATESAYS VAR!]//
<</if>>\
//So good.// You're starving and you wolf down [[every scrap|TNG-650 Contented]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You wash it down with an oversized <<if $kate.agency == "mi6">>mug of tea<<else>>mug of coffee<</if>>, luxuriating in the feeling of having a belly full of hot food.
That was great...but it also cost <<if $kateSays == "helloSunshine">><div class="tooltip">฿270<span class="tooltiptext"><<if $kate.agency == "cia">>$8.10<<elseif $kate.agency == "mi6">>£5.40<<elseif $kate.agency == "asis">>$10.80<<elseif $kate.agency == "csis">>$10.80<<elseif $kate.agency == "nzsis">>$10.80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><<elseif $kateSays == "shakshouka">><div class="tooltip">฿310<span class="tooltiptext"><<if $kate.agency == "cia">>$9.30<<elseif $kate.agency == "mi6">>£6.20<<elseif $kate.agency == "asis">>$12.40<<elseif $kate.agency == "csis">>$12.40<<elseif $kate.agency == "nzsis">>$12.40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><<elseif $kateSays == "eggRothko">><div class="tooltip">฿320<span class="tooltiptext"><<if $kate.agency == "cia">>$9.60<<elseif $kate.agency == "mi6">>£6.40<<elseif $kate.agency == "asis">>$12.80<<elseif $kate.agency == "csis">>$12.80<<elseif $kate.agency == "nzsis">>$12.80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><<else>>//ERROR IN KATESAYS VAR!//<</if>>. That's <<if $kateSays == "helloSunshine">>nearly<<else>>more than<</if>> half what you get for a whole shift (minus tips, and the 'bonus' you get if you fuck Connor).
Getting close to the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> is great for your mission – but you need to be careful. When a spy gets caught, it can often be traced back to someone noticing they [[live above their means|TNG-660 Street goodbye]].
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
You walk back out to the main street with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, then hug each other goodbye and go your separate ways.
You've got to write up a contact report when you get back to the hostel. <<if hasVisited("TNG-450 Sure why not")>>You'll include the news that you're going on a double date with $zoe.firstName, which <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> will like.<</if>>
Then the rest of the day's yours. Your whole plan is just to stay at the hostel and chill out. You need a rest before going back to the club [[tomorrow|TNG-1000 Title card]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You wake with a start from a weird dream. Something about...being squeezed? //Fuuuck.//
Sunlight streams in through the shutters. It's early morning on a Sunday; you've got the day off.
//[[Roll over and go back to sleep.|TNG-699.5 Lie in]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You drift easily back into a [[peaceful sleep|TNG-700 Balcony yoga]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shorts-lightGreyCyclingShorts>>
<<wear-top-whiteTightCropTop>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/baanTepaBalcony.jpg" 50 1000 500 0>>\
After breakfast, you take your yoga mat out onto your creaky little balcony and go through a practice, stretching and posing in the hot, still air.
You've been doing this since <<university>>, and a familiar calmness rises up in response to the movements. Your thoughts settle, and you immerse yourself in your body and your breathing.
You're getting used to working long shifts in high heels. But you spend some extra time in Downward Facing Dog anyway, stretching out your calves, <<if hasVisited("GNO-80040 Kate gives Kolya her number")>>[[preparing your body|TNG-710 Zoe calling]]<<else>>[[preparing your body|TNG-800 Lazy day]]<</if>> for the week ahead.
<</page>><<silently>>
<<avatar-stripNaked>>
<<avatar-getWet>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
Your phone rings when you're drying off from your shower. You check the screen: $zoe.firstName calling. You haven't seen her since her birthday party on Thursday.
A deep breath to make sure you're in the '$kate.cover.firstName $kate.cover.surname' character. It's not like you're pretending to be someone totally different; just bringing different parts of you to the front when you're her. Still you, just a more docile version. Easy going, chilled out, girlier.
<<link "Hey $zoe.firstName." "TNG-720 Hey Zo">><<set $kateSays to "$zoe.firstName">><</link>>
<<link "Hey <<Zo>>." "TNG-720 Hey Zo">><<set $kateSays to "<<Zo>>">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey $kateSays."
"Heyyy, what's up."
"Not much. Just got outta the shower."
"Cool cool." Her voice sounds soft, like she's calling you from a bed. "Listen, what's happening with that Russian guy?"
She means Kolya, the tall broody blond from the skybar. He managed to get your number, and he's sent you a couple of texts, but you decided not to see him again. He's nothing to do with the mission.
[[Uh, nothing.|TNG-721 Nothing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, nothing much."
"Oh. Thought you two were hitting it off? Any sparks?"
[[Maybe a little one.|TNG-722 Little spark]]
[[Why?|TNG-728 Why]]
[[Nothing serious.|TNG-729 Nothing serious]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Well...maybe a little <<if hasVisited("TNG-729 Nothing serious")>>spark<<else>>one<</if>>," you admit.
<span class="greyedOut">//[Exhibitionist]//</span> [[Kinda liked the way he looked at me.|TNG-723 Kolya met an exhibitionist]]
<span class="greyedOut">//[Masochist]//</span> [[He kinda pressed me up against the wall when we were leaving...|TNG-724 Kolya met a masochist]]
<span class="greyedOut">//[Submissive]//</span> [[I do like confident men.|TNG-725 Kolya met a submissive]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Did kinda like the way he looked at me." A memory of that smouldering eye contact across the rooftop bar flashes into your mind.
<<include "TNG-726 Knew you liked him">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"When we were leaving, he kinda pressed me up against the wall. Like, blocked me with his arm 'til I gave him my number. It was kinda hot."
<<include "TNG-726 Knew you liked him">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He was kind of bossy. In a good way."
<<include "TNG-726 Knew you liked him">>
<</page>>"I knew you liked him," there's a playful giggle in $zoe.firstName's voice. "So his friend's been up in my DMs, asked me to put in a good word. It's kind of cute, actually. Y'know, hyping up his bro."
[[Ohhh.|TNG-727 Ohhh]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ohhh."
"Yeah. Ohhh." Bedsheets rustle as she shifts position. You catch a faint murmur of a male voice in the background. "How 'bout we make it a double date? You and Kolya, me and Venya."
//Interesting...//Kolya's not an intelligence target, but $zoe.firstName's on the list of potential assets to recruit. <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> would approve of you getting to know more about her.
[[Uhhh...okay, why not.|TNG-740 Why not]]
<span class="greyedOut">//[Cancels ''White Russian'']//</span> [[I'll pass.|TNG-730 I'm good]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-729.5 Just talking")>>\
"How d'you know?"
<<else>>\
"Why?"
<</if>>\
"His friend's been up in my DMs. Asked me to put in a good word. It's kinda cute, actually. Y'know, hyping up his bro."
[[Ohhh.|TNG-727 Ohhh]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Nothing serious."
"No? You two seemed pretty cosy at the bar?"
[[Well, maybe a little spark.|TNG-722 Little spark]]
[[We were just talking.|TNG-729.5 Just talking]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We were just talking."
"Oh. Well, he's into you, anyway."
[[How do you know?|TNG-728 Why]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, but...I'll pass."
"Really? C'mon, it'll be fun! Bet they take us somewhere fancy."
[[I'm not really looking to date anyone right now.|TNG-731 Not dating]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not really looking to date anyone right now."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span>
"Bor-ing," $zoe.firstName complains. "Alright. Well, let me know if you change your mind."
[[Okay. Take care.|TNG-732 Take care]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Sure thing. Take care."
"Seeya." She kills the call, leaving you to [[get on with your day|TNG-800 Lazy day]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh...okay, why not."
"Coool, I'll let 'em know. Hey, we can get ready at my place. You can meet Bry."
//Bry, the boyfriend. Whose kink seems to be her being with other men.// <<if hasVisited("GNO-74002.6 Kate poses topless for Bry")>>A memory of impulsively flashing your boobs for that photo she sent him pops into your mind. //Oh god, why did I do that?//<</if>>
[[Great.|TNG-741 Great]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Great."
"He says hi, by the way." More rustling sheets.
[[Hi Bry.|TNG-742 Hi Bry]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi Bry."
"She says hi back." $zoe.firstName giggles. "Okay, babe. I'll text you when I hear back from Venya." A soft //breath.// "About our date."
[[Can't wait, later.|TNG-743 Can't wait]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Can't wait. Later."
"Mmhm. Seeya." She kills the call.
//Interesting development.// This is a chance to get some one-on-one time with $zoe.firstName, and meet her partner. Approaching a potential agent is always high risk: all intel you build up before that point will be valuable.
<div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> will definitely be interested in this. You tap out a quick contact report, and [[send it to Ian|TNG-800 Lazy day]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//With whom,// $kate.firstName $kate.surname would ask, back in <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>. "Who with?" you say.
"Remember those two hot Russian guys from the skybar? They wanna take us out." $zoe.firstName sighs breathily. "I think we should do it."
She means Kolya, the tall broody blond who got your number. In the end, you decided not to see him again – he's not an intelligence target.
But //$zoe.firstName// is. <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> would approve of you spending some extra time with her.
[[Okay, why not.|TNG-750 Why not]]
[[Hmmm, don't know...|]]
<span class="greyedOut">//[Aborts the secondary mission]//</span> [[I'm good. You two have fun.|]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ummm..." You're not sure how to put this. "You mean like a, um...a //work// date, or..."
"Nooo," $zoe.firstName laughs. "Real date. Remember those two hot Russian guys from the skybar? They wanna take us out. I think we should do it."
She means Kolya, the tall broody blond who got your number. In the end, you decided not to see him again – he's not an intelligence target.
But //$zoe.firstName// is. <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> would approve of you spending some extra time with her.
[[Okay, why not.|TNG-750 Why not]]
[[Hmmm, don't know...|]]
<span class="greyedOut">//[Aborts the secondary mission]//</span> [[I'm good. You two have fun.|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, sure! Why not."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Coool," $zoe.firstName says. "Hey, we'll get ready at mine, you can meet Bry."
[[Can't wait.|TNG-760 Can't wait]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Can't wait." You end the call and think that through.
//Interesting development.// This is a chance to get some one-on-one time with $zoe.firstName, and meet her partner. Approaching a potential agent is always high risk: all intel you build up before that point will be valuable.
<div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> will definitely be interested in this. You tap out a quick contact report, and [[send it to Ian|TNG-800 Lazy day]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shorts-blackDenimDaisyDukes>>
<<wear-top-pinkRibbedButtonFrontCroppedTShirt>>
<<wear-bigBlackSunglasses>>
<<wear-shoes-pinkToeThongFlipFlops>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/bookExchange.jpg" 150 1000 550 0>>\
You spend the rest of a lazy day just chilling out at the hostel.
Borrowing a <span class="imageLink"><<link "fat novel">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span> from the book exchange, you're quickly [[sucked into the story|TNG-810 Paige Turnah]] of an escaped Aussie fugitive, who finds adventure on the chaotic streets of 1980s Bombay.
<</page>><<silently>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
Slipping into someone else's life is exactly what you need right now, and the pages turn effortlessly.
Hot hours flit by, broken up by a stroll out to Sam Sen Road to grab some dumplings for lunch.
<<image "/locationPhotos/thailand/hostel/dumplings.jpg" 100 1000 500 0>>\
When you get back, Noodle brings you a cold beer to enjoy while you [[read in the courtyard|TNG-811 Chas]]. "On house, $kate.cover.firstName," he smiles.
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/courtyard.jpg" 100 1000 500 0>>\
As you sip your cold beer and read your book, a familiar face emerges into the courtyard: a <span class="imageLink"><<link "tall, balding middle-aged Englishman">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, who's staying with his wife in the room across from yours. His name's Chas, you think, you spoke briefly with him once.
He's wearing a worn-out Panama hat, and a button-up shirt that's seen better days. He glances around, like he's searching for something.
Spotting you, he offers a friendly smile and makes his way over. "Mind if I join you?" he asks, gesturing to an empty chair.
[[Actually, I'm reading.|TNG-812 Fuck off Chas]]
[[Sure, have a seat.|TNG-814 Sure Chas]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, hey! I'm reading right now, maybe some other time?"
"Hm? Oh, of course." <span class="imageLink"><<link "Chas's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> expression softens, and he nods understandingly. "No problem."
You go back to your book. Chas goes to sit at another table, looking a bit awkward as he sips his drink alone.
//[[Take your book up to your room.|TNG-813 Room reading]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<<removeShoes>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
<<if hasVisited("TNG-832 I should go") or hasVisited("TNG-838 Not really")>>\
You re-open <span class="imageLink"><<link "Shantaram">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span>, and carry on reading in peace. You really don't //feel// like being hit on by some old <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> <<if $kate.agency == "cia" or $kate.agency == "csis">>guy<<else>>bloke<</if>> on your day off.
<<else>>\
Back in your room, you can read in peace. You really don't //feel// like politely entertaining some old <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> <<if $kate.agency == "cia" or $kate.agency == "csis">>guy<<else>>bloke<</if>> on your day off.
<</if>>\
You're gonna have ten hours of that in your shift at the club [[tomorrow|TNG-1000 Title card]]...
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, sure!" You close your book and set it down. "Chas, right?"
"Yeah, good memory!" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles as he sits down beside you. "See you've got your nose buried in a book again. Always admire someone who enjoys a good read."
[[What do you like to read?|TNG-815 What do you read]]
[[Wife not around?|TNG-818 Wife not around]]
[[You guys on holiday, or..?|TNG-820 You guys on holiday]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What d'you read?"
"Oh, all sorts," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "I'm a bit of a history buff, so, y'know. Like learning about the past. Got a novel set in colonial India on the go at the minute. Fascinating time."
[[Oh, this book's set in India.|TNG-816 Shantaram's set in India]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, this book's set in India," you say, tapping <span class="imageLink"><<link "the cover">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Not colonial, though. The 80s."
"Ohhh, interesting," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Maybe I could borrow it when you're done?"
[[Sure.|TNG-817 I'll lend you Shantaram][$kateSays to "sure"]]
[[If you're still out here, it's a big book!|TNG-817 I'll lend you Shantaram][$kateSays to "bigBook"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "sure">>\
<<emote-mouth-smile>>\
"Sure."
"Great." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles appreciatively. "So, are you travelling alone, or...?"
<<else>>\
<<emote-mouth-smirk>>\
"Sure, if you're still out here," you smirk, giving the fat novel a pat. "Got a ways to go yet."
<span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles appreciatively. "So, are you travelling alone, or...?"
<</if>>\
<span class="greyedOut">//[Cover story]//</span> [[Yeah, friends went home.|TNG-830 Yeah, friends went home]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Your wife not around?" you ask, glancing around the courtyard as if she might appear.
"Oh, she's off exploring the city," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies with a nonchalant smile. "You know how it is, when you've been together for a while, it's important to have your own little adventures."
[[That freedom sounds nice.|TNG-819 Freedom sounds nice][$kateSays to "freedom"]]
[[I can understand that.|TNG-819 Freedom sounds nice][$kateSays to "understanding"]]
[[Totally get that.|TNG-819 Freedom sounds nice][$kateSays to "agreement"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "freedom">>\
"Sounds nice," you tell him. "Great to have that kind of freedom in a relationship."
<<elseif $kateSays == "understanding">>\
"I can understand that," you nod. "Guess everyone needs some time to themselves sometimes."
<<elseif $kateSays == "agreement">>\
"I totally get that," you nod. "Sometimes you need your own space."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Exactly!" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "What about you, are you travelling alone, or...?"
<span class="greyedOut">//[Cover story]//</span> [[Yeah, friends went home.|TNG-830 Yeah, friends went home]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You guys on holiday, or...?"
"Yeah, holiday," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, his smile widening. "Sandy and I love to travel, we've been all over. Europe, South America, all round Asia."
[[Must have a lot of stories.|TNG-821 Must have a lot of stories]]
[[Think I've been bitten by the travel bug too.|TNG-822 I totally get that]]
[[What's been your favourite place so far?|TNG-823 Fave destination, Chas]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Wow. You guys must have a lot of stories."
"Oh, we definitely do!" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. "We've had some amazing adventures together. What about you, are you travelling alone, or...?"
<span class="greyedOut">//[Cover story]//</span> [[Yeah, friends went home.|TNG-830 Yeah, friends went home]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Cool," you smile. "Think I've been bitten by the bug, too."
"Wonderful, isn't it," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "Are you travelling alone, or...?"
<span class="greyedOut">//[Cover story]//</span> [[Yeah, friends went home.|TNG-830 Yeah, friends went home]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Wow. What's been your favourite place so far?"
"Oh, tough one," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles wistfully. "I think, maybe...Japan? Something about that mix of modern and traditional, it's wonderful. What about you? Are you travelling alone, or...?"
<span class="greyedOut">//[Cover story]//</span> [[Yeah, friends went home.|TNG-830 Yeah, friends went home]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you nod. "Came out with friends, but they're <<if $kate.agency == "cia">>back in the States<<elseif $kate.agency == "mi6">>back in the UK<<elseif $kate.agency == "asis">>back in Oz<<elseif $kate.agency == "csis">>back in Canada<<elseif $kate.agency == "nzsis">>back in New Zealand<<else>>ERROR IN KATE.AGENCY VAR<</if>> now."
"Ha." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods approvingly. "That tells me you must be the adventurous one in the group."
[[Not really.|TNG-831 No adventurer]]
[[Haha, maybe.|TNG-834 Haha, maybe]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, not really," you shake your head.
"Oh, I'm sure you are," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. His eyes flicker down your breasts, ever so briefly. A micro-ogle. "No need to be modest!"
[[Mm-hm. Thanks for the chat, I should go.|TNG-832 I should go]]
[[Well, I guess I do enjoy trying new things.|TNG-833 Do enjoy new things]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-839 Maybe sometimes")>>"Uh, thanks Chas."<<elseif hasVisited("TNG-836 Something like that")>>"Um, I guess."<<else>>"Mmhm."<</if>> You knock down the rest of your beer. <<if hasVisited("TNG-847 Old school too bad")>>"I should go."<<else>>"Well, thanks for the chat. See you around sometime."<</if>>
"Oh! Um, of course," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Nice chatting with you. See you around then."
You scoop up your book and [[take it to your room|TNG-813 Room reading]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Well...I guess I do enjoy trying new things."
"Mmm, I'll bet!" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Nothing wrong with having a bit of fun when you're young." His eyes drift down to your long, bare legs, then back up to your face. "Do you know, you have a lovely smile? Lights up the whole courtyard when you smile."
[[Uh, thanks, Chas. I should go.|TNG-832 I should go]]
[[Oh, stop.|TNG-841 Oh stop]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Haha, maybe."
"I knew it," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Was it girls, or..."
[[Yeah, girls' trip.|TNG-835 Girls trip]]
[[A mix.|TNG-840 A mix]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, girls' trip."
"Ah. Didn't want your boyfriends tagging along, eh?" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Something like that.|TNG-836 Something like that]]
[[No, I'm single.|TNG-837 No, I'm single]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, something like that."
"More fun that way," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. His eyes flicker down your breasts, ever so briefly. A micro-ogle. "Lets you get up to a little bit of mischief if you want to."
[[I guess. Thanks for the chat, I should go.|TNG-832 I should go]]
[[Maybe sometimes.|TNG-839 Maybe sometimes]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, no, I'm single."
<<if hasVisited("TNG-840 A mix")>>"Ohhh, you were the single one?"<<else>>"Single on a girls' trip?"<</if>> <span class="imageLink"><<link "Chas's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze flickers down your breasts, ever so briefly. A micro-ogle. "That sounds like a recipe for mischief!"
[[Not really.|TNG-838 Not really]]
[[Maybe sometimes.|TNG-839 Maybe sometimes]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, not really," you shake your head.
"Not sure I believe that innocent expression." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles knowingly. "Something tells me this one gets up to mischief."
[[Mmm. Thanks for the chat, I should go.|TNG-832 I should go]]
[[Well, maybe sometimes.|TNG-839 Maybe sometimes]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Well. Maybe sometimes."
"Mmm, I'll bet!" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Nothing wrong with having a bit of fun when you're young." His eyes drift down to your long, bare legs, then back up to your face. "Do you know, you have a lovely smile? Lights up the whole courtyard when you smile."
[[Uh, thanks, Chas. I should go.|TNG-832 I should go]]
[[Oh, stop.|TNG-841 Oh stop]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"A mix," you tell him.
"Oh right," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "A boyfriend, or...?"
[[No, I'm single.|TNG-837 No, I'm single]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, stop!"
"I can't help it!" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "I'm just telling the truth. You have this really lovely energy about you."
[[Well, thank you.|TNG-842 Well thanks]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Well, thank you."
"Don't mention it." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles at you fondly. "So, have you gotten to see much of the country yet? Outside Bangkok?"
<span class="greyedOut">//[Cover story]//</span> [[A few places.|TNG-843 A few places]]
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I've been to Chang Mai, Krabi, a few places. The islands are beautiful."
"Mmm," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods agreeably. "Koh Samui?"
[[Haven't been there yet.|TNG-844 Not yet]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "Not yet."
"Oh, it's beautiful," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Long, perfect beaches, crystal clear water. Like something out of a postcard. You should go, it's definitely got that Instagram wow factor."
[[Yeah, it's on my list.|TNG-845 On my list]]
[[I don't have Insta.|TNG-846 Not on Insta]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, it's on my list."
"Go on then," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> affects a groan. "Tell me how many followers you've got."
[[Oh, I'm not on Insta.|TNG-846 Not on Insta]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh." You shake your head. "I'm not on Insta."
"Really?" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arches his brows. "Huh! Thought young people lived on social media these days."
[[I'm old school.|TNG-847 Old school too bad][$kateSays to "I'm old school"]]
[[Not this young person.|TNG-847 Old school too bad][$kateSays to "Not this one"]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
"Well, normally I'd approve," <span class="imageLink"><<link "Chas's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes roam down your body again, openly this time, lingering appreciatively on your curves. "But I do think you'd look very photogenic in just a bikini."
[[I should go.|TNG-832 I should go]]
[[It's probably hotter in your imagination.|TNG-848 Prolly hotter in your mind]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Probably hotter in your imagination."
"Hmm, I'm not sure about that," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles, leaning in eagerly. "Although, they do say the biggest sexual organ is the brain, so..."
You sat in a position that gave you eyes on the gate, so you spot <span class="imageLink"><<link "Chas's wife">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> returning to the courtyard before he does. She's tall and statuesque with curly auburn hair, steely grey at the roots.
She makes a beeline straight for your table. Chas is still talking.
<span class="greyedOut">//[Interrupt him]//</span> [[Uh, your wife's here.|TNG-849 QTE]]
//[[Try to warn him with your eyes.|TNG-850 Mute warning]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, your wife's here," you warn.
"Hm?" <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follows your gaze with a sudden start, his eyes widening as he turns to see <span class="imageLink"><<link "his wife">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> arrival.
"Hi Chas," she says, her tone carrying a [[hint of frostiness|TNG-851 Woah, frosty]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You try to alert <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with your gaze, but he's too engrossed to spot the signal.
He jumps with a sudden start when he hears <span class="imageLink"><<link "his wife's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice, right on his shoulder.
"Hi Chas," she [[says frostily|TNG-851 Woah, frosty]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Er...hi," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stammers back.
"Making friends?" asks <span class="imageLink"><<link "Mrs Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Stay quiet.|TNG-863 Girl across the hall]]//
[[It's not what it looks like.|TNG-852 Not how it looks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not what it looks like," you speak up.
"Oh?" Her gaze turns to you, <span class="imageLink"><<link "unblinking">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "What does it look like?"
[[Uh...nothing.|TNG-853 Uh, nothing]]
[[Chill, we're just talking.|TNG-854 Chill, we're just talking]]
<span class="greyedOut">//[Lie]//</span> [[My fault, I asked him about the book exchange.|TNG-866 Kate covers for Chas]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...nothing."
She harrumphs, unimpressed.
"We were just talking, Sandy," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists.
"Talk all you like," <span class="imageLink"><<link "Sandy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "I'm going [[up to the room|TNG-856 Exit Sandy]]."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Chill, we're just talking."
"Excuse me?" Her eyes <span class="imageLink"><<link "blaze angrily">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "I don't need to 'chill' about my own husband talking to other women."
[[Nothing's going on.|TNG-855 Nothing's going on]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Nothing's going on," you insist.
"I'm going [[up to the room|TNG-856 Exit Sandy]]," <span class="imageLink"><<link "Mrs Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells her husband. "You two can 'talk' all you want."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
She storms off into the hostel, leaving you and <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in an awkward silence.
"Uh...sorry about that," he says, rubbing his neck nervously.
[[It's okay.|TNG-857 Really sorry]]
[[You'd better go after her.|TNG-860 Better go after her]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's okay."
"Seriously, I didn't mean to drag you into..." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks genuinely apologetic.
[[It's fine, really.|TNG-858 Really it's fine]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"It's fine, really," you assure him, offering a small smile.
"I should probably go check on her." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sighs. "Make sure she's alright."
[[Yeah, of course.|TNG-859 Of course]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, of course. Go."
<span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stands up. "Thanks for, you know. Trying to cover for me."
[[No problem.|TNG-861 No problem]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You'd better go after her."
"Yeah." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stands up. "Thanks for, you know. Trying to cover for me."
[[No problem.|TNG-861 No problem]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No problem. It was just a little misunderstanding."
<span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, and there's a moment of awkward silence between you both. "I better go," he says.
[[Take care.|TNG-862 Take care]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Take care."
<span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> puts on his Panama hat, and heads into the hostel after his wife.
You decide to give them a few minutes, then take your book up to your room and stay there. You've had enough drama on [[your day off|TNG-1000 Title card]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sandy, this is $kate.cover.firstName," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"I know. The girl from across the hall."
[[Hi Sandy.|TNG-864 Hi Sandy]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi Sandy," you offer, trying to remain composed despite the obvious tension in the air.
"Uh huh," <span class="imageLink"><<link "Sandy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies, her eyes darting between you and <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"We were just chatting," he tries to explain, his voice a touch nervous.
"Were you?" Her gaze fixes on him, her disappointment evident.
//[[Stay quiet.|TNG-865 Keep your mouth shut]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"It's not like that," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> protests.
"Really?" <span class="imageLink"><<link "Sandy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice rises a notch. "It sure looked like it to me."
He sits there in chastened silence, revisiting some...//past affair,// is your guess.
"And you, you can find someone else to chat to," Sandy tells you. "My husband has better things to do."
"Sandy, it's not–"
"Save it. I'll be [[in the room|TNG-856 Exit Sandy]] if you feel like spending some time with your wife."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's my fault. I asked him about the book exchange, Chas was just being nice. There's nothing going on, we were just talking books."
"Mm-hmm," <span class="imageLink"><<link "Mrs Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> skeptically arches a brow.
<<if hasVisited("TNG-816 Shantaram's set in India")>>\
[[We're both reading books about India.|TNG-867 Both reading about India]]
<<elseif hasVisited("TNG-818 Wife not around")>>\
[[He said you were out exploring Bangkok.|TNG-868 He talked about you]]
<<else>>\
[[He was telling me about all the travel adventures you guys've had.|TNG-869 Travel talk]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Really. We're both reading books about India," you say, holding up <span class="imageLink"><<link "Shantaram">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span>. "That's all we were talking about. While he waited for you to get back."
<<include "TNG-870 Good effect on target">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Really, he said you were off exploring Bangkok. We were just chit-chatting about books, while he waited for you to get back."
<<include "TNG-870 Good effect on target">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Really. He was telling me how you guys have been all over Europe, Asia, South America. We were just chit-chatting, while he waited for you to get back."
<<include "TNG-870 Good effect on target">>
<</page>>"But..." <span class="imageLink"><<link "Mrs Chas's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> expression softens. "Ugh, I'm sorry. Guess I...over-reacted."
[[It's fine.|TNG-871 It's fine]]<<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"It's fine," you tell her, "don't worry about it."
"No, it's not fine. I'm sorry." <span class="imageLink"><<link "Mrs Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swallows, and for a second it looks like she might cry. "We've...had some issues lately. It just...caught me off guard, and..."
"Hey, hey, hey." <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> jumps to his feet, squeezes her hand. "It's okay, it's okay. I should've thought about how it could look. And $kate.cover.firstName was just being friendly, really. She asked about the book exchange, and [[I was just being polite|TNG-872 Just being polite]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Breathing deeply and gathering her composure, <span class="imageLink"><<link "Mrs Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, and turns to you.
"I think we got off on the wrong foot," she says, offering a handshake. "I'm Sandy."
<<link "$kate.cover.firstName." "TNG-873 Bond, Jane Bond">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.cover.firstName," you <<if $kate.cover.firstName != $kate.firstName>>lie<<else>>say<</if>>, shaking her hand.
"You're very pretty," <span class="imageLink"><<link "Sandy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[Been a pleasure. You seem like a lovely couple.|TNG-874 Thanks, you guys are good together]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Been a pleasure meeting you. You and Chas seem like a lovely couple."
"Let's go for a drink together sometime," <span class="imageLink"><<link "Sandy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lisaThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> proposes. "No drama, I promise."
[[Great.|TNG-875 Great]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Great, we'll plan something then."
"It was nice to meet you, $kate.cover.firstName," says <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "We should go up to our room."
[[Bye guys.|TNG-876 Bye guys]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Bye, guys." They head into the hostel, and you let out a sigh of relief.
You're not sure that lying to Sandy was the right thing to do, but it potentially avoided a lot of drama. And it's your day off – all you were trying to do was sit and read.
You re-open <span class="imageLink"><<link "Shantaram">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span>, and [[get back to the story|TNG-877 Kate's room]].
<</page>><<silently>>
<<emote-calm>>
<<removeShorts>>
<<removeShoes>>
<<remove-bigBlackSunglasses>>
<<removeTop>>
<<wear-top-whiteRipleyVest>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
As night settles in, you find yourself still immersed in <span class="imageLink"><<link "Shantaram">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/shantaram.jpeg']]")>>
<<set Dialog.open()>>
<</link>></span>. The dim glow of a bedside lamp casts a warm ambience, cocooning you in the comfort of your little room.
The night is tranquil, save for the distant buzz of Bangkok's nightlife, far outside the hostel walls. The rhythmic hum lulls you deeper into the novel, where the hero tries to survive and redeem himself in [[1980s Bombay|TNG-878 A noise in the night]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A soft sound interrupts your concentration – a faint scraping sound, echoing through the thin walls.
You strain to listen, trying to make sense of the muffled noises. At first it's indistinct, but then you recognise it – a bed rocking and creaking, a soft feminine gasp.
You'd have to go out in the hall to be sure, but intuition tells you the sounds are coming from Chas and Sandy's room.
//Well...sounds like they reconciled.//
Scrapes, creaks and Sandy's soft gasps go on for a few more minutes. Then the night [[falls silent|TNG-1000 Title card]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I was stuck in a rut back home," you tell him. "This place is...breaking me out of my comfort zone. I love it."
<<include "TNG-839 Great, got pics?">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This whole thing feels like one big adventure," you tell him. "Every single day there's something exciting and new. I love it."
<<include "TNG-839 Great, got pics?">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know, there's something about this place that..." you shrug. "I feel like I'm learning things about myself. What I'm capable of. I can't go back yet."
<<include "TNG-839 Great, got pics?">>
<</page>>"Mmm, that's so great," <span class="imageLink"><<link "Chas">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chasThompson.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods encouragingly.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/baanTepaCourtyard.jpg" 700 1000 1150 0>>\
"Scuse me."
You look up to see one of the hostel guests you've seen around: a Brit in his forties. He has grey hair, a beer belly, and a slightly unkempt appearance.
Despite his friendly demeanour and warm smile, there's <span class="imageLink"><<link "something off-putting">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> about him. "Is that Shantaram you're reading?" He's got a Brummie accent<<if $kate.agency != "mi6">>, like Ozzy Osbourne<</if>>.
[[Says on the cover, right?|TNG-820 That's right]]
[[Have you read it?|TNG-830 U red it]]
[[Yeah, it's great.|TNG-840 It's great]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Says so on the cover, right?"
"Right!" <span class="imageLink"><<link "Brummie">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "It's one of my favourites. Have you read anything else by Gregory David Roberts?"
"Uh, no." You shake your head.
"Well, when you're done with that, check out The Mountain Shadow. It's a bit longer, but just as good."
[[Okay, thanks.|TNG-850 Thanks for the recommendation]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Have you read it?"
"It's one of my favourites," smiles <span class="imageLink"><<link "Brummie">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Have you read anything else by Gregory David Roberts?"
"Uh, no." You shake your head.
"Well, when you're done with that, check out The Mountain Shadow. It's a bit longer, but just as good."
[[Okay, thanks.|TNG-850 Thanks for the recommendation]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, yeah. It's great."
"I know," <span class="imageLink"><<link "Brummie">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "It's one of my favourites. Have you read anything else by Gregory David Roberts?"
"Uh, no." You shake your head.
"Well, when you're done with that, check out The Mountain Shadow. It's a bit longer, but just as good."
[[Okay, thanks.|TNG-850 Thanks for the recommendation]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, I'll check it out."
"No problem," he says. "It's <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, by the way. I'm staying here at the hostel. Seen you around a couple of times, haven't had the chance to talk to you yet."
[[Uh huh.|TNG-860 Great, Rob]]
<<link "I'm $kate.cover.firstName." "TNG-870 I'm Kate">><</link>>
<<link "I'm $kate.cover.firstName, nice to meet you." "TNG-880 Nice to meetcha">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh huh."
"What's your name?" <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
<<link "$kate.cover.firstName." "TNG-870 I'm Kate">><</link>>
<<link "$kate.cover.firstName, nice to meet you." "TNG-880 Nice to meetcha">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "The States">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "London">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Oz. Like Lindsay from the book.">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"<<if not hasVisited("TNG-860 Great, Rob")>>I'm <</if>>$kate.cover.firstName."
"That's a nice name," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Where is it you're from?"
<<link "_katesMotherland." "TNG-810 London">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "The States">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "London">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Oz. Like Lindsay from the book.">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"<<if not hasVisited("TNG-860 Great, Rob")>>I'm <</if>>$kate.cover.firstName," you tell him. "Nice to meet you."
"That's a nice name," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Where is it you're from?"
<<link "_katesMotherland." "TNG-810 London">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>\
"The States," you tell him.
"Yeah, I could tell by the accent!" <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Sooo...what brings you to Thailand?"
<<elseif $kate.agency == "mi6">>\
"London," you tell him.
"Yeah, I could tell by the accent!" <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Sooo...what brings you to Thailand?"
<<elseif $kate.agency == "asis">>\
"Oz. Like Lindsay," you tell him, tapping the cover of //Shantaram.//
"Heh." Something about <span class="imageLink"><<link "Rob's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> banal chuckle tells you that he doesn't know who the main character of the book is. "Sooo...what brings you to Thailand?"
<<elseif $kate.agency == "csis">>\
"Canada," you tell him.
"Yeah, I could tell by the accent!" <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Sooo...what brings you to Thailand?"
<<elseif $kate.agency == "nzsis">>\
"New Zealand," you tell him.
"Yeah, I could tell by the accent!" <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "Sooo...what brings you to Thailand?"
<<else>>\
//ERROR IN KATE.AGENCY VAR//
<</if>>\
[[Sorry, I was just trying to read my book.|TNG-820 I'm readin here]]
[[Just exploring, it's beautiful.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry, I was just trying to read my book. Maybe some other time?"
"Come on, don't be shy," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "No harm in us talking, is there?"
<span class="greyedOut">//[Sigh]//</span> [[I guess not.|TNG-830 I guess not]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I guess not," you say, reluctantly setting your book down.
"So, how long have you been here?" <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
<span class="greyedOut">//[Cover story]//</span> [[Ten months.|TNG-840 Ten months]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ten months," you lie.
"Oh, nice. I've been here a bit longer," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Maybe we should hang out sometime. I can show you some places only the locals know."
[[Thanks, but I'm good.|TNG-850 Thanks but no thanks]]
[[Yeah, maybe sometime.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks for the offer, but I'm good."
"Suit yourself." <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "So, what've you been up to here? Any cool places you've visited?"
<span class="greyedOut">//[Cover story]//</span> [[Yeah, a few.|TNG-860 A few cool places]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I've been to Chang Mai, Krabi, a few other places. The islands are beautiful."
"Yeah, they are." <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pauses. "You know, I've been thinking about going to one of them Full Moon parties on Koh Fangan. You ever been to one?"
<span class="greyedOut">//[Lie]//</span> [[Yeah.|TNG-870 No moon][$kateSays to "yes"]]
[[No.|TNG-870 No moon][$kateSays to "no"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yes">>\
"Yeah, they're really cool."
"I bet," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Hey, maybe we can go together to one? Be a lot of fun."
<<elseif $kateSays == "no">>\
You shake your head. "No."
"I hear they're amazing. Maybe we can go together sometime," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests. "Be a lot of fun."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[I don't think that's a good idea.|TNG-880 Not a good idea]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry." You shake your head. "I don't think that's a good idea."
"No worries," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles again. "Well, nice chatting with you, $kate.cover.firstName. Maybe we'll run into each other again sometime."
[[Maybe. Nice meeting you.|TNG-890 Nice meeting you]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe." You smile politely. "Nice meeting you."
"Likewise, likewise," <span class="imageLink"><<link "Rob">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/rob.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "See you round, I hope."
A stranger taking an interest in you is always a red flag to an undercover officer. Your instinct tells you he was just hitting on you – but you'd better report it, just in case.
Shrugging it off, you decide to take your book up to your room. You'll have plenty of inappropriately old <<if $kate.agency == "cia" or $kate.agency == "csis">>guys<<else>>blokes<</if>> hitting on you [[in the club tomorrow|TNG-1000 Title card]], you don't need any more today...
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-ring-transmitterRing>>
<<wear-knickers-oceanDotStringBikiniPanties>>
<<wear-bra-oceanDotCrissCrossBra>>
<<wear-shorts-bayouxBlueButtonDetailShorts>>
<<wear-top-blueFloralPrintSummerScoopNeckSleevelessTop>>
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>
<<wear-bigBlackSunglasses>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $header.line1 to "''PATPONG''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="TNG-1010 Patpong">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/patpongMondayTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/patpongSetup.jpg" 0 1000 400 0>>\
''4.51 <small>P.M.</small>'' Patpong rings out with clanging metal poles and clunking wooden boards. A crew of wiry, sweaty Thai men is hard at work, building up the skeleton of the night market.
You've seen this a few times, and you're starting to recognise some of the workers; some of them seem to notice you, too, checking out the <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> lady [[on her way to The Hard Cock Cafe|TNG-1020 Entrance]].
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<set _header1Blink to true>>
<<set $header.line1 to "''ENTRY CORRIDOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set $kate.isUsingHerStripperName to true>>
<<set $kate.arousal to 1>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Anticipation.* You're a little turned on. You feel ready to flirt and be admired.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Nipples hard, pussy wet. Flirty and fantasising about being seduced.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* DTF. Flirty, receptive and open to suggestion. Lowered inhibitions.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Wonder what they think I do.//
You push open the front door, and step through into the club's gloomy entrance corridor. The familiar smell of this place greets you, lingering echoes of booze, sweat, perfumes and sex.
<span class="imageLink"><<link "Stripped female musicians">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/taylorMomsenNude.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze down from their photos lining the walls, their nudity hinting at what's on offer inside.
Your pulse quickens, a little adrenaline hit you always get when you [[walk into the Hard Cock Cafe|TNG-1030 Club floor]].
<</page>><<silently>>
<<set _header1Blink to true>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
The swing doors creak open into the main club.
It looks totally different in the day, almost unrecognisable. Flashing lights and thumping rock music replaced by white fluorescent bulbs and quietly clinking glass.
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> is setting up the bar, arranging liquor bottles, glasses and bar tools in a precise and organised fashion.
[[Hey Ploy.|TNG-1040 Hi Ploy]]
[[Hey, need a hand?|TNG-1050 Need a hand?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You drift up to the bar. "Hey Ploy."
"Hi $kate.stripperName," <span class="imageLink"><<link "Ploy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> smile seems a little forced. "Miss Nin want you."
[[I know.|TNG-1060 I know]]
[[Do you know what it's about?|TNG-1051 Know what it's about]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"You drift up to the bar. Hey Ploy. Need a hand?"
"No, I got it," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Miss Nin want see you."
[[I know.|TNG-1060 I know]]
[[Do you know what it's about?|TNG-1051 Know what it's about]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Do you know what she wants?"
"Mmmm..." <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs evasively. "She tell you."
[[So you do know.|TNG-1052 So you do know]]
[[Okay, I'll go see her.|TNG-1053 Ok]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sooo you do know."
<span class="redHighlighter">Ploy ''disliked'' that.</span>
"Juss go see her," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "She tell you."
[[Okay, see you later.|TNG-1053 Ok]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-1052 So you do know")>>"Okay," you shrug, "see you later."<<else>>"Okay," you shrug, "I'll go see her."<</if>>
"Bye." <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes back to setting up glasses.
//[[Head for the neon yellow archway.|TNG-1061 Crossing the floor]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I know. See you later."
"Bye." <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes back to setting up glasses.
//[[Head for the neon yellow archway.|TNG-1061 Crossing the floor]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You cross the sticky empty dancefloor, aiming for the archway that leads upstairs to the brothel.
Later on it'll be framed in glowing yellow neon, but now the glassy tubes are lifeless, dusty and grey.
//[[Go upstairs to the parlour.|TNG-1070 Stairway to heaven]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You climb up the narrow staircase.
The walls are lined with framed nude photos of bargirls, with framed STD certificates dotted amongst them.
It's seriously weird seeing women you actually know posed like this.
//[[Ignore them.|TNG-1071 Kate ignores the photos]]
[[Examine them.|TNG-1072 Kate examines the photos]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ignoring the strange, gynaecological montage, you climb upstairs to the [[parlour|TNG-1100 Title card]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Dozens of <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>, Thai and <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div>, all in that same nude pose, like they're interchangeable.
$amanda.stripperName, $zoe.stripperName, $gina.nickname, Ping, Jib, Mem; they're all up there, welcoming visitors with spread legs, stiff nipples, and lipstick smiles. Some part of you doesn't like seeing them displayed like this.
There are some farang girls you don't recognise. One of them might be <div class="tooltip"><<Sadie>>,<span class="tooltiptext">the bargirl suspected to have spent time with <small>DEVILFISH;</small> no longer at the club</span></div> but if <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> has a visual ID on her, they haven't shared it with you.
It's normal to hold back details like this from an undercover officer in the field, mainly to protect them from accidentally revealing something they //shouldn't// know.
//[[Enter the parlour.|TNG-1100 Title card]]//
<</page>><<silently>>
<<set $header.line1 to "''PARLOUR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-1110 Parlour">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/parlourTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
A waft of burning incense greets you as you step into the moodily lit parlour.
<span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> sits alone at the desk. Ping warned you about her temper – but so far she's only been pleasant. She favours you with a smile, which doesn't quite make it all the way to her shark black eyes.
"$kate.stripperName! Come, come, sit dow."
[[Hi Nin.|TNG-1120 Hi Nin]]
[[Hi Miss Nin.|TNG-1130 Hi Miss Nin]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You take a seat. "Hi Nin."
//"Miss// Nin at work," <span class="imageLink"><<link "the mamasan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> corrects you. "Miss Nin, Miss Lu. Got it?"
[[Yes, Miss Nin.|TNG-1121 Yes Miss Nin]]
[[Got it.|TNG-1122 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes, Miss Nin."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Good," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles briefly. "You have good weeken'?"
<<include "TNG-1131 Kate's weekend">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it."
<span class="redHighlighter">Nin ''disliked'' that.</span>
"New girl start tonight," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells you, "behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You take a seat. "Hi Miss Nin."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"<div class="tooltip">Sawatdi<span class="tooltiptext">Hi</span></div>. You have good weeken'?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> arches a perfectly drawn eyebrow.
<<include "TNG-1131 Kate's weekend">>\
<</page>>A brief memory of doing the <div class="tooltip">black bag job<span class="tooltiptext">a break-in to obtain intel</span></div> with Ian pops into your head. Picking a lock in a brightly lit courtyard, with a handgun clipped to your bra and your heart thumping in your chest.
[[Busy.|TNG-1132 Busy weekend]]
[[Relaxing.|TNG-1133 Relaxing]]
<<if hasVisited("TNG-270 Yoga class")>>\
[[I did yoga in the park with some of the girls.|TNG-1134 Yoga in the park]]
<<else>>\
[[Stayed in, read a book.|TNG-1135 Stayed in, read a book]]
<</if>>\<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Busy," you tell her, "I worked Saturday."
"Mmmh," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Tips okay?"
You remember Muscle Man tucking a measly <div class="tooltip">฿40<span class="tooltiptext"><<if $kate.agency == "cia">>$1.20<<elseif $kate.agency == "mi6">>80p<<elseif $kate.agency == "asis">>$1.60<<elseif $kate.agency == "csis">>$1.60<<elseif $kate.agency == "nzsis">>$1.60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> into your <<knickers>> because you refused to fuck the stag. //Doesn't make you special, Bokkie.// But the rest of the night was okay.
[[Mmhm, fine.|TNG-1132.1 Tips were fine]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hm," you nod, "fine."
"Good," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "New girl start tonight, behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Relaxing," you lie.
"Good," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "New girl start tonight, behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I did yoga in the park with some of the girls."
"Ohhh, Lumphini?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
<span class="greyedOut">//[Nod]//</span> [[Mm-hm! What about your weekend?|TNG-1141 How was your weekend Nin]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Stayed in, read a book."
<span class="yellowHighlighter">''Minor increase'' to Suspicion Level.</span>
"Ohhh?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> cocks her head. "That not like most girl we get here. What kind of book keep you in at weekend?"
[[I'm too broke to go out partying.|TNG-1136 Too broke to party]]
<span class="greyedOut">//[Lie]//</span> [[Just a trashy romance.|TNG-1139 Just a trashy romance]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm too broke to party," you explain with a shrug.
<span class="greenHighlighter">Minor ''decrease'' to Suspicion Level.</span> <span class="greenHighlighter">Nin ''liked'' that.</span>
"Mmmm." <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods sympathetically. "Well, 'member there are way to make extra money here. When you ready, okay?"
[[Uh, okay.|TNG-1138 Uh, okay]]
[[I'm not bargirling.|TNG-1137 I'm not bargirling]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not <div class="tooltip">bargirling<span class="tooltiptext">working as a club prostitute</span></div>," you tell her.
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> just shrugs. "New girl start tonight," she tells you, "behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...okay. Thanks."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"No problem. New girl start tonight," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells you, "behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, just, y'know," you say, groping for something lightweight and unthreatening, "chick lit. This romance story about a sexy pirate. Just something to pass the time."
<span class="greenHighlighter">Minor ''decrease'' to Suspicion Level.</span>
"Sexy pirate, huh?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> raises an eyebrow, a faint smirk playing on her lips. "What it called?"
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">//[Exhibitionist]//</span> [[The Pirate's Tempting Stowaway.|TNG-1140 Pirate romance][$kateSays to "The Pirate's Tempting Stowaway"]]
<<else>>\
<span class="greyedOut">//[Exhibitionist]// The Pirate's Tempting Stowaway.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">//[Masochist]//</span> [[Shared by the Pirates.|TNG-1140 Pirate romance][$kateSays to "Shared by the Pirates"]]
<<else>>\
<span class="greyedOut">//[Masochist]// Shared by the Pirates.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">//[Submissive]//</span> [[Captive Booty.|TNG-1140 Pirate romance][$kateSays to "Captive Booty"]]
<<else>>\
<span class="greyedOut">//[Submissive]// Captive Booty.</span>
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> smirks. "New girl start tonight," she tells you, "behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hm!" you nod. "How about you?"
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles, a hint of amusement in her dark eyes. "I see some friend," she says. "New girl start tonight, behind bar. You see her already, right?"
<<include "TNG-1150 You mean Emilia?">>\
<</page>>[[Blonde girl? Aussie?|TNG-1155 Khamelia][$kateSays to "blonde"]]
[[The one with the boyfriend?|TNG-1155 Khamelia][$kateSays to "boyfriend"]]
<<link "$emilia.firstName?" "TNG-1155 Khamelia">><<set $kateSays to "emilia">><</link>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "blonde">>\
"Blonde girl? Aussie?"
<<elseif $kateSays == "boyfriend">>\
"The one with the boyfriend?"
<<elseif $kateSays == "emilia">>\
"$emilia.firstName?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"<div class="tooltip">Khå<span class="tooltiptext">Right</span></div>," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We want you take care her tonight, okay? We want you take more spons-oh-beaty. We trusting you."
[[Sure. What exactly do you need me to do?|TNG-1160 What do you need me to do]]
[[I'll make sure she feels welcome.|TNG-1161 Make sure she feels welcome]]
[[I'm not a babysitter.|TNG-1162 Not a babysitter]]
[[I'll keep an eye on her.|TNG-1164 Keep an eye on her]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sure, I'll take care of her tonight. What exactly do you need me to do?"
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Show her round club, make sure she knows way around bar," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "It first night, so be patient for her, okay?"
[[Got it.|TNG-1170 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it. I'll make sure she feels welcome."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Good," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We count on you to show her rope, be good example."
[[Got it.|TNG-1170 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a babysitter."
<span class="redHighlighter">Nin ''disliked'' that.</span>
<span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> posture stiffens, and her eyes narrow. "I not asking. You do what you told. Or you out. And maybe not walk out. Understand me?"
You feel a sickly prickle of adrenaline in your gut, but your training kicks in and you maintain your poker face. //Better not piss her off.//
[[Yes, Miss Nin.|TNG-1163 Yes Miss Nin]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes, Miss Nin."
"Good," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Make sure she know her way round bar."
[[Got it.|TNG-1170 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No problem, I'll keep an eye on her."
"Good," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We count on you to show her rope, be good example."
[[Got it.|TNG-1170 Got it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it."
"Bonaht coming tonight, he help with her." <span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> gaze seems to sharpen a little. "What you think of him?"
[[He's teaching me some bar tricks.|TNG-1180 He's okay][$kateSays to "He's teaching me some tricks."]]
[[Sure knows his cocktails.|TNG-1180 He's okay][$kateSays to "Sure knows his cocktails."]]
[[He's okay.|TNG-1180 He's okay][$kateSays to "He's okay."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Mm-hmm. He like you," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, her dark eyes filled with meaning, like she's telling you something important.
[[What do you mean?|TNG-1185 What do you mean]]
<span class="greyedOut">//[Shrug]//</span> [[Great.|TNG-1182 Great]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Great," you shrug.
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a long look, like she's trying to figure you out.
"He wanna fuck you," she clarifies. "You know that, right?"
[[No, I had no idea!|TNG-1186 I had no idea!]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh...what do you mean?"
"I //mean,// he wanna fuck you." <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a long look, like she's trying to figure you out. "You know that, right?"
[[No, I had no idea!|TNG-1186 I had no idea!]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh...no, I had no idea!" You feel a subtle heat rising up in your cheeks as you talk.
<span class="redHighlighter">Nin ''disliked'' that.</span>
<span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> eyes narrow and her voice turns testy. "Yes you did," she insists. "Don' worry, you don' have to fuck him, you not <div class="tooltip">bargirl<span class="tooltiptext">a club prostitute</span></div>. Juss give him blowjob after training. Okay?"
[[What? No!|TNG-1190 What? No!]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What? No!"
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> tilts her head, her brows furrowing. "Why not?"
[[Because I don't want to!|TNG-1195 I don't want to!]]
[[It's not my job!|TNG-1205 Not my job!]]
[[Why should I?|TNG-1210 Why should I?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Because I don't want to!"
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> waves a hand dismissively. "Don' be silly. Sometime we do thing we don' want. It part of job."
[[But I'm not a bargirl!|TNG-1200 But I'm not a bargirl!]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But I'm not a <div class="tooltip">bargirl<span class="tooltiptext">clib prostitute</span></div>!"
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> lets out an exasperated sigh. "$kate.stripperName, it juss blowjob. You done that before, right?"
[[That's not the point!|TNG-12000 Not the point]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not my job!"
"And how you //get// job, hm?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Same same."
[[But I'm not a bargirl!|TNG-1200 But I'm not a bargirl!]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why should I?"
"Because I tell you," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> answers nonchalantly.
[[But I'm not a bargirl!|TNG-1200 But I'm not a bargirl!]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You do it, then," you shoot back.
It's a challenge, but <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't seem ruffled by it. If anything, her expression softens.
"$kate.stripperName," she says, "let me tell you litt-oh secret. I work here since, uhh..."
She trails off for a moment, converting the Buddhist calendar year to a western one in her head. "Nineteen-nigh-fy. I suck men's cock in here...thousan time. Ten thousan. [[I don't know|TNG-1220 I not ask you to do anything I haven do]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"I never ask you do anything I haven' do, okay?" <span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> dark eyes are filled with meaning. "I never ask you that, never. Same same Miss Lu. We done girl/girl show, we been gang bang, we been spank, we been fuck in ass, we done ever-thing. Same same as all girl here. We know what it like, okay?"
[[Uh...|TNG-1230 Uh]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You murmur uncertainly, not exactly sure how to reply to that.
"This not same same," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes on. "This juss blowjob. You gonna put his dick in mouth for few minute, then go back to work. <div class="tooltip">Mai pen rai<span class="tooltiptext">No big deal</span></div>. You in Patpong now, all girl have to. It part of job."
[[I...guess I can do it.|TNG-1232 Guess I can do it]]
[[Why Bonaht? Why's he so special?|TNG-1235 Why me][$kateSays to "bonaht"]]
[[Why me? Why can't one of the bargirls do it?|TNG-1235 Why me][$kateSays to "me"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I...guess I can do it." Your stomach lurches when you say that, but you push the feeling aside.
<span class="greenHighlighter">Nin ''liked'' that.</span>
"You a star." <span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> dark eyes shine with approval. "Okay, that all I want. Go get change."
//[[Head down and change for work.|TNG-1600 Stairway (reprise)]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How much?"
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Norm-oh <div class="tooltip">seven fifty baht<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> for blowjob," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "But we pay you doub-oh tonight. For first time."
[[Okay, thanks.|TNG-1510 Okay, thanks]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "bonaht">>\
"Why Bonaht, though?" You shake your head. "Why's he so–"
<<elseif $kateSays == "me">>\
"Why me, though?" You shake your head. "Why can't one of the bargi–"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"<div class="tooltip">Chup!<span class="tooltiptext">Shush!</span></div>" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> holds up her hand. //"Enough,// $kate.stripperName. No more question. You do it or you fired. You choose."
//Fired?// The rest of what you were going to say comes out as a [[frustrated huff|TNG-1240 And stop pretending]].
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
"And stop preten you //aw-so-innocen// barmaid," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes on. "Like your job juss //pour beer// and //serve peanut.// You out there prick tease all night. You let custo-mah put hand all over you. You //know// there more to your job..."
While she rants, your mind races, torn between two bad options.
On the one hand, if you pull out now, <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> will support it. You've already generated a stack of actionable <div class="tooltip">product<span class="tooltiptext">raw information gained by an intelligence op</span></div>.
New officers can deploy, and start cultivating $amanda.firstName, $zoe.firstName and Connor as potential agents. You'll go back to your desk at <<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>>, with a [[commendation from the Prince of Darkness|TNG-1340 Preauthorised]].
<</page>><<silently>>
<<emote-mouth-talking>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
"It was fine," you nod, unslinging your <<handbag>> and setting it down.
"Goood. New girl downstair with Miss Lu. Roxy off tonight, so I need you look after her, okay?"
[[What do you need me to do?|TNG-1170 Briefing?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-270 Yoga class")>>\
"Great, thanks!" you enthuse. "I did yoga in the park with some of the girls. How about you? Good weekend?"
<<else>>\
"Great, thanks!" you enthuse. "I read a really good book. How about you? Good weekend?"
<</if>>\
Nin smiles, a hint of amusement in her dark eyes. "I see some friend. New girl, she start tonight. Roxy off tonight, so we need you look after her, okay? We trusting you."
[[Got it.|]]
[[I'm still learning myself.|]]
[[No problem. If I need help, I'll ask Ploy.|TNG-1190 No problem, I'll ask Ploy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What do you need me to do?"
"Just show rope. You sett-oh-ing in now, we truss you."
[[Got it.|]]
[[No problem. If I need help, I'll ask Ploy.|TNG-1190 No problem, I'll ask Ploy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No problem," you say. "If there's anything I don't know, I'll ask Ploy."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Good. Bonaht coming in tonight, he help also," Nin says. "What you think of him?"
[[He's teaching me some bar tricks.|]]
[[He really knows his cocktails.|TNG-1210 He knows his drinks]]
[[He's okay.|]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He really knows his cocktails," you report. It's true: you thought you knew how to make a mojito, until Bonaht showed you how they do it in Cuba.
"Mm-hmm. He like you, you know," Nin says. Her dark eyes are full of meaning, like she's telling you something important.
[[Great, I like him.|]]
[[What do you mean?|TNG-1240 What do you mean]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh...what do you mean?"
"I mean, he wanna fuck you." Nin's eyes narrow slightly. "You know that, right?"
[[No, I had no idea!|TNG-1250 I had no idea!]]
[[Ummm...no?|]]
[[He's not my type.|]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No, I had no idea!" You feel a subtle heat rising up in your cheeks as you talk.
<span class="redHighlighter">Nin ''disliked'' that.</span>
"Yes, you did," Nin testily insists. "You giving him blowjob tonight, okay?"
[[What? No!|TNG-1280 What? No!]]
[[Uhhh...|TNG-1260 Uhhh]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh..."
"What's the matter?"
[[I...don't want to.|TNG-1270 I don't wanna]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I...don't want to."
Nin arches a brow. "Why?"
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What? No!"
Your stomach lurches as you imagine the security feed capturing you doing //that.// Dealing with Connor is one thing, but the thought of HQ watching you disappear into a side room to casually suck Bonaht's dick is too much. //I can't do it.//
<span class="redHighlighter">Nin ''disliked'' that.</span>
Nin arches her brows. "Why not?"
[[I don't want to!|TNG-1280 I don't want to!]]
[[I'm not attracted to him!|TNG-1290 Not hot!]]
[[It's not my job!|TNG-1300 Not my job!]]
[[It's not my job!|TNG-1290 Not my job!]]
[[I don't want to!|TNG-1300 I don't want to!]]
[[Why should I?|TNG-1310 Why should I]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Because I don't want to!"
"Oh, grow up." A flicker of condescension crosses Nin's eyes. "Not everything about what you //want."//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Because I'm not attracted to him!"
Nin glances around the parlour, like she's checking she's still in The Hard Cock Cafe. "This not //dating site,"// she scoffs. "You don't have to //marry// him. Just put his dick in your mouth for coup-oh minute."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Because it's not my job!"
"Come on, $kate.stripperName," Nin chides. "Don't act like you //aw-so-innocen// barmaid. Like you juss pouring drink and serving peanut. You hire for tits and ass. You let custo-mah put their hand all over you. You know there more to your job."
Your throat feels dry and you [[swallow|TNG-1310 Gulp]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Besides," Nin goes on, "we make it worth your why-oh. Normally, pay is <div class="tooltip">five hundred<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> for blowjob. We pay you doub-oh tonight, <div class="tooltip">thousand Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
More than '$kate.stripperName's pay for a whole shift. But also...//just <<if $kate.agency == "cia">>thirty bucks<<elseif $kate.agency == "mi6">>twenty quid<<elseif $kate.agency == "asis">>forty bucks<<elseif $kate.agency == "csis">>forty bucks<<elseif $kate.agency == "nzsis">>forty bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>>.// Would she really...
[[It's not about the money.|TNG-1320 Not about the money]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not //about// the money," you protest.
"So what is it about?" Nin asks.
[[I'm fine working topless. This is too much.|TNG-1330 Fine working topless]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Look...I'm fine working topless," you tell her. "But this is too much."
Imgaes of the security camera feed swim in your mind. The analysts back at CIA and <small><div class="tooltip">NEPTUNE<span class="tooltiptext">Combined Task Force NEPTUNE</span></div></small> have seen you having sex with Connor several times. <<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ") and hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand")>>And they know about both the sexual encounters you reported during the girls' night out.<<elseif hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ") or hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand")>>And they know about the sexual encounter you reported during the girls' night out.<</if>>
But this feels different. //I can't do it.// How would they ever take you seriously if you just...
"Come //onnn,"// Nin chides. "You Hard Cock Cafe girl now. It juss //blowjob.// You done that before, right?"
[[That's not the point!|TNG-1340 Not the point]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's not the point! I don't wan-"
//"I don't want, I don't want,"// Nin mimics your complaining with a high-pitched voice. "Look. You fuck to get your job, right? Now you suck someone dick to keep it, <div class="tooltip">mai pen rai<span class="tooltiptext">no big deal</span></div>.""
[[But–|TNG-1350 But]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But–"
"<div class="tooltip">Chup!<span class="tooltiptext">Shush!</span></div>" Nin raises her hand to shut you up. "It just //blowjob.// You do it or you fired. And stop be such...silly litt-oh girl."
//Fired?// The rest of what you were going to say comes out as an [[angsty, frustrated groan|TNG-1330 Resentful little sigh]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>!"
"Bargirl, not bargirl..." Nin shrugs. "You fuck to get your job. Now you suck someone dick to keep it, <div class="tooltip">mai pen rai<span class="tooltiptext">no big deal</span></div>."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why should I?"
"Because your boss tell you," Nin answers. "And we pay you extra."
[[I don't care!|TNG-1320 Idc]]
[[How much?|TNG-1340 How much]]
[[It's not about the money.|]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't care!"
"You //should// care," Nin replies calmly. "Your job at stake."
[[What do you mean?|TNG-1330 Wdym?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What do you mean?"
"I mean, we can't tol-oh-rate difficult girls here," Nin says. "We want...team player. Girl who can keep everyone happy. That how it work here."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How much?"
"Five hundred Baht," Nin replies.
//That's...<<if $kate.agency == "cia">>15 bucks<<elseif $kate.agency == "mi6">>ten quid<<elseif $kate.agency == "asis">>20 bucks<<elseif $kate.agency == "csis">>20 bucks<<elseif $kate.agency == "nzsis">>20 bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>>.//
[[That's not enough!|TNG-1350 Not enough]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's not enough!"
Nin eyes you curiously. "How much is?"
[[You can't afford it.|TNG-1360 You can't afford it]]
<<link "I don't know...five thousand?" "TNG-1370 Five k">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You can't afford it," you promise her.
Disconcertingly, Nin laughs at that. "You got //no idea// what you worth, $kate.stripperName. But I do."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know! Five thousand?"
Part of your brain realises you just basically offered to blow a stranger for <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>200 bucks<<elseif $kate.agency == "csis">>200 bucks<<elseif $kate.agency == "nzsis">>200 bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>>, which does //not// seem right, but you push it aside for now.
"You can make that every night, and more," Nin says. "But not for one blowjob. This //Patpong,// $kate.stripperName, this real life. "
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not my job! I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>!"
"Come //on,"// Nin chides. "Bargirl, not bargirl, who care? You fuck to get your job. Now you suck someone dick to keep it, <div class="tooltip">mai pen rai<span class="tooltiptext">no big deal</span></div>."
<<link "I never agreed to that!" "TNG-1291 Didn't agree to this">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "But I never agreed to that."
"You not understand," Nin shakes her head. "It not about what you //agree// to. Not about what you //comf-tor-boh// with. Not everything up to you."
"$kate.stripperName, this real life." Nin's tone is impatient, but not necessarily unkind. "You don't get to choo what you do and what you don't do. Every girl here have to do thing she not agree to sometime. It part of job, okay?"
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But–"
"<div class="tooltip">Chup!<span class="tooltiptext">Shush!</span></div>" Nin raises her hand to shut you up. "No 'but.' You doing it."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Because I don't want to!"
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's not the point! I don–"
"<div class="tooltip">Chup!<span class="tooltiptext">Shush!</span></div>" Nin raises her hand to shut you up. "I not //asking,// $kate.stripperName. It part of job. You doing it."
[[But...|TNG-1320 But...]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But–"
"No but. It just //blowjob.// You do it or you fired. And stop be such...silly litt-oh girl."
//Fired?// The rest of what you were going to say comes out as an [[angsty, frustrated groan|TNG-1330 Resentful little sigh]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your mind races, torn between two bad options.
On the one hand, you know that if you back out now, the Task Force will support your decision. You've already generated a stack of actionable 'product'.
New officers can deploy, and start cultivating $amanda.firstName, $zoe.firstName and Connor as potential agents. You'll go back to your desk at <<if $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>>, with a [[commendation from the Prince of Darkness|TNG-1340 Preauthorised]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
On the other hand...you're in an //amazing// position right now. Losing you will set back the mission clock //at least// three months, probably longer.
You //are// pre-authorised to use sex to maintain your cover. On the satphone, <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> was clear with you about that.
All this races through your mind in a moment. "Simp-oh choice, $kate.stripperName," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> is saying. "You wan' be here or not?"
[[Not doing it. Get someone else.|TNG-1400 Not doing it]]
[[Ugh. Fine. Whatever.|TNG-1500 Fine, I'll do it]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck this.// "Not doing it." You shake your head. "Get someone else."
"Okay." <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Shift over, you fired. Don't come back."
[[But I need this job!|TNG-1402 But I need this job]]
[[Are you serious? This isn't fair!|TNG-1404 Not fair]]
<<link "Then who's gonna train $emilia.firstName?" "TNG-1410 Then who trains Emilia">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But I need this job!"
"Should have thought about that," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> replies coldly.
<<if not hasVisited("TNG-1404 Not fair")>>\
[[Are you serious? This isn't fair!|TNG-1404 Not fair]]
<</if>>\
<<link "Then who's gonna train $emilia.firstName?" "TNG-1410 Then who trains Emilia">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Are you serious? This isn't fair!"
"Fair," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> scoffs.
<<if not hasVisited("TNG-1402 But I need this job")>>\
[[But I need this job!|TNG-1402 But I need this job]]
<</if>>\
<<link "Then who's gonna train $emilia.firstName?" "TNG-1410 Then who trains Emilia">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-1402 But I need this job") or hasVisited("TNG-1404 Not fair")>>\
"If I go, who trains $emilia.firstName?"
<<else>>\
"Then who's gonna train $emilia.firstName?"
<</if>>\
"Roxy," Nin answers, reaching into her <<handbag>> for her phone. "Right after she suck Bonaht's dick. <div class="tooltip">Kor bai, kor bai<span class="tooltiptext">Go away</span></div>, fuck off. You fired."
<span class="greyedOut">//[Abort mission]//</span> [[Fuck you, Nin, I quit.|TNG-1412 Fuck you Nin]]
[[Wait, I'll do it.|TNG-1430 Wait, I'll do it]]
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck you, Nin. I quit."
"We be in touch about your passport." <span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> face remains stoic, but something about the way she looks at you makes the hair on the back of your neck prickle. "[[Good luck|TNG-1414 Good luck]]."
<</page>><<silently>>
<<set $header.line1 to "''PATPONG''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/patpongSetup2.jpg" 0 1000 400 0>>\
You leave the club in daylight, feeling dazed...but also incredibly relieved. //It's done, it's over.//
<<if hasVisited("TNG-3961.4 Back in 5")>>Striding<<else>>Walking<</if>> out through Patpong for what's probably the last time, your mind replays the last few weeks. You infiltrated the club; ID'd the key personnel; broke in and hacked the computer and CCTV; found the notebook that listed what <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> were working on the same night <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> was here; and broke into the clinic to obtain ID details on '<<Sadie>>'.
Part of you will always wonder if you should've stayed in longer. But, right now, you feel like [[you did a lot|TNG-1416 Flight home]].
<</page>><<silently>>
<<set $header.line1 to "''DON MUEANG PRIVATE AIRPORT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-trousers-oliveGreenCargoTrousers>>
<<wear-top-blackVestWithSpaghettiStraps>>
<<wear-hosiery-blackCottonTrainerSocksWithDarkGreyHeels>>
<<wear-bigBlackSunglasses>>
<<wear-shoes-blackAndWhiteStripeAdidasTrainers>>
<<set $avatar.background.pushUnique("malaysia/22_greenBackpackOnGround-both")>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-3961.4 Back in 5")>>The club, Connor, $gina.nickname and $amanda.stripperName ring your phone off the hook over the next 24 hours.<<else>>The club does call you the next day, to arrange the return of your passport.<</if>> But – given the trafficking threat – Clark decides it's safest to just pull you out.
<<image "/locationPhotos/thailand/donMueangAirport/privateJetOnRunway.jpg" 100 1000 500 0>>\
One last cleaning run ends with <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> dropping you right on the runway at a private jet terminal. He shakes your hand in one of his big, strong paws, and flashes you a big smile. "Nice workin' with ya."
[[Likewise.|TNG-1418 Likewise]]
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<remove-bigBlackSunglasses>>
<<set $avatar.background.delete("malaysia/22_greenBackpackOnGround-both")>>
<</silently>>\
<<header>>\
<<page>>\
"Likewise."
<<image "/locationPhotos/thailand/donMueangAirport/challenger3500Interior.jpg" 100 1000 500 0>>\
You board the CIA jet, and settle into a plush leather seat for a [[long flight back|DEBRIEF2-1000 Title card]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wait, I...I'll do it."
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> gazes back levelly, holding the phone. "You do what?"
[[I'll suck his cock.|TNG-1432 Suck his cock]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll do it, I'll...suck his cock."
"Oh. Now you happy, all of sudden." <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "What happen //I can't do?"//
[[I need this job.|TNG-1434 I need this job]]
[[I'm sorry, Miss Nin.|TNG-1436 Sorry Miss Nin]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I...need this job."
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> scowls at you. She holds up her finger and thumb to indicate a tiny gap. "You this close with me. Be care-fow."
Her gaze lingers on you for a long moment, letting the weight of her words sink in. "Alright...fine. You suck, you stay. Say thank you, Miss Nin."
Your jaw tightens, feeling the humiliation and the manipulation. You have to swallow before you can get the words out.
[[Thank you, Miss Nin.|TNG-1440 Thank you Miss Nin]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm...sorry, Miss Nin."
<span class="greenHighlighter">Nin ''liked'' that.</span>
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> scowls at you. She holds up her finger and thumb to indicate a tiny gap. "You this close with me. Be care-fow."
Her gaze lingers on you for a long moment, letting the weight of her words sink in. "Alright...fine. You suck, you stay. Say thank you, Miss Nin."
Your jaw tightens, feeling the humiliation and the manipulation. You have to swallow before you can get the words out.
[[Thank you, Miss Nin.|TNG-1440 Thank you Miss Nin]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thank you, Miss Nin."
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives you an angry little shake of her head, like you're a disappointing child. "Fuck off and get change."
//[[Head down and change for work.|TNG-1600 Stairway (reprise)]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ugh. //Fine.// Whatever." Your stomach lurches when you say that, but you push the feeling aside. "I'll do it."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Good." A satisfied smirk plays on Nin's lips, her eyes glimmering with a mix of satisfaction and control. "Come on, it not so bad. He handsome. And remember, you get paid extra."
[[Yeah...thanks.|TNG-1510 Okay, thanks]]
[[Whatever.|TNG-1520 Whatever]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you mumble absently. "Thanks."
<span class="greenHighlighter">Nin ''liked'' that.</span>
"You a star." Nin's dark eyes shine with approval. "Okay, that all I want. Go get change."
//[[Head down and change for work.|TNG-1600 Stairway (reprise)]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Whatever," you retort.
<span class="redHighlighter">Nin ''disliked'' that.</span>
"Oh cheer up, you just sucking a cock," Nin shoots back, her scowl deepening. With a dismissive wave of her plum-coloured fingernails, she shoos you away. "<div class="tooltip">Kor bai, kor bai<span class="tooltiptext">Go away</span></div>. Fuck off and get change."
//[[Flounce out.|TNG-1600 Stairway (reprise)]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $header.line1 to "''STAIRWAY''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You go back down the narrow staircase, descending much surer and faster than you could in heels.
//Fuck, fuck, fuck.// <<if hasVisited("TNG-1232 Guess I can do it")>>//Did I give in too easy?// <</if>>Intelligence analysts in two countries are going to watch you...//I can't even think about it.//
This is gonna look worse than Connor, way worse. //Fuck. Fuck fuck fuck.// //[[Am I really doing the right thing?|TNG-1610 Corridor]]//
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Crossing back over the dancefloor, you punch the code sharply into the No Entry Door, and step through to the backstage corridor.
//This is pre-authorised,// <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> told you. //It's your call in the field, we've got your back.//
That's comforting, but is it true? Are they //really// going to be totally fine with 'Officer $kate.firstName[0]' casually blowing the trainer after the lesson? No issues, no teensy questions about her judgement?
How are you even supposed to like...offer yourself? //Oh my god.// You really //can't// even think about this right now.
//[[Enter the dressing room.|TNG-1700 Title card]]//
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-1710 Dressing room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/dressingRoomTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-calm>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
"...and then he bless me with holy water. I think it really help my luck."
"Ah hey <<if $kate.agency == "mi6">>Pommy<<else>>$kate.firstName<</if>>!"
The dressing room's quiet this early, occupied only by <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span>. They're leisurely preparing for the night ahead, sipping Bacardi Breezers while T-pop pumps out from a small Bluetooth speaker.
[[Printed notices|TNG-1712 Petty rules]] have been taped up to every locker.
<</page>><<silently>>
<<first>>
<<addNotification "Alcohol craving +1" "You could use a drink.">>
<<set _kateControlsHerEmotions to either(true, false)>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
They're printed in Thai and English.
<hr />
<div style="text-align: center;">\
//บาร์เกิร์ลทุกคนต้องสวมสายรัดข้อมือตลอดเวลา ค่าปรับ ฿1000 นิน//
<small>//ALL BAR GIRLS MUST WEAR
WRISTBANDS AT ALL TIMES. FINE OF ฿1000. NIN//</small>
</div>\
<hr />
<<if _kateControlsHerEmotions>>\
<span class="greyedOut">//[Emotional Control check ''passed''] Rip it off your locker.//</span>
<<else>>\
<span class="greyedOut">//[Emotional Control check ''failed'']//</span> //[[Rip it off your locker.|TNG-1713 Rip it off]]//
<</if>>\
//[[Grab a Bacardi Breezer.|TNG-1720 Breezer]]
[[Stay sober.|TNG-1721 Sit at the bench]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<set _coordinationCheck to either("passed", "failed")>>
<</silently>>\
<<header>>\
<<page>>\
Feeling a knot in your stomach, you rip the notice off your locker.
//Fucking Nin.// Crumpling her work in your hand makes you feel a little better.
You flick your wrist, sending the balled-up paper sailing through the air. <<if _coordinationCheck == "passed">>Arcing gracefully, it lands squarely in the bin across the room with a satisfying //swish.//<<else>>It bounces off the bin and rolls somewhere on the floor.<</if>>
<span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> shoots <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> a glance.
//[[Grab a Bacardi Breezer.|TNG-1720 Breezer]]
[[Stay sober.|TNG-1730 Aussie treat]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You need a drink. The fridge in the dressing room is always stocked with alcopops, a subtle acknowledgement from the club that girls might need drink to get through their shifts.
Bacardi Breezers – like you drank in your teens – are still a big deal in Thailand. You grab one from the fridge, pop the cap, and knock back a gulp of [[sugary, pineapple-flavoured booze|TNG-1721 Sit at the bench]].
<</page>><<silently>>
<<emote-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
You find a spot, and unpack your little makeup kit.
<<if hasVisited("TNG-1713 Rip it off")>>\
"Eummm...you okay?" <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
A surge of frustration pulses through you, but it's nothing to do with Káyk. And there's no point making a scene. With difficulty, you force your negative emotions back down.
[[I'm fine, just...Nin.|TNG-1722 Fine just Nin]]
<<else>>\
"Hey, look." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches into her bag. "Brought in a little <<if $kate.agency == "asis">>taste of home<<else>>Aussie treat<</if>> for ya."
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[Tim Tams?|TNG-1723 Steph produces Tim Tams]]
<<else>>\
[[Tim Tam?|TNG-1723 Steph produces Tim Tams]]
<</if>>\
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine, just...Nin."
"Aooo." <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods understandingly.
"I got something that'll cheer you up." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches into her bag. "Brought in a little <<if $kate.agency == "asis">>taste of home<<else>>Aussie treat<</if>> for ya."
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[Tim Tams?|TNG-1723 Steph produces Tim Tams]]
<<else>>\
[[Tim Tam?|TNG-1723 Steph produces Tim Tams]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
<<set _snackPacket to "familiar pack of biscuits">>\
"Tim Tams?"
<<else>>\
<<if $kate.agency == "mi6">>\
<<set _snackPacket to "pack of biscuits">>\
<<else>>\
<<set _snackPacket to "pack of cookies">>\
<</if>>\
"Tim Tam?"
<</if>>\
"Mm-hm!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tears open a <span class="imageLink"><<link "_snackPacket">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/timTamsUnopened.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. <<if $kate.agency == "asis" or $kate.agency == "nzsis">>"Have one."<<else>>"Try one."<</if>>
[[Thanks, I'll have one later.|TNG-1724 Maybe later]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, I'll...have one later." Your stomach's tight, you don't feel like eating right now.
<<image "/locationPhotos/thailand/hardCockCafe/timTams2.jpg" 23 1000 400 0>>\
"C'monnn..." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rattles the pack. "Free chocolate. I brought 'em in for you."
[[Well, okay.|TNG-1760 Tim Tam tasting notes]]
<</page>><<silently>>
<<emote-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
You find a spot, and unpack your little makeup kit.
"Alright." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches into her bag. "Got a little <<if $kate.agency == "asis">>taste of home<<else>>Aussie treat<</if>> for ya."
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[Tim Tams!|TNG-1750 Tim Tams!]]
<<else>>\
[[Tim Tams?|TNG-1740 Tim Tams?]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tim Tams?"
<<image "/locationPhotos/thailand/hardCockCafe/timTams2.jpg" 23 1000 400 0>>\
"It's an Aussie thing." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tears open the pack, and offers you and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> a <<if $kate.agency == "cia" or $kate.agency == "csis">>[[chocolate cookie|TNG-1760 Tim Tam tasting notes]]<<else>>[[chocolate biscuit|TNG-1760 Tim Tam tasting notes]]<</if>>.
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Tim Tams!"
<<image "/locationPhotos/thailand/hardCockCafe/timTams2.jpg" 23 1000 400 0>>\
"Ah yeah." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, tears open the pack, and offers you and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> a <<if $kate.agency == "cia" or $kate.agency == "csis">>[[chocolate cookie|TNG-1760 Tim Tam tasting notes]]<<else>>[[chocolate biscuit|TNG-1760 Tim Tam tasting notes]]<</if>>.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Well, okay."
"That's the spirit."
You crunch down on a <<if $kate.agency == "asis">>little taste of home<<elseif $kate.agency == "cia" or $kate.agency == "csis">>chocolate cookie<<else>>biscuity chocolate<</if>>.<<if $kate.agency == "mi6">> It tastes kind of like a Penguin.<</if>>
"This is the food of <<if $kate.agency == "asis">>our<<else>>my people<</if>>," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains.
"Mmmh," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, her voice muffled on a mouthful of Tim Tam. "Pretty good."
<<if $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[Where'd you get these?|TNG-1770 Where'd you get these]]
<<elseif $kate.agency == "mi6">>\
[[Tastes like a Penguin.|TNG-1800 Like a Penguin]]
<<else>>\
[[I like the crunch.|TNG-1840 Like the crunch]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmm. Where'd you get these?"
"There's this 7/11 near my place, I'll show you one day," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "They've got Lamingtons, too."
"What is Laming-toh?" <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Like little coconut cakes.|TNG-1780 Kate explains Lamingtons]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Like little coconut cakes," you explain.
"Ohhh." <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "I love coconut."
"I'll bring some in," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "We're gonna have <<if $kate.agency == "asis">>three Aussie chicks<<else>>two Aussies and a Kiwi<</if>> in tonight, right? I reckoned we'd defo need Tim Tams."
[[Defo.|TNG-1790 Defo]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Defo," you nod.
"Awwww," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "You two have [[such cute accent|TNG-1900 Makeup]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tastes kinda like a Penguin."
"Ah yeah, hearda those," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "What's better?"
//Hmmm.// The biscuit in the Tim Tam is much lighter and crispier. The chocolate tastes lighter and richer, too.
The whole colour of the Tim Tam is a warm bronze, to the Penguin's almost slatey grey chocolate and grittily textured biscuit. But the Penguin's a bigger, chunkier and more satisfying snack.
[[Penguin.|TNG-1810 Penguin]]
[[Tim Tam.|TNG-1830 Tim Tam]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Penguin."
"No way," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> objects. "Okay, you gotta find some and bring 'em in. We'll have a taste off."
"Peng-a-win?" <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks. You realise that she's not really following along with the rapid-fire, conversational English.
"Mmm. Like a Tim Tam," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Same same."
[[But different.|TNG-1820 But different]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"But different," you complete the Thai saying, clicking on the lamps of your makeup mirror.
"New barmaid's an Aussie, right?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks. "Reckoned we'd defo need [[Tim Tams|TNG-1900 Makeup]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Y'know what? I think Tim Tam."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Yeahhh." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. "Take that, penguin."
"Pen-ga-win?" <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks. You realise that she's not really following along with the rapid-fire, conversational English.
"Mmm. Like a Tim Tam," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Same same."
[[But different.|TNG-1820 But different]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I like the crunch," you say judiciously.
"Mmm. They're even better with milk," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Ever heard of the Tim Tam Slam?"
[[Is that a thing?|TNG-1850 Is that a thing?]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Is that a thing?"
"Oh yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "I'll show you one day."
[[Deal.|TNG-1860 Deal]]
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Deal."
"Deal." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clinks her Tim Tam against yours in a [[toast|TNG-1900 Makeup]].
"Awww, you two should get room," laughs <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-1720 Breezer")>>\
Sipping your cold Breezer, you meticulously apply your eye makeup for this evening.
<<else>>\
You start work on your look, meticulously applying your eye makeup for this evening.
<</if>>\
<span class="imageLink"><<link "Káyk's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> lively T-pop pulses out from the Bluetooth speaker, futuristic beats blending with sweet female vocals and faintly disturbing harmonies.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "TNG-1910 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "TNG-1920 Eyeliner">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "TNG-1999 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "TNG-1920 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "TNG-1910 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-1999 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if $kate.isWearing.includesAll("eyeshadow", "eyeliner")>>\
//[[Continue|TNG-2000 FNG Part II]].//
<</if>>\<<silently>>
<<if $kate.stripperName == "Dani" or $kate.stripperName == "Danielle">>
<<set $emilia.stripperName to "Kylie">>
<<else>>
<<set $emilia.stripperName to "Dani">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> comes in to join you. A little later, the dressing room door opens again. This time it's <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missLu/lu_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> and the new barmaid, <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
"<div class="tooltip">Sawatdi<span class="tooltiptext">Hi</span></div> ladyyy," Miss Lu says. "Say hi to $emilia.stripperName, she try out as barmaid tonigh'."
//"Hey $emilia.stripperName." "Hiiii." "Hi $emilia.stripperName."//
<<link "Hi $emilia.stripperName." "TNG-2010 Hi Dani">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi $emilia.stripperName."
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles nervously.
"You member $kate.stripperName? She take care you tonigh'," <span class="imageLink"><<link "Miss Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missLu/lu_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells her. "Any problem, ass her, 'kay? $kate.stripperName, you show her rope, 'kay?"
[['Kay.|TNG-2020 No problem][$kateSays to "'Kay"]]
[[No problem.|TNG-2020 No problem][$kateSays to "No problem"]]
[[Yes Miss Lu.|TNG-2030 Yes Miss Lu]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
<<include "TNG-2040 Emilia hovers nervously">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes Miss Lu."
<span class="greenHighlighter">Lu ''liked'' that.</span>
<<include "TNG-2040 Emilia hovers nervously">>
<</page>><span class="imageLink"><<link "Lu">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missLu/lu_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles and departs; <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> hovers in the doorway, clutching her <<handbag>>.
[[Come in, take a seat.|TNG-2050 Come in, sit down]]<<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Come on." You pat the empty stool beside you.
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> hesitates a moment, as if unsure of herself, then gratefully scurries over to join you.
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
"I'm so nervous," she admits.
[[Don't be, you're gorgeous.|TNG-2052 Don't be, ur hot]]
[[Felt the same on my first night.|TNG-2053 Same same]]
[[Don't worry, it's easy.|TNG-2054 So easy]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Oh don't be," you tell her, "you're gorgeous."
<<include "TNG-2055 Needed Zack">>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Felt the same on my first night. It gets easier," you promise her.
<<include "TNG-2055 Needed Zack">>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry," you smile reassuringly. "It's pretty easy."
<<include "TNG-2055 Needed Zack">>
<</page>>"Hnnh." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> lets out an anxious little noise. "Didn't even wanna come through the door. Would've chickened out if Zack weren't with me."
[[Zack your boyfriend?|TNG-2056 Zack ur bf?]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Zack your boyfriend?" You raise an eyebrow, recalling your first impression of him. //Total fuckboy.//
"Yeah," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "He wanted to come in with me...but that lady said I should do the first night on my own."
"You're not on your own," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "Where ya from in Oz?"
"Oh, uh...y'know Byron Bay?"
<<if $kate.agency == "asis">>\
"Ah yeah, I know it! I'm from Doonan? It's, uh, up in Queensland. Mostly farms."
[[I'm from Canberra.|TNG-2090 City gal]]
<<else>>\
"Ah yeah, I know it! I'm from Doonan? It's, uh, up in Queensland. [[Mostly farms|TNG-2100 Mostly farms]]."
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I was too on my first night," you tell her. "Don't worry, okay? I've got your back."
<span class="greenHighlighter">$emilia.firstName ''loved'' that.</span>
$emilia.firstName doesn't reply, just lets out a relieved little breath.
"You'll be fine once you get out there," $gina.nickname promises. "Where you from in Oz?"
"Uhhh...you know Byron Bay?"
<<if $kate.agency == "asis">>\
"Ah yeah, I know it! I'm from Doonan? It's, uh, up in Queensland. Mostly farms."
[[I'm from Canberra.|TNG-2090 City gal]]
<<else>>\
"Ah yeah, I know it! I'm from Doonan? It's, uh, up in Queensland. [[Mostly farms|TNG-2100 Mostly farms]]."
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm from Canberra."
"City gal," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks. "Hey, look what I've got."
"Ohhh, Tim Tams. Can I..."
"Uhuh!"
"Habn't hab one in mumph," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, munching on a mouthful of [[Tim Tam|TNG-2110 Slow wifi]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh, don't think I know it," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> says.
"It's pretty small. Heyyy," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, rustling her pack of <<if $kate.agency == "cia" or $kate.agency == "csis">>cookies<<else>>biccies<</if>>, "look what I got."
"Ohhh, Tim Tams. Can I..."
"Uhuh!"
"Habn't hab one in mumph," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, munching on a mouthful of [[Tim Tam|TNG-2110 Slow wifi]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> are having their own conversation in Thai.
"<div class="tooltip">Yae ja, net cha maak<span class="tooltiptext">Ugh, the Internet is so slow</span></div>," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> complains.
"<div class="tooltip">Khå<span class="tooltiptext">Right</span></div>," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, "<div class="tooltip">pen baep nee ma naan laew leoi<span class="tooltiptext">it's been like this a while now, seriously</span></div>."
"<div class="tooltip">Rao len sak naa websigh diao chai welaa naan maak<span class="tooltiptext">It takes so much time just to load one page</span></div>..."
You're trying to tune in to that, but <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> distracts you. "So did you guys meet here, or..."
"Yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_floatyBlueDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "Actually...we //met// at $zoe.stripperName's thing, right? But yeah, through the club. $kate.stripperName's pretty new."
[[Yeah, I've been here about a month.|TNG-2120 What is it like two weeks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I've been here like a month."
"Wow. Really?" <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks with genuine surprise. "I thought...wow, you just seem so confident."
[[Fake it til you make it.|TNG-2150 Fake it and you're made]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Fake it til you make it, right?"
It's not the greatest joke, but <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> giggles appreciatively, filling the dressing room with a warm and lighthearted energy.
"$kate.stripperName..." <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "Bonaht be here soon."
//Bonaht.// For a second, you'd stopped thinking about it. Ploy's reminder jolts you back into reality.
[[We'd better get ready.|TNG-2160 Better get ready]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um...better get ready," you say. "You got makeup, right?"
"Mm-hm." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods, patting her <<handbag>>.
"Let's do this."
//[[Finish your makeup.|TNG-2200 Finishing touches]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The room buzzes with female energy as you and the girls chat in front of the mirrors, brushes and cosmetics in hand.
The T-pop band playing in the background fills the air with a cute and catchy haka-like pop song, their sweet harmonies and playful girl power shouts and stomps setting the mood.
//<small>🎵</small>Liver!<small>🎵</small>
<small>🎵</small>Aaaa-uh-ah-ah-ah!<small>🎵</small>//
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "TNG-2210 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "TNG-2220 Blusher">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "TNG-2299 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "TNG-2220 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "TNG-2210 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2299 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includes("lipstick")>>\
When you're happy with your look, you can [[change into your work clothes|TNG-2300 Top off]].
<</if>>\<<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTopMadeUp.png']]")>>
<<set Dialog.open()>>
<</link>></span> steals a sidelong glance at you as you take off your top.
Undressing in here just feels normal now, even with the one-way mirror, even with the camera feeding into both the VIP room and <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>.
//[[Take off your shorts.|TNG-2310 Shorts off]]//
<</page>><<silently>>
<<removeShoes>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
You kick off your sandals, and wriggle out of your shorts. <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_shortsAndBra.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_knickersAndTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> are stripping off, too, peeling off their clothes without self consciousness. They've done this countless times, and it shows in their ease.
"Uhhh..." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTopMadeUp.png']]")>>
<<set Dialog.open()>>
<</link>></span> hesitates, her nerves evident in her voice. "Should I, uh..."
[[Yeah, it's part of the job.|TNG-2320 Yeah we need to get ready]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, it's...part of the job." Realising you just practically quoted Nin is a little disconcerting. But it //is// the reality of this place. "Don't worry, you get used to it."
"Mm-hm." <span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTopMadeUp.png']]")>>
<<set Dialog.open()>>
<</link>></span> head bobs nervously, her gaze fixed on her reflection. "No problem."
"Ever done anything like this before?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_tngDressingRoomMadeUp.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Ahhh...some modelling. Little bit."
"Ah yeah? What kind?"
"Just some local stuff. Back home," Emilia replies, trying to downplay her nervousness. "Couple little shops, y'know, like swimwear and dresses. Nothing too glamorous."
"Ah, still sounds cool!"
<span class="greyedOut">//[Take off your bra]//</span> [[Yeah, cool.|TNG-2330 Bra off]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, that's cool." Turning your attention back to your mirror, you unhook your bra, and slide it off.
Cool air brushes your bare nipples, and you can't help but feel a mix of nerves and anticipation. You gaze at your reflection, seeing yourself as the analysts back at <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> and <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> will see you later. //Officer $kate.firstName[0]. Stripped.//
The persona you've created for the mission stares back, confident and alluring. But beneath that exterior, doubts swirl in your mind.
<<link "//Take off your <<knickers>>.//" "TNG-2340 Nude scene number 9000">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>C'mon c'mon c'mon c'mon baby!<small>🎵</small>
<small>🎵</small>Hai coo-kie too nai-ai gan<small>🎵</small>
<small>🎵</small>Koisuru, for-tune coookie...<small>🎵</small>//
You peel down your <<knickers>>, and drop them casually into your <<handbag>>.
Naked, you subtly glance across at <span class="imageLink"><<link "$emilia.firstName in her underwear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongPinkBra.png']]")>>
<<set Dialog.open()>>
<</link>></span>, checking her out. Her lean figure, the long blonde hair, the slim bust. <<if $kate.hairColour != "blonde">>Different from your <<if $kate.braSize == "small">><<if $kate.hairColour == "black" or $kate.hairColour == "lightBrown">>dark haired<<elseif $kate.hairColour == "auburn">>auburn<<elseif $kate.hairColour == "ginger">>redhead<<elseif $kate.hairColour == "champagne">>mousy<</if>> vibe, although your bodies are similar, slim and small-breasted.<<else>><<if $kate.hairColour == "black" or $kate.hairColour == "lightBrown">>dark<<elseif $kate.hairColour == "auburn">>auburn<<elseif $kate.hairColour == "ginger">>red<<elseif $kate.hairColour == "champagne">>mousy<</if>> hair and curves.<</if>><<else>><<if $kate.hairStyle == "shortBob" or $kate.hairStyle == "short" or $kate.hairStyle == "longCurly">>Different from your <<if $kate.hairStyle == "longCurly">>curls<<else>>short haired vibe<</if>><<if $kate.braSize == "small">>, although your bodies are similar, slim and small-breasted.<<else>> and curves.<</if>><<else>><<if $kate.braSize != "small">>Different from your curves.<<else>>You two look similar, but...//same same, but different.//<</if>><</if>><</if>>
There's a moment of self-consciousness as you compare yourself with her, but you quickly shrug it off.
//[[Change into your thong for tonight.|TNG-2341 Put your knickers on and make me a cup of tea]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pull your work thong out of your handbag.
It's your seventh shift, you'd think you'd be used to this by now, but there's still this pang of nerves and excitement as you hold up your entire 'uniform' in one hand.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Thongs</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "TNG-2410 Thongs">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "TNG-2499 Exit navigation">>
</span>\
<</page>><<if !$avatar.underwear.includes("clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/30_knickers-blackAndLimeGreenThreeSideStrapGanjaString")>>\
<<link "Ganja leaf g-string">>\
<<wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ganja leaf g-string">>\
<<remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/30_knickers-blackMeshWithHotPinkBowsCrotchlessString")>>\
<<link "Black mesh crotchless g-string with hot pink bows">>\
<<wear-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black mesh crotchless g-string with hot pink bows">>\
<<remove-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-cherryRedTwoSideStrapWithGoldLoopsString")>>\
<<link "Cherry red strappy thong with gold loops">>\
<<wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red strappy thong with gold loops">>\
<<remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-vsPinkHeartsKnickers")>>\
<<link "VS Sheer Pink hearts <<knickers>>">>\
<<wear-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// VS Sheer Pink hearts <<knickers>>">>\
<<remove-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-maroonGlitterString")>>\
<<link "Maroon glitter thong">>\
<<wear-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Maroon glitter thong">>\
<<remove-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-ivoryStrappyString")>>\
<<link "Strappy ivory g-string">>\
<<wear-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Strappy ivory g-string">>\
<<remove-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "TNG-2410 Thongs">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "TNG-2499 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includes("knickers")>>\
You slide it on. The [[delicate material|TNG-2501 Decorated]] clings softly to your most intimate curves, hugging your hips, riding up tautly between your buttocks.
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your reflection gazes back. No longer naked, but...//decorated,// in a pretty little scrap of $knickers.material and elastic. The kind of thing you might put on to tempt or reward a boyfriend. Except it's not just for a boyfriend, it's for every man who walks in tonight.
//It's just clothes.// But it makes you feel...conflicted. You have to fight a subtle shift in the way you perceive yourself – girlier, or something.
It's just...it's [[hard to take yourself seriously|TNG-2502 Dolled up]] when you're dressed up like this. It's like literally all you're for is sex.
<</page>><<silently>>
<<set $kate.arousal to 2>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Anticipation.* You look kinda hot in this. You're a little turned on.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Nipples hard, pussy wet. Flirty and fantasising about being seduced.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* DTF. Flirty, receptive and open to suggestion. Lowered inhibitions.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Knowing that later you'll be out in a room full of men, wearing just this, triggers a heat in your groin, a tingly sensitivity where your pussy hides under a thin scrap of soft clingy $knickers.material.
//What's wrong with me.//
You busy yourself by [[changing into your shoes|TNG-2520 Heels on]].
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn your back to one of the full-length mirrors, and adjust your thong a little, tugging the straps to make sure your buttocks are evenly framed and sculpted for tonight.
It's your seventh shift, you'd think you'd be used to this by now. But your body tingles with anticipation at being walked out into a room that's going to fill up with men.
//I feel like we're missing a kind of closing moment, when all the barmaids are ready and about to go to work.
I think this is a similar feeling to a girls' night out, when everybody's getting ready together. All the girls have primped and preened and they look gorgeous, and everybody's excited about going out to the bar and being seen.
Only this should feel kind of familiar yet different. Instead of you and your girl pack looking glamorous in body con dresses, you all look *totally whorish* in thongs, heels and makeup. You look like you're about to have sex with your boyfriend, but there's four of you all together, and you're about to go to work.//
$emilia.firstName finally <span class="imageLink"><<link "slips off her bra">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>, joining you and the other barmaids, already <span class="imageLink"><<link "all topless">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ployAndKaykTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Put on your heels.|TNG-2520 Heels on]]//
<</page>><<silently>>
<<showFront>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
You bend down and slip off your sandals, feeling the cool air tickle your painted toes.
//[[Put on your heels.|TNG-2520 Heels on]]//
<</page>><<silently>>
<<showFront>>
<<if ndef $purchasedHeels>>
<<set $purchasedHeels to "redVelvetCrissCrossStrappyStilettoHeelSandals">>
<</if>>
<<= '<<wear-shoes-' + $purchasedHeels + '>>'>>
<</silently>>\
<<header>>\
<<page>>\
The <<if $purchasedHeels == "blackElegantPumps">>sleek black<<else>>strappy<</if>> heels add inches to your height, but instead of feeling empowering, putting them on just makes you feel more submissive and on display. Forced to arch your back, forced to walk everywhere slowly and sexily.
As you make your final preparations for work, the click-click-click of heels on the hard floor feels like a constant reminder that you and the other girls are here to serve.
//[[Spritz on some perfume.|TNG-2521 Charlie Blue]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You spritz on some <span class="imageLink"><<link "Charlie Blue">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/charlieBlue.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a cheap perfume you picked up at a night market.
The whole bottle cost less than a single drop of the Tom Ford Black Orchid that's sitting on your dresser back in <<if $kate.agency == "cia">>Georgetown<<elseif $kate.agency == "mi6">>Clapham<<elseif $kate.agency == "asis">>Belco<<elseif $kate.agency == "csis">>Rockcliffe<<elseif $kate.agency == "nzsis">>Te Aro<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
You assumed you'd hate it, and your skin would come out in hives, but it's actually quite [[playful and fresh and bright|TNG-2521.1 Ready ready]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Around you, the other barmaids' gazes are fixed on their mirrors as they add the finishing touches – teasing their hair, touching up their lipstick.
It feels like those last moments of getting ready for a girls' night out, when the taxi's waiting outside and you're just about to leave. Except you've all forgotten to put on your dresses.
<div class="tooltip">"Prom yang?"<span class="tooltiptext">Ready?</span></div> asks <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<div class="tooltip">"Chaaai,"<span class="tooltiptext">Yes</span></div> replies <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
"$kate.stripperName? Ready ready?"
[[Chaaai.|TNG-2522 Chai]]
[[Ready ready.|TNG-2523 Ready ready]]
[[Let's go make some money.|TNG-2524 Let's make some money]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Chaaai," you reply, nailing <span class="imageLink"><<link "Káyk's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> exact tone and earning amused chuckles from <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_tngDressingRoomMadeUp.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ploy ''liked'' that.</span> <span class="greenHighlighter">Káyk ''liked'' that.</span>
<<include "TNG-2525 Let's go Emilia">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ready ready."
<<include "TNG-2525 Let's go Emilia">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh huh, let's go make some money."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Ploy ''liked'' that.</span> <span class="greenHighlighter">Káyk ''liked'' that.</span>
<<include "TNG-2525 Let's go Emilia">>\
<</page>>You help <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> load her things into your locker, then lead her out into the dimly lit backstage corridor.
Following behind Ploy and Káyk’s swaying golden butts, you point out some <<link "important landmarks to $emilia.firstName" "TNG-2610 Club floor">><</link>>.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Standing taller, you gaze into the mirror, admiring the way your legs look longer, the subtle shift in your posture that makes you arch your back and push out your breasts.
You reach into your <<handbag>> and grab your lipstick. As if you've spotted some imperfection, you pout your lips and apply a little touch-up.
Leaning ever so slightly forward over your makeup counter, naked in heels, you take your time fixing your look.
It occurs to you how hot it'd be to go out into the club dressed like this. But you'd [[better get dressed|TNG-2400 Knickers on]].
<</page>><<silently>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
Well...not entirely, you're still topless. But it's surprising how much more dressed you feel. //TK add a variation if Kate is wearing sheer underwear//
You slip off your sandals, and [[take out your heels|TNG-2550 Heeled up]].
<</page>><<silently>>
<<if hasVisited("TNG-2540 Change into heels")>>
<<if ndef $purchasedHeels>>
<<set $purchasedHeels to "redVelvetCrissCrossStrappyStilettoHeelSandals">>
<</if>>
<<= '<<wear-shoes-' + $purchasedHeels + '>>'>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-2510 Barefoot exhibitionist")>>\
Well...not entirely, you're still topless. But it's surprising how much more dressed you feel. //TK add a variation if Kate is wearing sheer underwear//
<<else>>\
You slip back into the cheap heels you bought in the night market, and feel an empowering boost of height. They're getting comfier now.
<</if>>\
A spritz of perfume, and you're ready to go. You help $emilia.firstName load her bag into your locker, and walk with her [[out into the corridor|TNG-2600 Let's go to work]].
<</page>><<silently>>
<<set _header1Blink to true>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _dominantKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
You follow <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> through the dimly lit, gloomy corridor. The carpeting over the floors and walls muffles the sound, creating a sense of hushed anticipation.
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> must be a bundle of nerves; you definitely were, the first time you walked out down this corridor in just a thong and heels, ready to start work.
Now it's less terrifying, but you still get a little buzz just before every shift. That weird knife edge between empowerment and vulnerability. Mixed in with a little sexual thrill from <<if _dominantKink == "exhibitionist">>being made to strip off and parade around in public<<elseif _dominantKink == "submissive">>being made to strip off and serve a bunch of random men<<elseif _dominantKink == "masochist">>being stripped and vulnerable in a room full of men<<else>>//[ERROR IN DOMINANTKINK TEMP VAR]//<</if>>.
It's [[kind of addictive|TNG-2610 Club floor]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
"Fire exit...staff toilets...there's normally a bouncer on this door, but the code's one-six-one-oh..."
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> pushes open the No Entry Door. You step through into engulfing darkness, awash in a vibrant palette of pink and purple lights that paint the empty dancefloor.
Air-conditioning washes over your bare skin, making your nipples tighten.
A gentle Thai rock melody drifts from the speakers, turned down low for the moment. Dry ice hisses out from the DJ booth as someone up there fine-tunes the systems.
//[[Cross the dancefloor.|TNG-2620 Crossing the floor]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
In the sultry glow of the club lights, your fellow barmaids ooze allure, confidence and glamour.
They make their way to the bar with a hint of laid-back grace, hips swaying to the rhythm of their high-heeled strides. As <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> passes through a UV beam, her plain white thong glows brilliantly in the dark.
//[[Get set up behind the bar.|TNG-2630 Bar setup]]//
<</page>><<silently>>
<<set _header1Blink to true>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/sodaGun.jpg" 50 1000 500 0>>\
You duck under the bar. <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> follows closely, her eyes wide with a mix of awe and apprehension.
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> already set everything up, and Bonaht isn't here yet. //Thank god.// That gives you an opportunity to get <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> orientated.
You're actually quite extensively trained as an instructor; officers in the field often need to train agents in various <div class="tooltip">tradecraft<span class="tooltiptext">The techniques used by undercover officers and agents. Bad tradecraft is the #1 way operations get blown</span></div> skills. The first phase is Analysis, where you assess the student's existing capabilities.
[[Ever worked in a bar before?|TNG-2640 R U Experienced]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So. Ever worked in a bar before?"
<span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> gaze flickers for a moment, inadvertently scanning your nearly-naked body before quickly returning to meet your eyes. You remember how //weird// it felt on your first night, being onboarded by a topless Romanian girl in high heels and lingerie.
"Uhh..." Almost imperceptibly, $emilia.firstName shakes her head //no.//
[[What jobs have you had?|TNG-2641 What jobs have you had]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What jobs have you had? Apart from the modelling?"
"Mainly receptionist," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "At my dad's company."
[[Your dad has a company?|TNG-2642 Your dad has a company]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Your dad has a company?"
"Yeah, he's kinda this...rich arsehole." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
[[So...how come you're working in a brothel?|TNG-2643 Y r u here]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sooo...what are you doing //here?"//
"Rich //arsehole,"// <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> repeats. "He thinks I'll go crawling back."
[[Maybe you should?|TNG-2644 Crawl home Emilia]]
[[Okay. Well, this job is kind of like receptionist.|TNG-2645 Barmaiding is kind of reception]]
[[He's controlling?|TNG-2646 Controlled]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ummm...maybe you //should?// I don't wanna tell you how to live your life, but this place..."
<span class="redHighlighter">$emilia.firstName ''disliked'' that.</span> <span class="yellowHighlighter">$emilia.firstName will ''remember'' that advice.</span>
"Not happening," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> says firmly. //Interesting.// It's the first time you've seen her assert herself about anything.
[[Hey, it's your life. Let's get started...|TNG-2800 Let me show you around]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you shrug. "Well...this job's kind of like being a receptionist, I guess. The bar's like a front desk."
"Uh huh," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods along.
[[You probably wore more clothes at your old job.|TNG-2645.1 Dress code's different]]
[[Let me show you where everything is...|TNG-2800 Let me show you around]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I mean...you probably wore more clothes when you were working for your dad."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> smirks. "Mm-hm," she nods, "yep. Most days."
[[Same same otherwise. I'll show you around...|TNG-2800 Let me show you around]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sounds like he tried to control you."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
"Right. //Exactly."// <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods vigorously. "And I'm done with it."
[[Just be careful, okay?|TNG-2647 Just be careful Emilia]]
<span class="greyedOut">//[Shrug]//</span> [[Fuck him, then.|TNG-2649 Fuck him then]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Just be careful, okay? It's great you're earning your own money, but this place isn't exactly above board..."
"Yeah, mum," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods impatiently. "Promise I won't talk to strangers either."
<<link "I'm...$kate.age." "TNG-2648 Club 27">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-rogerMoore>>
<</silently>>\
<<header>>\
<<page>>\
"I'm...$kate.age."
"Alright. Big sister. You defo have that vibe." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "It's sweet."
<<link "You little brat, let's get started." "TNG-2800 Let me show you around">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hm," you shrug. "Well...fuck him, then."
<span class="greenHighlighter">$emilia.firstName ''loved'' that.</span>
<span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> eyes light up in surprise. "Right!" she says with a laugh. "Fuck him!"
[[C'mon, let me show you where everything is.|TNG-2800 Let me show you around]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You //drink// in bars, though, right?"
"Yeah," $emilia.firstName nods. "Course."
[[Okay, think of the best bartenders. What were they like?|TNG-2660 Model the experts]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay. So think of the best bartenders ever. What were they like?"
"Well, ummm..." $emilia.firstName gazes up to the ceiling as she searches her memory. "I guess friendly? And they served me quick, haha."
[[Why did you like getting served quick?|TNG-2670 Why u like it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What's the reason you liked it when they served you quick?" That's one of the little psychology hacks you learned <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>: //'why' makes people defensive, use 'what's the reason' instead.//
"Uhhh..." $emilia.firstName's brow furrows slightly as she interrogates her own reasoning. Something tells you she doesn't do that habitually. "I guess...it made me feel like I was kinda special?"
[[You got it.|TNG-2680 U got it]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"You got it. That's the main thing these guys all want. Notice them, smile at them, chat. Make them feel special, they'll love you for it."
<span class="yellowHighlighter">$emilia.firstName will ''remember'' that.</span>
"Okay." $emilia.firstName nods as she thinks this over. "I can do that."
[[Let me show you where everything is.|TNG-2800 Let me show you around]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-2644 Crawl home Emilia")>>\
<<emote-brows-calm>>\
<<emote-mouth-talking>>\
"Hey, it's your life," you shrug. "C'mon, let me show you around..."
<<elseif hasVisited("TNG-2645.1 Dress code's different")>>\
<<emote-mouth-smirk>>\
"Same same otherwise. Let me show you round your new office..."
<<elseif hasVisited("TNG-2645 Barmaiding is kind of reception")>>\
<<emote-mouth-talking>>\
"First things first, let me show you where everything is..."
<<elseif hasVisited("TNG-2648 Club 27")>>\
<<emote-brows-calm>>\
<<emote-mouth-smirk>>\
"You little brat. Let me show you where everything is..."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
<<elseif hasVisited("TNG-2649 Fuck him then")>>\
<<emote-mouth-smirk>>\
"C'mon. Let me show you around..."
<<else>>\
//ERROR IN HASVISITED VAR//
<</if>>\
You give <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> a basic tour of the bar. She trots attentively by your side as you you point out the pumps, the ice machine, the dishwasher, the soda gun, and the liquor rail.
"What are they?" she asks, pointing out a row of ornate and colourful glass bottles.
[[Liqueurs and syrups for cocktails, don't worry about that now.|TNG-2801 Syrups]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Cocktail ingredients. Liqueurs, syrups. Don't worry about it now," you add, sensing that she doesn't know what those things are. "This is mostly a beer bar. Anyone asks for something you don't know, just ask me, okay?"
"Okay," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods.
[[Ask me as many questions as you want tonight, I'm here for you.|TNG-2802 Ask stupid questions]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Listen, ask me as many questions as you like tonight," you tell her, "I'm here for you. If I'm talking to someone, just come and interrupt me."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
"Thanks," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods appreciatively.
[[Umm, unless I'm talking to a manager.|TNG-2803 Unless it's a manager]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um, unless I'm talking to a manager," you clarify, "then just wait. Don't piss any of them off."
"Uh huh," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "And...we've got a trainer coming in, right? Is it a bloke?"
[[Uhh, yeah.|TNG-2804 Uhh, yeah]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhh, yeah." //I have to suck his dick afterwards.//
You'd managed to distract yourself from it for a few seconds, but the thought of Bonaht arriving sends a queasy twinge through your stomach.
//Maybe he won't turn up. Maybe he'll get stuck in traffic. Maybe he'll slip and fall in a <div class="tooltip">khlong<span class="tooltiptext">canal</span></div>. And...get swept off into the Chao Phraya, with all the other shits.//
"Ohhkay," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, "guess that's...gonna be interesting."
[[Uh, about the trainer...|TNG-2810 Bonaht's a groper]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh, about him..."
"Mhm?" <span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> slender eyebrows curve upwards.
//He might not make it. I could call Ian, request some urgent <div class="tooltip">wetwork<span class="tooltiptext">an espionage mission that calls for murder</span></div>.//
[[He's a bit touchy-feely.|TNG-2820 Touchy feely]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He's a bit...touchy-feely. Like, he'll expect a hug when he meets you." You shrug. "It's just his thing, but I wanted to give you a heads up."
"Uhhh...okay," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> replies uncertainly. "Uh, thanks for letting me know."
"[[No problem|TNG-2900 Enter Bonaht]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Minutes tick by. You're showing <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> how to work the soda gun, when the swing doors //creeeak// noisily. Your stomach lurches at the sight of <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s smiling face.
"<div class="tooltip">Sawat di<span class="tooltiptext">Hi</span></div>, ladies! Sorry I'm late!"
Your eyes meet briefly, but you can't hold his gaze. You instinctively [[look away|TNG-2910 Hugs are better than drugs]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Sawat di." "Hiii."// <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> each greet <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with a long, lingering hug.
It's not just that you don't want to blow him. You don't want to //touch// him. //Why do we have to go through this stupid fucking ritual? I make like three cocktails a night.//
//[[Stare coldly off to the side.|TNG-2910.1 Stare off]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You try to communicate your discontent by staring off to the side when he's hugging <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>, like the whole thing bores you. But you don't think he notices.
Then it's your turn.
<span class="greyedOut">//[Hug him]//</span> [[Hi Bonaht.|TNG-2911 Hi Bonaht]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi Bonaht."
Reluctantly, you rest a hand on <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> back, and lean into the hug. His smell fills your nostrils, cologne and sweat. Your <<if $kate.braSize == "small">>perky<<elseif $kate.braSize == "medium">>firm<<else>>big<</if>> breasts press against his firm chest, your nipples brushing the soft linen of his shirt.
"$kate.stripperName," he says fondly. His hand slides down the small of your back, glides smoothly over the waistband of your thong, cups a bare naked buttock, gives it a playful little //[[squeeze|TNG-2912 Little squeeze]].//
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
It makes you freeze up.
//You don' have to fuck him. Juss give him blowjob after training.//
Your mouth feels dry. Your emotions feel numb.
You're not sure you can [[go through with this|TNG-2920 Emilia's hug]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Releasing you, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> moves straight onto the new girl. "And you must be $emilia.stripperName," he says, his eyes roaming up and down <span class="imageLink"><<link "her figure">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>. "Nin told me you were beautiful, but...wow."
$emilia.firstName smiles nervously, not sure how to respond. "Uh...thank you."
He steps forward and wraps his arms around her, pulling her into a tight hug. “We're like a big family,” he insists, holding her for a little too long. "You're gonna make a [[lot of money|TNG-2921 A lot of money]] here."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, still fixated on <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>. "So...first time this side of the bar, right? Let's start with the basics."
He walks her over to the Chang pumps, his fingers pressing the small of her back. "Okay," he says, "let's see you pour me a beer."
"Uh, I don't..."
"Just go for it," Bonaht says, "let's see if you can [[figure it out|TNG-2922 Emilia figures it out]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Ohhhkay..." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> glances around, finds an empty pint glass, sets it under the tap.
"Good start," quips <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, getting a polite laugh out of the other three barmaids. Keeping your expression resolutely neutral feels satisfying, even though he isn't looking at you.
Cautiously, $emilia.firstName clicks on the tap. To her surprise and relief, the glass starts slowly filling with ice cold Chang. <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> mutter softly to one another, too quietly for you to overhear.
Now you're just standing around in a big air-conditioned room, not yet warmed up by all the bodies, you can feel goosebumps forming on your naked arms and legs.
//[[Rub your arms for warmth.|TNG-2923 Goosebumps][$kateSays to "rubber"]]
[[Stay still and composed.|TNG-2923 Goosebumps][$kateSays to "stoic"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "rubber">>\
You rub your arms instinctively, your skin prickling with goosebumps, wishing you had even a scrap of fabric to wear.
<<elseif $kateSays == "stoic">>\
You suppress the urge to warm yourself up, refusing to show any sign of discomfort.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
Standing comfortably in his full attire, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pays you no mind, his attention fixed on <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>. A big, foamy head is building up in the pint glass. "<div class="tooltip">Ao<span class="tooltiptext">Oh</span></div>," he intones. "Who can see what she's doing wrong?"
[[She needs to tilt the glass.|TNG-2924 Tilt][$kateSays to "tilt"]]
//[[Stay quiet.|TNG-2924 Tilt][$kateSays to "nothing"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "tilt">>\
<<emote-mouth-talking>>\
"She needs to tilt the glass," you point out.
<<elseif $kateSays == "nothing">>\
You stay quiet. <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> speaks up. "Ohhh, you have to tip glass," she says.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Good, <<if $kateSays == "nothing">>Káyk<<else>>$kate.stripperName<</if>>." <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> doesn't look round, his attention fixed on <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>. "Here, let me show you..."
You watch patiently while he demonstrates the basic technique. "Okay," he says, "try that a couple of times. //Then// we'll move onto the soda gun."
"Ah, $kate.stripperName already showed me–"
"Mhm. We'll [[do it again|TNG-2925 Snap curriculum]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
With <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> off to a start, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> turns back to the three of you. "Ploy, Káyk, <div class="tooltip">daao khǎwng chan<span class="tooltiptext">my little stars</span></div>," he addresses them, making them giggle. "<div class="tooltip">Wan-nîi khun yàak f̆ûek à-rai khráp?<span class="tooltiptext">What would you like to work on today?</span></div>"
"<div class="tooltip">Sŏn kaan grà-dìng khwàt dai mái?<span class="tooltiptext">Can we do bottle flipping?</span></div>" asks <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
"<div class="tooltip">Nâe-naawn khâ, hâi chăn sà-dǎeŋ wí-thii phí-sèet lék náwy<span class="tooltiptext">Of course, let me show you a little something extra</span></div>..."
//[[Wait.|TNG-2926 Waiting for attention]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stand off to the side, watching quietly while <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> demonstrates the bottle flipping trick to <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>. Their laughter fills the air as they try to replicate the move, bottles spinning through the air with varying degrees of success.
You try to look casual, try not to look at Bonaht. Try not to look like you're...just [[standing around, waiting for his attention|TNG-2927 Might still wriggle]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Even though that's exactly what you //are// doing. //Fuck!//
Although...is it possible you might wriggle out of this? Nin said he's into you, but...he's hardly //looked// at you.
Maybe if you just hug him goodbye at the end, fail to initiate anything...he'll [[leave|TNG-2930 The eye of Bonaht]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> attention eventually returns to you, locking onto your form.
You try to gaze back with cool indifference. But his eyes bore into you, like they can peel away layers you'd rather shield.
The contrast is stark – you bare breasted, in heels and lingerie, him strutting around confidently in his shirt and <<trousers>>. A surge of frustration wells up inside you, mingling with an unsettling instinct to earn his approval, even though you don't fucking //want// it.
"$kate.stripperName..." his voice teases, playing with your stage name. "Why don't you grab a tin and show me that palm spin? Let's see if you've been doing your homework."
[[Okay.|TNG-2931 Sure B][$kateSays to "Okay"]]
[[Uh huh.|TNG-2931 Sure B][$kateSays to "Uh huh"]]
[[Alright.|TNG-2931 Sure B][$kateSays to "Alright"]]
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays," you coolly answer. Turning your back on him, you take a few steps to where the mixing tins are stored.
It'd probably feel more empowering if you weren't presenting your derriere all the way.
//[[Locate the mixing tins.|TNG-2932 Targeting Officer]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Arriving at the low shelf, you hesitate, the tins just out of easy reach.
Annoyance flickers in your stomach as you consider the least humiliating way to approach this everyday task.
[[Lean awkwardly.|TNG-2932.1 Lean awkwardly]]
[[Bend over.|TNG-2933 Lean and bend]]
[[Crouch down.|TNG-2934 Squat]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Crouching down crosses your mind, but thinking about how that might look makes your cheeks burn with embarrassment.
Instead, you choose to perform an awkward sidestep, teetering precariously on your high heels. Your body presses against the bar's edge as your fingers reach out, stretching to grasp one of the tins.
Behind you, the sound of Bonaht's laughter rings out. "Haha, don't be shy, $kate.stripperName."
[[I've got one.|TNG-2935 Grab a tin]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a hesistant breath, you bend over, your face flushing with self-consciousness.
Your pulse thumps as you lean forward, acutely aware of the position you've put yourself in. The air feels cooler on your bare breasts.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
It only lasts for a second or so, but you can almost feel his eyes roaming over your exposed butt the whole time.
//[[Grab a tin.|TNG-2935 Grab a tin]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a hesitant breath, you gracefully crouch down, your weight resting on your stilettos.
Your thong stretches taut, <<if $knickers.material == "lace">>the lacy fabric<<else>>tight $knickers.material<</if>> riding up your backside.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
//[[Grab a tin.|TNG-2935 Grab a tin]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-2932.1 Lean awkwardly")>><<emote-mouth-talking>>"I've got one." <</if>>\
With a quick movement, you snatch a tin from the shelf and straighten up, turning back to face <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. <<if hasVisited("TNG-2934 Squat")>>You instinctively reach behind yourself with your free hand, tugging your thong strap out of your butt.<</if>>
<<if hasVisited("TNG-2934 Squat")>>Bonaht watches you do it,<<else>>His eyes drift down to your breasts,<</if>> a reminder of how naked you are. You try your best to stay composed, but heat's rising up in your cheeks.
"Good good," he says. "$emilia.stripperName, check this out."
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> glances up from her pint-pouring practice.
"Go for it," Bonaht commands.
[[Mhm.|TNG-2936 Coordination check][$kateSays to "Mhm"]]
[[Okay.|TNG-2936 Coordination check][$kateSays to "Okay"]]
[[No problem.|TNG-2936 Coordination check][$kateSays to "No problem"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
"$kateSays," you reply, trying to sound nonchalant.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to spin the tin in your palm. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: (_kateD10) = <<= _kateD10>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace "#avatar-container">>\
<<emote-mouth-calm>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
A flick of your wrist sends the mixing tin into motion, twirling gracefully, glinting in the club lights.<br />
<br />
It dances in your palm like a gleaming six shooter, a moment of mastery amidst the absurdity.<br />
<br />
You bring it to a stop with a [[smoothly timed catch|TNG-2940 That ok?]].
<<else>>
You //have// practised this. But the first time you try, the tin spins out of your palm.<br />
<br />
//[[Catch it!|TNG-2937 Fumble]]//
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-mouth-calm>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
You fumble, trying to catch it – but it bounces off your other hand, and hits the bar counter with a ringing //ping!//
Bouncing off, it lands on the rubbery floor with a soft dull //clonk.//
<span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> expression changes, and he doesn't look pleased. "Come //on,// $kate.stripperName," he scolds. "You promised to practice that! Focus, and try again."
<<link "I //did// practice." "TNG-2937.1 I did practice">><</link>>
[[Sorry.|TNG-2938 Sorry]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I //did// practice," you insist. Your words are swallowed by the air as you bend over to scoop up the fallen tin, your bareness a stark reminder of the situation's absurdity.
"Prove it," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> curtly replies.
You place the tin on the palm of your outstretched hand.
//[[Spin it again.|TNG-2939 If at first you don't succeed]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry." Your apology's swallowed by the air as you bend over to scoop up the fallen tin, your bareness a stark reminder of the situation's absurdity.
"Don't apologise." <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice is firm, a hint of impatience edging his tone. "Correct it."
You place the tin on the palm of your outstretched hand.
//[[Spin it again.|TNG-2939 If at first you don't succeed]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
This time, the tin responds to your touch. It pirouettes gracefully, capturing the club lights in glimmering arcs.
With a well timed squeeze of your grip, you bring it to a [[smooth stop|TNG-2940 That ok?]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-2939 If at first you don't succeed")>>\
"That okay?" you ask, trying to sound casual despite the satisfaction in your voice.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Better!" <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Much better. Now do it again, and this time, let me see a smile."
<<else>>\
"That okay?" you ask, trying to sound casual despite the triumph in your voice.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Very nice," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Now: do it again, but this time, let me see a smile."
<</if>>\
[[Seriously?|TNG-2941 Seriously]]
[[Ugh, fine.|TNG-2942 Fine]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
Your pulse quickens as some wise instinct suppresses the urge to snap back angrily. //Calm down, he's pressing your buttons.//
You let out a breath and arch your eyebrows instead. "Seriously?"
"Mm-hm," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Listen – you too, $emilia.stripperName, this is very important. Your smile, it makes the world of difference to a customer, okay? It says, //I like you,// it says, //let's have fun.// You send out that message enough times, you change the room. You lift the vibe. I don't know, maybe you even change the world.
"Every single guy walks through that door, he wants to see you wearing two things, know what they are? //Panties// and a //smile.// So smile, smile, smile. You make them happy, they make you happy, right?
"Now," he says, his little speech coming to a close. "Do it again. And smile."
<span class="greyedOut">//[Sigh]//</span> [[Fine.|TNG-2942 Fine]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-2941 Seriously")>>\
"Fine," you sigh.
<<else>>\
"Ugh," you complain, "fine."
<</if>>\
<span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> dark eyes gleam with anticipation.
//[[Force a smile.|TNG-2943 Forced]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
Reluctantly, you force a smile onto your face, and spin the tin again. It twirls in your palm until you bring it to a stop.
"Better, much better!" <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. <<if hasVisited("TNG-2941 Seriously")>>"See, wasn't so hard! <</if>>What do you think, $emilia.stripperName?"
"Ah yeah, you looked great!" smiles <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>, in a way that she //thinks// is being supportive, but makes you want to strangle her. "Really awesome!"
"Okay, [[keep practising that|TNG-2944 You'll get there]]. $emilia.stripperName, these are looking much better..."
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
For what feels like forever, you stand there, spinning the tin over and over, your smile becoming more and more mechanical.
Each time you glance at <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, he nods approvingly, reinforcing the idea that this is what he wants from you.
Around you, <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> is progressing in her training, and <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> are chatting and laughing. But you feel like an NPC in some [[stupid video game|TNG-2945 Stupid video game]], stuck repeating the same animation over and over.
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
As time ticks on, your arm grows tired, and the fake smile becomes an ache on your face.
But you can't stop. //When I stop I have to–//
The tin slips out of your palm, and hits the deck with a //clonk.// You bend down and scoop it up, shooting Bonaht a quick apologetic look.
//Spin, spin, spin. And smile.// As long as you're spinning the tin, you don't have to think about [[anything else|TNG-2946 Clap clap]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Alright, ladies," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> claps his hands for attention, "gather round."
//Oh, fuck.// There's a sick feeling in your stomach as you put away the mixing tin, and [[join the other girls|TNG-2947 Debrief]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Good job today everyone," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "$emilia.stripperName, great start, you've definitely got a future here. If in doubt, follow the other girls, okay? They're your role models. They've got your back."
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> shoots you a glance, her blue eyes seeking confirmation. You try to [[smile back|TNG-2948 Smile back]] reassuringly, but it feels fake.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName, you're not just nailing the palm spin, you're looking //great// when you do it. Really beautiful. That's what I want everyone to see you wearing tonight, okay? Panties and a smile, all night."
//[[Fake smile.|TNG-2949 More feedback]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Ploy, Káyk, <div class="tooltip">Khun saawng khon pen daao rock! Tam dtàw bpai mĕuan deerm na kha...<span class="tooltiptext">You two are rock stars! Keep doing the same...</span></div>"
His words blend into a background hum with the weird Thai rock music. Your stomach's churning. The only thing you can think about is that you have to [[suck his dick|TNG-2970 Own it, embrace it]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Joining you behind the bar, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rolls up his sleeves and shows you some techniques – hard shakes, dry shakes, rolling shakes.
//TK Kate feels vulnerable, submissive and dominated. Topless in knickers, following instructions from a fully dressed man.//
You follow his instructions, and mimic his movements. You can feel the way your <<if $kate.braSize == "small">>small<<elseif $kate.braSize == "medium">>perky<<else>>heavy<</if>> breasts jiggle during the hard shake – the pervs at the bar will love it if you do this later.
But right now, that feels like a distant future. Something that'll happen to someone else.
//You giving him blowjob tonight.// There's a peculiar detachment, a mental fog, like you're [[watching yourself from a distance|TNG-2940 Multi tasking]], not really present.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flits gracefully between the groups, dispensing guidance and encouragement. "Good, $emilia.stripperName, very good! <div class="tooltip">Dee-mahk leoy fook fohn dtao-bpai nahhh!<span class="tooltiptext">Looking good, girls, keep practising!</span></div>"
He grins appreciatively as he studies your hard shake, openly watching your breasts bob up and down in time with the shaker. "Perfect, $kate.stripperName. That's //perfect.// [[Don't change a thing|TNG-2950 Two minutes to midnight]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Opening time draws closer and closer. Catching your eye, '<span class="imageLink"><<link "$emilia.stripperName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>' beams with pride, having mastered basic drink recipes. Her eyes shine with excitement; the smile you return feels distant and detached.
All you can think about is the thing with <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. And the cameras. //It's pre-authorised. And it's just a blowjob. You've done more than that on camera already.//
But there's [[something so different|TNG-2960 Pep talk]] about it this time.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Alright ladies." <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> draws you back into a group. "You are //definitely// the four hottest barmaids in Patpong. $emilia.stripperName, be confident. You got three great girls here, they're gonna jump in if you need. Káyk, wow, <div class="tooltip">kun gamlang riandu dai dee jing jing...<span class="tooltiptext">you're really learning well...</span></div>"
His words blend into a background hum with the weird Thai rock music. Your stomach's churning. The only thing you can think about is [[sucking his dick|TNG-2970 Own it, embrace it]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"...and remember, customer satisfaction is //everything// here. Okay, that's it, have a great night."
As <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> wraps up, $gina.nickname and Miss Nin drift up to the bar.
The sight is a visual dichotomy: <span class="imageLink"><<link "Nin elegantly dressed, $gina.nickname practically naked">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ninAndStephBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Her nipple piercings jiggle up and down with her stride. Her aggressively sheer thong frames and accentuates her bikini line instead of concealing it.
Some part of you dares to hope this is a reprieve. <<link "//Is $gina.nickname doing it instead?//" "TNG-2980 Hug goodbye">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Nin and $gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ninAndStephBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> join at the tail end of <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s speech, catching the last words of encouragement, watching as he [[hugs each trainee goodbye|TNG-2981 Kate's hug]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $kate.arousal to 3>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Anticipation.* Your body's getting ready for sex.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Nipples hard, pussy wet. Flirty and fantasising about being seduced.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* DTF. Flirty, receptive and open to suggestion. Lowered inhibitions.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s cologne fills your nostrils, and when his warm fingertips press on the small of your back, your breath hitches in your throat. A strange mix of fear and arousal surges through your body.
//Does he //know// I'm supposed to–//
"Great work tonight," he smiles, and your heart pounds in your chest. You nod awkwardly, feeling your body react in ways you don't want it to. Your nipples stiffen against his shirt and your groin tingles in anticipation. //Ohfuck.//
When he finally lets you go, <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ninAndStephBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[beckons the two of you over|TNG-3000 Come here]] with a plum painted fingernail and a confident smirk.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> watches carefully as you and duck out from behind the bar, trotting alongside <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Well well! Hey B!" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> greets him with an affectionate smile and a lingering hug.
"$gina.stripperName! How's it going?"
"Well, ahhh...y'know." She glances around the club and gives him a self-deprecating little shrug. "Living the dream, right?"
Bonaht's chuckle is hollow and dismissive. He barely acknowledges her remark. "That's what I like to hear. [[Nin|TNG-3010 Always so charming]]! <div class="tooltip">Suay mak tee dai!<span class="tooltiptext">You're always so beautiful!</span></div>"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives him a knowing smile. "<div class="tooltip">Lamleksaem leoi te, Bonaht. Gap sao mai yoo mai?<span class="tooltiptext">Always so charming, Bonaht. How's the new girl?</span></div>"
"<div class="tooltip">Khun mai mee karan suan leoi, lae khun mee roo-thueng,<span class="tooltiptext">Very inexperienced, and quite nervous,</span></div>" <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports. "<div class="tooltip">Jak ja sam-ang khun, khun het dai yaa.<span class="tooltiptext">If we don't boost her confidence, she might quit.</span></div>"
"<div class="tooltip">Hm. Okei, khob khun na. Khun dai baw rian them lae dee thee khanong ter?<span class="tooltiptext">Hm. Okay, thank you. Can you give her some extra training and guidance?</span></div>"
You try not to let on that you're understanding any of this, but you tune in intently, hoping Nin says what you want her to say. //Maybe $gina.nickname volunteered? She spoke to Nin during the training, offered to [[do it instead?|TNG-3020 Bored n ignored]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Fully clothed and engrossed in their work conversation, <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> have turned oblivious to your presence. It's like you and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are just...decorations.
You catch glimpes of Nin's knowing smile as she exchanges words with Bonaht. There's an unspoken understanding between them, a familiarity that suggests a deeper connection of some kind. Maybe just shared history, maybe something else.
Meanwhile, Bonaht shares his assessment of $emilia.firstName with Nin, his voice carrying an air of nonchalance. You translate in your head, secretly [[following along|TNG-3030 Mirroring Steph]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You hide what you're doing in your mind by outwardly mirroring <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
Standing around in just <<knickers>> and high heels, her posture exudes confidence and ease. Her gaze, fixated on <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, seems distant, as if her mind's wandering elsewhere. Her hazel eyes, framed by sultry makeup and long lashes, look placid and docile.
She looks more like a doll than a person. //Do I?// Copying her stillness and serenity makes you feel [[uncomfortable and disturbed|TNG-3040 Khop khun ka]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're used to playing an active role in meetings. Being consulted for your opinions, speaking up when you have ideas. Right now, you and $gina.nickname are more like...pets. Standing around waiting for their owners to finish talking.
"<div class="tooltip">Khop khun khaaa<span class="tooltiptext">Thanks</span></div>," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "<div class="tooltip">Rao khwam pen sa-ngop.<span class="tooltiptext">We're grateful.</span></div>"
Sensing their conversation is coming to a close, $gina.nickname perks up, her eyes brightening and her posture straightening. //Is Bonaht gonna...choose one of us?//
//[[Wait.|TNG-3041 Wait for it]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Nervously, you sweep a hand through your hair, taking a deep breath. //Maybe she–//
"Now, you two," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> switches back to English. "Less thank Bonaht for come by, <div class="tooltip">lá<span class="tooltiptext">right</span></div>? Bonaht, we got special treat for you tonigh'. How bout <<link "$kate.stripperName give you nice blowjob" "TNG-3050 Nice blowjob">><</link>>, mmm?"
<</page>><<silently>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
Tension rushes up in your stomach. //Oh, fuck.//
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> turns to you and your throat feels suddenly dry. You have the urge to wet your lips, but the very last thing you want to do is draw attention to your mouth right now.
//[[Force a smile.|TNG-3060 Forced smile]]
[[Hold his gaze.|TNG-3060 Thousand yard stare]]//
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
With effort, you plaster on a fake smile.
<<include "TNG-3070 Hell yeah">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Determined to maintain your composure, you coolly meet his gaze, trying to convey a sense of control that you don't feel.
<<include "TNG-3070 Hell yeah">>
<</page>>"Okay." <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> dark eyes glimmer with a mix of excitement and amusement. They flicker down to your breasts, to your lips, then back up to meet your gaze. "Great. Thanks, $kate.stripperName."
[[No problem.|TNG-3080 No problem]]
//[[Shrug.|TNG-3082 Shrug]]//<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...no problem," you mumble, saying the thing it feels like you're //meant// to say.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
It feels silly and degrading to offer such a nonchalant reply, but nobody seems to be [[paying much attention|TNG-3090 Maaa]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You just shrug, a nonchalant gesture that belies the complex emotions swirling within you.
It feels like a small act of defiance, a signal that you're not completely on board with this, but you're not sure [[it's registered|TNG-3090 Maaa]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Maaa<span class="tooltiptext">Come</span></div>." <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> takes the lead, her confident stride guiding the way to the VIP.
//Ohhh fuck.// You follow along, a mix of anticipation and nerves tingling inside you. It's like your body's moving by itself. Your legs feel [[light and unsteady|TNG-3100 I could run]], almost buoyant.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Some instinct makes you glance back at the main doors. For a fleeting moment, the realisation you could just //run// surges through you. You could make it in ten seconds, even in heels.
Then what? //Run out naked into Patpong?// Not an option, you're being ridiculous.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glides beside you, enveloping you in a sensual mix of perfume, body spray and moisturiser. Her hand rests gently on your arm and she leans in close, interrupting your thoughts.
"Don't worry." Her silky long hair brushes your bare shoulder. "I got ya. Just [[follow my lead|TNG-3200 Title card]], okay?"
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''VIP ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-3210 VIP arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/vipRoomTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hardCockCafe/vipRoomWithPlasma.jpg" 280 1000 680 0>>\
You follow them into the garish VIP. Hardcore porn's playing up on one big screen; on another, some <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are setting up in the dressing room. The gaudy furnishings and the moaning of the porn actress are an attack on the senses.
//Oh fucking god, this is really happening.// There's a camera in here, <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> and <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> are going to [[see everything|TNG-3211 Feels bad man]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You linger instinctively in the doorway, unwilling to follow deeper into the room.
Behind you, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shuts the heavy door with a soft //thud,// muffling the sounds of the club outside.
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> takes a seat off to the side, her movements graceful. As she settles into the plush chair, she crosses her legs, effortlessly elegant.
//What's going on? Is she gonna// [[watch?|TNG-3212 Eyeballed]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your gaze shifts to <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, reclining luxuriously in an oversized armchair, observing your reactions with interest.
When your eyes meet, he offers an understanding smile. "Don't be nervous," he tells you.
//Oh fuck.//
Appearing by your side, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives your wrist a [[reassuring squeeze|TNG-3220 Playtime baby]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You never understood what the point of a lapdance was, until you pictured yourself climbing onto an armchair with a guy just wearing //this.// Your crotches inches apart, lowering your breast into his mouth. //Fuck.// Your nipples tingle, and wet heat prickles in your <<knickers>>. //I don't even like him. Fuck.//
Appearing by your side, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives your wrist a [[reassuring squeeze|TNG-3220 Playtime baby]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"It's gonna be fine," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "just relax."
Something about not being the only stripped <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girl in here is...surprisingly reassuring. A sudden surge of emotion catches you off guard. Your heart thumps and your mouth feels dry, but you feel the instinctive urge to mirror her cool demeanour.
[[Uh, okay.|TNG-3221 Uh okay]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..." your voice comes out high and uncertain. You don't know what to say, so you give her a little shrug. "Okay."
Across the room, <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes linger on the two of you, his lips curving into a subtle, self-satisfied smile.
"C'mon." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> manicured fingers press against the small of your back.
//[[Approach Bonaht.|TNG-3225 KA007 on final]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You take a hesitant step, the velvet carpet muffling the sound of your movement.
Each step closer feels like a tiny decision, a conscious surrender. The room's lights are bright against your skin, and you can feel the warmth rising up in your cheeks as you approach <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
The armchair seems to get bigger, the plush fabric inviting and intimidating at once.
<span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingernails remain on your back. With Bonaht gazing at you, you're aware of how your body moves, every shift of your hips, every [[beat of your heart|TNG-3230 The threshold]].
<</page>><<silently>>
<<if $purchasedHeels == "redValentinoStilettos">>
<<set _polishedToes to "red shoes">>
<<elseif $purchasedHeels == "blackElegantPumps">>
<<set _polishedToes to "high heels">>
<<else>>
<<set _polishedToes to "painted toes">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Finally, your _polishedToes come to a halt, and you stand at the precipice of the armchair, your senses hyper-aware. <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> touch remains on your back, both reassuring and expectant.
In heels, you both tower over <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. But it doesn't feel empowering. Your height just makes you feel more vulnerable, more [[on display|TNG-3231 On display]].
<</page>><<silently>>
<<set $kate.arousal to 4>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Anticipation.* Your body's getting ready for sex.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Your nipples are hard, your pussy's wet.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* DTF. Flirty, receptive and open to suggestion. Lowered inhibitions.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Heat tingles in your groin. <div class="tooltip">"Wao."<span class="tooltiptext">Wow</span></div> Reclining in the big chair, <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze roams between your young bodies, the long naked legs, the bare breasts hanging like ripe fruit, just out of reach. "Two cuties."
"Yeah we are!" Beside you, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> strikes a playful pose, tossing her hair and curving her hips like a model.
//[[Join in.|TNG-3232 Model officer]]
[[Just stand there.|TNG-3233 Awkward]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You join in instinctively, tilting your hips in a model's pose. Shifting your weight onto one high heel, your naked hip presses against <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
<<include "TNG-3234 Bonaht chuckles">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
While <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> confidently poses, you remain still, feeling exposed and vulnerable. The contrast between her confidence and and your uncertainty heightens the surrealness, as you stand there with your heart pounding, unsure what's expected of you.
<<include "TNG-3234 Bonaht chuckles">>\
<</page>><span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles at <<if hasVisited("TNG-3233 Awkward")>>her<<else>>the<</if>> display, his amusement evident.
"Okay, B," $gina.nickname says. "How bout these two 'cuties' get down on their knees and suck your cock? [[Sound okay|TNG-3235 Sounds great]]?"<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Uh-huh," <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> head bobs eagerly, his voice thick. "Sounds great."
"Mm-hm." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes turn to you. "Ready, $kate.stripperName?"
<span class="greyedOut">//[Forced smile]//</span> [[Yeah.|TNG-3240 Yeah]]
[[Ummm....|TNG-3245 Ummm]]
<</page>><<silently>>
<<emote-calm>>
<<first>>
<<addNotification "Arousal +1" "TK add arousal state description">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Heat tingles in your groin. "So. How long ya been looking forward to this, B?" asks <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "Couple weeks." They're talking about you like you're not even in the room, like you're just a...//doll.//
"I bet, she's gorgeous." Her nails glide slowly up your back, gently up your neck. She runs a finger through your <<if $kate.hairstyle == "short">>short <</if>>hair, sending shivers down your spine. "All that time you had her flipping bottles, you were imagining [[how she'd look on her knees|TNG-3235 U ready Kate]], right?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Right," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> admits, his voice thick in his throat.
"Mmmmmm. I think we should find out." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze shifts to you, a glint of playfulness in her eyes. "Ready, babe?"
<span class="greyedOut">//[Smile]//</span> [[Yeah.|TNG-3240 Yeah]]
[[Ummm....|TNG-3245 Ummm]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
You force a small smirk. "Yeah." //Fuck it, this is happening.//
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Haha, course she is." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes glimmer with approval. Her nails press gently down on your bare shoulder. "C'mon babe. Let's get you [[down on the floor|TNG-3250 Descent]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Your breath catches high in your chest. A mix of nerves and excitement courses through your veins. The words get caught in your throat, and all you can manage is a hesitant and uncertain "Ummm..."
"Awwh, she's shy." <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes light up and she giggles. "Relax, babe." Her nails press gently down on your bare shoulder. "Let's get you [[down on the floor|TNG-3250 Descent]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-3240 Yeah")>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presses you down, gently but firmly, and though your legs feel a bit weak, you embrace the sensation.
Your heart beats faster. Wet heat pulses between your thighs. //Okay, fuck, I can get through this.//
<<else>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presses you down, gently but firmly. //Oh fuck.// Your legs feel weak. Wet heat pulses between your thighs. Like your body knows what's ahead, even if your mind hasn't fully caught up.
<</if>>\
Your bare knees sink into a velvety carpet, tainted by stains and wear. The sticky texture hints at countless spilled drinks and sexual encounters, right on this [[very spot|TNG-3255 Kneel]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Vulnerability washes over you as your butt comes down to rest on your heels. The change in height is disorientating, like the world has shifted, and you find yourself looking up at <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
He gazes down at your face, a contented smirk playing on his lips, his dark eyes glimmering.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gracefully drops to her knees beside you, [[mirroring your position|TNG-3260 Shape of things to come]]. "Brings back memories."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rises up on her knees, her eyes locked on <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, her fingers nimbly unfastening his belt. The leather strap slithers effortlessly out of the buckle and, with practiced ease, she helps him unfasten and wiggle down his <<trousers>>.
He lifts his butt from the armchair, allowing <<trousers>> and boxer shorts to slide down his smooth, golden thighs. Some mythical creature is tattooed on his right leg, depicted vividly in red and blue ink.
But it's his cock that demands your attention. It juts forth lazily from a bed of jet black pubic hair, just...waiting to be sucked. It's like the embodiment of [[masculine entitlement|TNG-3265 Acharai]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Your breath catches high in your chest. A mix of nerves and excitement courses through your veins. The words get caught in your throat, and all you can manage is a hesitant and uncertain "Ummm..."
"Awwh!" $gina.nickname's eyes light up and she laughs. "She's shy! Isn't it cute?"
Bonaht laughs. "Yeah, it is."
"C'mon, babe." $gina.nickname presses gently on your [[bare shoulder|TNG-3250 Descent]]. "Let's get you on the floor."
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..."
$gina.nickname presses harder on your shoulder. Your legs feel weak. Wet heat pulses between your thighs. Like your body knows what's ahead, even if your mind hasn't fully caught up.
//[[Let her push you down onto your knees.|TNG-3260 Where I belong]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Oh god.// Yielding to the gentle pressure, you let $gina.nickname guide you down.
Your knees sink into a velvety carpet, tainted by stains and wear. The sticky texture hints at countless spilled drinks and maybe...//ew//...other things. Right here on this very spot. //We assess the sexual demands on you will escalate...//
On your knees, a surge of vulnerability washes over you. The change in height is disorientating, like the world has shifted, and you find yourself gazing up at Bonaht. He looks down on you with a smug smile playing on his lips.
"That's it." $gina.nickname gracefully drops to her knees beside you, smiling up at <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Right where we belong, <<link "haha" "TNG-3270 VIP treatment">><</link>>."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's no more preamble. Kneeling up beside you, $gina.nickname leans over Bonaht's lap, her fingers deftly working to unfasten his belt. The leather strap slithers effortlessly out of the buckle and, with practiced ease, she helps him wiggle down his <<trousers>>.
He lifts his butt from the armchair, allowing <<trousers>> and boxers to slide down his smooth, golden thighs. Some mythical creature is tattooed on his right leg, depicted in red and blue ink.
But it's his cock that demands your attention. It juts forth lazily from a bed of jet black pubic hair, just...waiting to be sucked. It's like the embodiment of [[masculine entitlement|TNG-3260 Acharai]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$gina.nickname leans forward without preamble, her fingers deftly working to unfasten Bonaht's belt. The leather strap slithers effortlessly out of the buckle and, with practiced ease, she helps him wiggle down his <<trousers>>.
He lifts his butt from the armchair, allowing <<trousers>> and boxers to slide down his smooth, golden thighs. Some kind of mythical creature is tattooed on his right leg, depicted in red and blue ink.
But it's his cock that demands your attention. It juts forth lazily from a bed of jet black pubic hair, just...waiting to be sucked. It's like the embodiment of [[masculine entitlement|TNG-3260 Acharai]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// Slender fingers and peach polished nails curl gently around his balls.
You watch, fascinated, as <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans forward. Her painted lips part, and wrap tenderly around his cock, and sink smoothly down it's length.
Long strands of her hair fall over her face, veiling her expressions as she works. <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sweeps it back, holding it up like a ponytail, almost like he's [[presenting her|TNG-3266 Steph's presentation]] for you to look at.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Ohmygod.// Your heartbeat quickens as you watch <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> calmly working. Her mouth rises and falls smoothly on a stiff erection, like it's the most normal thing in the world.
Carefully holding up her hair, <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice comes out in low, encouraging murmurs. //"Mmm...good...mmmmh..."//
//[[Look away.|TNG-3267 Look away]]
[[Watch.|TNG-3269 Kate watches]]//
<</page>><<silently>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
It's too much, too close. You instinctively glance away, your eyes focusing on the carpet. Velvet and sticky stains swirl and merge in a pattern that's almost hypnotic.
Bonaht reaches out. His fingers cup your chin, tilting your face back towards what he wants you to see. "It's okay," he says. His voice is soft, but firm, like when he tells you to do something behind the bar. "[[Watch|TNG-3268 Fleeting resistance]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
For a moment, you resist, your gaze instead darting upward to meet his. Holding your jaw in his hand, <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes hold yours, an unspoken challenge passing between you.
Then, almost against your will, your gaze flickers down to watch $gina.nickname sucking his cock.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
His hand slips off your chin, and goes back to [[holding up her hair|TNG-3269 Kate watches]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("TNG-3268 Fleeting resistance")>>You manage to hold your gaze steady, your eyes locked on the scene before you.
<</if>>\
//Oh my god.// You're no prude, but <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> performance isn't like anything you've ever seen before, not this close.
You can see every detail – the freckles on her face, the way her nostrils flare when she inhales. The softness of her lips, and the subtle tightening as they wrap around his shaft. The delicate hollowing of her cheeks when she takes him in.
Your stomach tightens like a knot. Your nipples feel stiff and sensitive. Steph's breathy murmurs punctuate the air, feminine and soft, mingling with soft wet sucking sounds and Bonaht’s low encouraging grunts.
//<<link "Look at $gina.nickname." "TNG-3275 Look at Steph">><</link>>
[[Look at Bonaht.|TNG-3280 Look at Bonaht]]
[[Look at Nin.|TNG-3295 Look at Nin]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're no prude, but <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> performance isn't like //anything// you've ever seen up close.
You can see every detail – the freckles on her face, the way her nostrils flare when she inhales. The softness of her lips, and the subtle tightening as they wrap around his shaft. The delicate hollowing of her cheeks when she takes him in.
Your stomach tightens like a knot. Your nipples feel stiff and sensitive. $gina.nickname's breathy murmurs punctuate the air, feminine and encouraging.
//<<link "Look at $gina.nickname." "TNG-3275 Look at Steph">><</link>>
[[Look at Bonaht.|TNG-3280 Look at Bonaht]]
[[Look at Nin.|TNG-3295 Look at Nin]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze locks with yours. Her lips are wrapped around Bonaht's erection, but her eyes are placid and serene.
They stay fixed on you as she works, her mouth bobbing rhythmically up and down on the [[stiff cock|TNG-3300 Bonaht facefucks Steph]].
<</page>><<silently>>
<<set _kateControlsHerEmotions to either(true, false)>>
<</silently>>\
<<header>>\
<<page>>\
Your gaze drifts <<if hasVisited("TNG-3268 Fleeting resistance")>>back <</if>>up to meet <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, connecting over the top of the woman's head bobbing up and down in his lap.
There's an empty, fluttering feeling in your stomach when your eyes meet<<if hasVisited("TNG-3268 Fleeting resistance")>> again<</if>>. His gaze is so intent it feels like he's trying to read your thoughts.
Holding <span class="imageLink"><<link "Steph's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hair in his hands, he grunts with pleasure as he looks into your eyes. His head bobs subtly. There's no mistaking the message in his gaze. //You're next.//
<<if _kateControlsHerEmotions>>\
<span class="greyedOut">//[Emotional Control check ''passed'']//</span> //[[Hold his gaze.|TNG-3285 Battle of wills]]//
<<else>>\
<span class="greyedOut">//[Emotional Control check ''failed''] Hold his gaze.//</span>
<</if>>\
//[[Look away.|TNG-3290 Avert thine eyes]]//
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You force yourself to hold his gaze, hiding the vulnerability you feel behind a nonchalant poker face.
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just stares back, a little smirk playing on his lips. <span class="imageLink"><<link "Steph's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mouth moves with a constant rhythm on his [[hard cock|TNG-3300 Bonaht facefucks Steph]].
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You want to coolly star back, but the power imbalance is overwhelming.
Your eyes flicker and drop to the carpet<<if hasVisited("TNG-3268 Fleeting resistance")>> again<</if>>, stained and worn from the countless encounters that have taken place in this seedy room. When you glance back up, <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> still staring at you, a smirk playing on his lips.
<span class="imageLink"><<link "Steph's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mouth moves with a constant rhythm on his [[hard cock|TNG-3300 Bonaht facefucks Steph]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You glance over to <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span>, seeking – you don't know what. An anchor. A sanity check.
She's still perched in the armchair, one leg crossed over the other, her knee-length skirt riding up just slightly to reveal a few inches of nylon-covered thigh. Her attention seems a bit distant, not entirely focused on the scene unfolding in front of her.
The instant your gaze lands on her, though, her dark eyes sharpen, locking onto you with an intensity that feels almost predatory. Her expression is enigmatic, impossible to decipher.
With a subtle but commanding tilt of her head, she directs you to turn your gaze back to the scene in front of you.
You turn your face back to watch <span class="imageLink"><<link "Steph's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mouth moving with a constant rhythm on <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[hard cock|TNG-3300 Bonaht facefucks Steph]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Gripping her hair tighter, pushing and pulling, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes control, forcing his cock deeper and faster up into <span class="imageLink"><<link "Steph's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJScene.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mouth. His hips rock up and down in the armchair, like he's trying to fuck her throat.
Glottal little noises punctuate her encouraging moans. But her movements remain fluid, unfazed, as if she's been through this countless times before. <<if hasVisited("TNG-3275 Look at Steph")>>Her eyes stay fixed calmly on you.<<else>>
Her eyes fix on yours. With her lips wrapped around a thrusting cock, there's something disturbingly...placid about the way she's looking at you.<</if>>
//[[Gaze back.|TNG-3305 Watch and wait]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your gazes connect, lingering on each other's eyes, while a stiff erection thrusts steadily between her lips.
<span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> also staring at you. Savouring the experience, he lets out a few more masculine grunts of pleasure.
Then, almost nonchalantly, he [[lets go of her hair|TNG-3310 The rise of Steph]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's the signal that he's done. Her mouth slips off with a little wet //smack.// She rises up, catching her breath.
For a heartbeat, your eyes hold <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Then, your gaze flickers down to his cock. Rock hard, smeared with lipstick, pointing up towards the ceiling at a slight angle. //Oh fuck.//
$gina.nickname gracefully slinks back down to sit on her heels beside you. Her <span class="imageLink"><<link "lipstick's smudged and her nipples are bullet stiff">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Okay, your turn," she says casually.
<span class="greyedOut">//[Go for it]//</span> [[Okay.|TNG-3315 GFI]]
[[Uhhh...|TNG-3320 Uhhh]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." //This is happening, just go for it. Pretend he's someone else.//
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Nin ''liked'' that.</span>
You rise up on your knees, instinctively sucking in your stomach, arching your back, the automatic urge to pose yourself as alluringly as possible during sex. <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds your gaze, his dark eyes probing and expectant.
His cock's right in front of you. Stiff, wet, and smeared with lipstick. Waiting to be sucked.
//[[Lean over it.|TNG-3330 Lean over it]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh..."
"Go on," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> insists. Her fingers press into the small of your back, a gentle but insistent //push.//
//[[Rise up.|TNG-3325 The Rise of Spywalker]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Oh fuck.// You rise up on your knees, <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingernails pressing you forward.
You suck in your stomach instinctively, arch your back, the automatic urge to pose yourself as alluringly as possible during sex. <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds your gaze, his dark eyes probing and expectant.
His cock's right in front of you. Stiff, wet, and smeared with lipstick. Waiting to be sucked.
//[[Lean over it.|TNG-3330 Lean over it]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You feel lightheaded. Your heart pounds in your chest as you lean forward. It's not just the physical act, it's the surrender, the giving up control.
//You in Patpong now. All girl have to do. It part of job.//
Your fingers curl gently around the hot, stiff shaft. It's slick with $gina.nickname's spit. //Ew.//
//[[Lower your face to it.|TNG-3335 Lower]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Holding his stiff wet cock in your palm, you lower your lips towards it. Your mouth hovers there for a heartbeat, just an inch away, your breath mingling with the scent of him.
You lick your lips. Then they're parting, ever so slightly.
//[[Kiss the tip.|TNG-3340 Kiss the tip]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your lips brush the tip of his cock, parting around it as it edges into your mouth, touching your tongue.
//Fuck, I'm really doing it.// His hand settles possessively on the back of your head.
//[[Go down on Bonaht.|TNG-3345 Going down]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
Deep breath in through your nose. One last moment, teetering on the edge. As if there were any way you could back out now.
Then your <<if $kate.mouthShape == "thin">>delicate<<else>>pouty<</if>> lips are sinking down his shaft, all the way down to meet your knuckles. His cock fills your mouth, gliding along your tongue. He tastes tangy and warm.
"Ohhhh," he moans. "Fuck. Good girl."
//[[Suck Bonaht's cock.|TNG-3350 Blow job I]]//
<</page>><<silently>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
It's slimy with $gina.nickname's spit. //Gross.// Now yours mingles with hers as your lips slide up and down, wrapped around Bonaht's erection.
<<if $kate.hairStyle != "short">>\
You feel your hair falling in front of your face, and Bonaht sweeping it back up, holding it out of the way.
<</if>>\
<span class="greenHighlighter">Bonaht ''liked'' that.</span> <span class="greenHighlighter">Nin ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Therrre we go. That's it." $gina.nickname strokes your back soothingly, her voice carrying a tone of satisfaction and completeness. "Get that cock nice and wet. [[How's it feel|TNG-3355 Feels great]], B?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmhhh," Bonaht murmurs. "Feels great. She's a natural." Letting go of your head, he leans forward so he can reach underneath you and feel your breasts. <<if $kate.hairStyle != "short">>Your hair falls down again, and this time $gina.nickname takes over, sweeping it up and holding it out of your face.<</if>>
Your stiff nipples press into his palms as he cups and squeezes them. <<if $kate.braSize == "large">>"Fuck, her tits are so big."
"I know!" $gina.nickname giggles.
<</if>>
//[[Suck his cock.|TNG-3360 Blow job II]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "large">>\
"Your fucking tits are amazing."
<<elseif $kate.braSize == "medium">>\
"Your tits feel great."
<<elseif $kate.braSize == "small">>\
"Cute tits, too."
<<else>>\
//ERROR IN KATE.BRASIZE VAR//
<</if>>\
Your lips tingle as your mouth slides up and down, up and down on his erection. You breathe through your nose, knowing the only way this ends is when he orgasms, wondering how long it's going to take.
An image of what the analysts are going to see on the recording later flits into your mind. Officer $kate.firstName[0], down on her knees, performing sexual favours for a guy who showed her how to make a cocktail.
//Are they going to think I'm a whore?// Right now you feel like a whore.
Bonaht's fingers flicker over your stiff nipples. Little starbursts of pleasure zip-zap through your body. //Pretend it's someone else.//
[[Mmmh.|TNG-3365 Mmh]]
//[[Suck his cock.|TNG-3361 Stealth mode]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's a submissive little thrill in just using your mouth to get someone off. Something about giving sexual pleasure but not getting anything in return. Like you're just a tool to be used by someone better than you.
"Mmmh, she's loving this," $gina.nickname says.
"Yeah?" Bonaht's voice is breathy.
"Yeah, I can tell. $kate.stripperName's defo one of those chicks who gets wet when there's a dick in her mouth."
//[[Suck his cock.|TNG-3362 Smack]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your mouth rises up and down on his cock all through this little conversation. "Aren't you?" $gina.nickname asks<<if $kate.hairStyle != "short">>, one hand disentangling from your hair<</if>>.
Without warning, she //spanks// you, a sharp and loud slap to the ass that you //weren't// expecting and that stings like a fire.
//[[Mmph!|TNG-3363 Spanked]]//
<</page>><<silently>>
<<emote-brows-worried>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint2-60-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"Mmph!" you whimper, stinging heat radiating through your buttock, your voice muffled on Bonaht's cock. You keep sucking, sniffing in air through your nose.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"See, she loves it," $gina.nickname giggles. "It's okay to moan, baby, guys like it."
//[[Moan and suck.|TNG-3364 Moan and suck]]
[[Too embarrassing.|TNG-3363.1 I said moan bitch]]//
<</page>><<silently>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint4-50-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You'll take that under advisement. Right now it's enough that his //dick's// in your //mouth,// and you're letting him–
//Crack!// $gina.nickname's palm crashes into your other butt cheek, mercilessly hard. //Ow, fuck!//
"I said moan, bitch."
//[[Moan and suck.|TNG-3364 Moan and suck]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Mmmh...hmmmmh...mmmmh..."//
A soft feminine murmur rises up in your throat, blending with your movements.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
His fingers flick your stiff nipples, each one in turn, like he's rewarding you for compliance.
"Good girl," $gina.nickname coos. "You like sucking his cock, don't you?"
[[Mmmmh.|TNG-3370 Mmmh]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh." A soft murmur rises up in your throat as you instinctively express yourself.
<span class="greenHighlighter">Bonaht ''liked'' that.</span> <span class="greenHighlighter">Nin ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
"Ohhh, you like that, baby?" Steph's voice by your side is soft and encouraging. Bonaht's fingertips flick your nipples, each one in turn.
[[Mmmmh.|TNG-3370 Mmmh]]
<</page>><<silently>>
<<emote-brows-calm>>
<<set $kate.arousal to 5>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Anticipation.* Your body's getting ready for sex.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Your pussy's soaking wet in your thong.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* DTF. Flirty, receptive and open to suggestion. Lowered inhibitions.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmmh," you murmur encouragingly. Bonaht's cock strains in your mouth, his fingers //flicking// and //teasing// your nipples.
With an erect cock in your mouth, and fingers toying with your nipples, your body just //responds,// growing waves of sexual anticipation building up inside you. Your pussy feels hot, wet and //neglected,// hyper-aware of the soft, teasing fabric of your thong.
"Show him you like it," $gina.nickname instructs you. "Look him in his eyes and show him how much you like it."
//[[Open your eyes and look at Bonaht.|TNG-3375 Eye contact]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your eyes flicker open, locking up onto <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">Bonaht ''loved'' that.</span>
"Mmh, fuck," he murmurs breathily, staring down at you with absolute relish. Your lips wrapped around his cock, sliding rhythmically up and down. Your <<if $kate.eyeColour == "blue">>baby blue<<elseif $kate.eyeColour == "chestnut">>doe<<elseif $kate.eyeColour == "emerald">>jade green<<elseif $kate.eyeColour == "grey">>cool grey<<elseif $kate.eyeColour == "hazelnut">>honey brown<<elseif $kate.eyeColour == "sapphire">>crystal blue<<else>>//ERROR IN KATE.EYECOLOUR VAR//<</if>> eyes gazing placidly back.
<span class="greyedOut">//[Suck his cock]//</span> [[Mmmh.|TNG-3380 Suck his cock]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh," you moan. Your mouth strokes his stiff cock, gliding up and down, kissing your knuckles.
<span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands fall away from your breasts. "Oh yeah," he murmurs, fingers toying with your hair, gazing deeply into your eyes. "You look beautiful."
<span class="greyedOut">//[Suck his cock]//</span> [[Hmmh.|TNG-3381 Mmh][$kateSays to "Hmmh"]]
<span class="greyedOut">//[Suck his cock]//</span> [[Mm-mmh.|TNG-3381 Mmh][$kateSays to "Mm-mmh"]]
<span class="greyedOut">//[Suck his cock]//</span> [[Mmmhhh.|TNG-3381 Mmh][$kateSays to "Mmmhhh"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
"Yes you do. A perfect little girl." <span class="imageLink"><<link "Bonaht's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers tighten in your hair, like he did with $gina.nickname. His voice is husky and thick in his throat. "Okay, beautiful. Time to fuck your mouth, okay?"
<span class="greyedOut">//[Suck his cock]//</span> [[Mmh.|TNG-3382 Mmhm][$kateSays to "Mmh."]]
<span class="greyedOut">//[Suck his cock]//</span> [[Mm-hm.|TNG-3382 Mmhm][$kateSays to "Mm-hm."]]
<span class="greyedOut">//[Suck his cock]//</span> [[Mmhm?|TNG-3382 Mmhm][$kateSays to "Mmhm?"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
<<if $kateSays == "Mmhm?">>\
"Just relax."
<<else>>\
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Good girl."
<</if>>\
$gina.nickname lets go of your hair, relinquishing all control to <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. His firm yet controlled grip on your locks feels like an unspoken command.
//[[Suck his cock.|TNG-3383 Facefuck you gently]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to -4>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
Your mouth slips up and down on his erection, stroking it with your lips and tongue. With his fingers weaved securely in your hair, he guides your movements, pressing you deeper.
His stiff cock fills up your whole mouth, the tip pushing to the back of your tongue, brushing your throat.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
Make a ''BJ check.'' Difficulty: Mild (2). \
<<link "Roll 2 or more">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if (_kateD10 + _kateD10Modifiers) gte 2>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: (_kateD10-4) = <<= _kateD10 - 4>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
You [[fight your gag reflex|TNG-3383.1 Controlling the beast]], breathing deeply through your nose to calm your tight throat.
<<else>>\
<<replace "#avatar-container">>\
<<emote-mouth-calm>>
<<emote-mouth-open>>
<<emote-brows-raised>>
<<avatar>>
<</replace>>\
You can only take a couple of thrusts before your [[gag reflex kicks in|TNG-3384 Easy easy]].
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> with <div class="tooltip">1D10-4<span class="tooltiptext"><small>Sexpert skill +0,<br />No //Deepthroat// speciality -4</small></span></div> to avoid gagging.
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
"Good girl. Suck it."
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
Weaved in your hair, his fingers form a secure hold, every tug and twist urging you to a new rhythm.
The feeling of his cock brushing your throat makes you want to gag and choke. But you can manage it as long as you breathe deeply through your nose.
"Look at me," Bonaht demands.
<span class="greyedOut">//[Let him fuck your mouth]//</span> //[[Make eye contact.|TNG-3386 Look at me]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your throat spasms. Your lips tighten on his cock.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Mmh. Good girl." Gripping your hair, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets you snort in a breath, just for a second, the tip of his cock resting between your <<if $kate.mouthShape == "thin">>delicate<<else>>pouty<</if>> lips.
"Breathe through your nose," $gina.nickname urges, stroking your back soothingly.
"You can do it. C'mon," says Bonaht, pressing your head [[back down|TNG-3385 Back you go]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
//"Good// girl. Suck it."
Weaved in your hair, his fingers form a secure hold, every tug and twist urging you to a new rhythm.
Filling your mouth, his cock brushes your throat again, making you nearly gag. But you can manage it as long as you breathe deeply through your nose.
"Look at me," Bonaht demands.
<span class="greyedOut">//[Let him fuck your mouth]//</span> //[[Make eye contact.|TNG-3386 Look at me]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
Gripping your hair in his fists, his <span class="imageLink"><<link "dark eyes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gleam with satisfaction and superiority. His cock feels //rock hard// in your mouth. Stiff and responsive as it thrusts between your lips.
The tip brushing the back of your throat, again and again, keeping you constantly teetering on the edge of your gag reflex.
<span class="greyedOut">//[Let him fuck your mouth]//</span> //[[Gaze back confidently.|TNG-3387 Spit and polish][$kateSays to "confident"]]//
<span class="greyedOut">//[Let him fuck your mouth]//</span> //[[Gaze back placidly.|TNG-3387 Spit and polish][$kateSays to "placid"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "confident">>\
You gaze up at him with all the composure you can muster.
<<else>>\
You gaze back placidly.
<</if>>\
Something about how deep his cock is going makes your mouth produce more spit. Like when you're being fucked and you're //really// wet.
A trickle of drool escapes from your lips, rolling down the length of his shaft.
"That's it," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "You look beautiful."
"Mmmh," $gina.nickname agrees, "you're [[doing great|TNG-3388 Nipple play]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She reaches under you, takes hold of your stiff nipples. Little zaps of pleasure run through your breasts and your clit as she rolls and squeezes them between her fingertips.
"Deep breaths," she tells you, "good girl. You got this. How's she doing, B?"
"Mmmh, great," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "$kate.stripperName, I'm gonna come in your mouth, okay? That's okay, isn't it?"
<span class="greyedOut">//[Let him fuck your mouth]//</span> [[Mm-hm.|TNG-3389 Mm-hm]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hm."
<span class="greenHighlighter">Bonaht ''loved'' that.</span>
"Mmh, you don't mind it," he says. "It's okay to do that to you, isn't it?"
<span class="greyedOut">//[Let him fuck your mouth]//</span> [[Mm-hm.|TNG-3390 Mm-hm II]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hm."
<span class="greenHighlighter">Bonaht ''loved'' that.</span>
"Yeah, I know."
"Good girl," $gina.nickname murmurs encouragingly. "I want you to hold it in your mouth, okay? Like it's your mouthwash." She pinches your nipples hard. "You hear me, baby?"
<span class="greyedOut">//[Let Bonaht fuck your mouth]//</span> [[Mm-hm.|TNG-3391 Mm-hm III]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hm."
"Oh fuck." Lifting your head by a fistful of hair, <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> wraps his fingers around the shaft of his dick and starts jerking off into your mouth. "Look at me. Look at me."
"Don't you //dare// spit." Flicking acrylic nails across your nipples, <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice has turned breathy and sexual. "Don't you //dare// swallow. Or you'll be sucking cocks upstairs all night to say sorry, I //swear// I'll fucking make you do–"
"Unnnh," Bonaht groans, pumping his cock between your lips. "<div class="tooltip">Ma laeo<span class="tooltiptext">I'm coming</span></div>, I'm gonna..."
//[[Get ready.|TNG-3400 Money shot]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Content
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-mouth-blowjob>>
<<set _kateD10 to random(1,4)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to -2>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
Bonaht's cock thrusts up into the roof of your mouth again.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
Make a ''Deepthroat check.'' Difficulty: Mild (2). \
<<link "Roll 2 or more">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if (_kateD10 + _kateD10Modifiers) gte 2>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: (_kateD10-2) = <<= _kateD10 - 2>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
You suck and suck, taking him in the back of your throat over and over again. It feels like your mouth's being //fucked.//
"Tell her when you're close, B," $gina.nickname murmurs.
"I'm close," he gasps, [[playing with your nipples|TNG-3620 Stephstructions]].
<<else>>\
<<replace "#avatar-container">>\
<<emote-mouth-calm>>
<<emote-mouth-open>>
<<emote-brows-raised>>
<<avatar>>
<</replace>>\
You [[gag and splutter|TNG-3384 Easy easy]] when the tip brushes the back of your throat.
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> with <div class="tooltip">1D10-3<span class="tooltiptext">Sexpert skill +0, Lacks Deepthroat speciality -4, Partner being gentle +1, Breath control +1</span></div> to avoid choking.
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh, yeah B," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos, "that's why she's here." Your hand's curled around the base of his shaft; <<if $kate.hair == "short">>hers slithers under it<<else>>one of hers comes off your hair and slithers under it<</if>>, cupping his balls. "You're gonna shoot your load in her little whore mouth. Then she's gonna thank you and go back to work. Aren't you."
[[Mmh.|TNG-3390 Mmh][$kateSays to "Mmh"]]
[[Mm-hm.|TNG-3390 Mmh][$kateSays to "Mm-hm"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays," you murmur, your eyes fixed on his, your mouth slipping tantalisingly up and down on his shaft.
<span class="greenHighlighter">Bonat ''loved'' that.</span>
"<div class="tooltip">Maeng<span class="tooltiptext">Damn</span></div>," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grunts. "Fuck."
"Take your time, baby," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos back, massaging his nuts while you suck. "Just tell me when you're close. I wanna make her taste it. Really taste it, like it's her slutty little mouthwash. I want her thinking about this //all night// after you're gone. I want-"
Bonaht's face is flushed. "I'm close," he warns.
//[[Suck his cock.|TNG-3395 Final instructions]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh, you hear that baby?" <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> voice has turned breathy and sexual. "Don't you //dare// spit. Don't you //dare// swallow. Or I'll make you suck cocks upstairs all fucking night for the rest of your shift to say sorry, I swear I–"
"Unnnh," Bonaht groans, pinching your nipples //tight.// "<div class="tooltip">Ma laeo<span class="tooltiptext">I'm coming</span></div>, I'm gonna..."
//[[Suck his cock.|TNG-3400 Money shot]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<set $avatar.body.delete("/113Expressions/60_mouthOverlay-"+$kate.complexion+"-" +$kate.mouthShape.toLowerCase() + "-blowjob")>>
<<set $avatar.clothing.pushUnique("cumshots/100_cumshot-mouthful2")>>
<</silently>>\
<<header>>\
<<page>>\
His dick pulses between your lips, twitching and squirting out ribbons of his gooey, salty cum into your waiting mouth.
//"Hold it,"// $gina.nickname warns sharply, fingers //squeezing// your nipples.
Bonaht groans in satisfaction and pleasure as he [[unloads into your mouth|TNG-3405 Rock back]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<set $avatar.clothing.delete("cumshots/100_cumshot-mouthful2")>>
<</silently>>\
<<header>>\
<<page>>\
When he's finished you rock back onto your heels, lips closed to hold in the salty, gooey jizz. Saliva floods your mouth, diluting the strong taste. You breathe through your nose, fighting the instinct to spit it out or swallow it.
//It's done, it's done, I did it.// It wasn't too bad, it didn't even take that long.
"<div class="tooltip">Wao.<span class="tooltiptext">Wow</span></div>" <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares down at you, his face flushed, his erection already softening.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> touches a finger to your chin, tilting your jaw towards her. "Show me," she says.
//[[Carefully open your mouth.|TNG-3410 Open wide]]//
<</page>><<silently>>
<<emote-mouth-open>>
<<set $avatar.clothing.pushUnique("cumshots/100_cumshot-mouthful2")>>
<</silently>>\
<<header>>\
<<page>>\
Tilting your head back, you carefully part your lips, showing <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> the mixture of cum and spit pooling in your mouth.
"Good girl." Cupping your jaw in both hands, she peers in like a dentist. "Don't swallow."
She glances over to <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, making sure he's watching, then she turns back to you. Her hazel eyes [[gaze intently into yours|TNG-3415 In for the kiss]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<set $avatar.clothing.delete("cumshots/100_cumshot-mouthful2")>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans in, your noses brush, and then your lips are pressing together, her hands cupping your jaw.
Her tongue slips inside your mouth, lashes yours, gently and confidently.
//[[Kiss her back.|TNG-3420 Kiss back]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your tongue responds, tentatively at first, letting her lead. Kissing her back with a mouthful of saliva and sperm.
It mingles in both your mouths as you [[softly make out with each other|TNG-3425 Passionate kiss]], right there on the floor.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
His cum lingers in your mouth, adding a peculiar texture to the kiss, slipping over your tongues as they sensuously tangle and entwine.
//[[Pass it into her mouth.|TNG-3430 Pass the snowball]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass it into her mouth with your tongue. She lets it swirl there, then kisses you back, slipping it back between your soft lips.
Heat and intensity rise up in your body as you kiss $gina.nickname, languidly passing a mouthful of cum and saliva back and forth with [[soft wet kisses|TNG-3680 Playtime's over]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Mmmmhhh...hmmmmhhh...mmmmhhh..."//
Staring up at him, you copy <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> performance, a soft, feminine hum rising up in your throat and blending with your movements. It feels //performative// but he //loves it anyway,// his lips parting and his breath coming out in thick little murmurs.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's unlike anything you've ever seen this close. Raw, unfiltered; obscenely, intensely intimate. $gina.nickname's painted lips slip up and down on Bonaht's semi-erect cock, softly and rhythmically stirring it to life.
You can literally see it stiffen in her mouth. She moans softly and encouragingly as it grows. Holding her hair, Bonaht [[sighs contentedly|TNG-3280 You're next]].
<</page>><<silently>>
/* TK add an emotional control check */
<</silently>>\
<<header>>\
<<page>>\
Bonaht stares at her face, captivated by her pretty features as her mouth slips languidly up and down on his cock.
As he revels in the sensations, his gaze shifts, meeting yours over the bobbing head in his lap. His eyes flicker over your face and he lets out a grunt of pleasure.
Holding $gina.nickname's hair in his fist, he looks deeply into your eyes while she sucks and slurps and moans on his dick. There's no mistaking what he's thinking. //You're next.//
<span class="greyedOut">//[Emotional control check passed]//</span> //[[Hold his gaze.|TNG-3290 Battle of wills]]
[[Look away.|TNG-3300 Avert thine eyes]]//
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You force yourself to hold his gaze, hiding the vulnerability you feel behind a look of nonchalance and composure.
He just stares back, a little smirk playing on his lips. $gina.nickname's mouth moves with a tantalising rhythm on his [[hard cock|TNG-3310 Your turn]].
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You try to coolly star back, but the power imbalance is overwhelming.
Your eyes flicker and drop to the carpet, stained and worn from the countless encounters that have taken place in this seedy room. When you glance back up, he's still staring at you.
$gina.nickname's mouth moves with a tantalising rhythm on his [[hard cock|TNG-3310 Your turn]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Shlup, shlup, shlup.// $gina.nickname's mouth slips off with a little wet //smack.//
Your eyes flicker automatically down to his cock. Rock hard, smeared with lipstick, pointing up towards the ceiling at a slight angle. //Oh fuck.//
$gina.nickname sits back, kneeling back down on her heels beside you. Her lipstick's smudged and her nipples are bullet stiff. "Your turn," she says.
<<link "//Look hesitantly at $gina.nickname.//" "TNG-3320 Steph for support">><</link>>
//[[Look hesitantly at Bonaht.|TNG-3330 Bonaht for support]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You meet her gaze, a flicker of uncertainty in your eyes.
"Go on," she insists. Her fingers press into the small of your back, a gentle but persuasive push.
//[[Kneel up.|TNG-3340 Kneel up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Bonaht holds your gaze, his dark eyes probing into yours, cocky and expectant.
$gina.nickname's voice breaks the moment. "Go on," she insists, her fingers pressing into the small of your back, a gentle but persuasive push.
//[[Kneel up.|TNG-3340 Kneel up]]//
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//Oh fuck.// You rise up on your knees, $gina.nickname's fingers in your back, pressing you into a kneeling position between Bonaht's legs.
His gaze drifts down your body, and you instinctively tighten your stomach and arch out your back.
His cock's right in front of you. Stiff, wet, and smeared with lipstick. Waiting to be sucked.
//[[Lean forward.|TNG-3350 Lean in]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//This isn't even happening to me. It's happening to $kate.stripperName.// [<- TK clunky but the concept is good, Kate feeling emotionally numb and remote from the experience. develop]
Your heart pounds in your chest as you lean forward. It's not just the physical act; it's the surrender, the giving up control.
//It's just a blowjob.//
Your fingertips curl tentatively around the stiff shaft. It's slick with $gina.nickname's spit. //Ew.//
//[[Slip it into your mouth.|TNG-3360 Blue Danube]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Holding his cock, you drop your head towards it. Your mouth hovers there for a moment, just inches away, your breath mingling with the scent of him.
You swallow and lick your lips.
Then they're parting, ever so slightly. You lower them gently, brushing the tip of his cock between them.
//[[Take it in your mouth.|TNG-3370 Welcome to the suck]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
The tip slips in, touches your tongue. //Fuck. I'm really doing it.//
Your lips sink down the shaft and kiss your curled knuckles. His penis fills your mouth, making you breathe through your nose.
The musky, salty taste of it floods your tongue.
//[[Suck cock.|TNG-3380 Sucking cock]]//
<</page>><<silently>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
The shaft is slimy with $gina.nickname's spit. //Gross.// Now yours mingles with hers as your mouth slips up and down, up and down, rhythmically slipping and sucking on an erection.
<<if $kate.hairStyle == "bunWithBangs">>\
Bonaht murmurs softly. His fingers curl through your hair, holding a handful of it in a loose fist resting on the top of your head. It feels...surprisingly tender, like a friend holding your hair when you're sick.
<<elseif $kate.hairStyle == "short">>\
Bonaht murmurs softly. His fingers curl through your hair, holding a handful of it in a loose fist resting on the top of your head. It feels...surprisingly tender, like a friend holding your hair when you're sick.
<<else>>\
Bonaht murmurs softly. Your hair slips down in front of your face and he lifts it away, holding it in a loose fist resting on the top of your head. It feels...surprisingly tender, like a friend holding your hair when you're sick.
<</if>>\
Affectionate, almost. //But he's probably just doing it to [[watch me sucking his dick|TNG-3381 False hope]].//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You arch your back, holding in your stomach, trying to look sexy. //Maybe his arm will block my face on the security feed.//
As if that matters. This is going to look //whorish// whether or not the analysts back at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> and <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> can actually see the dick in your mouth. You push the thought away, you just can't deal with it right now.
"Therrre we go. That's it." $gina.nickname's voice carries a tone of satisfaction and completeness. "Good girl. You get that cock nice and wet. [[How's it feel|TNG-3390 Feelin' good]], B?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh." Bonaht's approval comes out in a husky murmur while your mouth bobs up and down his shaft. "Feels great."
"I bet it does." $gina.nickname's voice is breathy and silky smooth. "Now, you just need to relax and enjoy yourself, B. You're gonna shoot your cum right into this little whore's mouth. And she's gonna swallow every drop."
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Hunh." You actually felt his cock getting harder when she said that.
[[Mmmhhh.|TNG-3400 Mmmhhh]]
//[[Just suck.|TNG-3410 Just suck]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmhhh." You instinctively let out an encouraging murmur, muffled on the stiff cock in your mouth.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Oh, she //likes// this," $gina.nickname coos. "She's getting wet just from having your dick in her mouth. Aren't you?"
[[Mm-hmh.|TNG-3420 Mm-hm correction]]
//[[Just keep sucking.|]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Breathing through your nose, you bob rhythmically up and down on the stiff cock in your mouth.
"Oh, she //likes// this," $gina.nickname coos. "She's getting wet just from having your dick in her mouth. Aren't you?"
[[Mm-hmh.|TNG-3420 Mm-hm correction]]
//[[Just keep sucking.|]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mm-hmh," you murmur. Your lips glide up and down, up and down, brushing against your knuckles, over and over.
"I know you are." $gina.nickname's nails trace a delicate path down your spine. She cups your bare butt cheek, squeezing it while you suck.
Then she lifts it away, and it comes back down with a sharp, stinging slap on your ass. "[[Don't use your hands|TNG-3520 Smack]]."
<</page>>Your lips glide up and down, up and down, brushing against your knuckles, over and over.
"Don't use your hands." $gina.nickname's terse instruction comes with a sharp little slap on your [[bare butt|TNG-3520 Smack]].<<silently>>
<<emote-mouth-calm>>
<<emote-mouth-open>>
<<emote-eyes-calm>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
"Hmpph." Your eyes flick open as stinging heat radiates through your buttock.
<span class="greenHighlighter">Bonaht ''liked'' that.</span>
"Mmmh," <span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs in approval, his dark eyes smouldering with pleasure. His fist tightens in your hair, pushing your mouth back down on his cock.
//[[Stop using your hands.|TNG-3530 Hands free]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
Resting your palms flat beside Bonaht's hips, you relax and let him push your head down.
Your lips sink slowly down the shaft. His cock fills up your whole mouth, making you nearly gag when the tip brushes the back of your throat.
"That's it," $gina.nickname coos. "All the way down, [[you can do it|TNG-3540 All the way down]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Back up for air, pushing against his hand with your skull. The head of his cock rests between your lips and on the tip of your tongue.
"Breathe through your nose," $gina.nickname advises. You snort in a deep breath that calms your gag reflex. "There you go. Deep breaths, keep 'em coming."
Bonaht [[presses you down|TNG-3541 Sweet spot]] again.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You have to will your hands to stay flat as he pushes you back down onto his dick. It brushes your throat again, making you nearly gag, but you can manage it as long as you breathe deeply through your nose.
"That's it. Up and down, just like that." $gina.nickname's voice is calm and soothing as you find a new rhythm, your lips sliding up and down on his shaft, taking him as deep as you can. "Get your lips on his balls. You can do it. //Therrre// you go. How's that, B? Better?"
"Hunh. Fuck." His voice is husky and intense. "Much better."
"Good girl." $gina.nickname pats your butt. "[[Keep going|TNG-3550 Deep BJ]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You rise and fall, rise and fall. Sometimes you go too deep and it makes you gag, but you can tell he likes it. His cock feels stiff and responsive.
Something about how deep his cock is going makes your mouth produce more spit. Like when you're being fucked and you're //really// wet.
A trickle of drool escapes from your lips, rolling down the length of his shaft.
//[[Keep sucking.|TNG-3560 Turn on]]//
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "TK add arousal state description">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
There's a submissive little turn-on in kneeling down and using your mouth to get someone off. Something about giving him pleasure, knowing it's not going to be reciprocated.
Your nipples feel sensitive and ignored. Your pussy feels hot and wet, and very aware of the soft fabric of your thong.
//[[Keep sucking.|TNG-3570 Gag on it]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You concentrate on sucking and breathing through your nose. It feels like there's a sweet spot in your mouth where the tip of his cock //almost but not quite// makes you gag. Breathing steadily through your nose keeps the sensation manageable.
You can just tell it's one of the best BJs you've ever given, he's not going to last very long if you keep this up. Is this how you're //supposed// to do it? Why doesn't anyone...
"Good girl." $gina.nickname strokes you comfortingly up your bare back. "It's okay to moan, don't be shy."
[[Mmmhhh...mmmhhh...mmmhhhh...|TNG-3590 Mona]]
//[[Too embarrassed.|TNG-3580 Too shy shy]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You ignore her, concentrating on your breath–
//Smack!// $gina.nickname's hand //cracks// on your ass, sending a jolt right through you.
"I said moan, bitch."
[[Mmmhhh...mmmhhh...mmmhhhh...|TNG-3590 Mona]]
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
//"Mmmmhhh...hmmmmhhh...mmmmhhh..."//
A soft, feminine hum rises up in your throat, blending with your movements. "Thaaat's it," $gina.nickname murmurs encouragingly. "It's even hotter when she moans, right B?"
"Fuck yes."
//[[Moan and suck.|TNG-3600 Moan and suck]]//
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "TK add arousal state description">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//"Mmmhhh...hmmhhh..."// Your orgasmic murmurs mingle with the soft slurping sounds of your mouth slipping up and down on a stiff dick.
Bonaht reaches down with his free hand, casually pawing and playing with your bare breasts. Cupping them, squeezing them, pinching your stiff<<if $kate.piercings.includes("nipplesSilverBarbells")>> pierced<</if>> nipples. Being touched at last feels //great.// Your pussy feels hot and wet in your thong, hot and ready and //empty.//
<<if $kate.braSize == "large">>\
"Fuck, her tits are so big."
"I know, right," $gina.nickname giggles.
<</if>>\
//[[Suck his cock.|TNG-3610 Rising tension]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _kateD10Modifiers to 0>> /* TK later replace this with Kate's sex skill or similar */
<</silently>>\
<<header>>\
<<page>>\
//"Mmmh...hmmh...mmph..."//
On your knees you moan and suck, feeling the tension grow in Bonaht's body, hearing his breath hitching in his chest. His cock is //rock// hard in your mouth.
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''BJ check.'' \
<<link "Roll">>\
<<rollDice _diceDisplay>>\
<<replace '#skinnySkillCheck'>>\
<<silently>>\
<<if _kateD10 + 0 gte 6>>\
<<set _skillCheckSucceeded to true>>\
<</if>>\
<</silently>>\
''BJ check.'' Result: _kateD10+0 = <<= _kateD10 + 0>>. <<if _skillCheckSucceeded>>//BJ quality: excellent.//<<else>>//BJ quality: normal.//<</if>>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-mouth-blowjob>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>\
<<if _skillCheckSucceeded>>\
You suck and suck, taking him in the back of your throat over and over again. It feels like your mouth's being //fucked.//
"Tell her when you're close, B," $gina.nickname murmurs.
"I'm close," he gasps, [[playing with your nipples|TNG-3620 Stephstructions]].
<<else>>\
You suck and suck, taking him in the back of your throat over and over again. It feels like your mouth's being //fucked.//
"Tell her when you're close, B," $gina.nickname urges.
"Uh-huh," he murmurs, [[playing with your nipples|TNG-3611 Steph spanks Kate]].
<</if>>\
<</replace>>\
<</rollDice>>\
<</link>> <div class="tooltip">1D10+0<span class="tooltiptext">Sexpert skill +0</span></div> to determine the quality of your BJ. (6 or better = excellent.)
</div>\
</td>\
</tr>\
</table>\
</div>\
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Crack!// $gina.nickname's hand comes down with a sharp, deliberate smack against your bare buttock.
You feel the sting, a mix of pain and arousal colliding. It wasn't playful, it wasn't for show, it hurt. Her fingers curl tightly into your hair, taking control.
//Crack!// A second smack, as sharp and stinging as the first, lands on your other cheek. It cuts through any illusions of camaraderie.
You let out a high-pitched //squeak// of protest in the back of your throat. Bonaht's erection //throbs// [[in your mouth|TNG-3612 No sorority]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
In that instant, you understand. The hard slaps against your bare skin punctuate the air, jolting you into a new awareness.
Each hot, stinging impact sends a message. $gina.nickname's not here to be your friend. You're not here to have a good time. All you're here for is making Bonaht come in your mouth.
Literally [[nothing else matters|TNG-3613 Nothing Else Matters]].
<</page>><<silently>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
//Crack!// Fiery heat rises up in your buttocks. //Crack!// Your theatrical, orgasmic moans give way to genuine whimpers of distress. Gripping your hair, $gina.nickname hits you again. //Crack!//
Your mouth slips softly and rhythmically up and down on Bonaht's stiff, throbbing shaft, submissively giving pleasure while receiving only sharp, stinging pain.
With each unyielding slap, a mix of conflicting emotions courses through your veins, arousal mixing with a deep sense of vulnerability and powerlessness. You want it to stop, just for a second, but it seems like $gina.nickname is unaware of the mounting distress within you. //Crack!// Bonaht is tugging your nipples like they're toys. //Crack!//
"Unnhhhh," he groans, "I'm close."
//[[Suck.|TNG-3620 Stephstructions]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh, you hear that," $gina.nickname murmurs. "He's gonna shoot all that //spunk// in your //mouth.// Don't you //dare// swallow it until I tell you to. You're gonna //hold// it there like it's your fuckin' //mouthwash,// and–"
"<div class="tooltip">Ma laeo<span class="tooltiptext">I'm coming</span></div>," Bonaht groans, pinching your nipples tight. "I'm gonna..."
//[[Get ready for it.|TNG-3630 Money shot]]//
<</page>><<silently>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Bonaht groans as his cock pulses between your lips, twitching and squirting out ribbons of lumpy, salty cum. It tastes tangy on your tongue.
//"Hold it..."// $gina.nickname warns sharply.
Bonaht squeezes your nipples hard as he [[unloads into your mouth|TNG-3650 Withdrawal]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Mmmh!"//
Bonaht lets go of your hair, grabs both your breasts, cupping them, pinching your nipples. "I'm close," he warns.
"Go for it, B." $gina.nickname's sharp tone with you turns breathy and encouraging for him. "Dump your load in her mouth, she's a horny little bitch, she's [[gonna love it|TNG-3640 Ma laeo]]..."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Ma laeo<span class="tooltiptext">I'm coming</span></div>," Bonaht groans. "I'm gonna..."
His cock pulses inside your mouth, twitching and squirting out shot after shot of his gooey sperm.
//"Hold it..."// $gina.nickname warns sharply.
Bonaht squeezes your breasts hard as he [[unloads into your mouth|TNG-3650 Withdrawal]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You rock back onto your heels, lips closed to hold in the salty, gooey jizz. Your mouth fills with saliva, diluting the taste. You suck in a breath through your nose, fighting the urge to spit or swallow.
$gina.nickname's finger touches your chin, tilts you to face her. "Show me."
//[[Open your mouth.|TNG-3660 Say ahhh]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
Tilting your head back, you open your mouth to show her the sperm coating your tongue.
"Good girl." Cupping your jaw, $gina.nickname peers in like a dentist. "Don't swallow."
Kneeling side by side, her leg presses against yours, her fingers lingering on your jawline.
She glances up at Bonaht, making sure he's watching, then turns back to you. Her hazel eyes gaze [[deeply into yours|TNG-3670 Snowball]].
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
With a mischievous smirk, $gina.nickname leans in. Her lips brush against yours, then her tongue lashes inside your mouth.
At first tentative, the kiss deepens as you surrender to the heat of the moment, kissing her back with a mouthful of gooey sperm.
It mingles in both your mouths as you [[make out passionately|TNG-3680 Passionate kiss]], topless on the floor.
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
His cum lingers in your mouth, adding a peculiar texture to the kiss, slipping over your tongues as they sensuously tangle and entwine.
//[[Pass it into her mouth.|TNG-3690 Pass the snowball]]
[[Hold it.|]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You pass it into her mouth with your tongue. She lets it swirl there, then kisses you back, slipping it back between your soft lips.
Heat and intensity rise up in your body as you kiss $gina.nickname, languidly passing a mouthful of cum and saliva back and forth with [[soft wet kisses|TNG-3680 Playtime's over]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your body's buzzing with arousal when <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finally pulls away. Her eyes are locked intimately onto yours.
"Mmmh, that was nice," she murmurs, toying with your hair. "Now, baby. Let's see you do a nice...big...swallow."
//[[Swallow.|TNG-3690 Down the hatch]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
At last, you gulp it down. It was flavourless on your tongue, but the salty taste hits the back of your throat as you force it down.
//"Goood// girl. Show me," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
//[[Open your mouth.|TNG-3700 Open display]]//
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-mouth-lick>>
<</silently>>\
<<header>>\
<<page>>\
In what feels like it has to be the final act, you open wide, and show <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> what's //not// in your mouth.
Looking into your eyes, she grins, and wrinkles her nose approvingly. Looking past your shoulder, she gives a nod to Miss Nin.
<span class="greenHighlighter">Bonaht ''liked'' that.</span> <span class="greenHighlighter">Nin ''liked'' that.</span> <span class="greenHighlighter">$gina.nickname ''liked'' that.</span>
<span class="imageLink"><<link "Bonaht">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bonaht.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans back in the armchair, a satisfied smile playing on his lips. "<div class="tooltip">Wao<span class="tooltiptext">Wow</span></div>, you two, that was fuckin' hot," he says, his voice filled with appreciation. "$gina.stripperName, amazing work. Loved the kiss at the end."
"We did too." Smiling playfully, $gina.nickname stands and [[helps you back to your feet|TNG-3710 Wrapping up]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Bonaht fumbles his way back into his trousers, mumbling appreciation in Thai. "<div class="tooltip">Khop khun khrup<span class="tooltiptext">Thanks</span></div>, Nin. <div class="tooltip">Khao song kon tam-ngaan ruam gan dai dee<span class="tooltiptext">These two work well together</span></div>."
"<div class="tooltip">Khaaa<span class="tooltiptext">Agreed</span></div>," <span class="imageLink"><<link "Miss Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> caws like a crow. "Thank you, girls, well done. Fix your lipstick before you go back work."
"Yes Miss Nin," replies <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[Yes Miss Nin.|TNG-3711 Yes Miss Nin]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yes Miss Nin," you echo, your mind reeling. Your senses are heightened, your body pulsating with unfulfilled desire. You have to resist the urge to look up at the hidden camera, high up in the weak side easy corner.
//Fuck.// Now it's over...//fuuuck.// A different kind of heat rises up inside you, a sick, embarrassed heat. //[[What'd I just do?|TNG-3711.1 Explicit content]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
This wasn't like being caught on camera with Connor. At least that //looks// it could be a...passionate work affair. Or some kind of calculated seduction on your part.
This was just you walking into a room, getting on your knees and letting some peripheral staff member come in your mouth. Using you like you're a sex toy. Like you're a [[Kleenex|TNG-3712 What'd I do]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads the way, the confident sway of her hips accentuated by the strappy thong framing her butt.
You follow along mechanically, fighting the queasy knot building up in your stomach. Right now all you want to do is get out of the VIP, get away from Bonaht, and Nin, and the fucking camera.
$gina.nickname tugs on the heavy door. Impatience prickles inside you as you wait for her to get it open. Behind you, Nin says something that makes Bonaht laugh, but you don't catch what it is.
You don't care. You just wanna [[get the fuck out of here|TNG-3713 No audio]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's no audio on the cameras, so the analysts won't hear your argument with Nin in the parlour. All they'll be able to judge is the visuals.
You clip-clopping into the VIP with $gina.nickname. Taking turns with his dick in your mouths, like something out of a porno film. Kneeling, like some...passive receptacle, letting him [[masturbate into your mouth|TNG-3780 Main club]].
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> //finally// gets the door open, and you //finally// slip out together into the main club.
But instead of relief, the atmosphere of this big empty space feels just as suffocating. The club lights are up, and a familiar old 80s song is playing. The loud music and flashing lights just seem to amplify your [[racing heart|TNG-3790 OMG]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//I shouldn't have done that. Bad idea. Oh fuck.//
Your throat feels thick. When you swallow, you taste another hit of Bonaht's cum. Thinking of it in your belly makes your stomach lurch.
You want to...march straight to the office, and rip the fucking security hub out of the wall before it uploads to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>
But you know you can't, you'd fuck up the mission. You're just going to have to...let it upload. //Ohmygod.// How is //anyone// on the mission team going to respect you [[after they see this|TNG-3800 Void]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Time after sometimes<small>🎵</small>//
//<small>🎵</small>You picture me, I'm walking too far ahead...<small>🎵</small>//
The empty dancefloor stretches out like a void. You cut across it, trailing beside <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, heading for the backstage door.
Over at the bar, <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> are over on your side. They're helping <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> pour a pint for the night's first customer, a heavyset old <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> wearing <<if $kate.agency == "mi6">>a Man United shirt<<else>><<if $kate.agency == "cia" or $kate.agency == "csis">>a British soccer jersey<<else>>a British football shirt<</if>><</if>>.
//[[Keep walking.|TNG-3801 First customer]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>You'rrre talking tooo me, I<small>🎵</small>//
//<small>🎵</small>Caaan't hear what yoouu said...<small>🎵</small>//
He's being served by three topless women, but he still looks up with interest when he sees two more crossing the club floor. Probably...wondering what you and <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are doing.
//If only you knew what we'd [[just done|TNG-3802 Chin up]].//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Then you say, "Go slow"<small>🎵</small>//
//<small>🎵</small>I fall behind...<small>🎵</small>//
You keep your head high, walking with a cool pride you don't feel. The old song wraps wistfully around your thoughts, stirring up a mix of emotions. It's hard to focus on anything.
"First snowball?"
You're so distracted, it takes a beat to notice that <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> talking to you.
[[Huh?|TNG-3810 Huh]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Huh?"
"The kissing thing. Y'know, with the jizz," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Snowball."
[[Yeah. First time.|TNG-3850 Steph's first snowball]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...yeah. First time."
"Sorry I didn't warn ya," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles apologetically. "Just kinda did it on the spur. You did //great."//
[[No problem.|TNG-3851 No problem]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, no problem," you shrug.
"My first time was with $zoe.stripperName. Nearly bloody choked, haha."
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> punches in the code to the No Entry Door, but pauses before she pushes it open.
"Listen, $kate.cover.firstName...it's all just work," she says. "<<if hasVisited("TNG-630 Is is weird that we do lesbian floorshows")>>Like we said at <div class="tooltip">BB<span class="tooltiptext">Brooklyn Baker, near Lumphini Park</span></div>. <</if>>We do the girl/girl thing, then it's straight back to being friends after. No worries, okay?"
[[Uh huh, no worries.|TNG-3860 No worries]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
"Uh huh. Yeah. No worries." The words feel hollow, but you try to match <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> casual tone as you step through into the backstage corridor. //What the //fuck// have I just done.//
She leads you towards the dressing room. But you need a moment to yourself before you go back in there.
[[Excuse me a moment.|TNG-3880 Need a sec]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I, uh, I just need a second."
"Yeah yeah," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods, her tone light. "Course."
//[[Take 5 in the staff toilets.|TNG-3890 Staff toilets]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''STAFF TOILETS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<<if hasVisited("TNG-3363 Spanked")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint2-60-rear")>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint2-45-rear")>>
<</if>>
<<if hasVisited("TNG-3363.1 I said moan bitch")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint4-50-rear")>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint4-35-rear")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The staff toilets are a dimly lit sanctuary, hidden away from the neon energy of the club. Cracked, peeling walls stretch into the gloom. Broken floor tiles reveal fractured foundations beneath.
The trash bins are overflowing, and the soap dispensers have been dry since you started. A lingering smell of disinfectant hangs faintly in the air.
This is the only room in the club that's not wired for surveillance. Freed from the constant pressure of being watched – by staff, by customers, by <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> – you feel suddenly lightheaded.
//[[Lean on a sink.|TNG-11000 Mirror mirror II]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You knees sag and you lean on an old sink for support.
Your reflection appears in a dirty, smudged mirror. Your hair tousled, your breasts bared, your face painted with sultry makeup.
You don't look like an intelligence officer or a <<university>> graduate. Not one bit.
You look exactly how you'd look if you were a <<link "$kate.age-year old whore" "TNG-3930 Fuck">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your reflection stares back sullenly. <<if $kate.eyeColour == "blue">>Blue<<elseif $kate.eyeColour == "chestnut">>Doe<<elseif $kate.eyeColour == "emerald">>Green<<elseif $kate.eyeColour == "grey">>Grey<<elseif $kate.eyeColour == "hazelnut">>Honey brown<<elseif $kate.eyeColour == "sapphire">>Pale blue<<else>>//ERROR IN KATE.EYECOLOUR VAR//<</if>> eyes framed by
//Fuck.// You've done...similar things on camera before. With Connor.
But they weren't so...[[whorish|TNG-3920 Whorish]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's just no other word for it. Down on the floor, swapping spit and cum with another topless woman. You didn't know things like that could //happen// outside of porn.
And you just did it. On fucking <div class="tooltip"><small>ECHELON!</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>
//[[I feel sick.|TNG-3930 Fuck]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The girl in the mirror stares back sullenly. Reproachfully. //What the fuck are you doing to me. Who even are you.// <<if $kate.eyeColour == "blue">>Baby blue<<elseif $kate.eyeColour == "chestnut">>Doe<<elseif $kate.eyeColour == "emerald">>Jade green<<elseif $kate.eyeColour == "grey">>Cool grey<<elseif $kate.eyeColour == "hazelnut">>Honey brown<<elseif $kate.eyeColour == "sapphire">>Crystal blue<<else>>//ERROR IN KATE.EYECOLOUR VAR//<</if>> eyes framed by <<if $kate.lastWornEyeshadow == "smoky">>smoky<<else>>sultry<</if>> eyeshadow. Long, jet black lashes that flutter with every blink. Smudged, just-sucked-cock lipstick.
You want to splash your face, //clean it,// wash it all off. But you can't fuck up your makeup. //Fix your lipstick before you go back work.//
<<link "//God, what am I //doing// here?//" "TNG-3940 Who are you">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//The fuck am I even //doing// here?//
Catching <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>, you know that's the answer. Or making it possible to catch him anyway, working on the <div class="tooltip">pre-operational phase<span class="tooltiptext">gathering intelligence, conducting analysis, and setting the stage for a successful intelligence operation</span></div>. //No one's ever gotten this close to him before.//
Yeah, fine. But the //methods?//
//[[Ugh...|TNG-3950 Puke]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Nausea claws its way up your throat, twisting your insides. Without warning, you double over, retching into the sink.
Vomit splatters against the porcelain, mingling with the grime. It's a [[vile reminder|TNG-3960 Acid taste]] of everything you swallowed today.
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-upset>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck," you croak. Shame and disgust mingle with the bitter tang in your throat.
Your eyes are watering, full of pressure, and you dab at them with a fingertip, trying not to fuck up your eyeliner. Trying not to cry.
//Oh fuck. I gotta...//
//<span class="greyedOut">[Abort mission]</span> [[...get out of here.|TNG-3961 Marines, we are leaving]]//
//[[...get a grip.|TNG-3970 Get a grip]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//...get out of here. I've got to //go.
You don't know what's going to happen to you if you stay. But you //do// know it's not good. This place, these people...they're going to turn you into a prostitute long before you catch <small>DEVILFISH.</small>
You were in denial about that, but now it's [[crystal clear|TNG-3961.1 Wavering]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
For a moment, your resolve wavers. //Maybe I...could do it. For the mission. Maybe I...//
Then Mike Dodaro's words on the satphone come back to you. //This only goes on as long as you say it goes on. You've already done a lot. Nobody's gonna think less of you if you need to come out.//
//[[I need to come out.|TNG-3961.2 Dressing room]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Your poker face is on when you open up your locker and start unpacking. "Everything okay?" asks <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_toplessBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[Yeah, yeah, just need a smoke.|TNG-3961.3 Need a smoke]]
<</page>><<silently>>
<<wear-shorts-bayouxBlueButtonDetailShorts>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, yeah, just need a smoke."
"Didn't know you smoke."
"Only when I'm stressed."
"Cool. If you're...sure you're okay."
[[Back in 5, okay?|TNG-3961.4 Back in 5]]
<</page>><<silently>>
<<emote-mouth-calm>>
<<wear-top-blueFloralPrintSummerScoopNeckSleevelessTop>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
"Back in five, okay?"
You walk out through the club, calmly but quickly. <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> catches your eye from behind the bar, but you don't have time to stop. A bouncer spots you, but he just gets out of your way.
//[[Get out into Patpong.|TNG-1414 Good luck]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//...get a grip. Calm, calm, calm. Be cool.// You blink and dab your eyes, your heart pounding in your chest.
//Easy, easy, just breathe.// A few seconds teetering on an emotional knife edge...then control returns, and the tears get pushed back under, something to deal with later.
You force a gulp down your numb, thick throat.
//[[It's a field op, get a grip.|TNG-3971 Field op get a grip]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//It's a field op, $kate.firstName, get a grip.//
This whole op is a spear, aimed at //the// most secure and resilient terrorist funding network on the planet. Hitting it could be a strike that ripples all the way through the loosely connected network of global jihad.
<div class="tooltip">ISIL<span class="tooltiptext">the Islamic State of Iraq and the Levant</span></div>'s been on the run since <div class="tooltip">Raqqa<span class="tooltiptext">where ISIL were defeated as a conventional military force last year</span></div> – but the threat will reform, //it always reforms.//
Hitting <div class="tooltip"><small>DEVILFISH's</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> network now could set that back by...months, at least. Combined with other efforts? Maybe //years// of peace. God alone knows how many [[lives saved|TNG-3972 Lives saved]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
'Officer $kate.firstName[0]' stares back from the dingy mirror. //Bond, Jane Bond.//
You don't //look// like a threat to international terrorism. You look...ridiculous, you look like a joke. In a seedy bar, stripped down to a pair of sexy <<knickers>>, play-acting as a whore.
Or is it even play-acting. Nin said you're getting paid for it later, so...//fuck.//
And yeah yeah, same same with Connor. //But different.// At least you can pretend that's some kind of passionate work affair. That's what it looks like.
But this...//fuck,// that's what's really bothering you. You just...[[prostituted yourself|TNG-3975 No big deal]], you really fucking did. On fucking <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Of course// you look like a whore. You're undercover in a whorehouse.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Breathe. Think.//
You've been trying not to picture it, but...maybe it's not that bad? From HQ's perspective? Sure, it //felt// fucking degrading. But how much of that will actually come across on the surveillance footage?
They've seen you have sex with Connor. They //told// you the sexual demands on you would escalate if you stayed under, they pre-authorised you for it. And this...this was just a blowjob.
Nin said you were out if you didn't do it. Mission over. And yeah, the 'snowball' absolutely was...whorish, there's no other way to look at it. But $gina.nickname kissed you, not the other way around. All //you// did was [[sit there and take it|TNG-3972 Perspective]].
This whole op is a spear aimed at //the// most secure and resilient terrorist funding network on the planet. It's not normal for an officer still in her twenties to be the sharp end of it.
All your career, you've tried to prove that there's more to you than just your looks. But, ultimately...that's why they picked you. Brains, yes, but also enough sex appeal.
You've been hit on and gawped at enough to know that men find you hot<<if $kate.braSize == "large">> [[because of your tits|]].<<else>>, despite [[all your imperfections|]].<</if>>
<div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> got pinged in a brothel...so they sent an officer into a brothel. Plucked one out of her desk job <<if $kate.agency == "cia">>at Langley<<elseif $kate.agency == "mi6">>in London<<elseif $kate.agency == "asis">>in Oz<<elseif $kate.agency == "csis">>in Ottawa<<elseif $kate.agency == "nzsis">>in Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, because she had brains and sex appeal.
And a willingness to [[do what it takes|TNG-3972 Ends]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Am I overreacting?// A moment ago you felt ready to break down and cry, but...now you feel like you're gaining some perspective.
This whole op is a spear, aimed at //the// most secure and resilient terrorist funding network on the planet. And right now, the sharp end of that spear is you.
It's taken years, but Al Qaeda's decimated, <div class="tooltip">ISIL<span class="tooltiptext">the Islamic State of Iraq and the Levant</span></div>'s been on the run since <div class="tooltip">Raqqa<span class="tooltiptext">where ISIL were defeated as a conventional military force last year</span></div>. The threat'll reform – //they always reform// – but it'll be a [[longer, harder road|TNG-3973 The point]] if they're starved of cash for fighters, training and recruitment.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
That's what this is all about. Not a Hollywood ending...but the chance to strike a blow that could ripple through the whole loosely connected network of global jihad. Hitting them hard while they're reeling. Putting them on the ropes a little longer, maybe buying a few more years of peace.
God knows how many lives it'd save if you could actually [[pull it off|TNG-3974 DCTCIV]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
'Officer $kate.firstName[0]' stares back from the dingy mirror.
You don't //look// like a threat to international terrorism. You look trivial, you look...ridiculous, you look like a joke. //Bond, Jane Bond.// In a seedy bar, stripped down to a pair of sexy <<knickers>>, play-acting as a whore.
Or is it even play-acting. Nin said you're getting paid for it later, so...//fuck.//
And yeah, same same with Connor. But different. At least you can pretend that's some kind of passionate work affair. That's what it looks like.
But this...//fuck,// that's what's really bothering you. You just...[[whored yourself out|TNG-3975 No big deal]]. On fucking <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>
Except...she just sucked some guy's cock in a back room, and she's getting paid for it later.
That's what's really bothering you.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
And it's going to upload soon, nothing you can do about it, and they'll watch you doing it in <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> and <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>. And...
And...
And it //[[probably won't be that big a deal|TNG-3975.1 Langley isn't bothered]].//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're pre-authorised. From the lips of the Prince of Darkness himself. And...of course you are. You //had// to be.
//They're not gonna pull me out.//
This simple realisation feels like a bolt of clarity, electrifying your thoughts. All the turmoil, the doubt, the fear...it doesn't matter, you're the only one worrying about it.
//They're [[not gonna pull me out|TNG-3975.2 No factor]].//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
For a shot at <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>...<div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> will pay off who has to be paid off. Coerce who has to be coerced. Kill who has to be killed.
And it'll be worth it; they'll all be bad guys of one stripe or another. Good people don't know where terrorist brokers are. That's just how counter-terrorism works, you do bad things to bad people, before they can hurt good people.
You've been so worried about it, but...<div class="tooltip">Mike Dodaro<span class="tooltiptext">Director, CIA Counterterrorism Mission Center</span></div>, the Prince of Fucking Darkness himself, is not losing a second's sleep over whether or not you're a [[nice girl|TNG-3975.3 Princess of Darkness]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
And neither's anyone on his team. //They're not gonna pull me out.//
No one high up in <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> or <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> is going to suggest this mission gets pulled because they don't like the fact that Officer $kate.firstName[0] is embracing her role.
As long as you can handle it, they're satisfied. You...think that's what Dodaro tried to tell you on the satphone, but it didn't really register then. You [[didn't understand|TNG-3975.4 Now I do]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//But now I do.//
Your reflection in the mirror looks...calmer.
//I'll do what it takes,// you realise. Doesn't matter if you have to...cross a few lines you never thought you would.
<<link "//<small>DEVILFISH</small> is worth it.//" "TNG-5000 Title card">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//He doesn't care, Clark doesn't care, <<Olivia>> doesn't care.// It's a stark realisation...freeing in its own way. As long as you can handle it and stay focused on the mission, they're satisfied.
Your reflection stares back at you. //Can// you handle it?
You need to be real with yourself now, this...[[isn't going to stop with Bonaht|TNG-3977 What it means]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A brief, unsettling vision of what that really means flashes in your mind. A fleeting vision of yourself, being //used// like one of the other girls. On all fours, some...stranger's hands on your hips, fucking you from behind.
All being recorded and going up to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>
<span class="greyedOut">//[Arousal +3]//</span> //[[I'm okay with that.|TNG-3977 Okay with that]]//
<span class="greyedOut">//[Low Arousal] Can't do it.//</span>
<</page>><<silently>>
<<set _dominantKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
//Yeah, I'm okay with that.//
Your body responds before your mind fully registers the sensations, a tingle of anticipation in your nipples and your groin, like you could go do it //right now.// Some kind of...lingering effect of the arousal you felt in the VIP.
You shake that off, dismiss it. //But seriously, I'm...[[okay with it|TNG-3978 Really okay with it]]. For the mission.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
That's...surprising. A realisation more than a decision. If Nin told you to go fuck a client right now//...I'd do it.//
Your reflection in the mirror looks...calmer. You still look like a whore. But maybe that's not a big deal in a whorehouse.
//I'll do what it takes,// you realise. Doesn't matter if you have to...cross a few lines you never thought you would.
<<link "//<small>DEVILFISH</small> is worth it.//" "TNG-5000 Title card">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Of course// you're going to have to get your hands dirty. It's a fucking CIA black op. Targeting //the// most secure and resilient terrorist funding network on the planet.
<div class="tooltip">ISIL<span class="tooltiptext">the Islamic State of Iraq and the Levant</span></div>'s on the run, but the threat will re-form. //They always re-form.// But it'll be slower and harder without cash. //Starve the hydra and it dies.//
Capturing <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> could potentially save thousands of lives.
If you can play a part in that...you really don't care how much of a whore you look. You don't think [[the Prince of Darkness|TNG-3990 idc]] does, either.
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
A sense of calm determination washes over you. //I know what I have to do.// Drawing yourself to your full height, you wipe your mouth, smearing away the remnants of your weakness.
You clean your puke out of the sink, and head to the dressing room to [[fix your lipstick|TNG-5000 Title card]].
//[TK do an Arousal reduction here? Then it will be hot later in the shift when it builds back up.]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<if hasVisited("TNG-3363 Spanked")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint2-45-rear")>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint2-30-rear")>>
<</if>>
<<if hasVisited("TNG-3363.1 I said moan bitch")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint4-35-rear")>>
<<set $avatar.body.push("/113Expressions/60_butt-spankingFlush-handprint4-25-rear")>>
<</if>>
<</silently>>\
<a data-passage="TNG-5010 U ok hun">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/dressingRoomTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-11505 Kate pukes")>>You clean your puke out of the sink, and<<else>>You<</if>> head to the dressing room to fix your makeup.
You push open the door to a room buzzing with subdued energy. A few Thai <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> have trickled in, their street clothes a stark contrast to the skimpy, barely-there dresses and negligees they'll be slinking around in later.
You don't know any of them; they glance up briefly, but carry on their conversation in rapid-fire Thai. Something about tattoos?
Still topless, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lounges on a stool, her long legs stretched and propped up on the counter, sparkly high heels catching the light. She's scrolling on her phone, but her eyes lift as you enter the room. "Heyyy," she says. "You alright?"
[[Yeah, I'm fine.|TNG-5020 Totally fine]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, just had a rough moment." You smile reassuringly. "I'll be fine."
"Thought I mighta freaked you out or something." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sets down her phone. "You really okay?"
[[The kiss didn't freak me out.|TNG-5030 Kiss didn't freak me out]]
<</page>><<silently>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You didn't freak me out," you say, shaking your head. "It was more...eye opening, I guess. But I'll be fine."
"Good. Promise you, it's not a big deal." As she talks, your attention drifts to the subtle nuances of her <span class="imageLink"><<link "features">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The way her eyes sparkle with a hint of mischief, the curve of her lips as she forms each word. "Seriously, I've pashed with literally every girl here. Hey, wanna mint?"
[[Probably need one.|TNG-5050 Prolly need one]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Probably need one."
"No kidding, these..." <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises, rummaging in her bag, "are life changing."
She passes you a little pack of what looks like <span class="imageLink"><<link "some kind of kiddy's <<if $kate.agency == 'cia' or $kate.agency == 'csis'>>candy<<else>>sweet<</if>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/nukeBreathAndBelly.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[What are they?|TNG-5050 Breath and belly]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-nose-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are they?"
"Breath and belly mints. You can only get 'em in <div class="tooltip">Don Don Donki<span class="tooltiptext">you have no fucking idea what she's talking about</span></div>. We're all hooked."
The dispenser's like a <span class="imageLink"><<link "mini maze game">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/nukeBreathAndBelly.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Drop a capsule on your tongue.|TNG-5051 Tongue pop]]//
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-mouth-lick>>
<</silently>>\
<<header>>\
<<page>>\
Finding the button, you hold the dispenser over your mouth, and pop out a tiny capsule onto your tongue.
"Just [[let it pop|TNG-5052 Not the first time]], then swallow," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> advises.
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Yeah, not the first time you've told me something like that tonight.//
This time, the wet explosion in your mouth has a really //intense,// almost fiery hot minty flavour.
When you gulp it down, it feels like it's burning your throat clean.
[[Wow.|TNG-5052 Wow]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Wow."
"I know, right? Keep the pack, we're all buying 'em in bulk."
You can see why – you just <<if hasVisited("TNG-11505 Kate pukes")>>puked up<<else>>gulped downn<</if>> some guy's cum and your mouth suddenly tastes [[pretty good|TNG-5070 Lipstick]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks."
"No worries." $gina.nickname smiles and goes back to her phone.
You open up your locker, take your <<handbag>> to an empty bench, and carefully [[reapply your lipstick|TNG-5070 Lipstick]] in the mirror.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> goes back to her phone, you open your locker and get out your makeup kit.
A few moments reapplying your lipstick, some teasing your hair back into the right sexy shape, and '$kate.stripperName' is restored and ready to [[go back to work|TNG-5100 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-glow1-rear")>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-5110 New arrivals">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/mainBarTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Crossing the dancefloor, you head back to the bar.
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> are still around your side, helping <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>. The old <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> in the <<if $kate.agency == "mi6">>Man U shirt<<else>><<if $kate.agency == "cia" or $kate.agency == "csis">>soccer jersey<<else>>football shirt<</if>><</if>> takes a sip of his Chang, engrossed in his phone.
The girls are now serving <span class="imageLink"><<link "three young Asian men">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Slightly flustered by all the naked female flesh on display, a mix of mischief and excitement dances across their faces.
//[[Duck under the bar and join in.|TNG-5111 Duck under]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The <span class="imageLink"><<link "asian trio's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> attention shifts to you as you duck gracefully under the bar counter. Three sets of young, dark eyes roam over your body, taking in the way it's presented to them in just high heels and a flimsy scrap of $knickers.material. Like the way Bonaht looked at you.
It sends a jolt through you, a mix of apprehension and a strange, fluttering sensation in your gut, as you present yourself to three new asian men. A subtle tingle of anticipation in your nipples and groin as you're seen, categorised and rated for how much they want to fuck you.
//[[Like I care.|TNG-5112 Like I care]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Like I care.// Except you do, part of you just wants them to like you. //What the fuck is wrong with me.//
"<div class="tooltip">Yòu lái yīgè?!<span class="tooltiptext">Another one?!</span></div>" one of them exclaims, [[prompting a chuckle|TNG-5120 Professionalism]] from his little <<if $kate.agency == "cia" or $kate.agency == "csis">>buddies<<else>>mates<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Three <span class="imageLink"><<link "brats">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughing at you hits like a slap in the face, but you force yourself to swallow the embarrassment and act composed.
<span class="greyedOut">//[Smile]//</span> [[Hello boys.|TNG-5130 Hello boys]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hello boys." Rejoining your colleagues, you force a carefree smile onto your face. //Panties and a smile.//
<span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> just finished carefully pouring a third pint of ice cold Chang. <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> lends a helping hand, sliding the drinks across the bar to <span class="imageLink"><<link "the brats">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, while <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> just flirts with them, twirling her hair. "Do you like our outfits?"
"Yah, yah, very much!"
"Um...[[four fifty|TNG-5131 Paying Emilia]], please, guys." $emilia.firstName's voice is high and nervous.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The customers hand over the money, and Emilia hastily turns to the cash register, her face flushing with embarrassment.
Behind her back, <span class="imageLink"><<link "three sets of dark eyes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flicker down simultaneously, openly checking out her <span class="imageLink"><<link "butt">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Help her with the cash register.|TNG-5140 Cash handling]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You join <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> at the cash register, assisting her with the buttons. Instinctively, you tilt your hips into a flattering pose, knowing that your own bum is on display.
Three Changs is a straightforward order, but uncertainty's written all over $emilia.firstName's face as she hesitantly works the till. When the drawer springs open, a mixture of [[amazement and relief|TNG-5150 Negotiations]] washes over her face.
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Turning back to <span class="imageLink"><<link "the customers">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> hands over a <div class="tooltip">fifty<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in change. Eyes drinking in your bodies, the brats jabber amongst themselves in rapid-fire Mandarin.
<div class="tooltip">"Zhèxiē nǚhái kàn qǐlái zhēn bùcuò, nǐ juéde ne?"<span class="tooltiptext">These girls really look good, don't you think?</span></div>
<div class="tooltip">"Yào bùyào wèn wèn tāmen de jiàgé?"<span class="tooltiptext">Should we ask about their prices?</span></div>
Red Shirt tucks away the change, but doesn't put away his wallet. "What are the prices here?" he asks you. "How much for <div class="tooltip">short time<span class="tooltiptext">a brief sexual encounter in the rooms upstairs. Bread and butter work for a bargirl</span></div>?"
[[Starts at two thousand.|TNG-5160 Starts at two thousand]]
[[2500 and you can do everything.|TNG-5161 2500 for everything]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Starts at <div class="tooltip">two thousand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$60<<elseif $kate.agency == "mi6">>£40<<elseif $kate.agency == "asis">>$80<<elseif $kate.agency == "csis">>$80<<elseif $kate.agency == "nzsis">>$80<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," you tell him.
<<include "TNG-5162 Deal">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Two thousand five hundred<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$75<<elseif $kate.agency == "mi6">>£50<<elseif $kate.agency == "asis">>$100<<elseif $kate.agency == "csis">>$100<<elseif $kate.agency == "nzsis">>$100<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, and you can do everything," you promise.
<span class="greenHighlighter">The Brats ''liked'' that.</span>
<<include "TNG-5162 Deal">>\
<</page>><<if lastVisited("TNG-5161 2500 for everything") is 0>><span class="imageLink"><<link "Red Shirt and his friends">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "The Brats">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> exchange smirks and chuckles. <<if lastVisited("TNG-5161 2500 for everything") is 0>>His<<else>>Red Shirt's<</if>> gaze flickers over your body once more, a quick final assessment of your value, breasts, legs, face. "Deal. [[I'll take you|TNG-5163 I'll take you]], then."<<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
It's not a question, he thinks he's just...bought you. He's shorter than you, he's younger than you, and he's looking at you like he absolutely expects to be fucking you in a couple of minutes.
Probably already planning what he's going to do. Your body responds with an alarmed spike in your pulse, stiffening nipples and a prickly wet heat in your groin, as it readies itself for the second strange asian cock of the night.
[[Sorry, we're not on the menu tonight.|TNG-5170 Not on the menu]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry, boys, we're not on the menu tonight." That's something you've heard Roxy say, it seems to work. "I can grab you some <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> right now. Tonight we've got some beautiful Thai girls and another Aussie, she's gorgeous."
<span class="redHighlighter">The Brats ''disliked'' that.</span>
"Huhhh? No no no, we want //you// girls," <span class="imageLink"><<link "Red Shirt">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> objects. "Right, guys?"
<div class="tooltip">"Yào gèng duō qián,"<span class="tooltiptext">Wants more money</span></div> one of them suggests.
"Oh. Sure." Red Shirt peels out <<if hasVisited("TNG-5160 Starts at two thousand")>>four<<else>>five<</if>> crisp, ATM-fresh brown banknotes out of his wallet. "Okay. How about we [[say double|TNG-5200 How about double]]? <<if hasVisited("TNG-5160 Starts at two thousand")>><div class="tooltip">Four thousand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$120<<elseif $kate.agency == "mi6">>£80<<elseif $kate.agency == "asis">>$160<<elseif $kate.agency == "csis">>$160<<elseif $kate.agency == "nzsis">>$160<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><<else>><div class="tooltip">Five thousand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><</if>> each."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorrrry," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> sidles up beside you, resting a hand on your shoulder. Her side presses up against yours, body heat radiating between naked hips and thighs. "We have to stay on bar, we not for say-oh tonight."
"But there's no one here," <span class="imageLink"><<link "Red Shirt">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points out.
"<div class="tooltip">Nǐ juéde tāmen huì bèi hòurù ma?<span class="tooltiptext">Do you think they take it up the ass?</span></div>"
"<div class="tooltip">Dāngrán huì.<span class="tooltiptext">Of course.</span></div>"
//<span class="greyedOut">[To Ploy]</span>// <<link "I'll get $gina.nickname." "TNG-5180 I'll get Steph">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's not the money," you shake your head. "We don't do that." After what happened in the VIP, it feels a little bit gratifying to re-establish some boundaries.
"Uh?" <span class="imageLink"><<link "Red Shirt">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks genuinely confused.
<span class="greyedOut">//[Get the bargirls]//</span> [[Trust me, you're in for a treat.|TNG-5200 In for a treat]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Trust me," you promise, leaning confidently on the bar. "You're in for a treat."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Shéi jiè de liǎng gè?<span class="tooltiptext">Who's getting two?</span></div>"
"<div class="tooltip">Bù guǎn, wǒ zhǐ xiǎng rēng nà gè gāo de shā mǎ.<span class="tooltiptext">Don't care, I just want to ride that tall bitch.</span></div>"
"Sorry, we can't leave bar," Ploy explains.
"But there's no one here," <span class="imageLink"><<link "Red Shirt">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[points out|TNG-5170 Solution]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Chūqù sān gè?<span class="tooltiptext">Take three?</span></div>" <span class="imageLink"><<link "V Neck">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests. "<div class="tooltip">Gè rén yī gè. Lìxià yī gè liú zài jiǔbā.<span class="tooltiptext">One each. Leave one at bar.</span></div>""
"Yeah, yeah, okay," Red Shirt agrees. "We'll take three. One of you can stay."
"<div class="tooltip">Nǐ juéde tāmen huì bèi hòurù ma?<span class="tooltiptext">Do you think they take it up the ass?</span></div>"
"<div class="tooltip">Dāngrán huì.<span class="tooltiptext">Of course.</span></div>"
Red Shirt pulls out a wallet, stuffed with crisp banknotes. "How much for three?"
"We not allow," Káyk says. "We have to get bargirl..."
"Let me speak to your boss," Red Shirt replies. "It's allowed."
//<span class="greyedOut">[To Ploy]</span>// <<link "I'll get $gina.nickname." "TNG-5180 I'll get Steph">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll get $gina.nickname," you tell <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>. As soon as you say it, you realise you just blurted out her real name – not her stage name, '$gina.stripperName' – but no one seems to notice.
"<div class="tooltip">Chai, dii,<span class="tooltiptext">Yeah, go</span></div>" Ploy nods, "get four girl." You slip away, ducking back out under the bar.
Old rock music blares out of the speakers as you cross the empty dancefloor, your high heels forcing a [[sensual sway|TNG-5300 Title card]] to your hips.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-5510 Dressing room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/dressingRoomStockingsTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
The acrid taste of hairspray hits your throat as you step into a bustling and busy dressing room, various Thai <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> all in the midst of getting ready for tonight.
<<image "/dynamicAvatars/groups/fiveThaiBargirlsInStreetClothes.png" 0 1000 432 0>>\
A pulsing EDM beat thumps out of <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> Bluetooth speaker. The air's thick with conflicting smells of perfumes and cosmetics. In a corner, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_mustardDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> carefully dabs stains out of some kind of lingerie piece, or maybe a dress.
A <span class="imageLink"><<link "tattooed bargirl wearing nothing but a g-string">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kk/kk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> squeezes past you, brushing her teeth.
[[Girls, we've got some clients at the bar?|TNG-5520 Bogies]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey girls, we've got some clients at the bar?"
You sense this wasn't the most welcome announcement right this second. One of the Thai <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> casts you a sidelong glance, another lets out a frustrated groan.
"Uhhh...how many?" <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Three. Ploy said we need four girls.|TNG-5530 Three]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Three. Ploy said we need four girls."
You try to sound casual, but a flicker of discomfort passes through you. The Brats casually asking for women, and you facilitating it – it all seems too dehumanising, and yet it's just another night at the club.
"I can go," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> announces to the room.
No response. Some of the Thai bargirls exchange glances. Most of them just [[keep doing their makeup|TNG-5540 I can ask Nin]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Silence hangs in the air for a moment. <div class="tooltip">"Ma thuh na ka, sao sao,"<span class="tooltiptext">Come on, girls</span></div> chides a bargirl who looks <span class="imageLink"><<link "ethnically Chinese">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/lingLing/lingLing_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Ugggh." <span class="imageLink"><<link "Curly Hair">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/tangmo/tangmo_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> groans in frustration. "<div class="tooltip">Chan ja bpai<span class="tooltiptext">I'll go</span></div>," she says, "<div class="tooltip">geuap ja set laew<span class="tooltiptext">I'm almost done</span></div>."
"<div class="tooltip">Chan gor chen gan<span class="tooltiptext">Me too</span></div>," says her <span class="imageLink"><<link "pint sized friend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_streetClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="imageLink"><<link "Kiss Me Baby">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/fah/fah_streetClothes2.png']]")>>
<<set Dialog.open()>>
<</link>></span> sighs and turns to you. "Coup-oh minute, okay?"
[[No problem.|TNG-5550 No problem]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No problem," you say, but her attention's already back on her makeup mirror, and you realise she wasn't asking, she was telling.
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_backstageAfterBonahtBJSceneSmooshedLips.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is back on her feet, too, getting her kit bag out of her locker. The bargirls always arrive for work with plenty of changes of clothing – bags brimming with lingerie and skimpy dresses.
//[[Wait for them to get ready.|TNG-5560 The wait]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Leaning against the doorframe, you wait and watch the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> getting ready to meet their clients.
The mirrors reflect focused expressions as they meticulously apply their makeup. Practised hands move with precision, emphasising their allure and glamour with contours, highlights, and vivid colours.
You can't help but feel a pang of discomfort watching these women primp and preen themselves for [[men they've never met|TNG-5570 Reflection]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Contours become more pronounced as you watch, lips fuller, eyes smokier. Each stroke of the brush and dab of the sponge brings them closer to an idealised version of female beauty.
As you watch, you notice glimpses of vulnerability peeking through their confident facades. The occasional sigh, a flicker of doubt in the eyes.
You've always felt there was a clear line between you and the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>. But the thing in the VIP...blurred it, it really did. Looking at them now, after what you just did, it's hard not to wonder what it'd be like to [[walk in their shoes|TNG-5571 Talk to us]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Talk to us, $kate.cover.firstName," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_preppingForBrats.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, now naked in front of a mirror. "Tell us about these guys."
[[Three, Chinese, early 20s, pretty loaded.|TNG-5572 Basic report]]
<span class="greyedOut">//[High IQ]//</span> [[Confident, privileged, using money as power, seeking adventure, there's a hierarchy.|TNG-5573 Detailed report]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Three guys," you reply. "Chinese...early 20s...they seem pretty loaded. They offered to pay us double if we came off the bar."
"Cool, cool," says $gina.nickname, wriggling into a <span class="imageLink"><<link "stretchy see-through dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_preppingForBrats2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"What your name?" asks <span class="imageLink"><<link "Shorty">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_preppingForBrats.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<link "$kate.stripperName." "TNG-5574 Oh, you River">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhh...confident, educated, used to getting what they want. Money is power to them, if you say no to something, they offer you more cash to make you do it. But they're //excited,// too, this is a new thrill for them. The guy in the red t-shirt is the leader."
<span class="greenHighlighter">The bargirls ''liked'' that.</span> <span class="greenHighlighter">The bargirls think you're ''intelligent''.</span> <span class="yellowHighlighter">Minor ''increase'' to Suspicion Level.</span>
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> exchange glances, their expressions a mix of intrigue and amusement as they listen to your assessment. One of them lets out a low whistle.
"What your name?" asks <span class="imageLink"><<link "Shorty">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_preppingForBrats.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<link "$kate.stripperName." "TNG-5574 Oh, you River">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName," you tell her.
"Ohhh, you $kate.stripperName," <span class="imageLink"><<link "Shorty">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_preppingForBrats.png']]")>>
<<set Dialog.open()>>
<</link>></span> replies, like that explains something. "Hi, hi, <div class="tooltip">sawatdi<span class="tooltiptext">hi</span></div>."
<div class="tooltip">"Ao, ter pen khon tee Connor–"<span class="tooltiptext">Oh, she's the one Connor–</span></div>
<div class="tooltip">"Chaiii."<span class="tooltiptext">Yes.</span></div>
//[[Pretend you're not listening.|TNG-5575 Can't hear it]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You check your reflection in a mirror, teasing your hair a little, making sure your thong's on straight. Little shallow, unthreatening things to make them think you're not listening in on their conversation.
But they don't go back to you or Connor. Pretty soon, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are ready to [[go and meet the Brats|TNG-5600 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<if hasVisited("TNG-3363 Spanked")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint2-30-rear")>>
<</if>>
<<if hasVisited("TNG-3363.1 I said moan bitch")>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint4-25-rear")>>
<</if>>
<</silently>>\
<a data-passage="TNG-5610 Here come the girls">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/mainBarTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The <span class="imageLink"><<link "Chinese brats">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> perk up when they see you returning to the bar, this time at the head of group of glammed-up girls in high heels and skimpy dresses.
<<image "/dynamicAvatars/groups/fahNoiStephTangmoMeetTheBrats.png" 50 1000 612 0>>\
The annoyance written on their faces in the dressing room is gone, replaced with doe eyes and cute smiles as they make a beeline for the first clients of the night.
//Okay, job done.// You do feel a little bit guilty about...actively procuring women for sex. But it's just the way it works here, you're gonna have to get used to it.
//[[Duck back under the bar.|TNG-5611 Jag and friends]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A few more guys have drifted in from the street, including your regulars, <span class="imageLink"><<link "Jag and his friends">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from the nearby telecoms company. <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> has already served their drinks, placing two Changs and two Singhas before them.
As you approach, you can't help but notice a shift in her demeanour. She's making some joke to the guys, her eyes sparkling with newfound confidence, and they're leaning in close with goofy smiles on their faces.
A twinge of mixed emotions washes over you. It's great that she's coming out of her shell. But you do feel a twinge of...//maybe not jealousy,// but a jolt of worry about being replaced.
<span class="greyedOut">//[Tits up, big smile]//</span> [[Oh hi guys!|TNG-5620 Hi guys!]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Instinct takes hold. Chest up, a little extra sway in the hips as you strut back to your place at the bar.
You arch your back with purpose, lifting your bare breasts towards <span class="imageLink"><<link "the guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, offering your bare nipples to their attention with a big, vivacious smile.
"Oh, hi guys!"
Four youthful gazes turn to you as one, briefly lingering on your chest before flickering up to meet your eyes.
"Hiiii $kate.stripperName!" they [[chorus|TNG-5630 Chorus]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"We juss meet $emilia.stripperName," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains.
[[Go easy on her, it's her first night.|TNG-5640 Go easy]]
[[These are my favourite customers.|TNG-5650 Favourite customers]]
[[Isn't she gorgeous?|TNG-5660 Isn't she gorgeous]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Go easy on her, it's her first night."
"Don' worry," <span class="imageLink"><<link "Peet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/peet.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "we take good care her!"
"Yahhh. We make sure she welcome."
"Awwh," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "These guys are so nice."
<<include "TNG-5669 Two drings">>\
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"These guys are my favourite customers," you tell $emilia.firstName.
"Awww," <span class="imageLink"><<link "Peet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/peet.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "We feel same way 'bout you."
"Yeah. $kate.stripperName, nicest bar may for us."
<<include "TNG-5669 Two drings">>\
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Isn't she gorgeous?" you ask, stepping aside to admire $emilia.firstName's physique.
"Oh yes!" <span class="imageLink"><<link "Peet">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/peet.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> enthuses. "She very beauty-fow!"
"You two look beauty-fow together."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
"Awwh," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "Thanks, guys."
<<include "TNG-5669 Two drings">>\
<</page>>"$kate.stripperName. Two drings," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> instructs, sliding a red <div class="tooltip">฿100<span class="tooltiptext"><<if $kate.agency == "cia">>$3<<elseif $kate.agency == "mi6">>£2<<elseif $kate.agency == "asis">>$4<<elseif $kate.agency == "csis">>$4<<elseif $kate.agency == "nzsis">>$4<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> banknote over the bar. "You her."
[[Thanks, Jag.|TNG-5670 Thanks Jag]]<<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, Jag." Turning to the cash register, you show <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> how to ring up two barmaid shots.
[[See that tequila bottle with the blue sticker?|TNG-5730 Fake tequila]]
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Cold air washes over your legs when you open the fridge. You lean down slightly, and grab two icy cold Singhas from the top shelf.
//[[Serve them to Jag and Book.|]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Cold air washes over your legs when you open the fridge.
You bend over at the waist, stretching down to get two icy cold bottles of Singha from the bottom shelf.
<span class="greenHighlighter">Jag ''liked'' that.</span> <span class="greenHighlighter">Book ''liked'' that.</span> <span class="greenHighlighter">Nam ''liked'' that.</span> <span class="greenHighlighter">Benz ''liked'' that.</span>
//[[Serve them to Jag and Book.|TNG-5650 Service]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
Pushing the fridge door shut with a high heel, you pop open the beers, and slide them across the counter. "Here you go, guys."
$emilia.firstName catches your eye gratefully – she's nearly finished pouring two Changs.
There's way too much head on one of them.
//[[Fix it for her.|TNG-5660 Kate fixes the head]]
[[Show her how to do it.|TNG-5670 Kate instructs Emilia]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Swiftly, you step in and intercept the pint before it goes out. With a practised hand, you tilt the glass under the tap, expertly pouring in more beer. Excess foam seeps out over your fingers.
<span class="imageLink"><<link "The guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are all watching attentively, the mundane act of pouring a beer mesmerising when it's performed by a nearly naked <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> woman. You poise yourself instinctively, stomach taut, back gently arched, one high heel strategically hooked on the footrail.
Flecks of beer spatter you when you click off the tap. With a quick nod to $emilia.firstName, you set the [[rescued pint|TNG-5680 Emilia serves]] back on the counter.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Let me show you how to fix that."
Positioning the pint under the tap, you guide $emilia.firstName's hand, your bare arms brushing together as you show her the proper angle to tilt the glass. Together, you pour a little more beer. Excess foam spills over the side of the glass, spilling over your fingers.
<span class="imageLink"><<link "The guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are all watching attentively, their eyes drawn to the topless <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> women enagaged in this mundane task. You poise yourself instinctively, stomach taut, back gently arched, one high heel strategically hooked on the footrail. Desire's written on all four faces, their gazes lingering on your nearly naked bodies and the fleeting touch between you and $emilia.firstName.
She takes over, finishing the pour with a touch of self-assuredness. The foam recedes, revealing a [[perfectly poured pint of Chang|TNG-5680 Emilia serves]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Emilia slides the beers across the glowing blue bar counter. "That's, um..." You wait patiently for her to do the arithmetic in her head. "<div class="tooltip">฿750<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please."
[[฿700.|TNG-5700 700]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Seven hundred<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$21<<elseif $kate.agency == "mi6">>£13<<elseif $kate.agency == "asis">>$26<<elseif $kate.agency == "csis">>$26<<elseif $kate.agency == "nzsis">>$26<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," you correct her.
"Um, sorry." $emilia.firstName cringes. "Seven hundred."
Grinning, <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slides <div class="tooltip">฿800<span class="tooltiptext"><<if $kate.agency == "cia">>$24<<elseif $kate.agency == "mi6">>£16<<elseif $kate.agency == "asis">>$32<<elseif $kate.agency == "csis">>$32<<elseif $kate.agency == "nzsis">>$32<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> over the bar. "Get yourself drings."
[[Thanks, Jag.|TNG-5710 Thanks Jag]]
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks Jag."
You and $emilia.firstName turn to the cash register, showing your bare backs and butts to the guys.
"Sorry," she mews. "I messed that right up."
[[Don't worry about it.|TNG-5720 Don't worry about it]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry. They're here for the full package."
You watch as she haltingly punches in the drinks order to the cash register, then show her how to ring up two barmaid shots.
[[See that tequila bottle with the blue sticker?|TNG-5730 Fake tequila]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"See that tequila bottle? With the blue sticker?"
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> follows your gaze. "Uh huh."
"That's water. Drink shots out of there if you don't wanna get too drunk."
"Ohhh. Cool."
[[Don't serve it by mistake.|TNG-5740 Don't serve it]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Don't serve it by mistake."
"Right." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "That'd suck."
You reach up and pour two shots of //real// tequila, then turn back to [[Jag and the boys|TNG-5750 Chone gaow]].
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Chone gaow!<span class="tooltiptext">"Touch glasses!" – a common Thai toast</span></div>"
The words roll off your tongue in unison with <span class="imageLink"><<link "the guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and you clink up your shot against their raised bottles and glasses.
The pungent smell of tequila hits your nose as you lift it to your lips.
//[[Knock it down.|TNG-5760 Knock it down, knock it down]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
You share a glance with <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>. <span class="imageLink"><<link "The guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are watching you both, like it's a performance.
With quick tilts of your heads, you knock down the [[fiery shots|TNG-5770 Shots fired]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-eyes-squint>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
A moment of shared recklessness and closeness, performed in front of <span class="imageLink"><<link "your guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The tequila burns warmly within you as you set down the empty glass on the bar.
<span class="greenHighlighter">Jag ''liked'' that.</span> <span class="greenHighlighter">Book ''liked'' that.</span> <span class="greenHighlighter">Nam ''liked'' that.</span> <span class="greenHighlighter">Benz ''liked'' that.</span>
Four youthful male gazes roam over your bodies appreciatively, drinking in the view. Nearly naked, with four young men just looking at you with desire and admiration – it feels like you and <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> are the stars of the show.
It's...[[oddly gratifying|TNG-5790 Pretty. Odd]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Movement catches your eye as. intrigued by the lively atmosphere, a <span class="imageLink"><<link "lone bargirl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_blackSheerBargirlDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> glides over, gaze fixated on <span class="imageLink"><<link "Jag and his friends">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. She's one of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> you brought out for the Brats, but now she's left that group behind.
A quick glance over at the <span class="imageLink"><<link "Chinese brats">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reveals them in their element. Each has a <span class="imageLink"><<link "bargirl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/bargirls4Brats.png']]")>>
<<set Dialog.open()>>
<</link>></span> draped over him, whispering enticing words, laughing at their jokes.
The Brats revel in the attention, playing along with wandering hands and smug grins on their faces while they [[finish their beers|TNG-5791 145 on final]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Split off from the group, <span class="imageLink"><<link "Shorty's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_blackSheerBargirlDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> demeanour exudes cool confidence...but her fidgety fingers betray a hint of nervousness.
She absently tugs and smooths down the sheer, clingy material of her stretchy little dress before she [[makes her approach|TNG-5810 Bargirl approach]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
A quick look at the <span class="imageLink"><<link "Chinese brats">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianTrio.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reveals three entitled douchebags in their element. <span class="imageLink"><<link "Bargirls">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/bargirls4Brats.png']]")>>
<<set Dialog.open()>>
<</link>></span> draped over them, whispering enticing words, laughing at their every joke. The Brats revel in the attention, playing along with smug grins on their faces.
So the <span class="imageLink"><<link "bargirl">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_blackSheerBargirlDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> coming over is the one they...turned away. //God.// Dolling herself up and offering her body, only to be rejected. You can't imagine anything more [[humiliating|TNG-5810 Bargirl approach]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Shorty sidles up next to the boys, leaning on the bar in a way that presents her figure to them, veiled and showcased in a <span class="imageLink"><<link "clingy, see-through dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_blackSheerBargirlDress.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="imageLink"><<link "The guys">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glance her way, their gazes lingering for a moment before they turn back to you and $emilia.firstName, half-smiles forming on their lips.
"Heyyy, $kate.stripperName," she purrs, "who these cool guy?"
[[This is Jag, Nam, Benz and Book.|TNG-5820 Introduced to a whore]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"This is <span class="imageLink"><<link "Jag, Nam, Benz and Book">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/telesalesTeam.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>."
"<div class="tooltip">Aooo<span class="tooltiptext">Ohhh</span></div>," <span class="imageLink"><<link "Shorty">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/noi/noi_blackSheerBargirlDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods, switching her attention to the guys. "<div class="tooltip">Pen khon tee nee reu blao?<span class="tooltiptext">Are you local?</span></div>"
"Uhhhh...<div class="tooltip">chai<span class="tooltiptext">yeah</span></div>," Nam answers cautiously. "<div class="tooltip">Rao tam haan kon cheewit dton meuang.<span class="tooltiptext">We work around the corner</span></div>"
"<div class="tooltip">Tam arai?<span class="tooltiptext">Doing what?</span></div>"
"<div class="tooltip">Tam kamlang haeng baan.<span class="tooltiptext">Just some office stuff</span></div>"
"<div class="tooltip">Kamlang haeng baan?<span class="tooltiptext">Office stuff?</span></div>" She laughs. "<div class="tooltip">Doo dai. Kun chai chai thee nee mai...<span class="tooltiptext">Sounds boring. You boys come here to have fun, right...</span></div>"
<<if hasVisited("GNO-35120 Kate agrees to be a booth babe")>>\
"Umm, $kate.stripperName," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, leaning across the bar. "Can you come to office this week? We need, uh, meesah you. For con-fer-ence."
[[You need to what me?|TNG-5830 What now]]
<<else>>\
More customers arrive at the bar, [[demanding your attention|TNG-5900 Moar customers]].
<</if>>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Huh? You need to what me?"
//"Meesah,"// <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> repeats slowly. He gestures down your nearly naked body. "For clothe."
[[You need my measurements?|TNG-5840 Ohhh meesah]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Ohhh. My measurements."
"Yeah, yeah!" <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Meesah for clothe."
[[I hope you guys aren't dressing me up like a stupid mascot.|TNG-5850 Mascot]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Hope you guys aren't dressing me up like a...big fuckin' phone, or something."
<span class="greenHighlighter">Jag ''liked'' that.</span> <span class="greenHighlighter">Book ''liked'' that.</span> <span class="greenHighlighter">Peet ''liked'' that.</span>
"Haha, no, nevah!" <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "We want you look, uhh, stunning."
[[When?|TNG-5790 When]]
[[Where?|TNG-5800 Where]]
<</page>><<silently>>
<<if hasVisited("TNG-5800 Where")>>
<<emote-mouth-talking>>
<<else>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"When d'you want me?"
"Any time," <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Office start work nine o'clock, we finish six."
<<if hasVisited("TNG-5800 Where")>>\
[[Okay.|TNG-5810 Sure Jag]]
<<else>>\
[[Where?|TNG-5800 Where]]
<</if>>\
<</page>><<silently>>
<<if hasVisited("TNG-5790 When")>>
<<emote-mouth-talking>>
<<else>>
<<emote-mouth-smile>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Where's your office?"
"Silom Road. Just round corner." <span class="imageLink"><<link "Jag">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slides a business card across the bar. "Call if you get loss. We come fine you."
<<if hasVisited("TNG-5790 When")>>\
[[Okay.|TNG-5810 Sure Jag]]
<<else>>\
[[When?|TNG-5790 When]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Sure, Jag. I can swing by."
<span class="greenHighlighter">Jag ''liked'' that.</span> <span class="greenHighlighter">Book ''liked'' that.</span> <span class="greenHighlighter">Nam ''liked'' that.</span> <span class="greenHighlighter">Benz ''liked'' that.</span>
"Khop khun, $kate.stripperName, thang you."
More customers arrive at the bar, [[demanding your attention|TNG-5900 Moar customers]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You glance up at three middle-aged <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div>, dad bods and hairy arms on display, confidently sauntering up to the bar.
Their eyes light up at the sight of you and $emilia.firstName, topless and ready to serve.
<span class="greyedOut">//[Smile]//</span> [[Hello boys.|TNG-5910 Hello boys][$kateSays to "helloBoys"]]
<span class="greyedOut">//[Smile]//</span> [[Hi, what can I get you?|TNG-5910 Hello boys][$kateSays to "whatCanIGetcha"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "helloBoys">>\
"Hello, boys."
<<elseif $kateSays == "whatCanIGetcha">>\
"Hi," you smile. "What can I get you?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You feel a twinge of vulnerability as three men, each old enough to be your father, stare at your exposed breasts. And <span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>, as she hovers beside you. "Hahahaha!" one of them laughs, "ti-tays!"
"Damn, baby. You're a sight for sore eyes." //Americans.//
"Three cold beers, sweetie. Make it quick, we're thirsty."
[[Comin' up.|TNG-5920 Comin up][$kateSays to "Comin' up."]]
[[You got it.|TNG-5920 Comin up][$kateSays to "You got it."]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
As you and <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> pour the pints, the Dad Bods watch attentively, the mundane act of pouring beer fascinating when it's done by two topless young women.
You poise yourself instinctively, stomach taut, back gently arched, a high heel hooked strategically on the footrail.
"Fuck, man. //Perfect// little bods on these two.<<if $kate.braSize == "large">> Check out the tits.<</if>>"
"<<if $kate.piercings.includes("nipplesSilverBarbells")>>Check it out, they both got<<else>>I like the one with the<</if>> nipple piercings. Hey. Bet <<if $kate.piercings.includes("nipplesSilverBarbells")>>they<<else>>she<</if>> fuckin' squeaked when those went in, hahahaha!"
Flecks of ice cold Chang spatter up your body as you click off the taps.
<span class="greyedOut">//[Serve the beers]//</span> [[450, please, guys.|TNG-5930 450 please]]
<<if $kate.piercings.includes("nipplesSilverBarbells")>>\
<span class="greyedOut">//[Serve the beers]//</span> [[Yeah, I squeaked.|TNG-5950 I squeaked]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Four fifty<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$13.50<<elseif $kate.agency == "mi6">>£9<<elseif $kate.agency == "asis">>$18<<elseif $kate.agency == "csis">>$18<<elseif $kate.agency == "nzsis">>$18<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> please, guys."
"I got this. Keep the change, hon." One of the guys slides a <div class="tooltip">violet banknote<span class="tooltiptext">฿500 = <<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> across the bar.
[[Thanks.|TNG-5940 Thanks]]
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks." You get <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessWhiteThong-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> to ring it into the till, and tuck a <div class="tooltip">฿50<span class="tooltiptext"><<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> into the tip jar.
<<if hasVisited("TNG-5950 I squeaked")>>\
"She's alright," chuckles one of the Dad Bods.
"Fine [[ass on her|TNG-6000 Title card]], too."
<<else>>\
"Tight little asses, too," one of the Dad Bods remarks.
"I fuckin' doubt it, man, [[hahahaha|TNG-6000 Title card]]!"
<</if>>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Four fifty<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$13.50<<elseif $kate.agency == "mi6">>£9<<elseif $kate.agency == "asis">>$18<<elseif $kate.agency == "csis">>$18<<elseif $kate.agency == "nzsis">>$18<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> please, guys," you say with a subtle smile. "And yeah, I squeaked."
<span class="greenHighlighter">Steve ''loved'' that.</span> <span class="greenHighlighter">Rob ''loved'' that.</span> <span class="greenHighlighter">Patrick ''loved'' that.</span>
That hangs in the air for an instant...then all three men erupt into raucous, delighted laughter. "Hear that, man? She squeaked!"
"I knew it. Here, sweetie." Grinning ear to ear, his buddy slides a <div class="tooltip">violet banknote<span class="tooltiptext">฿500 = <<if $kate.agency == "cia">>$15<<elseif $kate.agency == "mi6">>£10<<elseif $kate.agency == "asis">>$20<<elseif $kate.agency == "csis">>$20<<elseif $kate.agency == "nzsis">>$20<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> across the bar. "Keep the change."
[[Thanks.|TNG-5940 Thanks]]
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<a data-passage="TNG-6010 Coyotes">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/stripperPoleLaterTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_coyotingYellowTankTop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes out to the bar, dressed for <div class="tooltip">coyoting<span class="tooltiptext">attracting men from the street into the club</span></div>. $emilia.firstName gets to <span class="imageLink"><<link "slip into hotpants and a crop top">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span>, and venture out into the street for a taste of it. Like you did with $amanda.stripperName on your first night.
Slowly, by ones and twos, the bar picks up and gets busier. Regulars arrive, and men drift in from the night market, tempted in by the two Aussie coyotes. The room starts to warm up as more men enter, radiating body heat.
You greet them all with [[warm smiles and cold drinks|TNG-6020 Entertainment]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Ping to stage, please, Ping to stage."//
''7.01 <small>P.M.</small>'' The neon lights dim, casting an eerie glow over the room. Every eye in the club drifts up to the backline.
The music drops and a hush falls over the club. The stage, awash in the soft glow of spotlights, holds its secrets.
The sultry, pulsing rhythm of //Black Velvet// spills out from the PA, and with an air of confident grace, <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowGreenDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> comes [[sashaying out of the shadows|TNG-6030 Lost in music]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She struts to the gleaming stripper pole, grasps it, gazes down on the room from above. In her gothy makeup, she's like some kind of <span class="imageLink"><<link "ethereal nymph">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowGreenDress.png']]")>>
<<set Dialog.open()>>
<</link>></span>, commanding everyone's attention. You stare up at her face, but your eyes don't connect, like she's lost in a world of her own.
//<small>🎵</small>Mississippi in the middle of a dry spell<small>🎵</small>
<small>🎵</small>Jimmy Rogers on the Victrola up high...<small>🎵</small>//
Her body becomes part of the pulsing beat, moving with fluidity and precision. Sensual, artistic and athletic. With each twirl around the pole, she seems to be weaving a story, a testament to the [[hours she's poured into her art|TNG-6040 Get your talents out love]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Black velvet and that little boy's smile<small>🎵</small>
<small>🎵</small>Black velvet with that slow, southern style...<small>🎵</small>//
The song swells into its first chorus. With a sensual pull on a bow, Ping gradually <span class="imageLink"><<link "frees herself of her dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
Catcalls and wolf-whistles punctuate the air, a reminder of the real expectations. Ping's on stage in the Hard Cock Cafe, where women [[bare it all|TNG-6050 Ping's full frontal]] for entertainment.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Always wanting more<small>🎵</small>
<small>🎵</small>He'd leave you longing for...<small>🎵</small>//
Second chorus and her <span class="imageLink"><<link "thong joins the dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowNude.png']]")>>
<<set Dialog.open()>>
<</link>></span>, peeled down gyrating hips and long leather boots, tossed aside like trash. Whoops and wolf whistles, laughter when they see her bikini line is dyed the same fake colour as her hair. Someone's camera phone flashes, capturing the moment.
<<image "/locationPhotos/thailand/hardCockCafe/pingInBoots3.jpg" 30 1000 460 0>>\
With her back against the pole, she slides sensuously down it, spreading her legs wide apart to show them [[everything she's got|TNG-6060 Every breath you take]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>A new religion that'll bring ya to your knees<small>🎵</small>
<small>🎵</small>Black velvet if you please...<small>🎵</small>//
Moving with an almost poetic rhythm, <span class="imageLink"><<link "Ping's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowNude.png']]")>>
<<set Dialog.open()>>
<</link>></span> hips sway in time with the song's sensual pulse. She manoeuvres down onto all fours, twerking to the beat as she mimics being taken from behind by some invisible lover.
Out on the dancefloor, shadows cluster together as men move in for a better look at her vagina. The harsh light of a camera phone blazes away until a bouncer intervenes, forcing the guy to [[put it away|TNG-6070 Show's over]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Less hear for Ping, gentlemeh, bargirl numbah one fife nigh, that's Ping, your first performah..."//
As the track fades out, applause mingles with lewd remarks, and <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowNude.png']]")>>
<<set Dialog.open()>>
<</link>></span> acknowledges it all with a wave and a shy smile.
Then the music resumes, and she's left to [[gather up her clothes and slink offstage|TNG-6080 Business time]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Black velvet and that little boy's smile<small>🎵</small>
<small>🎵</small>Black velvet with that slow, southern style...<small>🎵</small>//
Ping's clothes come off in time with the music, dropping onto the stage piece by piece until she's totally naked.
//[TK placeholder for original art]//
<<image "/test/pingHolder.png" 0 512 384 0>>\
She finishes her show on the floor, writhing on her back and crawling on her hands and knees, spreading her slim golden legs wide apart for the audience, [[over and over|TNG-6040 Business time]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
As <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowLeavingStage.png']]")>>
<<set Dialog.open()>>
<</link>></span> disappears, the real business begins. The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> emerge from backstage like predators on the prowl, all skimpy outfits, towering heels, and sultry makeup.
<<image "/dynamicAvatars/groups/sixThaiBargirlsOnTheProwl2.png" 60 1000 470 0>>\
Perfume mixes with the smells of sweat and booze as your colleagues work the crowd with practised finesse. They sidle up to men, offering charming smiles, lingering eye contact, hopeful touches.
In this realm, everything's upside down. [[The women are the ones on the hunt|TNG-6090 Women are the hunters]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Meanwhile...the men ignore and reject girls who wouldn't look //once// at them in the street. They become the gatekeepers, deciding which of these young, toned beautiful creatures get rewarded with their attention. And their money.
A sociologist could probably write a thesis on this place.
Watching from behind the bar, you can see a range of emotions flickering across the bargirls' faces as they flit between groups of men – confidence, playfulness, hope, rejection, resilience. [[Offering themselves, over and over again|TNG-6100 Coyote return]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_coyotingYellowTankTop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> drift back in from their <div class="tooltip">coyoting<span class="tooltiptext">attracting men from the street into the club</span></div> adventure, weaving gracefully through the crowd on high heels.
Spotting a familiar face, $gina.nickname greets him warmly, wrapping her arms around his neck in an affectionate hug.
$emilia.firstName ducks under the counter and joins you behind the bar.
[[How was it?|TNG-6110 How was it?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How was it?" The music's been dialled up a little, you have to raise your voice to be heard.
"Uh...weird," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> admits. "Felt like a hooker."
[[I know what you mean.|TNG-6120 Felt like a hooker][$kateSays to "Yeah. Know what you mean,"]]
[[It gets easier.|TNG-6120 Felt like a hooker][$kateSays to "Gets easier,"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays" you <<if $kateSays == "Gets easier,">>promise<<else>>nod<</if>>.
A thumping 4/4 bassline envelops your conversation and, for a moment, you both stay quiet, tuned in to the cadence of the club's heartbeat.
"Do I have to, um..." The bar's getting busy; <span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> eyes flicker between the men waiting for service, and the skimpy crop top and hotpants she's wearing. She doesn't say //strip,// but you know that's what she means. "Right here?"
[[Want a shot first?|TNG-6130 Kate shot first]]
[[You can do it.|TNG-6190 You got this]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Want a shot first?" you offer, trying to lighten the mood.
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods gratefully. The clamour of the bar surrounds you, and you're acutely aware of the eyes lingering on your body as you grab two shot glasses and [[turn to the liquor rail|TNG-6140 Shots fired]].
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Eyes follow your movements, hungrily consuming the sight of your body in motion, as you raise two shot glasses up to the optics.
Some men leer at your backside, others let their eyes wander past you, catching glimpses of your breasts lifting up in the mirrored backbar.
Every action, no matter how innocent, becomes a performance for their voyeuristic pleasure.
<<link "//Drink shots with $emilia.firstName.//" "TNG-6150 Drink shots with Emilia">><</link>>
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You raise your glass to <span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
Even now, their eyes linger, turning this moment of solidarity into a show for an audience.
[[To us.|TNG-6160 To us]]
[[No regrets.|TNG-6170 No ragrets]]
<<if hasVisited("TNG-2649 Fuck him then")>>\
[[Fuck your dad.|TNG-6175 Fuck your dad]]
<<else>>\
[[Fuck it.|TNG-6180 Fuck it]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"To us."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
"To us," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods.
<<include "TNG-6181 Clink">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No regrets."
<span class="greenHighlighter">$emilia.firstName ''liked'' that.</span>
"No regrets," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> echoes, nodding with newfound determination.
<<include "TNG-6181 Clink">>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck your dad."
<span class="greenHighlighter">$emilia.firstName ''loved'' that.</span>
"Ohmygod!" <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Okay. Fuck my dad!"
<<include "TNG-6181 Clink">>\
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck it," you smirk mischievously.
<span class="greenHighlighter">$emilia.firstName ''loved'' that.</span>
"Fuck it," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> grins back.
<<include "TNG-6181 Clink">>
<</page>>The clink of the shot glasses fills the air, and you each knock down a [[fiery shot of tequila|TNG-6190 Knock it down II]].<<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"'Rayyyy!" A cheer goes up from some of the men at the bar as the tequila burns in your throat. They raise their own drinks in a toast, as if they're part of the camaraderie, not just observers.
"Hnnnh." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> sighs anxiously, eyeing the guys, knowing what she has to do next.
[[You got this.|TNG-6190 You got this]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"You got this," you promise her. "Deep breath, just go for it."
"Fuuuck." All the guys at the bar are staring at <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> now, their gazes hungry and expectant.
[[Come on.|TNG-6200 Come on]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You can do it," you promise her. "Take a deep breath and go for it."
$emilia.firstName casts a nervous glance at the guys on the other side of the bar. Something about the conversation you two are having has pricked several men's attention, and she swallows nervously.
[[Come on.|TNG-6090 Come on]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Come on." You nod encouragingly.
<span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> hands flutter nervously up to the sides of her crop top.
"Yesss..." an urging shout comes out from some guy at the bar, and $emilia.firstName freezes, catching his gaze.
[[Get it over with.|TNG-6100 Get it over with][$kateSays to "getItOverWith"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "getItOverWith">>\
"Get it over with," you advise.
<<elseif $kateSays == "doIt">>\
"Do it," you nod.
<<elseif $kateSays == "takeItOff">>\
"Take it off," you insist.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> takes a deep breath, her hands still poised at her sides. She stares back at the men uncertainly.
"Off, off, off!" shouts the first guy, slapping the bar counter.
His mates take up the cry, grinning as they join in. //"[[Off! Off! Off!|TNG-6110 Off off off]]"//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck." <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_coyotingOutfit.png']]")>>
<<set Dialog.open()>>
<</link>></span> swallows hard, caught between the expectations of the men and her own insecurities.
//"Off! Off! Off!"//
You're standing right next to her, already topless...but all the attention's on the girl in the crop top. They can sense her reluctance to take it off, and they're [[relishing it|TNG-6120 Humiliating strip]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a mix of determination and vulnerability, $emilia.firstName takes a final deep breath. Then in one smooth, swift motion, she <span class="imageLink"><<link "peels her top over her head">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_toplessHotpants.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
The bar erupts with hoots and applause, the men cheering and whistling as $emilia.firstName's [[breasts go back on display|TNG-6121 Bar no bra]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Cheeks colouring, she keeps going, hooking her thumbs into the waistband of her skimpy hotpants, carefully <span class="imageLink"><<link "peeling them down">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_hotpantsComingDown.png']]")>>
<<set Dialog.open()>>
<</link>></span> over her hips.
The clamor at the bar blends into a cacophony of crude comments and laughter as she [[takes them off|TNG-6130 Back to work]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> just stands there, her bare breasts on display, amidst the boisterous cheers, whistles and crude comments from the men she brought in.
She tries her best to put on a confident smile, but it looks more like a sickly grimace.
"Nice tits, slag!"
"Fuckin' hell," some wag shouts, "keep going!"
"Yeahhh love, don't stop now, hahahaha!"
//"Off! Off! Off!"//
//[[Guide her back to the bar.|TNG-6200 Let's go to work]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"C'mon." Pressing <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> forward with your fingers in the small of her back, you put on a big smile for the men. "Hey guys, what can we get you?"
"Knickers off and a blowjob please, love," a chubby <<if $kate.agency == "mi6">>northern<<else>>British<</if>> lad quips, getting a laugh out of his mates.
A vivid memory of what you did in the VIP flashes into your mind.
[[Sorry, not on the menu.|TNG-6210 Not on the menu]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry," you smile sweetly. "Not on the menu."
"Well, what is on the menu, love?"
[[We're just barmaids. You can hook up with a bargirl, though.|TNG-6220 Just barmaids]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're just barmaids," you explain. After your experience in the VIP, it feels good to re-establish some boundaries. "We've got <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> you can hook up with, though. Private rooms upstairs."
"Someone say bargirl?" Still dressed for coyoting, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_coyotingYellowTankTop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swoops in on cue. Her eyes sparkle with mischief as she leans casually against the bar, exuding confidence. "<<link "I'm $gina.stripperName" "TNG-6230 I'm Gina">><</link>>."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The men's attention immediately shifts to <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_coyotingYellowTankTop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, their eyes lingering appreciatively on her trim figure. "'Ello $gina.stripperName," one of them laughs.
"Hi. Sooo...what can a broke, horny Aussie chick do for six English studs on their holiday?"
"Fuuuck," one exclaims.
"Can think of a few things, darlin'," says another.
"Mmmh, me too," $gina.nickname agrees. "What about...all six of you take me upstairs, we lock the door...and you guys [[run a fuckin' train|TNG-6240 U srs?]] on me? Ever done that to a girl?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Stunned silence for a moment.
"You, er...you serious?" the chubby one asks.
"Uh huh," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_coyotingYellowTankTop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "<div class="tooltip">Twenty five hundred<span class="tooltiptext">฿2500 = <<if $kate.agency == "cia">>$75<<elseif $kate.agency == "mi6">>£50<<elseif $kate.agency == "asis">>$100<<elseif $kate.agency == "csis">>$100<<elseif $kate.agency == "nzsis">>$100<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> each. And you boys can be a little rough if you want, I don't mind."
Shrugs, hushed conversation and nervous laughs are exchanged amongst the boys. Then wallets come out, and <div class="tooltip">฿15k<span class="tooltiptext"><<if $kate.agency == "cia">>$450<<elseif $kate.agency == "mi6">>£300<<elseif $kate.agency == "asis">>$600<<elseif $kate.agency == "csis">>$600<<elseif $kate.agency == "nzsis">>$600<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in colourful banknotes gets pressed into $gina.nickname's hand.
"We're gonna have fun." She leads them across the dancefloor towards the neon yellow archway, and [[doesn't reappear for a couple of hours|TNG-6241 Two girls one club]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> move on to serve other customers, moving in harmony as you pour beers and take money.
<div class="tooltip">Bargirls<span class="tooltiptext">Club prostitutes</span></div> gracefully weave through the crowd, their toned and curvy bodies showcased in lace, lycra and leather. In a room starting to fill up with men, they're like dazzling sirens, oozing sensuality and allure under the dim lights.
They come and go, only flirting for as long as it takes to enchant a new client, and lead him off towards the neon yellow archway.
Between their visits, the weight of every gaze on side of the bar rests on <<link "you and $emilia.firstName" "TNG-6242 Eye candy">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Topless and on display in heels, lingerie and makeup, you two are the ever-present eye candy. Looking good and serving drinks to a soundtrack of rock songs written before you were born.
It's not something you ever could have imagined yourself doing – let alone enjoying. But...you kind of do. Once you're over the humiliation of it, there's just something hot about the way they look at you. The lingering gazes on your body. Occasional moments of smouldering eye contact with some male stranger.
You play it cool, but something about being on display like this always sends a tingle up your spine and a stirring arousal in your breasts and your groin. [[Stiff nipples, wet pussy|TNG-6343 Emilia]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You keep an eye on <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>, but she's settling into the role with growing assurance. Her once hesitant movements carry an easy feminine grace, an instinctive little sway in her hips when she moves behind the bar with a half-dozen men watching.
You catch her eye and she smiles back, a glint of newfound confidence in her eyes.
You feel the energy in the bar rising, the atmosphere shifting subtly. You know what's coming next – the music's going to get louder, and soon you'll be up on the footrail to take orders.
<<link "Hey $emilia.firstName, get ready, the music's going up soon." "TNG-6344 Emilia get ready">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You lean in close to give <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> the heads up. Two <span class="imageLink"><<link "guys at the bar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/seedyFriends.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eye you both, their gazes lingering on your half-naked bodies.
"Hey, $emilia.firstName, get ready," you say. "Music's gonna get loud soon, you need to get up on the rail to take orders."
"Uhhh...okay," she nods, looking down at it.
[[Just hook your heel on and stand up.|TNG-6345 Just hook your heel on and stand up]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Just hook your heel on and stand up," you explain.
"Right," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods along. "Got it."
The <span class="imageLink"><<link "guys across the bar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/seedyFriends.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> seem to inch closer.
[[Guys can get handsy, don't let it rattle you.|TNG-6346 RIP Mr Hands]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Guys can get handsy when you're up on the rail." She saw it happening to you on the night she came in, but it feels right to remind her. "Don't let it rattle you. All part of the job, okay?"
The <span class="imageLink"><<link "guys at the bar">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/seedyFriends.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> exchange smirks and nudges, clearly eavesdropping on your conversation. It's frustrating how they feel entitled to intrude on even this small moment of mentorship between you and <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>, but you push it out of your mind.
"Uh, yeah," $emilia.firstName nods uncertainly. "Think so."
[[Just watch and copy me.|TNG-6347 Watch and learn]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Just watch me when I'm up there, okay? It's not as bad as it looks."
"Alright," <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods, her gratitude evident. "[[Thanks|TNG-6500 8PM]]."
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Just a small town girl, livin' in a lonely world<small>🎵</small>
<small>🎵</small>She took the midnight train, goin' annnywhere....<small>🎵</small>//
''8.01 <small>P.M.</small>'' About forty guys are in the club. The music goes up just as [[one of your regulars|TNG-6520 Aussie Jack]] arrives at the bar.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The music goes up, and it's too loud to talk any more. To serve a customer, you have to step up on the footrail and lean out over the bar so they can shout in your ear. And paw your boobs.
Before this mission, you could name every single man who's ever touched your bare breasts. Now it's not just you can't name them...you can't even [[count them|TNG-6520 First contact]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is a retired Aussie miner, who spends several months a year in Thailand.
He's been coming to Patpong for more than a decade, and he likes you; you're toying with the idea of cultivating him as some kind of minor asset somehow, he might know some things about Kriangsak or just the history of the club.
You glance over your shoulder, making brief eye contact with <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greyedOut">//[Get up on the rail]//</span> [[Hey Jack, what can I get you?|TNG-6530 Hey Jack]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You hook a heel on the footrail and lean up across the bar. "Hey Jack!"
"Here she is!" <span class="imageLink"><<link "Jack's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands cup your naked breasts, giving them a gentle squeeze. First guy of the night to touch them. //Except Bonaht.//
"Bloody hell, girl!" Holding your breasts, he turns laughingly to the <span class="imageLink"><<link "young guy with glasses">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fritzGlassesGuy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waiting beside him at the bar. "Mate, this is $kate.stripperName. Her nipples are always rock hard!"
[[It's the aircon, I can't help it!|TNG-6540 Kate blames the aircon]]
<</page>><<silently>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Anticipation.* You're a little turned on. You feel ready to flirt and be admired.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Nipples hard, pussy wet. Flirty and fantasising about being seduced.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* DTF. Flirty, receptive and open to suggestion. Lowered inhibitions.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<if $kate.arousal lt 7>>
<<set $kate.arousal += 1>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</if>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"It's the aircon," you shout, "I can't help it!"
"Aircon!" <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. He presses your stiff nipples between his chunky fingertips, and gives them a little //pinch// that makes you gasp. "I bet!"
[[What can I get you?|TNG-6560 What can I get you]]
<</page>><<silently>>
<<if $kate.arousal lt 2>>
<<set _arousalAlert to "*Unaroused.* Unconcerned with sex, externally focused, uninfluenced by male interest.">>
<<elseif $kate.arousal lt 4>>
<<set _arousalAlert to "*Aroused.* Positively triggered by sexual content, increased awareness of male interest, small lapses into sexual imaginings.">>
<<elseif $kate.arousal lt 6>>
<<set _arousalAlert to "*Turned On.* Seeking sexual content, high awareness of male interest, actively fantasising, loss of focus, energised.">>
<<elseif $kate.arousal lt 8>>
<<set _arousalAlert to "*Horny.* Sexually focused, receptive and open, lowered inhibitions, inwardly focused, suggestible.">>
<<elseif $kate.arousal lt 9>>
<<set _arousalAlert to "*Edging.* Strong sexual and internal focus. Blissful, diminished awareness, self-acceptance.">>
<</if>>
<<if $kate.arousal lt 7>>
<<set $kate.arousal += 1>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</if>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Just pleased to see ya."
<span class="greenHighlighter">Jack ''liked'' that.</span>
"You're the hottest little thing here." <span class="imageLink"><<link "Jack's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beard tickles your ear when he speaks into it. He doesn't stop playing with your nipples. Little erotic starbursts tingle through your breasts, in time with his firm but gentle tweaks and pinches.
[[What can I get you?|TNG-6560 What can I get you]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"What can I get <<if hasVisited("TNG-6540 Kate blames the aircon") or hasVisited("TNG-6550 Just pleased to see ya")>>you<<else>>ya<</if>>?"
"Who's working tonight?" <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts. He doesn't stop playing with your nipples. Little erotic starbursts tingle through your breasts, in time with his firm but gentle tweaks and pinches.
<<link "$gina.stripperName." "TNG-6561 Gina">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$gina.stripperName," you shout back. Jack likes the <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls. "But she's upstairs."
"Ahhh, no problem, I'll wait. Get me a Singha, will ya, cutie?"
[[Sure thing.|TNG-6562 Sure thing]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Sure thing."
One last //flick// of your nipples, then <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets you slither down from the bar.
//[[Grab him a beer from the fridge.|TNG-6570 Get Jack a beer]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn and strut to the fridge, knowing Jack's gaze will be lingering on your ass all the way there.
<<if $kate.arousal gt 0>>\
<span class="greyedOut">//[Sexually Aroused]//</span> //[[Put on a show for him.|TNG-6580 Bottom shelf service]]//
<<else>>\
<span class="greyedOut">//[Arousal too low] Put on a show for him.//</span>
<</if>>\
//[[Just get him a beer.|TNG-6590 Normal service]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A waft of cold air rolls out as you open the fridge.
Knowing he's watching, you take your time, sliding your hand down the cool surface of the fridge and bending all the way down to the bottom shelf for a beer.
<span class="greenHighlighter">Jack ''loved'' that.</span> <span class="yellowHighlighter">Jack will ''remember'' that.</span>
You grasp the chilled neck of a tall Singha bottle, dripping wet with condensation.
//[[Serve it to Jack.|TNG-6600 Here you go Jack]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A waft of cold air rolls out as you open the fridge. Bending over slightly, you reach down and grasp the chilled neck of a tall Singha bottle, dripping wet with condensation.
//[[Serve it to Jack.|TNG-6600 Here you go Jack]]//
<</page>><<silently>>
<<showFront>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">200<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$6<<elseif $kate.agency == "mi6">>£4<<elseif $kate.agency == "asis">>$8<<elseif $kate.agency == "csis">>$8<<elseif $kate.agency == "nzsis">>$8<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, please, Jack."
"Here you go, sweetie." <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands you <div class="tooltip">three crumpled red notes<span class="tooltiptext">฿300 = <<if $kate.agency == "cia">>$9<<elseif $kate.agency == "mi6">>£6<<elseif $kate.agency == "asis">>$12<<elseif $kate.agency == "csis">>$12<<elseif $kate.agency == "nzsis">>$12<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> from his wallet. "Just tuck that in your knickers," he shouts, "this bloke's next."
He gestures to <span class="imageLink"><<link "Glasses Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fritzGlassesGuy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greyedOut">//[Step up on the rail]//</span> [[Hi, what can I get you?|TNG-6610 Glasses Guy]]
<</page>><<silently>>
<<emote-mouth-open>>
<<set $avatar.underwear.pushUnique("/accessories/thongMoney/08_thongMoney-300Baht")>>
<</silently>>\
<<header>>\
<<page>>\
You tuck <span class="imageLink"><<link "Jack's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> money into the waistband of your thong, and step up on the rail for <span class="imageLink"><<link "Glasses Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fritzGlassesGuy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Hi, what can I get you?"
"Errr...how much costs beer here?" His breath is hot in your ear. Euro accent, German or Austrian.
[[Chang's ฿150, Singha and Leo are ฿200.|TNG-6620 Beer prices]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Chang's 150, Singha and Leo are 200."
"Go onnn," <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nudges <span class="imageLink"><<link "Glasses Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fritzGlassesGuy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> encouragingly. "Yer allowed."
"Errr..." a moment's hesitation, then his hands tentatively [[cup your bare breasts|TNG-6630 Sorry how much]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
A moment of silent eye contact with <span class="imageLink"><<link "Glasses Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fritzGlassesGuy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, your stiff nipples pressing into his eager palms.
"Errr...sorry, how much?"
[[Chang's ฿150, Singha and Leo are ฿200.|TNG-6640 Beer prices II]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"I said Chang's 150, Singha and Leo are 200."
"Chang, <div class="tooltip">bitte<span class="tooltiptext">please</span></div>."
[[Coming right up.|TNG-6650 Coming right up]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Coming right up."
You slither down off the rail, set a fresh pint glass under the Chang tap, and click it on.
Another customer is waiting to catch your eye, a <span class="imageLink"><<link "lanky, sunburned tourist">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a sweaty tank top.
<span class="greyedOut">//[Get up on the rail]//</span> [[What can I get you?|TNG-6660 Third groper]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You hook a high heel on the footrail and push yourself back out there. "What can I get you?"
"Whatcha got on draft?" <span class="imageLink"><<link "Sunburn">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts in your ear. Aussie accent.
[[Chang, it's ฿150.|TNG-6670 Chang it's what we got]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Chang," you shout. "It's 150."
New hands cup your breasts. <<if $kate.braSize == "large">>"Fuck," <span class="imageLink"><<link "Sunburn">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> exclaims. "You got huge tits."<<else>>"I love your tits," <span class="imageLink"><<link "Sunburn">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts.<</if>>
<<if $kate.braSize == "large">>\
[[I know!|TNG-6680 I know]]
<<else>>\
[[Thanks!|TNG-6680 I know]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "large">>\
"I know!"
<<else>>\
"Thanks!"
<</if>>\
"Can I jizz in your face?"
<span class="greyedOut">//[Point out a bargirl]//</span> [[Ask her. D'you wanna Chang?|TNG-6690 Ask Ping]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Ask her," you shout, pointing out <span class="imageLink"><<link "Ping">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowGreenDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> as she moves through the crowd. "D'you want a Chang?"
"Yeah, alright," shouts <span class="imageLink"><<link "Sunburn">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Serve drinks.|TNG-6700 Multi tasking]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You deftly slide down out of his grip, and set up another pint of Chang under a tap.
Flecks of cold beer spatter your body as you click off the first tap. With a subtle sway of your hips, you carry it back to <span class="imageLink"><<link "Glasses Guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/fritzGlassesGuy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, whose eyes are eagerly fixed on you.
"One Chang," you shout over the music, placing the cold glass in front of him. He hands over <div class="tooltip">three blue fifties<span class="tooltiptext">฿150 = <<if $kate.agency == "cia">>$4.50<<elseif $kate.agency == "mi6">>£3<<elseif $kate.agency == "asis">>$6<<elseif $kate.agency == "csis">>$6<<elseif $kate.agency == "nzsis">>$6<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in return.
Catching your eye, <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points a chunky finger down at...your belly button?
[[Huh?|TNG-6710 Huh]]
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Huh?" you shout, confused.
<span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stabs his finger again at...//ohhh.// Your underwear. He wants you to put the money...//oh.//
<span class="greyedOut">//[Tease him]//</span> [[Put it in the till?|TNG-6720 Kate teases Jack]]
[[Put it in my thong?|TNG-6730 In my thong?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A smirk tugs at your lips as you pretend not to understand. "You want me to put it in the till?"
<span class="greenHighlighter">Jack ''liked'' that.</span>
<span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes his head, a mischievous glint in his eyes. He points again at your underwear.
[[Oh, in my thong?|TNG-6730 In my thong?]]
<</page>><<silently>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-6720 Kate teases Jack")>>\
"Ohhh, you want it here?"
<<else>>\
"Money in my <<knickers>>?" you shout.
<</if>>\
<span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods with a lecherous grin.
[[Okay...|TNG-6740 Money fetish]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smirk>>
<<set $avatar.underwear.pushUnique("/accessories/thongMoney/08_thongMoney-150Baht")>>
<</silently>>\
<<header>>\
<<page>>\
With a shrug and a playful smirk, you slip the money into the side of your thong. <span class="imageLink"><<link "Jack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/jackAussieMiner.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rewards you with an approving nod.
<span class="greenHighlighter">Jack ''liked'' that.</span>
<span class="imageLink"><<link "Sunburn's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glass is nearly full. You scoop it up, and expertly tip the beer tap to top it off with a perfect head. Chang spatters your bare belly when you click it off.
//[[Serve his pint.|TNG-6750 Serving Sunburn]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You slide it across the bar counter. <span class="imageLink"><<link "Sunburn">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/lankySunburnedTourist.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes a brief break from shouting in <span class="imageLink"><<link "Ping's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ping/ping_blackVelvetStripShowGreenDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> ear to pass you the ฿150 – she pops her eyebrows at you while he's not looking, then goes back to listening attentively to his proposition.
Okay...three guys in about thirty seconds, you couldn't possibly have put on a better demonstration than that. You glance over at <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span>, who's gazing back with more than a little bit of trepidation.
//[[Reassuring nod.|TNG-6760 The nod]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She knows what she's got to do. You give her a slight, reassuring nod.
<span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> hesitates for a moment. Takes a deep breath.
Then, with a surge of determination, she rises above the noise, stepping up on the footrail, her [[body framed by flickering neon lights|TNG-6770 Railed]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Eager hands cup <span class="imageLink"><<link "$emilia.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> breasts immediately. Another man slides a paw down her midriff, leaning across the bar to cup a handful of her butt.
She squirms slightly, but [[stays up on the rail|TNG-6780 Cashing up]], listening to the man shouting in her ear.
<</page>><<silently>>
<<set $avatar.underwear.delete("/accessories/thongMoney/08_thongMoney-300Baht")>>
<<set $avatar.underwear.delete("/accessories/thongMoney/08_thongMoney-150Baht")>>
<<showRear>>
<<emote-calm>>
<<if hasVisited("GNO-13210 Cheeky robin egg blue")>>
<<set _pink to "blue">>
<<elseif hasVisited("GNO-13230 Cheeky rose red")>>
<<set _pink to "fuchsia">>
<<elseif hasVisited("GNO-13240 Cheeky flamingo pink")>>
<<set _pink to "pink">>
<<else>>
<<set _pink to "black">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Turning back to the till, you cash up the last three orders, hips subtly tilted to flatter your curves.
Polaroids of barmaids past and present are tacked up all around the backbar. You gaze back from one of them<<if hasVisited("GNO-30300 Smile")>>, wearing skimpy _pink <<knickers>> and a surprised smile.<<else>>, wearing skimpy _pink <<knickers>> and a big smile.<</if>>
//"Alright gentelmeh,"// the DJ's voice booms over the PA. //"Tonight first dildo show about to stah. Noi to stage, please, Noi to stage..."//
//[[Serve more drinks.|TNG-6800 Montage]]//
<</page>><<silently>>
<<showFront>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Pounding music, <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> stripping on stage and selling themselves out on the club floor. Men of all races and ages lining up at the bar, drinking beers and shots, shouting in your ears while they fondle your tits.
The thing in the VIP with Bonaht finally fades into memory. Now you're just in the moment, working in harmony with $emilia.firstName, serving drinks, letting men squeeze your breasts and play with your nipples, your pussy hot and wet and //confined// within the [[teasing fabric of your thong|TNG-6810 Emilia go home]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
''12.15 <small>A.M.</small>'' <span class="imageLink"><<link "$emilia.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_whiteThongTopless.png']]")>>
<<set Dialog.open()>>
<</link>></span> gets to finish early, like you did on your first night. <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> collects her from the bar, and [[walks her backstage|TNG-6820 Bymilia]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A little later you glimpse her again – back in her <span class="imageLink"><<link "street clothes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/dani/dani_redShortsWhiteTopMadeUp.png']]")>>
<<set Dialog.open()>>
<</link>></span>, threading her way out towards the main doors.
She's got a <<if $borrowedDress == "kittenWetLookBlackCrissCrossDress">>little black dress<<elseif $borrowedDress == "onePieceCowlNeckBurgundyMiniDress">>little maroon dress<<elseif $borrowedDress == "blackDeepVDualSlitJerseyMaxi">>slinky black dress<<else>>little purple dress<</if>> slung over her shoulder. You can't be sure, but you think it might be the same one you borrowed for the date with Mr Kriangsak. <<if $borrowedDress == "kittenWetLookBlackCrissCrossDress">>With the criss cross.<<elseif $borrowedDress == "onePieceCowlNeckBurgundyMiniDress">>With the cleavage down to the belly button.<<elseif $borrowedDress == "blackDeepVDualSlitJerseyMaxi">>With the cleavage and the slits.<<else>>With the slashed up front.<</if>>
A middle-aged guy waves a handful of colourful Thai banknotes to get your attention. "Hey gorgeous, get me [[another Chang|TNG-6830 Bar BJ]] over here!"
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The men around him are laughing incredulously at something, and when you serve him an ice cold pint, you realise why – <span class="imageLink"><<link "bargirl 132, Fah,">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/fah/fah_barBJSceneBlackDressPasties.png']]")>>
<<set Dialog.open()>>
<</link>></span> is on her knees at his feet.
Wearing a long sheer gown, her head bobs as she sucks his dick. He hands over the money with a shit-eating grin.
//[[Cash it up and keep serving.|TNG-6840 Single handed]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The revelry continues as you cash up and continue serving.
While you're pouring a round of shots, <span class="imageLink"><<link "Fah">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/fah/fah_barBJSceneBlackDressRightPastyPeeledDown.png']]")>>
<<set Dialog.open()>>
<</link>></span> gets back up to her feet, wiping her lips, men hooting and cheering her performance.
Men cluster around her. One nipple pastie, partly peeled down, [[dangles from her breast|TNG-6841 Pasty off]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A guy reaches up and <span class="imageLink"><<link "peels it off">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/fah/fah_barBJSceneBlackDress1PastyOff.png']]")>>
<<set Dialog.open()>>
<</link>></span>, without asking permission. He sticks it to his mate's forehead and laughs.
Fah's too busy being propositioned by several men at once to react. One of them beckons you over so he can [[buy her a shot|TNG-6842 Shots fired]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Someone else <span class="imageLink"><<link "peels off the other pastie">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/fah/fah_barBJSceneBlackDressPastiesOff.png']]")>>
<<set Dialog.open()>>
<</link>></span> while she knocks down her shot, baring both her nipples.
Then another guy slips a handful of violet banknotes into her hand, urging her back down [[onto her knees|TNG-6850 One at a time]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
As the night wears on, the energy of the club wanes, one orgasm at a time. Men come and go – literally, come and go – leaving behind the traces of fleeting encounters and the faint scent of desire lingering in the air.
As the crowd thins out, <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> start slinking home early, just a couple of working girls staying on to try and wring one or two final clients out of the night.
This is normally the time Connor plucks you off the bar for a fuck, but with him away, you have to finish your [[whole shift|TNG-6860 Clean down]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<<wear-blueLatexSurgicalGloves>>
<</silently>>\
<<header>>\
<<page>>\
You clean down as you go, fingers encased in tight wet latex, the damp cloth in your hand tracing over the bar's smooth surface. The smell of cleaning products fills the air, mingling with the lingering aroma of alcohol and sweat. //Scrub, scrub, scrub,// stop thinking about sex.
But it's hard when you're stripped, in heels, with five guys watching you like you're doing some kind of floorshow. Their eyes are locked longingly on every movement, every bend.
It makes it [[hard to focus|TNG-8000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
A stranger catches your eye. You step back up on the footrail and lean out, tilting your neck and offering your ear.
The brush of fingertips on your bare nipples sends a shiver down your spine, a mix of discomfort and a familiar submissive thrill. His voice tickles your eardrum as he shouts an order in heavily accented French.
In that moment – draped over the bar, with your butt in the air, a stranger's hands cupping your breasts – <<link "your eyes meet $emilia.firstName's" "TNG-6710 Acharai">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$emilia.firstName saw you doing this on the first night she came in here, with her fuckboy boyfriend. She knows it's part of the job.
You hold her gaze, letting her watch you casually let someone [[tug on your nipples|TNG-6720 Emilia goes for it]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$emilia.firstName hesitates for a moment. Then, with a surge of determination, she rises above the noise, stepping up on the footrail, her body framed by flickering neon lights.
Eager hands cup her breasts immediately. Another man slides a paw down her midriff, leaning across the bar to cup a handful of her butt.
She squirms slightly, but [[stays up on the rail|TNG-6730 Stepping down]], listening to the man shouting in her ear.
<</page>><<silently>>
<<set $passagePool to [
"BML-100 Pincher",
"BML-200 Too pretty just to tend bar"
]>>
<<set $timestamp to "9.06">>
<<set $encounterExit to "TNG-6800 Back to the bar">>
<</silently>>\
<<header>>\
<<page>>\
You gracefully descend from the rail to fix Frenchie his drink.
//Fuck.// You're properly turned on while you mix up his rum and coke. The electric sensation lingers between your thighs, confined by the <<link "teasing fabric of your thong">>
<<if $passagePool.length gt 0>>
<<set _chosenEncounter to $passagePool.pluck()>>
<<else>>
<<set _chosenEncounter to "BMET-404 Encounter not found">>
<</if>>
<<goto _chosenEncounter>>
<</link>>.
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//[TK placeholder for original art]//
<<image "/test/capturaDeTela.png" 0 1000 563 0>>\
''10.00 <small>P.M.</small>'' Two of the Thai <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> do a girl/girl show up on the stage. The momentary lull at the bar gives you the chance to grab a drink of water and check in with $emilia.firstName.
"Bloody hell," she murmurs, eyes wide at the sight of two oily, stripped women taking it in turns to slobber and drool on an oversized silicone dildo.
You remember being similarly shocked at your first glimpse of a girl/girl show. It doesn't feel like such a big deal any more.
[[You get used to it.|TNG-6810 You get used to it]]
[[Men are obsessed with lesbians!|]]
[[Wait 'til you see a bottle show.|]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<set $timestamp to "9.48">>
<<set $encounterExit to "TNG-6900 Back to the bar">>
<</silently>>\
<<header>>\
<<page>>\
"You get used to it," you assure her.
$emilia.firstName raises her eyebrows doubtfully.
<<link "//Back to work.//">>
<<if $passagePool.length gt 0>>
<<set _chosenEncounter to $passagePool.pluck()>>
<<else>>
<<set _chosenEncounter to "BMET-404 Encounter not found">>
<</if>>
<<goto _chosenEncounter>>
<</link>>
<</page>><<silently>>
<<showFront>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//TK Crush you need to add the boob shake scene from the beat sheet.//
The rest of the shift unfolds as usual. $emilia.firstName gets to finish early, like you did on your first night.
You catch a glimpse of her back in her street clothes, striding out of the club as fast as her feet can carry her, and you wonder if you'll [[ever see her again|TNG-8000 Title card]]. <- tk carrying the same stripper dress kate borrowed for the kriangsak date?
<</page>><<silently>>
<<emote-calm>>
<<remove-blueLatexSurgicalGloves>>
<<set $header.line1 to "''MANAGER\'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-8010 Paid up">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/officeTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
''2.13 <small>A.M.</small>'' Finally, you, <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> gather in the office to collect your pay and be dismissed.
<span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> meticulously counts out the pay, and gives you each a share of the bar tips. Half goes to the club, the rest gets shared amongst the barmaids.
Once that's all handed out, he peels off an extra <<if hasVisited("TNG-12230 Kate doubles her price") or hasVisited("TNG-12240 Go big or go home")>><div class="tooltip">three brown banknotes<span class="tooltiptext">฿3000 = <<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><<else>><div class="tooltip">three violet banknotes<span class="tooltiptext">฿1500 = <<if $kate.agency == "cia">>$45<<elseif $kate.agency == "mi6">>£30<<elseif $kate.agency == "asis">>$60<<elseif $kate.agency == "csis">>$60<<elseif $kate.agency == "nzsis">>$60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div><</if>>, and slides them across the desk to you.
"Good job with Bonaht."
<span class="greyedOut">//[Pick it up]//</span> [[Thanks.|TNG-8020 Thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $avatar.foreground.pushUnique("/accessories/cashInHand/20_cashInHand-2kBaht2")>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks."
"Mmhm." <span class="imageLink"><<link "Tid">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/tid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> checks the time on his phone, fighting a yawn. "Okay, sluts, go home." He waves dismissively to shoo you away. "<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_toplessBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>, <div class="tooltip">yuu tee nee<span class="tooltiptext">Stick around</span></div>."
//[[Leave the office.|TNG-8021 Corridor]]//
<</page>><<silently>>
<<emote-calm>>
<<set _header1Blink to true>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> walk through the carpeted corridor.
Silence hangs heavy in the air, punctuated only by the faint buzz of the tube lights, and a faint ringing in your ears.
//[[Enter the dressing room.|TNG-8022 Title card]]//
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<</silently>>\
<a data-passage="TNG-8030 Dressing room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/dressingRoomTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
The dressing room's empty and still. From beyond the one-way mirror connecting this room to the office, sensual feminine cries ring out, the soundtrack of Ploy being fucked next door.
//Am I that loud when Connor...//it seems like it should be embarrassing, but <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> just ignores it.
"What you think 'bout new girl?" she asks.
/* (TK Something sweet)
(TK something else) */\
[[I think her boyfriend's pushing her into it.|TNG-8060 I blame Fuckboy]]
<</page>><<silently>>
<<set $avatar.foreground.delete("/accessories/cashInHand/20_cashInHand-2kBaht2")>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Think her boyfriend's pushing her into it," you say, opening up your locker.
"Huh? What you mean?" <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[I mean, he's pressuring her into doing this job.|TNG-8070 She's under pressure]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
"I mean, he's pressuring her into doing this job."
<span class="redHighlighter">Káyk ''disliked'' that.</span>
"This good job." <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Wellll...good job here Thailand. Different where you from, maybe."
There's a little defensiveness in her tone: like you just said $emilia.firstName's too good for the job, but Káyk isn't.
/* TK That's not what I meant.
TK Something else (humourous deflection?) */ \
[[I'm sorry, Káyk. I didn't mean to be judgemental.|TNG-9000 I'm sorry Káyk]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm sorry, Káyk. I didn't mean like this job is beneath her. Or me."
<span class="greenHighlighter">Káyk ''liked'' that.</span>
"<div class="tooltip">Mai pen rai<span class="tooltiptext">Never mind</span></div>," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_toplessBlackLaceThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Forget about it, <div class="tooltip">na<span class="tooltiptext">you know</span></div>. You got plan for this weeek?"
<<if hasVisited("TNG-450 Sure why not") or hasVisited("TNG-740 Why not")>>\
<<link "Double date with $zoe.stripperName." "TNG-9100 Double date with Zoe">><</link>>
<</if>>\
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
[[Naw, I'm kinda broke. You?|TNG-9001 Kinda broke]]
<<else>>\
[[Nah, I'm kinda broke. You?|TNG-9001 Kinda broke]]
<</if>>\
/* TK If Big Mac is active: Date with one of Connor's mates.
TK Just chilling. */ \
<</page>><<silently>>
<<emote-mouth-talking>>
<<wear-bra-oceanDotCrissCrossBra>>
<</silently>>\
<<header>>\
<<page>>\
"<<if $kate.agency == "cia" or $kate.agency == "csis">>Naw<<else>>Nah<</if>>," you shrug, putting on your bra. "I'm kinda broke. You?"
"My cousin, she come up from Chon Buri," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_knickersAndTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "She stay with me, few day."
[[Cool, what does she do?|TNG-9002 Kayk's cousin]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<wear-shorts-bayouxBlueButtonDetailShorts>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, cool, what does she do?"
"She work in big hotel," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_knickersAndTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles proudly. "Verrrr busy, all time. She stay with me to take break."
[[You two sound close.|TNG-9003 Close cousins]]
<</page>><<silently>>
<<wear-top-blueFloralPrintSummerScoopNeckSleevelessTop>>
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
"You two sound close."
"Yeah, we more like sister."
You two are dressed; leaving Tid and Ploy to lock up, you head out to the night market, and [[go your separate ways|TNG-10000 Title card]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<wear-bra-oceanDotCrissCrossBra>>
<</silently>>\
<<header>>\
<<page>>\
"Double date with $zoe.stripperName."
<span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_knickersAndTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Hope you not work next day. Who you date?"
[[Some rich Russian businessmen.|TNG-9110 Hot Russians In Your Area]]
[[Some hot Russian guys.|TNG-9110 Hot Russians In Your Area]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<wear-shorts-bayouxBlueButtonDetailShorts>>
<</silently>>\
<<header>>\
<<page>>\
//TK vary this// "Some Russian guys we met in a skybar. They're kinda hot."
"Ohhh, you got photo?"
"Uh…no. Maybe on $zoe.stripperName's Insta?"
<span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_knickersAndTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> calls it up on her phone. Standing shoulder to shoulder, you help her scroll down to last week at the skybar. Seeing the photos of the night brings back a rush of memories; the bargirls looking gorgeous, laughing and drinking colourful cocktails against a [[spectacular sunset|TNG-9120 Photographic evidence]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"These guys," you tell her.
You hung out with the Russians for an hour or so after sundown, drinking vodka and eating zakuski. There are several photos of them...including a couple $zoe.stripperName took of you paired off with Kolya, off to the side of the group, looking very 'couple-y'.
In the week that passed, you kind of forgot how hot that chemistry felt.
"Khå, handsome guys," <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_knickersAndTop.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "You two look like couple already."
[[Haha, thanks Káyk.|TNG-9130 Thanks Káyk]]
/* TK option 2
TK option 3 */
<</page>><<silently>>
<<wear-top-blueFloralPrintSummerScoopNeckSleevelessTop>>
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Haha, thanks, Káyk! Yeah, it was a fun night."
"Good luck on date."
You two are dressed; leaving Tid and Ploy to lock up, you head out to the night market, and [[go your separate ways|TNG-10000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<set $kate.isUsingHerStripperName to false>>
<<emote-calm>>
<<remove-shoes-brownAnkleHighStrappyFlatSandals>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<a data-passage="TNG-10010 Kate's room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
<span class="blinking">''2.51 <small>A.M.</small>''</span> When you turn your phone back on, it wants you to do a 'software update'.
This isn't actually anything to do with the iOS operating system – it's an alert that <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div> wants to check your phone hasn't been [[tampered with|TNG-10020 Software update]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Makes sense – $emilia.firstName had access to your locker tonight.
You run the test, activating it with the alternate unlock code they taught you at <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>, to confirm that it's actually you holding the phone and you're not under duress.
What follows just looks like the normal software update process – spinning circles, a couple of restarts, the Apple logo – but in reality, it's connecting to a secure server in <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>, not Silicon Valley.
You're not exactly clear how it works – checksums, tripwires, tech stuff – but apparently the whizzkids at <div class="tooltip">CCI<span class="tooltiptext">the CIA Center for Cyber Intelligence</span></div> are able to verify nobody's touched it since you last [[put it down|TNG-10025 Smells Like Charlie Blue]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch the screen, wondering if you've got time to take a shower.
Mrs Chu changed the bedsheets, and you smell like booze, sweat, and Charlie Blue.
//[[Wait.|TNG-10030 All clear]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A few minutes later, you get the all clear. Ian's waiting online when you fire up Signal.
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 20:20
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Hey.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
hey. u ok?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Atrocious<span class="tooltiptext">Responding positively is a 'duress code', signalling you've been captured</span></div>.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
👌🏼
</div>\
<div class="messageSignal last">\
u ok really? guess they sprung the vip thing on you?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Exactly.
</div>
<div class="messageSignal last">\
I'm okay though.
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
...
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
The ellipsis disappears and reappears several times as Ian [[types and retypes|TNG-10040 Secure call]] his message.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Then it vanishes completely. A few seconds later, your phone vibrates – a secure call from Ian.
This is still secure, as long as nobody overhears your speech. It just...isn't normal protocol.
<span class="greyedOut">//[Answer it]//</span> [[Hey.|TNG-10050 Hey][$kateSays to "Hey."]]
<span class="greyedOut">//[Answer it]//</span> [[What's up?|TNG-10050 Hey][$kateSays to "What's up?"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kateSays == "What's up?">>
<<emote-brows-raised>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays" You keep your voice quiet, a little more than a murmur.
<<if $kateSays == "Hey.">>\
"Hey. Just wanted to...hear your voice." There's something so...//reassuring// about Ian, even just on the other end of a phone. The deep voice, that rough <<if $kate.agency == "mi6">>London<<else>>British<</if>> accent. "You really alright? Clark'll ask."
<<else>>\
"Nothing, just...wanted to hear your voice." There's something so...//reassuring// about Ian, even just on the other end of a phone. The deep voice, that rough <<if $kate.agency == "mi6">>London<<else>>British<</if>> accent. "You really alright? Clark'll ask."
<</if>>\
[[Tell him I'm fine.|TNG-10060 Tell him I'm fine]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tell him I'm fine. No problems."
"Yeah. But are you really?"
[[Come too far to stop now.|TNG-10110 Crusader]]
[[Had a moment earlier. I'm okay now.|TNG-10120 Waif]]
[[I'll handle it.|TNG-10130 Alpha]]
[[As long as you guys have my back.|TNG-10140 Fatale]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Come too far to stop now." You shrug, keeping your voice low. "Tell him I'm okay with whatever. I'm not pulling out."
"Alright. If you're sure." There's a slight hesitation in his voice, a touch of concern. "I'll tell him."
[[I'm sure. Oh, one more thing.|TNG-10200 One more thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Had...kind of a moment earlier. But I'm okay now."
"Yeah?"
"Yeah. Tell him not to worry. I'm not pulling out."
"Alright. If you're sure." There's a slight hesitation in his voice, a touch of concern. "I'll tell him."
[[I'm sure. Oh, one more thing.|TNG-10200 One more thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll handle it. Tell Clark I'm not pulling out."
"Alright. If you're sure." There's a slight hesitation in his voice, a touch of concern. "I'll tell him."
[[I'm sure. Oh, one more thing.|TNG-10200 One more thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"As long as you guys have got my back."
"I do. The others, too."
"Then I'm fine. Tell Clark I'm not pulling out."
"Alright. If you're sure." There's a slight hesitation in his voice, a touch of concern. "I'll tell him."
[[I'm sure. Oh, one more thing.|TNG-10200 One more thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Tell Clark I'm not pulling out."
"Well...alright. If you're sure." There's a slight hesitation in his voice, a touch of concern. "I'll tell him."
[[I'm sure. Oh, one more thing.|TNG-10200 One more thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not crazy about it." You shrug, keeping your voice low. "But it works. Tell Clark I'm not pulling out."
"Well...alright. If you're sure." There's a slight hesitation in his voice, a touch of concern. "I'll tell him."
[[I'm sure. Oh, one more thing.|TNG-10200 One more thing]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm sure. Oh, one more thing."
"Uh huh?"
"Couple of the girls were complaining about slow internet earlier. That us?"
"Maybe. <div class="tooltip">Faslane's<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> trying to keep an eye on you when you're in. Just in case."
[[They're downloading while I'm there?|TNG-10210 They're downloading while I'm there]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"They're downloading while I'm there?" //No wonder the internet's lagging.//
"Yeah. I'm getting the feeds all through your shift."
[[That's reassuring.|TNG-10220 That's reassuring]]
[[Better pull it.|TNG-10230 Better pull it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, that's reassuring."
"Trust me, I'm keeping an eye on you. Alright, stay safe. And, uh, listen..." A long moment of silence. "I'm here if you need me."
[[Goodnight.|TNG-10300 Goodnight]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Ask 'em to pull it."
"Sure?"
"Last thing we want is them bringing in some kinda tech expert to figure out what's wrong."
"Roger, I'll pass it on. Alright, stay safe. And, uh, listen..." A long moment of silence. "I'm here if you need me."
[[Goodnight.|TNG-10300 Goodnight]]
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks. Night."
You kill the call. //Fuuuck. Ian watched me suck off Bonaht.//
You think about that for a second, trying to process how you feel about it. Like you figured in the staff toilet...it's not that big a deal. World didn't end, mission didn't end. If you're okay with it, HQ's okay with it.
//I'm getting the feeds all through your shift.//
//[[Peel off your clothes.|TNG-10400 Getting naked]]//
<</page>><<silently>>
<<removeTop>>
<<removeShorts>>
<<removeBra>>
<<removeKnickers>>
<<remove-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your clothes, drop them on the floorboards. The transmitter ring comes off, set down on the bedside table.
<span class="greyedOut">//[Arousal too high] Sleep.//</span>
<span class="greyedOut">//[Arousal 4+]//</span> //[[Masturbate.|TNG-10410 Bedtime]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("accessories/blueBedsheets/50_blueBedsheets-meTime")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
Your body's much too horny for you to just go to sleep. Slipping between the fresh sheets, you open your legs and give your pussy the touch it's been craving for hours.
Starbursts of pleasure and tension surge up in your groin as your fingertip fondles and massages your clit.
//[[Play with your nipples.|TNG-10420 Nipple play]]//
<</page>><<silently>>
<<emote-mouth-sexy>>
<<set $avatar.clothing.pushUnique("accessories/blueBedsheets/50_blueBedsheets-meTimeWingerStyle")>>
<<set $avatar.clothing.delete("accessories/blueBedsheets/50_blueBedsheets-meTime")>>
<</silently>>\
<<header>>\
<<page>>\
They're sore and you need to give them a couple of merciless tugs and pinches before they stop hurting and start feeling good again.
You cooled down a little bit on the skytrain home, but just the first couple of seconds pushes you right back to the edge. This isn't going to take long, you can think about anything you like.
//[[Bonaht fucking me.|TNG-10500 Bonaht fantasy]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
//Oh god.// You picture it from the viewpoint of the security camera, watching yourself like you're one of the analysts back at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>.
Bonaht just casually...bending you over the back of an armchair. Peeling down your <<knickers>> with <<link "//no// resistance" "TNG-10510 Knickers down">><</link>>.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
No pleasantries, no foreplay. Just his stiff cock thrusting up inside you, his hands on your hips //making// you fuck him.
Just using your body to get off. Making you moan like a //whore// because you're //loving// it.
While <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> watches, while Nin and $gina.nickname watch...while //Ian// watches, and...does absolutely fucking //nothing// about it...
//[[Oh god...|TNG-10520 O face]]//
<</page>><<silently>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Your voice comes out in shocked, breathy gasps as your body's rocked by a clenching, shuddering orgasm.
Thin walls, open windows. You just go for it, you [[don't care if anybody hears|TNG-10600 Comedown]].
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-sexy>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("accessories/blueBedsheets/50_blueBedsheets-meTimeWingerStyle")>>
<</silently>>\
<<header>>\
<<page>>\
The waves of pleasure slowly recede, leaving you panting and disoriented. You kick off the bedsheets, letting your pulse come back down to normal.
//Fuuuck.// You're not normally like this. The club, the mission...something's messing with your libido.
Nothing to worry about. It'll be fine when you get back to <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
//Might need to do that [[again|WR-50 Sleepy night night]] in a couple of minutes. Fuck.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You knees sag and you lean on an old sink for support.
Your reflection appears in a dirty, smudged mirror. Your hair tousled, your breasts bared, your face painted with sultry makeup.
//[[Can't believe I just did that.|TNG-11010 Can't believe it]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The girl in the mirror stares back. <<if $kate.eyeColour == "blue">>Baby blue<<elseif $kate.eyeColour == "chestnut">>Doe<<elseif $kate.eyeColour == "emerald">>Jade green<<elseif $kate.eyeColour == "grey">>Cool grey<<elseif $kate.eyeColour == "hazelnut">>Honey brown<<elseif $kate.eyeColour == "sapphire">>Crystal blue<<else>>//ERROR IN KATE.EYECOLOUR VAR//<</if>> eyes framed by <<if $kate.lastWornEyeshadow == "smoky">>smoky<<else>>sultry<</if>> eyeshadow. Long, jet black lashes that flutter with every blink. Smudged, just-sucked-cock lipstick.
You want to splash your face, //clean it,// wash it all off. But you can't fuck up your makeup. //Fix your lipstick before you go back work.//
Your throat feels thick and there's a queasy knot building up in your stomach.
//[[Not sure I can keep doing this.|TNG-11020 Not sure I can keep doing this]]
[[Is this mission really worth it?|TNG-11100 Is this mission worth it]]//
<<link "//If that footage gets out, my career is //fucked." "TNG-11200 If that footage gets out my career is fucked">><</link>>
//[[Why is this hitting so hard?|TNG-11300 Why is this hitting so hard]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// The men you've let use your body parade through your mind. Connor. Kriangsak. <<if not hasVisited("GNO-155270 Zoe is the cavalry")>>A drug dealer in his car. <</if>><<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody and his 'scout's honour'.<<elseif hasVisited("GNO-176000 Kate sleeps in Rick's room")>>The <<if $kate.agency != "cia">>American frat boy<<else>>frat boy<</if>> you shared a bed with.<</if>>
Now it's Bonaht, too. On camera. What's next...<div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> watching you do the bouncers?
//Fuck, fuck, fuck.// Back at the safehouse, you told <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> you could handle it. Right now...//fuck.//
//[[That footage is going to look terrible.|TNG-11030 Mental footage]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You know where the camera is. You can picture the angle, imagine the scene playing out on computer screens at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> and <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>. Analysts watching as, without warning, 'Officer $kate.firstName[0]' drops to her knees and blows the cocktail guy.
//Oh fuck.//
//[[Calm, calm, I'm pre-authorised.|TNG-11400 Pre-authorised]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Yeah, <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> is an <div class="tooltip">HVT<span class="tooltiptext">High Value Target</span></div>. Yeah, capturing him would save lives and make a difference. You've never doubted that.
But [[the methods|TNG-11110 The methods]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
'Officer $kate.firstName[0]' stares back from the dingy mirror. You don't //look// like a threat to international terrorism. You look...ridiculous, you look like a joke. In a seedy bar, stripped down to a pair of sexy <<knickers>>, play-acting as a whore.
Or is it even play-acting. Nin said you're [[getting paid for it|TNG-11120 Paid for it]] later, so...//fuck.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Bond, Jane Bond.// What a joke. And that footage is going to look terrible.
You know where the camera is. You can picture the angle, imagine the scene playing out on computer screens at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> and <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>. Analysts watching as, without warning, 'Officer $kate.firstName[0]' drops to her knees and blows the cocktail guy.
//Oh fuck.//
//[[Calm, calm, I'm pre-authorised.|TNG-11400 Pre-authorised]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It looks worse than the Connor footage, a hundred times worse. It's not a voyeuristic peek at your...torrid affair with the boss.
It's you casually sucking off a staff member in front of two other women. Letting him hold your hair and masturbate into your mouth, then going back to work like you're //fine// with that.
If anyone at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> has any doubts about you, wants to get rid of you before you bring the <<if $kate.agency == "cia">>Agency<<else>>CIA<</if>> into disrepute...that footage is going to give them [[all the ammo they need|TNG-11210 Didn't have a choice]]. //Fuck.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You didn't have a choice, Nin made that clear. But is it clear from the footage? Without audio?
Or is the narrative going to be formed before you've had a chance to explain? Decisions taken before your shift's even over? You could end up getting //fired// hours before you change back into your street clothes.
Smiling and flirting with pervy old men, while back in <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>> your security clearances are being revoked.
//Oh fuck.//
//[[Calm, calm, I'm pre-authorised.|TNG-11400 Pre-authorised]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's not the first time the analysts have seen you in a sexual encounter. You've done //more// than blow jobs with Connor. //Same same.
But different.// At least that //looks// like a...torrid affair with the boss. This was different. Back at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> they're going to watch you in a side room with a different colleague, one who's not even an intelligence target.
Sucking his cock. Letting him hold your hair and masturbate into your mouth, then going back to work like you're //fine// with that. //Fuck fuck fuck.//
//[[Calm, calm, I'm pre-authorised.|TNG-11400 Pre-authorised]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Calm, calm, I'm pre-authorised.// <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> himself told you that.
You know it's true, but it doesn't quell the anxious knot in your stomach. Maybe it's...
//[[Mission-related stress.|TNG-11410 Mission related stress]]
[[I didn't feel in control.|TNG-11420 Didn't feel in control]]
[[Will they really back me?|TNG-11430 Do they really have my back]]
[[Don't like where this is headed.|TNG-11440 Where this is headed]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Weird hours. Lack of sleep. Lying to everybody, all the time. Always calculating, always watching my back.
Mission-related stress seems almost glamorous until you live it. Then you realise, it's just...fear. Nearly all the time. A low-key, gnawing dread that something, somewhere's gone //terribly// wrong and you'll be the last to know.
//[[I feel sick.|TNG-11500 Feeling sick]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
What is it Ian called you on Friday night? //Some kind of fuckin' Black Widow, Double O agent...//
That's //not// what the analysts are going to see when they watch the footage. //Oh god.//
//[[I feel sick.|TNG-11500 Feeling sick]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Things change. If this op gets embarrassing, and a scapegoat needs to be found...it's you, right?
//Oh god.//
//[[I feel sick.|TNG-11500 Feeling sick]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You realised way ahead of the Task Force that you'd need to use sex to complete this mission. Connor, Kriangsak...if you hadn't given it up for them, you'd already be <<if $kate.agency == "cia">>back in the States<<elseif $kate.agency == "mi6">>back in London<<elseif $kate.agency == "asis">>back in Australia<<elseif $kate.agency == "csis">>back in Canada<<elseif $kate.agency == "nzsis">>back in New Zealand<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
But – maybe naïvely – you'd always assumed you'd be able to avoid //prostitution.// You'd be able to dance around it somehow. Use your skill to fend it off long enough to do what <div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> needs you to do.
Now...now you're not so sure.
//[[I feel sick.|TNG-11500 Feeling sick]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
A sickening wave of nausea churns up in your stomach. Your vision blurs as you fight to control it.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make an ''Emotional Control check''. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Emotional Control check.'' Target: 6. You rolled: (_kateD10) = <<= _kateD10>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<replace "#avatar-container">>
<<emote-mouth-pout>>
<<avatar>>
<</replace>>
Bile burns in the back of your throat. Gripping the edges of the sink, you gulp down deep breaths of disinfectant-laced air, waiting for your body to come [[back under control|TNG-11510 Under control]].
<<else>>
It claws its way up your throat, twisting your insides. You double over, [[retching into the sink|TNG-11505 Kate pukes]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext"><small>+0 //Neuroticism//</small></span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Vomit splatters against the porcelain, mingling with the grime. It's a [[vile reminder|TNG-11510 Under control]] of everything you swallowed today.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-11505 Kate pukes")>>\
<<emote-eyes-calm>>\
<<emote-mouth-upset>>\
<<showFront>>\
"Fuck," you croak. Shame and disgust mingle with the bitter tang in your throat.
<<else>>\
//Fuck.// You stare at your reflection in the dingy mirror.
<</if>>\
Your pulse is racing. Your eyes are watering, full of pressure, and you dab at them with a fingertip, trying not to fuck up your mascara.
//Oh god. I've got to...//
//<span class="greyedOut">[Abort mission]</span> [[...get out of here, this isn't good for me.|TNG-3961 Marines, we are leaving]]
[[...get a grip, I'm on a mission.|TNG-11520 Kate gets a grip]]
[[...get through this, I can't quit now.|TNG-11600 Can't jack now]]
[[...get real, it's just a blowjob.|TNG-11700 Get real, it's just a BJ]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//...get a grip. Calm, calm, calm. Be cool.// You blink and dab your eyes, your heart pounding in your chest.
//Easy, easy, just breathe.// A few seconds teetering on an emotional knife edge...then control returns, and the tears get pushed back under, something to deal with later.
You force a gulp down your numb, thick throat.
<<link "//C'mon, $kate.firstName. It's a field op, toughen up.//" "TNG-11530 Toughen up, buttercup">><</link>>
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _accent to "soft southern accent">>
<<elseif $kate.agency == "mi6">>
<<set _accent to "soft northern accent">>
<<elseif $kate.agency == "asis">>
<<set _accent to "soft bush accent">>
<<elseif $kate.agency == "csis">>
<<set _accent to "soft prairie accent">>
<<elseif $kate.agency == "nzsis">>
<<set _accent to "lilting Maori accent">>
<<else>>
<<set _accent to "ERROR IN ACCENT TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Your unarmed combat instructor <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>> was an ex-<<if $kate.agency == "cia">>Army Ranger<<elseif $kate.agency == "mi6">>Royal Marine<<elseif $kate.agency == "asis">>Commando<<elseif $kate.agency == "csis">>Commando<<elseif $kate.agency == "nzsis">>Commando<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Most of the other recruits were men, and when you were paired up with one for sparring, you'd often end up on your <<if $kate.agency == "cia" or $kate.agency == "csis">>ass<<else>>arse<</if>> on a crash mat.
<<if $kate.agency == "nzsis">>Taika<<else>>Dean<</if>> would always tell you the same thing. //Suck it up, buttercup.//
His words come to your mind so clearly you hear them in his <<if hasVisited("TNG-11520 Kate gets a grip")>><<link "_accent" "TNG-11540 Soft northern accent">><</link>><<elseif hasVisited("TNG-11600 Can't jack now")>><<link "_accent" "TNG-11610 Got to catch DEVILFISH">><</link>><<else>><<link "_accent" "TNG-11710 Not gonna stop with Bonaht">><</link>><</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This is a field mission against a strategic target. It's not supposed to be easy, and you're not supposed to give up when it gets hard.
<div class="tooltip"><small>DEVILFISH's</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> network has been active for decades. Unless a few people like Clark, Ian and you //do// something about it, it'll be active for decades to come. Countless lives in the future could be depending on you to be strong right now.
//[[Got to get some perspective.|TNG-11800 Too much perspective]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//...get through this. Calm, calm, calm. Be cool.// You blink and dab your eyes, your heart pounding in your chest.
//Easy, easy, just breathe.// A few seconds teetering on an emotional knife edge...then control returns, and the tears get pushed back under, something to deal with later.
You force a gulp down your numb, thick throat.
<<link "//C'mon, $kate.firstName. Can't quit now. Gotta toughen up.//" "TNG-11530 Toughen up, buttercup">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//If I pull out now, it's all for nothing.//
Everything you've done only makes sense if you capture <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>.
//[[Got to get some perspective.|TNG-11800 Too much perspective]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//...get real, I'm overreacting. Calm, calm, calm. Be cool.// You blink and dab your eyes, your heart pounding in your chest.
//Easy, easy, just breathe.// A few seconds teetering on an emotional knife edge...then control returns, and the tears get pushed back under, something to deal with later.
You force a gulp down your numb, thick throat.
<<link "//C'mon, $kate.firstName. It's just a blowjob, toughen up.//" "TNG-11530 Toughen up, buttercup">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Suck it up.// <<if $kate.agency == "nzsis">>Taika<<else>>Dean<</if>> didn't know that one day you'd have to take his words literally.
But he was right, because that's what you're going to have to do. It's...not going to stop with Bonaht. You're going to have to either...accept that. Or quit.
//[[Got to get some perspective.|TNG-11800 Too much perspective]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
That footage is going to upload to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> And you're going to let it happen.
The analysts back at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> and <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> are going to watch it, and they're going to make up their minds about you. Nothing you can do about that now.
And yeah, probably...some of them //are// going to think you're going too far. That you're just a <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage</span></div>, or a whore.
And...
//And...//
//[[...it's probably not going to be a big deal.|TNG-11810 NBD]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
They didn't pull you out over Connor. <<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>>Or Kob.<</if>><<if hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand")>> Or <<if hasVisited("GNO-175500 In bed with Cody")>>Cody<<else>>Rick<</if>>.<</if>>
You didn't actually //report// the Kriangsak thing. But you know it'd be okay if you did. In fact...they probably //know// that your date with the boss didn't end with you getting walked home. And...that's no big deal to them, evidently.
//They're not gonna pull me out over Bonaht.//
This simple realisation feels like a bolt of clarity, [[electrifying your thoughts|TNG-11820 It's electric]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//They're not gonna pull me out.//
For a shot at <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>...<div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div> will do what it takes. Bribe. Coerce. Kill. The <div class="tooltip">Prince of Darkness<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> didn't get that nickname because he's a nice guy.
His hobby is killing Al Qaeda chiefs of staff. Now he has a spear pointed at //the// most secure and resilient terrorist funding network on the planet. And you're the tip.
He said he'd let you quit. But that's it, that's the only way this ends. There's no conceivable way he's going to have you removed [[over a blowjob|TNG-11830 Pre-authorised]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//That's...why they pre-authorised me.//
As long as you can handle it, they're satisfied. You think that's what <div class="tooltip">Dodaro<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div> tried to tell you on the sat phone, but you didn't understand.
//We assess the sexual demands on you will escalate. You're pre-authorised, we've got your back.//
Everything you've done so far...none of it's going to matter. //As long as I catch <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>.// Bring him in, and that'll be your legacy.
All you need to do is [[be able to handle it|TNG-11840 What that means]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A brief, unsettling vision of what that //means// flashes in your mind. A fleeting image of...being fucked. Upstairs. Cash on a bedside table, some stranger's hands on your hips. Recorded and going up to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div>
<span class="greyedOut">//[Arousal +3]//</span> //[[I can do it.|TNG-11850 I can do it]]//
<span class="greyedOut">//[Low Arousal] Can't do it.//</span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//I can do it.//
Your body responds before your mind fully registers the sensations, a tingle of anticipation in your nipples and your groin, like you could go do it //right now.// Some kind of...lingering effect of the arousal you felt in the VIP.
You shake that off, dismiss it. //But seriously. I'll do what it takes. And nobody's pulling me out.//
Doesn't matter if you have to...cross a few lines you never thought you would.
<<link "//<small>DEVILFISH</small> is worth it.//" "TNG-5000 Title card">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"That's not the point," you snap.
You can't tell if <span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> being obtuse, or if she really doesn't understand. It's not about the act, it's about what it means. //If I say yes to this...//you're not even sure you want to finish that line of thought.
[[This is practically bargirling.|TNG-12100 Practically bargirling]]
[[I choose who I fuck.|TNG-12110 I choose my choice]]
[[You're pushing me too far.|TNG-12120 Pushing too far]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Nin, I'm //not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>,// okay?"
"You work in sex industry now," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says evenly. "All girl have to fuck to keep job. Not juss bargirl."
<<include "TNG-12130 But Nin">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I choose who I do that with."
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles darkly at that. "Oh yahhh, you choose ever-thing, ever-thing up to you. You bend over desk for Connor because he //aw so handsome.// You spread leg for Mr Kriangsak because he //sooo your type."// Her words hang in the air for a moment. "I give you advice for free, stop lie to you self."
<<include "TNG-12130 But Nin">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Look...I'm okay working topless. And, y'know," you shrug slightly. "The Connor thing. I get how it works. But this is too much."
"You work in sex industry now," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says evenly. "Your boss tell you give blowjob, you do. It not...option-oh."
<<include "TNG-12130 But Nin">>\
<</page>>A vision of what she's asking you to do flits into your mind. Recorded on one of the 25 security cameras, streamed up to <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> for later review.
This isn't like sex with Connor, it's not some femme fatale secret agent using her wiles on the boss. This is a female <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer, offering her body in return for some tips on mixing cocktails. //How can anyone at <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> respect me after that?//
[[Not doing it.|TNG-12200 Nin offers payment][$kateSays to "Not doing"]]
[[I can't do it.|TNG-12200 Nin offers payment][$kateSays to "I won't"]]
[[Find someone else.|TNG-12200 Nin offers payment][$kateSays to "Find someo"]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "$kateSays–"
"Ah ah ah," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> interrupts you. "You not do for free. We pay you extra, okay?"
//Like that matters.// Except, it might to '$kate.cover.firstName $kate.cover.surname', who doesn't have discretionary access to an unaudited CIA mission budget, or <<if $kate.agency == "cia">>a $65k salary<<elseif $kate.agency == "mi6">>a £42k salary<<elseif $kate.agency == "asis">>an $84k salary<<elseif $kate.agency == "csis">>an $84k salary<<elseif $kate.agency == "nzsis">>an $84k salary<<else>>ERROR IN KATE.AGENCY VAR<</if>> building up in her bank account back home. <<if hasVisited("TNG-510 Brooklyn Baker")>>Going for brunch with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> yesterday practically wiped her out.<<else>>She's only surviving on tips.<</if>>
[[How much?|TNG-12210 How much]]
[[It's not about the money.|TNG-12300 Not about the benjamins]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//Don't care,// you think. "How much?" you manage to say.
"Norm-oh, <div class="tooltip">seven fifty Bah<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "But we pay you doub-oh, because first time. <div class="tooltip">Fifteen hundred Bah<span class="tooltiptext"><<if $kate.agency == "cia">>$45<<elseif $kate.agency == "mi6">>£30<<elseif $kate.agency == "asis">>$60<<elseif $kate.agency == "csis">>$60<<elseif $kate.agency == "nzsis">>$60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
[[It's not about the money.|TNG-12300 Not about the benjamins]]
[[That's not enough.|TNG-12220 Not enough]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh-uh." You shake your head again. "That's not enough."
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> eyes you curiously. "How much is?"
[[I don't know, double?|TNG-12230 Kate doubles her price]]
[[Four times that!|TNG-12240 Go big or go home]]
[[It's not about the money.|TNG-12300 Not about the benjamins]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know...like <div class="tooltip">three thousand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>?" you shrug. That's way more than a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> gets for //anything,// let alone a BJ.
<span class="greenHighlighter">Nin ''liked'' that.</span>
"Hrm." <span class="imageLink"><<link "Nin's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> head bobs while she considers that. "Okay. But juss this one time."
[[What?|TNG-12260 Wha]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Doesn't matter. But I think I'm worth at least <div class="tooltip">six k<span class="tooltiptext">฿6000 = <<if $kate.agency == "cia">>$180<<elseif $kate.agency == "mi6">>£120<<elseif $kate.agency == "asis">>$240<<elseif $kate.agency == "csis">>$240<<elseif $kate.agency == "nzsis">>$240<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
<span class="greenHighlighter">Nin ''loved'' that.</span>
<span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> laughs – not unpleasantly, she's genuinely amused. Her teeth are unusually straight and white for an older Thai person.
"<div class="tooltip">Six thousan<span class="tooltiptext">฿6000 = <<if $kate.agency == "cia">>$180<<elseif $kate.agency == "mi6">>£120<<elseif $kate.agency == "asis">>$240<<elseif $kate.agency == "csis">>$240<<elseif $kate.agency == "nzsis">>$240<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. For one blowjob. You know <<Amanda>> have to fuck six diffren' man to get that."
//[[Shrug.|TNG-12250 So fucking what]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You just shrug.
"I give you half," <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> offers. "<div class="tooltip">Three thousan Bah<span class="tooltiptext"><<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. Doub-oh doub-oh. Come on."
She reaches across the desk, offering a handshake.
<<link "It's not //about// the money." "TNG-12300 Not about the benjamins">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Huh?"
"Okay. <div class="tooltip">Three thousan Bah<span class="tooltiptext"><<if $kate.agency == "cia">>$90<<elseif $kate.agency == "mi6">>£60<<elseif $kate.agency == "asis">>$120<<elseif $kate.agency == "csis">>$120<<elseif $kate.agency == "nzsis">>$120<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, one time." <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods judiciously. "Deal."
<<link "It's not //about// the money." "TNG-12300 Not about the benjamins">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "It's not //about// the money..."
<span class="yellowHighlighter">Minor ''increase'' to Suspicion Level.</span>
"Then...what it about?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
/* TK add this later, it's good but I'm short of time [[It's about this setting a new precedent.|TNG-12310 New precedent]] */\
<<if hasVisited("TNG-12100 Practically bargirling")>>\
[[I just told you, I'm not a bargirl!|TNG-12400 Not a bargirl!]]
<<else>>\
[[Nin, I'm not a bargirl!|TNG-12400 Not a bargirl!]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's //about,// if I say yes to this, you'll make me do it every fucking week. I know what you're doing."
"Serious?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> raises her eyebrows.
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("TNG-12100 Practically bargirling")>>\
"I just told you, I'm not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>!"
<<else>>\
"Nin, I'm //not a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>!"
<</if>>\
"Ugh, why you so obsess with <div class="tooltip">bargirl<span class="tooltiptext">club prostitution</span></div>?" <span class="imageLink"><<link "Nin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/missNin/nin_officeClothes.png']]")>>
<<set Dialog.open()>>
<</link>></span> rolls her eyes. "It all you talk about. //I not bargirl, I not bargirl.// You work naked in Patpong. You making money from tits and ass. Sometime you suck or fuck to keep you job. That juss how it work here, all girl have to do."
[[You do it, then.|TNG-1215 You do it then]]
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-reallyFadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-rosePinkAbbieLaceTrimPanties>>
<<wear-bra-rosePinkAbbieLaceTrimBra>>
<<wear-shorts-blueDenimDIYJeansShorts>>
<<wear-top-whiteTouristyTempleTShirt>>
<<wear-hosiery-greyTrainerSocks>>
<<wear-shoes-greyAdidasPaceVSTrainers>>
<<wear-ring-transmitterRing>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<a data-passage="WW-110 Streets of Bangkok">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/fridayNightBusyStreetsTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
''9.02 <small>P.M.</small>'' Pulsing with energy, the crowded streets are alive with music, sizzling street food, and the buzz of a dozen languages.
Tempting smells of spices and grilled meats linger in the humid air. Neon lights cast a vivid glow over the hustle and bustle.
Just another Friday night in Bangkok. You're at the end of a four-hour <div class="tooltip">cleaning run<span class="tooltiptext">a complex journey, designed to break an officer out of surveillance before a mission or meeting</span></div> that's blown away your hangover from last night, but left you feeling [[sweaty, thirsty and drained|WW-120 Am I Evil?]].
<</page>><<silently>>
<<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>
<<first>>
<<addNotification "Comedown" "Fatigue, mood swings, mental fatigue. Duration varies">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You've been ordered to come out here for an emergency <div class="tooltip">CPU<span class="tooltiptext">Car Pick-Up: a meeting that starts with an officer or asset being picked up by a vehicle</span></div>. You don't know why, and it's hard not to worry that you're in trouble<<if hasVisited("GNO-200150 (GNO report) Only way to fit in") or hasVisited("GNO-200160 (GNO report) Not crazy about it") or hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ") or hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>> about last night<</if>>.
//Am I being pulled out?//
<<if hasVisited("GNO-200150 (GNO report) Only way to fit in") or hasVisited("GNO-200160 (GNO report) Not crazy about it")>>\
You felt confident about your report when you hit <small>SEND,</small> now you //wish// you'd thought more carefully about being open about what you did with <<if hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand") and hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>><<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody<<else>>Rick<</if>> and Kob<<elseif hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand")>><<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody<<else>>Rick<</if>><<else>>Kob<</if>>.
//[[What was I thinking?|WW-121 Maybe they caught DEVILFISH]]//
<<elseif hasVisited("GNO-200090 (GNO report) Kate leaves out the Kob BJ") or hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>>\
You, well...left one or two details out of your report. //Is it that? Did they have [[surveillance on me|WW-121 Maybe they caught DEVILFISH]], or something?//
<<else>>\
<<if hasVisited("GNO-200040 (GNO report) Kate took drugs to build rapport")>>It can't be the drugs. <</if>>You don't think you've done anything<<if hasVisited("GNO-200040 (GNO report) Kate took drugs to build rapport")>> else<</if>> wrong..or is there [[something you missed?|WW-121 Maybe they caught DEVILFISH]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Or maybe it's not you. Maybe...maybe some other agency caught <small>DEVILFISH</small> last night, and this whole mission was pointless.
Or maybe...//fuck.// What about the little sting the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> pulled on the frat boys from last night? If one of those brats turns out to be a US senator's son or something, this whole op could get scrubbed before it embarrasses <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>. <<if hasVisited("GNO-200130 (GNO report) Kate leaves out her one-night stand")>>//Has someone already debriefed <<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody<<else>>Rick<</if>>? Did he mention...fuck!//<</if>>
<<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>\
Your head's a mess. Last night's <<if hasVisited("GNO-67100 Kate drops Molly") and not hasVisited("GNO-160020 Kate stays off the blow")>>Molly & coke binge<<elseif hasVisited("GNO-160020 Kate stays off the blow")>>Molly binge<<else>>little coke binge<</if>> is //not// helping. It's hard to think straight when drug comedown anxiety is [[gnawing at your stomach|WW-130 CPU]].
<<else>>\
Your head feels sluggish from booze<<if not hasVisited("GNO-67100 Kate drops Molly") and hasVisited("GNO-2920 Kate requests benzedrine")>> and benzedrine<</if>>. It's hard to think straight when you're [[tired and dehydrated|WW-130 CPU]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You were partying all night with a drug-fuelled bunch of livewires. //Pills, coke, booze. Flashing for taxi rides. Blowing a drug dealer and hooking up for one night stands at a party.//
You didn't put every little detail into your report. //Is that the problem?// Maybe the <div class="tooltip">CTF<span class="tooltiptext">Combined Task Force</span></div> had their own officer under surveillance?
//[[What about the corruption?|WW-122 Honeypots]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$amanda.firstName sicced a dirty cop on <<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody<<elseif hasVisited("GNO-176000 Kate sleeps in Rick's room")>>Rick<<else>>Beau<</if>> and his friends once you were out of there.
Is //that// the problem? Did you inadvertently get caught up honey trapping some senator's nephew or something? //Fuck.//
//[[Or maybe I just fucked up.|WW-123 Lack of judgement]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You were <<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>drinking and taking drugs<<elseif hasVisited("GNO-2920 Kate requests benzedrine")>>buzzing on booze and benzedrine<<else>>drinking and you turned down benzedrine<</if>>. Is there something you let slip? Something <div class="tooltip">CTF<span class="tooltiptext">the Combined Task Force</span></div> detected, in your report or from surveillance, indicating that you //fucked up// and they need to pull you out?
<<if hasVisited("GNO-67100 Kate drops Molly") or not hasVisited("GNO-160020 Kate stays off the blow")>>\
Your head's a mess. The comedown effect of your <<if hasVisited("GNO-67100 Kate drops Molly") and not hasVisited("GNO-160020 Kate stays off the blow")>>Molly & coke cocktail<<elseif hasVisited("GNO-160020 Kate stays off the blow")>>Molly binge<<else>>little coke binge<</if>> probably isn't helping.
You're trying to stay positive and focused. But it's not easy when inside, you just feel...empty. Like you're standing over a void, waiting for it to [[swallow you up|WW-130 CPU]].
<<else>>\
Everything feels confusing. Your world's not upside-down...it's a kaleidoscope. <div class="tooltip">DCTC<span class="tooltiptext">Director, CIA Counterterrorism Mission Center</span></div>, the Prince of Darkness himself, ordered you to use sex to complete your mission.
But orders change. How much can you really trust [[a deniable CIA task force|WW-130 CPU]]?
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Right on time, a black SUV rolls up slowly alongside you.
<<image "/locationPhotos/thailand/bangkok/cpuSUV.jpg" 300 1000 700 0>>\
The passenger door pops open. The interior light is off and inside, the vehicle is dim and gloomy.
//[[Climb in.|WW-131 Hesitation]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A moment's hesitation, like your body doesn't //want// to get into a strange car.
<<link "//Get in.//" "WW-140 CPU complete">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''UNMARKED SUV''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Pushing against your instincts, you climb up into the passenger seat, and close the door behind you.
"Hey." Eyeing the rearview, <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls smoothly back out into the traffic, and the <div class="tooltip">CPU<span class="tooltiptext">Car Pick-Up: a meeting that starts with an officer or asset being picked up by a vehicle</span></div> is complete.
There's no one else in the vehicle. Just a grey civilian backpack sitting on the back seat.
[[Hey.|WW-150 Do a uey][$kateSays to "Hey."]]
[[What's going on?|WW-150 Do a uey][$kateSays to "What's going on?"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kateSays == "Hey.">>
<<emote-brows-calm>>
<<else>>
<<emote-brows-raised>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
<<if $kateSays == "What's going on?">>"New tasking." <</if>><span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances in the rearview mirror, then makes a sharp turn without indicating, lurching you in your seat. <<if $kateSays == "Hey.">>"We got a new tasking," he says. <</if>>"<div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> wants another <div class="tooltip">black bag<span class="tooltiptext">black bag job: a break-in to obtain intel</span></div>."
You let out a breath as four hours of stress and tightness in your body suddenly evaporates. You're //not// being pulled out, you're //not// in trouble. The mission's still on.
[[What's the target?|WW-160 What's the target]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." You keep your voice cool and neutral. "What's the target?"
"The medical certificates. The ones you got footage of?" He means the <div class="tooltip">bargirls'<span class="tooltiptext">club prostitutes</span></div> STD tests, on display in the staircase leading up to the brothel. "We're hitting the clinic that issues those."
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> puts his foot down, making the big engine purr and pressing you back into your seat. Weaving through traffic, his driving is confident and aggressive, without drawing undue attention.
[[Where's Clark?|WW-165 Where's Clark?]]
[[What are we looking for?|WW-170 What are we looking for?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Where's Clark?"
"<div class="tooltip">DC<span class="tooltiptext">Washington D.C.</span></div>, I think. Two-man job anyway. It'll be fine."
[[What are we looking for?|WW-170 What are we looking for?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<<if hasVisited("WW-165 Where's Clark?")>>Okay. <</if>>What are we looking for?"
"Medical records. '<div class="tooltip"><<Sadie>><span class="tooltiptext">the bargirl suspected to have spent time with <small>DEVILFISH;</small> no longer at the club</span></div>' is on one of the certificates – <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> thinks the clinic might have her real name on file somewhere."
[[Got it. They find her...|WW-180 We find her]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it. They find her..."
"Yeah. Maybe she leads us straight to <div class="tooltip"> <small>DEVILFISH.</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>"
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> turns off the main road, bumping over the <<if $kate.agency == "cia" or $kate.agency == "csis">>curb<<else>>kerb<</if>> and threading into a dark narrow <div class="tooltip">trok<span class="tooltiptext">alleyway</span></div>. "There's something else," he says.
[[What?|WW-190 Missing persons]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What?" Tyres crunch on dirt as you weave between walls barely wider than the SUV.
"That necklace cam you wore worked great. <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>'s already ID'd four ex-<div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> from the photos behind the bar."
[[Excellent.|WW-200 Greta][$kateSays to "great"]]
[[Who are they?|WW-200 Greta][$kateSays to "whoDat"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "great">>\
"Excellent." //Fast work.//
"Yeah...except they all came back as missing persons."
<<elseif $kateSays == "whoDat">>\
<<emote-brows-raised>>\
"Who are they?"
"Missing persons."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Four from the same bar?|WW-210 Could be coincidence][$kateSays to "fourCoincidences"]]
[[Could be coincidence.|WW-210 Could be coincidence][$kateSays to "coincidence"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "coincidence">>\
"That...could be coincidence."
"Yeah, sex workers go missing, right. Still...<div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>'s updated the threat profile. They think you're <div class="tooltip">probably<span class="tooltiptext">in US intelligence: a 55-80% chance</span></div> at risk of being trafficked." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets that blunt threat assessment sink in for a moment.
<<elseif $kateSays == "fourCoincidences">>\
"Four in the same bar?"
"Yeah. Exactly. <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>'s updated the threat profile. They think you're <div class="tooltip">probably<span class="tooltiptext">in US intelligence: a 55-80% chance</span></div> at risk of being trafficked." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets that blunt threat assessment sink in for a moment.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Is there a way to help the missing women?|WW-215 Crusader Kate]]
[[Okay, I'll be extra cautious.|WW-220 Waif Kate]]
[[They're over-reacting.|WW-225 Alpha Kate]]
[[I'm not worried, I can handle myself.|WW-230 Fatale Kate]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is there anything we can do to help the missing women?"
<span class="greenHighlighter">Ian ''respected'' that.</span>
"Er...dunno. I'll ask. Main worry right now is you. We're gonna keep you in play, but fucking //do not// go anywhere without that ring, okay?" <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances across to make sure you're listening.
[[Okay.|WW-290 Okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay. Thanks for the heads up. I'll be extra cautious."
"Good. We're gonna keep you safe, but fucking //do not// go anywhere without that ring, okay?" <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances across to make sure you're listening.
[[Okay.|WW-290 Okay]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"It's four cases in what...twenty years. They're over-reacting."
"Four //confirmed,"// <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> corrects you. "So far. I need you to take this seriously. I don't want you going //anywhere// without that ring, okay?" He glances across to check you're listening.
[[Okay.|WW-290 Okay]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not too worried about it, Ian. I can handle myself."
"<div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>'s worried about it. //I'm// worried about it. I need you to take this seriously, $kate.cover.firstName, I don't want you going //anywhere// without that ring, okay?" <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances across to check you're listening.
[[Okay.|WW-290 Okay]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay." You wiggle your fingers to show that you're wearing it.
"Good. I'm always close, just stay switched on," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Alright, we've gotta focus on tonight. We need something to lead us to this <div class="tooltip"><<Sadie>><span class="tooltiptext">the bargirl suspected to have spent time with <small>DEVILFISH;</small> no longer at the club</span></div>."
[[Wherever she is.|WW-300 Gear in the back][$kateSays to "wherever"]]
[[If she's still alive.|WW-300 Gear in the back][$kateSays to "sheMaybeDid"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "wherever">>\
<<emote-brows-raised>>\
"Wherever she is..." If she's been trafficked, she might be permanently out of reach.
<<elseif $kateSays == "sheMaybeDid">>\
//"If// she's still alive."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Yeah." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> jerks a thumb over his shoulder. "There's gear and a change of clothes in the back."
[[Okay.|WW-310 Climb in back][$kateSays to "okay"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "okay">>\
"Okay."
<<elseif $kateSays == "noPeeking">>\
"No peeking."
"Wouldn't dream of it."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You wait until <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> out on a straight stretch of road, then [[climb into the back|WW-320 Slither]].
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Adjusting the weight of your bag, you squeeze between the seats, and climb over the centre console into the backseat.
//[[Look inside the grey backpack.|WW-330 Rummage]]//
<</page>><<silently>>
<<showFront>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
Settling onto the backseat, you unsling your <<handbag>>. The SUV bumps and rumbles as you cross a bridge over a <div class="tooltip">khlong<span class="tooltiptext">canal; hundreds of them criss-cross through Bangkok</span></div>.
Opening up the grey backpack, you find a rolled up bundle of clothing on the top.
Deeper in the bag are the various pieces of mission equipment. Most are wrapped up in bath towels and dish rags from the safehouse, so they don't clink together on the move.
<<include "WW-331 Exit navigation">>\
<</page>><<if not hasVisited("WW-340 Clothes")>>\
//[[Examine the clothes.|WW-340 Clothes]]//
<</if>>\
<<if not hasVisited("WW-360 Hard case")>>\
//[[Slide out a sleek black hard case.|WW-360 Hard case]]//
<</if>>\
<<if not hasVisited("WW-350 NVGs")>>\
//[[Unwrap a round bundle.|WW-350 NVGs]]//
<</if>>\
<<if not hasVisited("WW-370 The cylinder opens")>>\
//[[Unwrap a big cylindrical bundle.|WW-370 The cylinder opens]]//
<</if>>\
<<if not hasVisited("WW-380 Borescope")>>\
//[[Unwrap a boxy bundle.|WW-380 Borescope]]//
<</if>>\
<<if not hasVisited("WW-390 Guns guns guns")>>\
//[[Check out two triangular bundles.|WW-390 Guns guns guns]]//
<</if>>\
<<if hasVisited("WW-340 Clothes") and hasVisited("WW-360 Hard case") and hasVisited("WW-350 NVGs") and hasVisited("WW-370 The cylinder opens") and hasVisited("WW-380 Borescope") and hasVisited("WW-390 Guns guns guns")>>\
Okay. This is a //very// specific kit package, obviously tailored to a certain target.
[[Have you recce'd this clinic?|WW-420 Recce?]]
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
You unroll the clothes. They're not bulletproof or anything – it's just leggings and a plain longsleeve tee. Drab colours to help you blend into an urban environment.
They're rolled around two bags of surgical gloves, ultra thick, sizes L and S.
Ian's got hands like shovels, so you know whose is whose.
<<include "WW-331 Exit navigation">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Inside are two sets of <span class="imageLink"><<link "night vision goggles">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/nvgs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and an <span class="imageLink"><<link "infrared camera">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/irCamera.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
This will let you move around and take photos inside the target, without switching on the lights.
<<include "WW-331 Exit navigation">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You slide the <span class="imageLink"><<link "hard case">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/laptopHardCase.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> out of the bag, and pop it open.
Inside is the <span class="imageLink"><<link "ruggedised laptop">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/ruggedisedLaptop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> you used to hack into the systems at the Hard Cock Cafe.
You flip open the screen to check its status. It's powered and ready for your login, battery 100%.
<<include "WW-331 Exit navigation">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This bundle is packed with specialised breaking and entry gear.
There's a <span class="imageLink"><<link "deauther watch">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/deAutherWatch.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; a can of <span class="imageLink"><<link "liquid nitrogen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/liquidNitrogen2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; a block of <span class="imageLink"><<link "neodymium">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/neodymiumBlock.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>; an <span class="imageLink"><<link "electronic lockpick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with assorted tension wrenches; and a <span class="imageLink"><<link "chunky multi-tool">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberClosed2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Put on the deauther watch.|WW-371 Deauther]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/jewellery/deautherWatch/50_watch-deautherWatch")>>
<<set $avatar.clothing.pushUnique("clothing/jewellery/deautherWatch/50_watch-deautherWatch-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You slip on the <span class="imageLink"><<link "deauther watch">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/deAutherWatch.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
This very specialised piece of kit is for taking remote control of 2.4G WiFi devices. It uses an unpatched hardware exploit to do this, and it's impossible to block or detect.
The normal use on a <div class="tooltip">black bag job<span class="tooltiptext">a break-in to obtain intel</span></div> is to shut down outdoor security cameras, which often run on WiFi. With a deauther watch, you can turn them on and off at will as you move around the target site.
<<if hasVisited("GNO-47700 Kate chooses short nails")>>\
<<include "WW-331 Exit navigation">>\
<<else>>\
Tightening and buckling the strap isn't easy with [[your new nail extensions|WW-372 That was a bad idea]].
<</if>>\
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// If you're struggling do up a watch, how the hell are you supposed to pick a lock?
A tired wave of anger and frustration simmers up in your belly. //I'm a spy with fucking...stripper nails. Why the //hell// did I let them talk me into getting these?//
Glaring down at the <span class="imageLink"><<link "multi-tool">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberClosed2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you make a [[quick decision|WW-373 Nail clippers]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Unfolding the multi-tool converts it into the <span class="imageLink"><<link "most intimidating set of nail clippers">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberCutters.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> imaginable. One slip and you could lose a finger.
Rattling around on the backseat of a speeding SUV, it takes a couple of minutes to [[trim away|WW-374 Nail file]] all the salon lady's hard work from yesterday.
<</page>><<silently>>
<<emote-brows-calm>>
<<= '<<set $avatar.foreground.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-rear")>>' >>
<<= '<<set $avatar.underwear.pushUnique("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz")>>' >>
<<= '<<set $avatar.underwear.pushUnique("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz-rear")>>' >>
<</silently>>\
<<header>>\
<<page>>\
//Barely lasted a day.// The multi-tool has a <span class="imageLink"><<link "double cut metal file">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberMetalFile.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, designed for honing metal; you use it to smooth down the sharp edges of your fingernails.
//Scritch-scritch-scritch.// Pausing mission prep to file your nails makes you feel kind of //stupid.// Mercifully, Ian doesn't comment.
<<include "WW-331 Exit navigation">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This bundle contains an <span class="imageLink"><<link "infrared borescope">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/borescope.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
The tiny camera head is for peeping under doors, and it can see in the dark. The display unit is a bit bigger than a video game controller.
<<include "WW-331 Exit navigation">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/glock17Silenced.jpg" 0 800 311 0>>\
The first triangular bundle contains a suppressed Glock 17 handgun.
//[[Safety check.|WW-400 Safety check]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Keeping the <span class="imageLink"><<link "handgun">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/glock17Silenced.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> low and out of sight, you eject the magazine, then check the chamber.
The mag's loaded, the chamber's empty; Ian packed this weapon in <div class="tooltip">condition 3<span class="tooltiptext">magazine loaded, chamber empty. Weapon cannot fire</span></div>. You re-insert the magazine, and rewrap the weapon in the dishcloth.
//[[Check the other triangular bundle.|WW-410 Baby Glock]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/glock26.jpg" 32 800 520 0>>\
This contains a much smaller handgun, also in <div class="tooltip">condition 3<span class="tooltiptext">magazine loaded, chamber empty. Weapon cannot fire</span></div> when you check. It's a Glock 26, the 'baby Glock'. It fires the same 9mm round as its big brother – but only holds nine shots, and is a bit less accurate.
It's packaged up with a <span class="imageLink"><<link "Flashbang™ holster">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/flashbangHolsterEmpty.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, designed to clip onto the front of a bra. //Guess this one's mine.//
<<include "WW-331 Exit navigation">>\
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Have you recce'd the target?"
"Yeah." <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes briefly meet yours in the rearview. "It's on an industrial estate. <div class="tooltip">Low security<span class="tooltiptext">to an intelligence officer: locks, alarms, cameras</span></div>, but there's apartments all round."
Nosy neighbours are a big risk on a <div class="tooltip">black bag job<span class="tooltiptext">a break-in to obtain intel</span></div>. If someone calls the cops, you won't know about it until they arrive on the scene. Not to mention everyone seems to have a smartphone to record with nowadays.
[[So we'll get in and out fast.|WW-430 Let's rattle it]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"So we'll work fast."
"Right." <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes go back to the road.
//[[Change into the mission clothes.|WW-440 Shoes off]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-makeup-pedicure>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
You untie your <<trainer>>s, and kick them off into the footwell.
"Hey, heavy night last night, uh?" <<if hasVisited("GNO-200150 (GNO report) Only way to fit in") or hasVisited("GNO-200160 (GNO report) Not crazy about it")>>You glance up sharply – uncertain if he's taking a shot at you over <<if hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand") and hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ")>><<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody<<else>>Rick<</if>> and Kob<<elseif hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand")>><<if hasVisited("GNO-175000 Kate sleeps in Cody's room")>>Cody<<else>>Rick<</if>><<else>>Kob<</if>> – but decide he's just making conversation.<<else>>Your report painted a picture of a drug- and alcohol-fuelled all-nighter.<</if>> "You must be knackered."
[[Yeah, those girls know how to party.|WW-450 Shorts off][$kateSays to "theyCanParty"]]
[[Just a bit!|WW-450 Shorts off][$kateSays to "justABit"]]
[[I'm fine.|WW-450 Shorts off][$kateSays to "imFine"]]
<<link "Felt like being back at <<uni>>." "WW-450 Shorts off">><<set $kateSays to "feltLikeUni">><</link>>
<</page>><<silently>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "feltLikeUni">>\
<<set $fataleRep += 1>>\
<<emote-mouth-smirk>>\
"Yeah. Felt like being back at <<uni>>."
Ian chuckles at that. You unbutton and unzip your shorts, and wriggle them off in the backseat. The imitation leather feels cool and a little sticky on your bare skin.
<<elseif $kateSays == "justABit">>\
<<set $waifRep += 1>>\
<<emote-mouth-smirk>>\
You smile tiredly. "Just a bit."
Ian chuckles. "Hang in there."
You unbutton and unzip your shorts, and wriggle them off in the backseat. The imitation leather feels cool and a little sticky on your bare skin.
<<elseif $kateSays == "imFine">>\
<<set $kateSaid to "imFine">>\
<<set $alphaRep += 1>>\
<<emote-mouth-talking>>\
"I'm fine," you assure him, wriggling out of your shorts on the backseat. The imitation leather feels cool and a little sticky on your bare skin.
<<elseif $kateSays == "theyCanParty">>\
<<set $crusaderRep += 1>>\
<<emote-mouth-smirk>>\
"Yeah. Those girls know how to party."
"I bet."
You unbutton and unzip your shorts, and wriggle them off in the backseat. The imitation leather feels cool and a little sticky on your bare skin.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Are you stuck at the safehouse all the time?|WW-460 Ian doesn't get out much][$kateSays to "stuck"]]
[[Guess you can't get out much?|WW-460 Ian doesn't get out much][$kateSays to "getOutMuch"]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "stuck">>\
"What about you? Are you stuck at <div class="tooltip"><small>INDIGO?"</small><span class="tooltiptext">the safehouse</span></div>
<<elseif $kateSays == "getOutMuch">>\
"What about you? Guess you can't get out much?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"<<if $kateSays == "stuck">>Yeah.<<else>>Nah, not really.<</if>> I'm on standby, so...y'know." His big shoulders peep over the backrest when he shrugs. "Mustn't grumble, though. Worked in much shittier places."
//<span class="greyedOut">[Take off your top]</span>// [[I bet.|WW-470 Top off]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
"I bet."
You pull your t-shirt off over your head, and set it down on the backseat.
Picking up the <span class="imageLink"><<link "Flashbang holster">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/flashbangHolsterEmpty.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you turn it in your hands, reminding yourself how it works. You haven't worn one since your training <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
//[[Attach it to your bra.|WW-480 Empty holster]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
This isn't actually the ideal bra for this.
You'll have to [[squeeze together|WW-481 Scrunch]] the material at the front, giving the holster something to attach to.
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-scrunched-" +$kate.braSize)>>
<<set $avatar.underwear.delete("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You squeeze the material, scrunching it into a smaller band for the Flashbang.
//[[Clip it to your bra.|WW-482 Clippit]]//
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-emptyFlashbang-" +$kate.braSize)>>
<<set $avatar.underwear.delete("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-scrunched-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You slip the holster up inside your bra. The rugged Kydex clamshell is hard and cold against the underside of your soft bare breasts.
You push and nudge it into position, then loop the strap around your bra, and clip it shut.
//What a <<if $kate.agency == "cia" or $kate.agency == "csis">>pain in the ass<<else>>faff<</if>>.// You wiggle the empty holster, [[checking it's secure|WW-490 Eye contact]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Something makes you glance up – to meet <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes in the rearview.
A brief moment of awkward tension, then you both look away.
//[[Pick up the Glock 26.|WW-500 Carry condition]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Keeping it low and out of sight, you pick up the <span class="imageLink"><<link "baby Glock">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/glock26.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
It's currently in <div class="tooltip">condition 3<span class="tooltiptext">magazine loaded, chamber empty. Weapon cannot fire</span></div>, meaning it can't fire until you rack the slide.
That's the safest way to carry it, but it'll add an extra second or so to the time it takes you to draw and fire.
//<span class="greyedOut">[Safest]</span> [[Carry it in condition 3.|WW-510 Condition 3]]//
//<span class="greyedOut">[Quickest]</span> [[Make it ready it to fire.|WW-520 Condition 0]]//
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-glock26-" +$kate.braSize)>>
<<set $avatar.underwear.delete("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-emptyFlashbang-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
The side windows are tinted. Hiding behind the driver's seat so traffic ahead can't see you, you click the <span class="imageLink"><<link "Glock 26">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/glock26.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> securely into your bra holster.
//[[Put on the longsleeved T.|WW-530 T-shirt re-shirt]]//
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-glock26-" +$kate.braSize)>>
<<set $avatar.underwear.delete("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-emptyFlashbang-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
You rack the slide. A 9mm round feeds into the chamber with a satisfyingly menacing //shick-click.//
The <span class="imageLink"><<link "Glock 26">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/glock26.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is now in condition 0, ready to fire. Just need to be careful on the draw; <<if $kate.braSize == "small">>your boobs are small enough already<<else>>you don't want an instant breast reduction<</if>>.
The side windows are tinted. Hiding behind the driver's seat so traffic ahead can't see you, you click the weapon securely into your bra holster.
//[[Put on the longsleeved tee.|WW-530 T-shirt re-shirt]]//
<</page>><<silently>>
<<wear-top-blackLongSleevedTee>>
<</silently>>\
<<header>>\
<<page>>\
You slip into the tee, and smooth it down over the bra holster.
<<if $kate.braSize == "small">>\
Back <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>, a female instructor demonstrated how the handgun hides perfectly just below the breasts. But she had big tits; you always get some slight printing of the pistol through your shirt.
<<elseif $kate.braSize == "medium">>\
You haven't got a mirror, but you know from experience the handgun is impossible to spot, hiding under the curve of the breasts.
<<else>>\
One of the upsides of having big boobs is that they make the Flashbang //impossible// to detect. Guys can stare at your chest all they like, they'll never spot your pistol.
<</if>>\
//[[Put on the leggings.|WW-540 Leggings]]//
<</page>><<silently>>
<<wear-leggings-ogLeggings>>
<</silently>>\
<<header>>\
<<page>>\
You slide the stretchy leggings up over yours legs, lifting your butt off the backseat to pull them up around your hips.
They feel clingy and snug, hugging and supporting the muscles in your legs and butt.
<<link "//Put on your <<trainer>>s." "WW-550 Sneakers">><</link>>
<</page>><<silently>>
<<wear-shoes-greyAdidasPaceVSTrainers>>
<</silently>>\
<<header>>\
<<page>>\
You slip your <<trainer>>s back on, and double-knot the laces.
//Okay, ready.// You've been living in shorts and t-shirts, and working in just your <<knickers>> and heels. There's something comforting about being fully dressed, it makes you feel more professional, more like yourself.
You repack the rest of the gear carefully into the grey backpack, then [[climb back through|WW-560 Passenger]] to the passenger seat.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Squeezing between the seats, you clamber out over the centre console, and settle back into the passenger side.
"All clear so far," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reports. Vehicle surveillance isn't easy – you have to keep your target in the middle of a moving bubble, without being detected.
If there is a watch team on you, Ian's doing his best to make their job even harder, using sudden bursts of speed or surprise decisions to break out of the bubble, without making it look obvious. Calculated aggression, designed to force them to react and reveal themselves.
//[[Watch the traffic.|WW-570 All clear]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
You did lots of joint countersurveillance training <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>, <<if $kate.agency == "cia">>with cops and FBI agents trying to tail you around D.C. and Virginia<<elseif $kate.agency == "mi6">>with MI5 and Special Branch officers trying to tail you around Hampshire and London<<elseif $kate.agency == "asis">>with <div class="tooltip">ASIO<span class="tooltiptext">the Australian Security Intelligence Organisation</span></div> and police officers trying to tail you around Melbourne<<elseif $kate.agency == "csis">>with the Mounties trying to tail you around Ottawa<<elseif $kate.agency == "nzsis">>with cops trying to tail you around Auckland<<else>>ERROR IN KATE.AGENCY VAR<</if>>. At the start of the course, you could very rarely detect them; by the end, they could very rarely stick on you for long.
Now you put that training to work in Bangkok: watching for vehicles that stick with you, or the reactions you'd sometimes notice when a stressed out surveillance team is racing to keep up, or [[aggressively rushing ahead to 're-plot'|WW-575 Ring ring]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
As far as you can tell, you're totally clear. Of course, just because you can't //see// surveillance doesn't mean it's not there. In Moscow and Beijing, suspected officers might routinely be tracked with 20-man surveillance teams with access to aerial support.
But you're just dealing with Thai gangsters. If they're on you, they're //very// subtle and skilled. Your instinct tells you...
A familiar trill lets you know that <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> brought the <span class="imageLink"><<link "satphone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "That'll be <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div>," he mutters, unclipping it from his belt and passing it over.
<span class="greyedOut">//[Answer it]//</span> <<link "$kate.surname." "WW-580 Macer">><<set $kateSays to $kate.surname>><</link>>
<span class="greyedOut">//[Answer it]//</span> [[Domino's Pizza.|WW-580 Macer][$kateSays to "Domino's Pizza"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kateSays == "Domino's Pizza">>
<<emote-brows-calm>>
<</if>>
<<if ndef $kate.crusaderRep>>
<<set $kate.crusaderRep to 0,
$kate.waifRep to 0,
$kate.alphaRep to 0,
$kate.fataleRep to 0>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You extend the <span class="imageLink"><<link "antenna">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and hit the green button. "$kateSays."
<<if $kateSays == "Domino's Pizza">>\
<span class="greenHighlighter">Ian ''liked'' that.</span> <span class="redHighlighter"><<Olivia>> ''disliked'' that.</span>
<</if>>\
A brief comms lag, then a familiar American voice. "$kate.firstName<<if $kateSays == "Domino's Pizza">>? It's<<else>>, it's<</if>> <span class="imageLink"><<link "<<Olivia>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/olivia.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. How's it going?"
Answering positively is a <div class="tooltip">duress code<span class="tooltiptext">a covert signal that you've been captured</span></div> you arranged back in Scotland.
[[Lousy.|WW-590 Sat lag][$kateSays to "Lousy."]]
[[Not great.|WW-590 Sat lag][$kateSays to "Not great."]]
[[Could be better.|WW-590 Sat lag][$kateSays to "Could be better."]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
A moment's silence while your reply beams to Britain via a US military <div class="tooltip">comsat<span class="tooltiptext">communication satellite</span></div>, orbiting 22,000 miles above the planet.
"Good," <span class="imageLink"><<link "<<Olivia>>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/olivia.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "Interesting report this morning, thanks. Ian's briefed you on the missing women we ID'd?"
[[Yeah.|WW-600 Yeah]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah."
A pause while that transmits. "Be //careful.// But you're doing great. I wanted to go over a couple things while we could get you on the sat phone."
<<if hasVisited("GNO-200050 (GNO report) Kate requests authorisation for drug use") or hasVisited("GNO-200060 (GNO report) Kate avoided drugs because she wasn't authorised")>>\
[[Go ahead.|WW-602 Drugs authorisation]]
<<elseif hasVisited("GNO-200190 (GNO report) Can't dodge the D forever")>>\
[[Go ahead.|WW-604 Dodging the d]]
<<elseif hasVisited("GNO-200150 (GNO report) Only way to fit in") or hasVisited("GNO-200160 (GNO report) Not crazy about it")>>\
[[Understood.|WW-606 Sex positive]]
<<else>>\
[[Go ahead.|WW-610 Instagram]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Go ahead."
<<if hasVisited("GNO-200050 (GNO report) Kate requests authorisation for drug use")>>\
Quiet on the line, then <<Olivia>>'s voice. "First, no problem with the drug use last night, it was obviously appropriate in that group. You're green-lit to continue, at your discretion."
<<else>>\
Quiet on the line, then <<Olivia>>'s voice. "First, just wanted to address the drugs issue from last night. This is always going to be at your discretion, but you're the one in the field. If you decide drug use needs to be part of the cover then we'll support that, you can consider that pre-authorised."
<</if>>\
<<if hasVisited("GNO-200190 (GNO report) Can't dodge the D forever")>>\
[[Understood.|WW-604 Dodging the d]]
<<elseif hasVisited("GNO-200150 (GNO report) Only way to fit in") or hasVisited("GNO-200160 (GNO report) Not crazy about it")>>\
[[Understood.|WW-606 Sex positive]]
<<else>>\
[[Understood.|WW-610 Instagram]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WW-602 Drugs authorisation")>>\
"Understood."
<<else>>\
"Go ahead."
<</if>>\
A pause for the comms lag. "I wanted to touch on the point you raised about how difficult it's going to be to avoid casual sex in this environment. Unfortunately, we do agree with that assessment. It's always going to be at your discretion, but remember you're pre-authorised for it if it happens.
"$kate.firstName, our main concern on this is you, and I want to reiterate that we're not gonna push you further than you can go. If it gets too much, just say. We'll pull you out, okay?"
[[Okay, thanks.|WW-610 Instagram][$kateSays to "Okay. Thanks."]]
[[I'm fine for now.|WW-610 Instagram][$kateSays to "I'm fine for now."]]
[[I can take it.|WW-610 Instagram][$kateSays to "I can take it."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WW-602 Drugs authorisation")>>\
"Understood."
<<else>>\
"Go ahead."
<</if>>\
A pause for the comms lag. "I wanted to touch on <<if hasVisited("GNO-200100 (GNO report) Kate reports the Kob BJ") and hasVisited("GNO-200140 (GNO report) Kate reports her one-night stand")>>these, ah, sexual encounters<<else>>this, ah, sexual encounter<</if>> you had last night. <<if hasVisited("GNO-200150 (GNO report) Only way to fit in")>>We discussed this at length today, and we do agree with your assessment that it's unfortunately just something you're going to have to do in order to stay credible.<<else>>We've discussed this at length today, and we do agree with your assessment that this is unfortunately what's required, and we certainly appreciate that you're willing to continue.<</if>> <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>'s position is the same.
"$kate.firstName, our main concern here is you, and I want to reiterate we're not going to push you further than you can go. We appreciate what you're doing, but if it gets too much, just say. We'll pull you out, okay?"
[[Okay, thanks.|WW-610 Instagram][$kateSays to "Okay. Thanks."]]
[[I'm fine for now.|WW-610 Instagram][$kateSays to "I'm fine for now."]]
[[I can take it.|WW-610 Instagram][$kateSays to "I can take it."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WW-604 Dodging the d") or hasVisited("WW-606 Sex positive")>>\
"$kateSays"
A short delay. "<<if $kateSays == "I can take it." or $kateSays == "I'm fine for now.">>Good.<<else>>Okay.<</if>> I want to touch on this Instagram thing the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> brought up."
<<elseif hasVisited("WW-602 Drugs authorisation")>>\
"Understood."
A short delay. "I want to touch on this Instagram thing the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> brought up."
<<else>>\
"Go ahead."
A short delay. "First, want to touch on this Instagram thing the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> brought up."
<</if>>\
Last night, <<Amanda>> said you'd have to make an Instagram profile for work. Social media can seriously complicate an officer's undercover work in the future, so you're not surprised <<Olivia>>'s getting back to you with direction.
[[Yeah?|WW-615 Want me to dodge it right][$kateSays to "Yeah?"]]
[[You want me to avoid it, right?|WW-615 Want me to dodge it right][$kateSays to "You want me to avoid it, right?"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kateSays == "You want me to avoid it, right?">>
<<emote-brows-raised>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
<<if $kateSays == "You want me to avoid it, right?">>\
A brief pause while that transmits. "If you can. But we expect they'll just spring it on you when you're in the club. We've discussed it and you're cleared to go ahead with that if you need to."
<<else>>\
A brief pause while that transmits. "Avoid it if you can, obviously. But we expect they'll just spring it on you when you're in the club. You're cleared to go ahead with that if you need to."
<</if>>\
//Um...//your mouth feels dry and you swallow uncertainly. When Jib showed you her club Insta...the only thing she was wearing was emojis.
[[What about my digital footprint?|WW-620 What about future covers?]]
[[I'm not sure I'm comfortable with doing that.|WW-660 Not sure I'm comfortable with Insta]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"But, uh...what about my footprint online?" That always needs to be taken into account when constructing a <div class="tooltip">legend,<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div> and it always needs to be believable and consistent. //No one goes from Instagram Thot to Commercial Attaché.//
Static on the line. "We discussed this today, and ultimately we don't think it's a huge deal operationally. It probably won't follow you out of Bangkok, and if it did it might even help. Make you seem less like an officer, potentially."
[[I guess...|WW-630 I guess]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _myOffice to "IOC">>
<<elseif $kate.agency == "mi6">>
<<set _myOffice to "London">>
<<elseif $kate.agency == "asis">>
<<set _myOffice to "Canberra">>
<<elseif $kate.agency == "csis">>
<<set _myOffice to "Ottawa">>
<<elseif $kate.agency == "nzsis">>
<<set _myOffice to "Wellington">>
<<else>>
<<set _myOffice to "ERROR IN MYOFFICE TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I guess..."
A pause for the comms lag. "That's how we're seeing it, anyway. Here and <div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div>. So you're cleared to go ahead."
<<link "Have you checked with _myOffice?" "WW-640 Have you checked">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Have you checked with <<if $kate.agency == "cia">><div class="tooltip">IOC<span class="tooltiptext">CIA Information Operations Center</span></div><<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>?" You don't actually //work// for <<if $kate.agency == "cia">><div class="tooltip">CTC<span class="tooltiptext">CIA Counterterrorism Mission Center</span></div><<else>>the CIA<</if>>, you're just on loan to them.
A pause. "Yes, through <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro: Director, CIA Counterterrorism Mission Center</span></div>. They green-lit it this morning."
You're not surprised they didn't refuse a request directly from the <<if $kate.agency == "cia">>Prince of Darkness himself<<else>>CIA's Prince of Darkness<</if>>.
[[Okay, understood.|WW-650 Understood]]
[[I'm not sure I'm comfortable with it.|WW-660 Not sure I'm comfortable with Insta]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, understood." This is going to take a little time to process; you need to compartmentalise it for now.
At least it's not //nude// nude...you'll be wearing emojis. //Fuck.// This had //better// stay in Bangkok.
"Okay, good. You're doing //great,// by the way. We didn't expect so much <div class="tooltip">product<span class="tooltiptext">raw intelligence gained from the field, to be analysed and distributed by HQ</span></div> so soon, we're scrambling to keep up."
[[Doing my best.|WW-680 Doing my best][$kateSays to "crusader"]]
[[Thanks, I appreciate it.|WW-680 Doing my best][$kateSays to "waif"]]
[[Keep scrambling, I'm working my ass off out here.|WW-680 Doing my best][$kateSays to "alpha"]]
[[Speed up, they want me to bargirl.|WW-680 Doing my best][$kateSays to "fatale"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm, uh...just not sure I'm personally comfortable with it." Nudes on <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> is one thing – your friends and family can't log into <small>ECHELON</small>. Parading around on Instagram wearing just emojis is something else.
A pause for the sat lag. "Of course. Everyone here will understand if it's too much. Remember this only goes as far as you say. Give the word, we'll get you out."
[[Not yet.|WW-670 Not yet]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not yet."
A pause while that transmits. "Good. I will say it takes //really// hard work to grow an Instagram account, it won't just suddenly go viral because you're on it. <div class="tooltip">Almost certainly<span class="tooltiptext">in US intelligence: a 95-99% chance</span></div>, you'll delete it after this op and it'll never come up again. But it has to be your decision in the field, I'm just saying we'll back you either way."
[[Okay, thanks.|WW-675 Okay, thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, thanks."
A pause. "Don't mention it. You're doing //great,// by the way. We didn't expect so much <div class="tooltip">product<span class="tooltiptext">raw intelligence gained from the field, to be analysed and distributed by HQ</span></div> so soon, we're scrambling to keep up."
[[Doing my best.|WW-680 Doing my best][$kateSays to "crusader"]]
[[Thanks, I appreciate it.|WW-680 Doing my best][$kateSays to "waif"]]
[[Keep scrambling, I'm working my ass off out here.|WW-680 Doing my best][$kateSays to "alpha"]]
[[Speed up, they want me to bargirl.|WW-680 Doing my best][$kateSays to "fatale"]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "crusader">>\
<<set $kate.crusaderRep += 1>>\
"Doing my best."
A pause for the comms lag. "You're doing //great.// What about you, how are you holding up?"
<<elseif $kateSays == "waif">>\
<<set $kate.waifRep += 1>>\
"Thanks, I appreciate it."
A pause for the comms lag. "You're doing //great.// What about you, how are you holding up?"
<<elseif $kateSays == "alpha">>\
<<set $kate.alphaRep += 1>>\
"Keep scrambling. I'm working my ass off out here."
A pause for the comms lag. "We know. Trust me, this op is high priority at this end. What about you, how are you holding up?"
<<elseif $kateSays == "fatale">>\
<<set $kate.fataleRep += 1>>\
"Speed up, they want me to <div class="tooltip">bargirl<span class="tooltiptext">work as a club prostitute</span></div>."
A pause for the comms lag. "We'll get you out before that happens, don't worry. What about you, are you holding up okay?"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Fine, no problems.|WW-690 No problems]]
[[Hanging in there.|WW-692 Hanging in there]]
[[I'm fine. The club sucks.|WW-694 The club sucks]]
[[They don't suspect a thing.|WW-696 They don't suspect a thing]]
<</page>><<silently>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine," you reply, "no problems."
<<include "WW-700 Olivia's pep talk">>\
<</page>><<silently>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm...hanging in there."
<<include "WW-700 Olivia's pep talk">>\
<</page>><<silently>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm fine," you reply. "The club sucks, but I'm fine."
<<include "WW-700 Olivia's pep talk">>\
<</page>><<silently>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's going okay," you reply. "They don't suspect a thing."
<<include "WW-700 Olivia's pep talk">>\
<</page>>A long pause. "<<if hasVisited("WW-696 They don't suspect a thing")>>Keep that up.<<else>>Good.<</if>> Listen...I can hear the pressure in your voice, I know it can't be easy, but no one's //ever// got this close to <div class="tooltip"><small>DEVILFISH.</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div> I think we're gonna catch him, if you can just keep doing what you're doing."
[[I've come this far, I won't quit now.|WW-710 Won't quit now]]
<<link "Thanks, <<Olivia>>. I won't let anyone down." "WW-720 Won't let anyone down">><</link>>
[[I'll do what it takes to find him.|WW-730 I'll do what it takes]]
[[Don't worry, I'll keep my end up.|WW-740 I'll keep my end up]]<<silently>>
<<emote-mouth-talking>>
<<set $kate.crusaderRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"I've come this far. I won't quit now."
<<include "WW-750 We're counting on you">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $kate.waifRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, <<Olivia>>. I won't let anybody down."
<<include "WW-750 We're counting on you">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $kate.alphaRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"I'll do what it takes to find <div class="tooltip"><small>DEVILFISH</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div><small>."</small>
<<include "WW-750 We're counting on you">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $kate.fataleRep += 1>>
<<setDominantArchetype>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry. I'll keep my end up."
<<include "WW-750 We're counting on you">>\
<</page>>A brief wait. "We're all counting on you. Okay, that's everything. Good luck tonight."
"Thanks." You kill the call, and hand the <span class="imageLink"><<link "satphone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[back to Ian|WW-1000 Title card]].<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay."
A brief wait. "Okay. Good luck tonight."
"Thanks." You kill the call, and hand the <span class="imageLink"><<link "satphone">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/satPhone.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[back to Ian|WW-1000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''PHRA KANONG''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<</silently>>\
<a data-passage="WW-1010 Ramshackle side street">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/phraKanong/phraKanongNightTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/phraKanong/ramshackleSoi.jpg" 46 493 444 0>>\
After a long, circuitous drive, <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> takes a sudden turn up a ramshackle little <div class="tooltip">soi<span class="tooltiptext">side street</span></div>, pulls up, and parks the SUV.
A twinge of fear and excitement turns in your stomach as you realise the cleaning drills are over. The dangerous part's about to begin.
You climb out into the hot night, keeping watch on the street while Ian preps his equipment. The air is thick with that weird Bangkok smell. [[Oppressive humidity, sizzling street food and the acrid tang of car exhaust|WW-1020 Pre mission jitters]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're standing around in a busy little mixed-use neighbourhood. You and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just look like a couple of <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> tourists.
On the road, the debriefing and countersurveillance kept your mind busy. Now you're out on foot, presumably just a short walk from the target, the <div class="tooltip">black bag job<span class="tooltiptext">a break-in to obtain intel</span></div> feels intimidating and all too close.
A small, cowardly part of you desperately wants to wriggle out of doing this. As if you could put it off, or call in sick or something. You breathe deeply to control the dull, nauseating knot building up in your stomach.
Ian slams the SUV door shut. "Ready?"
[[Think so.|WW-1030 Let's do it][$kateSays to "thinkSo"]]
[[Let's do it.|WW-1030 Let's do it][$kateSays to "lezduit"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "lezduit">>\
"Let's do it."
<span class="greenHighlighter">Ian ''liked'' that.</span>
<<elseif $kateSays == "thinkSo">>\
"Think so."
"It'll be fine, don't worry."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you along the <div class="tooltip">soi<span class="tooltiptext">side street</span></div>, heading away from the main road. It's quiet, then a motorbike buzzes past like an angry wasp. The loud, unexpected noise sends a jolt through your body that makes you want to flinch.
Despite your training, despite having a handgun strapped to your chest, you can't shake a growing feeling of [[intense vulnerability|WW-1040 Tense vulnerability]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You're here on a <div class="tooltip">NOC<span class="tooltiptext">Non Official Cover: a posting in a hostile environment, without diplomatic immunity</span></div> – which means no diplomatic immunity if you're arrested. Just a long stay in a third world jail.
If you're lucky, <<if $kate.agency == "cia">>the State Department<<elseif $kate.agency == "mi6">>the <div class="tooltip">FCO<span class="tooltiptext">Foreign & Commonwealth Office</span></div><<else>>the diplomatic service<</if>> will get you out...//someday.// If not...you wouldn't be the first <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer to end up in front of a firing squad. Or left to rot in some foreign prison, permanently out of reach.
Walking beside you, <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> demeanour is calm and inscrutable. "Snap cover?" he murmurs.
He means, //what's the story if we get caught sneaking around?//
[[We're good samaritans, looking for a lost cat.|WW-1041 Good Samaritans]]
[[We're urban explorers, scouting a location.|WW-1042 Urban explorers]]
[[You're my boyfriend, we're looking for somewhere to fuck.|WW-1043 The one everybody will pick]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Lady asked if we'd seen her cat," you say, voice low. "We thought we heard it meow."
That's a snap cover you used a couple of times in training. It's pretty good, because it lets you use questions to take control of the conversation – //have you seen it? Will you help us look?//
"Roger," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Alright, it's just [[through this trok|WW-1050 Arrived on target]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We're urban explorers," you say, voice low. "This is a new site for us, we're checking it out."
The advantage of this snap cover is that it could explain the equipment at first glance. Not the guns, of course, but if those come out then you're way past bluffing.
"Roger," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Nearly there, it's just [[through this trok|WW-1050 Arrived on target]]..."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Always one believable reason a man and a woman are sneaking around together.//
[[We're looking for a place to get intimate.|WW-1044 A place of our own][$kateSays to "get intimate"]]
[[We're looking for a place to have sex.|WW-1044 A place of our own][$kateSays to "have sex"]]
[[We're looking for a place to fuck.|WW-1044 A place of our own][$kateSays to "fuck"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You're my boyfriend," you say, voice low. "We're looking for a place to $kateSays."
<span class="greenHighlighter">Ian ''liked'' that.</span>
"Uh huh," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "[[Roger that|WW-1050 Arrived on target]]."
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''KHAENG KOI INDUSTRIAL ESTATE''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
A short walk takes you to a <div class="tooltip">soi<span class="tooltiptext">side street</span></div> running past a large industrial estate.
<<image "/locationPhotos/thailand/khaengKoiIndEst/industrialEstateYard.jpg" 268 768 568 0>>\
Ringed by a ramshackle perimeter fence, this sprawling, warehouse-like building is home to dozens of small businesses.
//[[Security assessment.|WW-1060 Security assessment]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The fence itself is wire mesh. Should be easy to cut and crawl through.
A CCTV camera is up on a tall post, watching the yard. Marked with a logo of a red squid, it's probably feeding back to a private security company somewhere. But you can jam it with the deauther watch.
You agree with <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – the main risk is the apartments across the street. The yard's brightly lit, and if a nosy neighbour calls the cops, you need to be //gone// before they arrive.
[[What's the police response time?|WW-1070 Police response]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Police response?"
"Slow, but." He nods to a red-and-white warning sign on the fence, with the same squid logo as the CCTV camera. "24-hour monitoring. Rent-a-cops can be here in fifteen <div class="tooltip">mikes<span class="tooltiptext">minutes</span></div>."
[[Better work fast.|WW-1080 Better work fast]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Better work fast."
"Camera's first."
//[[Neutralise it with the deauther watch.|WW-1090 Deauther watch]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
Outdoor cameras often run off solar power and WiFi these days. It's cheaper than installing cables.
Which is great...until the cameras are up against someone who knows how to jam 2.4G WiFi devices with deauthentication packet bursts.
//[[Scan local networks for the camera.|WW-1100 Deauther scan]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You set the <span class="imageLink"><<link "deauther watch">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/deAutherWatch.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on <small>SCAN,</small> and scroll through various network and device names.
Many networks are named in the Thai alphabet – which you can't read – but the device names are all in factory default English.
You find the camera – device DS-2CD2032-I – and set it as the target.
//[[Jam the camera.|WW-1110 Deauth attack]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Selecting <span class="imageLink"><<link "<small>ATTACK > DEAUTH</small>">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/deAutherWatch.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is all it takes.
The watch spams the camera with non-stop deauthentication commands, kicking it off its network faster than it can reconnect.
The best thing about this attack is that the camera feed back at the security centre doesn't go blank; it freezes on the last still frame the camera recorded. It's on a stationery mount, pointed at a door: only a //very// observant rent-a-cop will notice anything is wrong at the Khaeng Koi Industrial Estate.
[[Camera's down.|WW-1120 LET'S DO DIS]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Camera's down."
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "[[Let's do this|WW-1130 Perimeter insecure]]."
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<<set $avatar.clothing.pushUnique("clothing/accessories/blackUltrathickSurgicalGloves/20_blackUltrathickSurgicalGloves3")>>
<<set $avatar.clothing.pushUnique("clothing/accessories/blackUltrathickSurgicalGloves/20_blackUltrathickSurgicalGloves3-rear")>>
<<remove-bracelet-friendshipBraceletsLeftWrist>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you along a little <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, running down the side of the fence.
Cloaked in humid darkness, sweat trickling down your back, your heart's pounding as you glove up. Ian does the same, then [[pulls the liquid nitrogen spray|WW-1140 Pssssh]] from the backpack.
<</page>><<widget "printInfiltrationClock">>\
<<silently>>
<<set $infilClockMM to Math.floor( $infiltrationSeconds / 60 ),
$infilClockSS to $infiltrationSeconds % 60>>
<</silently>>\
<small>''Infiltration clock – <span class="blinking"><<if $infilClockMM < 10>>0<</if>>$infilClockMM:<<if $infilClockSS < 10>>0<</if>>$infilClockSS</span>''</small>
<</widget>><<silently>>
<<set $infiltrationSeconds to 0,
$infilClockMM to Math.floor( $infiltrationSeconds / 60 ),
$infilClockSS to $infiltrationSeconds % 60>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
A steady //psssh// as <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sprays the chain link fence with liquid nitrogen.
Dense white fog billows off the fence, curling away slowly in weird, undulating clouds.
//[[Keep watch.|WW-1150 Lookout]]//
<</page>><<silently>>
<<showRear>>
<<set _randomSeconds to random(15,25)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You keep a lookout down the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, while Ian preps the fence.
Your eyes keep sweeping the <span class="imageLink"><<link "apartment block">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/apartmentBlock.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> across the street. Lights are blazing in most of the rooms, but you don't see anyone standing by their window. Which makes sense now you're here, it's not like they have a majestic view.
Behind you, the hissing stops, replaced by the sound of Ian [[rummaging in the backpack|WW-1160 Clip clip]].
<</page>><<silently>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
//Snip...Snip....Snip.// Ian clips steadily through the chain link.
A green and yellow taxi rolls past the end of the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>. You freeze, holding your breath til it passes, even though you know you're hidden in the dark. Behind you, Ian just keeps on [[cutting the fence|WW-1170 Charlie's in the wire]].
<</page>><<silently>>
<<showFront>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Done, let's go."
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> curls his fingers into the loose section of fence, and peels it up, holding open a gap just big enough to crawl through.
//[[Get down and crawl through.|WW-1175 Crawl position, down]]//
<</page>><<silently>>
<<showRear>>
<<set _randomSeconds to random(3,7)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You drop down to all fours in the dirt.
//[[Crawl through into the yard.|WW-1180 Penetration]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<<set _randomSeconds to random(7,10)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You crawl through the gap on your knees and elbows, into the industrial yard.
This is it – you're trespassing. <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets go of the fence once you're through.
//[[Peel it up on your side.|WW-1190 Test your strength]]//
<</page>><<silently>>
<<showFront>>
<<set _randomSeconds to random(3,5)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You curl your fingers into the chain link fence, and heave.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Strength check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Strength check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
Ian made it look easy, but the fence is surprisingly heavy. You need to squat and lift with your legs and your back to do what he did with his arms.<br />
<br />
Straining, you hold it open [[Ian crawls through|WW-1200 Ian crawls through]].
<<else>>
Ian made it look easy, but on your first try you're startled by the fence's weight and resistance.<br />
<br />
You manage to peel it up a short way...then it springs out of your fingers, clattering back down with a metallic //tish.//<br />
<br />
[[Fuck.|WW-1195 Fuck!]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Strength//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(5,9)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-eyes-big>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Fuck!" The curse escapes your lips like a hiss.
//[[Try again.|WW-1196 If at first]]//
<</page>><<silently>>
<<set _randomSeconds to random(5,9)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-brows-frown>>
<<emote-eyes-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You squat down, curl your fingers into the wire, and pull with all your strength.
This time you're expecting the resistance, and you pull with all the strength in your back and your legs too.
The fence comes up and you cling onto it while [[Ian crawls through|WW-1200 Ian crawls through]].
<</page>><<silently>>
<<emote-calm>>
<<set _randomSeconds to random(7,9)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shoves the backpack through the gap, then belly crawls in after it.
You let the fence down with a little grunt of relief. Your fingers throb where you were holding it up.
It curls back down into position so closely it's hard to see. It occurs to you that it won't be easy to find it again on the way out.
//[[Look for a landmark.|WW-1210 Landmark]]//
<</page>><<silently>>
<<set _randomSeconds to random(2,3)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You decide to count fence posts. //Four posts in from the back right corner...//
<span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on his feet, slinging on the backpack. "C'mon," he mutters sharply.
//[[Walk casually around to the front door.|WW-1220 Lit up]]//
<</page>><<silently>>
<<set _randomSeconds to random(9,14)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/industrialEstateYard.jpg" 268 768 568 0>>\
<<printInfiltrationClock>>\
Now you have to cross a well-lit parking lot, right in front of a security camera. You check the <span class="imageLink"><<link "deauth attack">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/deAutherWatch.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is still running as you fall into step beside <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
If there //are// nosy neighbours, the best thing to do is just stroll around casually, like you belong here.
Great in theory; nervewracking in practice. You pulse is starting to spike and your <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> training kicks in. [[Box breathing|WW-1230 Box breathing]] for alertness and composure.
<</page>><<silently>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You concentrate on the breathing technique they taught you <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>. //In <small>2, 3, 4...</small>hold <small>2, 3, 4...</small>out <small>2, 3, 4...</small>hold <small>2, 3, 4...</small>//
It's the same thing they teach fighter pilots and special forces soldiers. Amazing how just breathing can calm your body down.
You can feel your heart rate coming back under control as you walk calmly and casually across the [[well-lit yard|WW-1240 Alcove]].
<</page>><<silently>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/frontDoor1.jpg" 100 1000 800 0>>\
<<printInfiltrationClock>>\
The main door's set into an alcove. You slip into it, grateful for a little shadow and visual cover.
//[[Pick the lock.|WW-1250 Kronos]]//
<</page>><<silently>>
<<set _randomSeconds to random(7,11)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sets down the backpack. He gets out the <span class="imageLink"><<link "borescope,">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/borescope.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to check behind the door; you grab the <span class="imageLink"><<link "Kronos lockpick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, pick a tension wrench, and get to work.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to pick the main lock. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace "#avatar-container">>\
<<emote-brows-attentive>>
<<set $avatar.clothing.pushUnique("clothing/accessories/kronosLockpick/50_kronosLockpick")>>
<<set $avatar.clothing.pushUnique("clothing/accessories/kronosLockpick/40_kronosLockpick-rear")>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You slip the tension wrench and the lockpick into the keyhole. The <span class="imageLink"><<link "Kronos">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> whirrs quietly, like a dentist's drill, vibrating in your hand as you probe for the [[right spots|WW-1290 Click!]]...
<<else>>
You slip the tension wrench and the lockpick into the keyhole. The <span class="imageLink"><<link "Kronos">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> whirrs quietly, like a dentist's drill, vibrating in your hand as you probe for the [[right spots|WW-1250 Tricky lock 1]]...
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
//Whirr, whirr, scrape, scrape.// Sometimes a lock will just pop straight open. But it doesn't this time.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finishes up with the borescope, packs it back into the rucksack. //He's ready, fuck.//
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to pick the main lock. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 5>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: (_kateD10+1) = <<= _kateD10+1>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You keep working, [[probing the lock|WW-1290 Click!]] with the softly buzzing Kronos.
<<else>>
You keep working, [[probing the lock|WW-1260 Tricky lock 2]] with the softly buzzing Kronos.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+1<span class="tooltiptext">+0 //Tradecraft// skill, +1 lock familiarity</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
//Whirr, buzz, scrape.// You've always hated picking lever locks, they're not as intuitive as pin tumblers.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> moves around behind you, standing between you and the street while you work.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to pick the main lock. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 4>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: (_kateD10+2) = <<= _kateD10+2>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
//[[Come on, come on...|WW-1290 Click!]]//
<<else>>
//[[Come on, come on...|WW-1270 Tricky lock 3]]//
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+2<span class="tooltiptext">+0 //Tradecraft// skill, +2 lock familiarity</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
//Buzz...click...scrape...whirr...//
You can feel that you're teasing the levers, you just can't seem to get them to click up into place. //Come on, you little fuck...//
"Come on..." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to pick the main lock. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 3>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: (_kateD10+3) = <<= _kateD10+3>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
[[Almost there.|WW-1290 Click!]]
<<else>>
[[Almost there.|WW-1280 Almost there]]
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+3<span class="tooltiptext">+0 //Tradecraft// skill, +3 lock familiarity</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Almost there," you promise. "Almost there..."
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to pick the main lock. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 2>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: (_kateD10+4) = <<= _kateD10+4>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace "#avatar-container">>\
<<emote-mouth-calm>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
//Buzz, vrrr, [[scrape, scrape|WW-1290 Click!]]...//<br />
<<else>>
//Buzz, vrrr, scrape, click, scrape...//<br />
<br />
"Here," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "[[Let me tr–|WW-1290 Click!]]"
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+4<span class="tooltiptext">+0 //Tradecraft// skill, +4 lock familiarity</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<<if lastVisited("WW-1270 Tricky lock 3") is 1>><<emote-mouth-talking>>"Almost there..." <</if>>The lock suddenly yields, allowing the tension wrench to turn in your fingers. With a springy, gratifying little //shlick,// the bolt slides partly open.
You carefully withdraw the <span class="imageLink"><<link "Kronos">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, then turn the tension wrench the rest of the way. //Click.// The lock's open.
Now the only thing keeping you out is the [[electronic keypad|WW-1500 Keypad]].
<</page>><<silently>>
<<set _randomSeconds to random(3,6)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<<set $avatar.clothing.delete("clothing/accessories/kronosLockpick/50_kronosLockpick")>>
<<set $avatar.clothing.delete("clothing/accessories/kronosLockpick/40_kronosLockpick-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You turn your attention to the keypad. It's the typical cheap, mass-produced door entry system that seems high-tech and secure...until you get taught how to bypass them with a pocket knife.
[[Pass the multi-tool.|WW-1510 Multi]]
<</page>><<silently>>
<<set _randomSeconds to random(1,2)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Multi," you mutter, holding out your hand like a surgeon expecting an instrument.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> presses the <span class="imageLink"><<link "Gerber multi-tool">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberClosed2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> into your gloved palm.
//[[Fold out the screwdriver.|WW-1520 Screwdriver]]//
<</page>><<silently>>
<<set _randomSeconds to random(30,50)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<<emote-brows-attentive>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Folding out the <span class="imageLink"><<link "screwdriver tool">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberScrewdriver.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you loosen the four screws holding the keypad to the wall.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to defeat the keypad. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace "#avatar-container">>\
<<emote-brows-attentive>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
With the plate loosened, you fold away the screwdriver and [[fold out the blade|WW-1530 Easy keypad]]...
<<else>>
With the plate loosened, you fold away the screwdriver and [[fold out the blade|WW-1540 Tricky keypad]]...
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(8,12)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Slipping the <span class="imageLink"><<link "knife">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberKnife.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> behind the keypad panel, you feel for the internal parts.
//That's the anti-tamper spring...so the door contact should be a little to the left...feels like it should be just under this bit of casing...//
You touch the tip of the blade to the correct circuit. The door unlocks with a loud //click,// just like if you'd [[punched in the right code|WW-1600 A foot in the door]].
<</page>><<silently>>
<<set _randomSeconds to random(8,12)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Slipping the <span class="imageLink"><<link "knife">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberKnife.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> behind the keypad panel, you feel for the internal parts.
//That's the anti-tamper spring...so the door contact should be a little to the left...//
//Fuck.// You can't find it, you're gonna have to [[dismount the panel|WW-1550 Dismount the panel]].
<</page>><<silently>>
<<set _randomSeconds to random(30,40)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Knife away, <span class="imageLink"><<link "screwdriver back out">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberScrewdriver.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. You unscrew the panel completely, and lift it off the wall.
This would //normally// set off a noise alarm, but you already found the anti-tamper spring. You fool it by using the metal frame of the multi-tool to create a new circuit between the spring and the front panel.
You carry out a quick visual check of the internal contacts, wires and circuits. Before your <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> training, this would have all just looked like black magic to you. Now you can immediately see [[which contact opens the door|WW-1560 Remount]].
<</page>><<silently>>
<<set _randomSeconds to random(30,40)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
The panel goes back on the wall, loosely screwed. Then you fold away the screwdriver, and fold out the <span class="imageLink"><<link "knife">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberKnife.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
A moment's gentle probing...then you find the sweet spot. The tip of the blade touches the correct circuit, and the door unlocks with a loud //click,// just like if you'd [[punched in the right code|WW-1600 A foot in the door]].
<</page>><<silently>>
<<set _randomSeconds to random(8,12)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> moves in smoothly now. Holding the <span class="imageLink"><<link "neodymium">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/neodymiumBlock.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> block up to the doorframe, he pushes open the door with his boot.
Periodic //beeps// ring out from the dark corridor, an alarm system warning that it's armed.
But it doesn't go off. The powerful magnetic field emitted by the neodymium tricks the door contact into thinking the door's still closed.
//Beep...beep...//
//[[Tighten the keypad back onto the wall.|WW-1610 Tightened]]//
<</page>><<silently>>
<<set _randomSeconds to random(30,40)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Using the <span class="imageLink"><<link "screwdriver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/gerberScrewdriver.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you tighten the keypad back onto the wall.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds the door ajar with his boot while you work.
//[[Enter the building.|WW-1620 Dark corridor]]//
<</page>><<silently>>
<<set _randomSeconds to random(4,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Ducking under his arm, you push open the door and slip inside the building, dragging the backpack in with you.
You're in a dark corridor, only lit from outside. Then <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slips in behind you. He lets the door click shut, and the two of you are plunged into [[total blackness|WW-1630 Endless dark]].
<</page>><<silently>>
<<set _randomSeconds to random(4,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
The alarm panel chirps in the dark. Rummaging in the backpack, you find the straps and rubbery eye caps of your <div class="tooltip">NVGs<span class="tooltiptext">Night Vision Goggles</span></div>.
//[[Put them on.|WW-1640 Goggles on]]//
<</page>><<silently>>
<<set _randomSeconds to random(4,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set $avatar.foreground.pushUnique("accessories/samsNVGs/60_samsNVGs")>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle + "-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You pull them on over your head, smoothing the straps down into position. The goggles have that musty smell that kit picks up when its left in storage.
//[[Switch them on.|WW-1650 Night vision]]//
<</page>><<silently>>
<<set _randomSeconds to random(4,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/nvgCorridor.jpg" 300 1000 700 0>>\
<<printInfiltrationClock>>\
A soft //click.// The corridor lights up in grainy, eerie green.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> moves off ahead, leading you to the [[door of the STD clinic|WW-1660 Clinic door]].
<</page>><<silently>>
<<set _randomSeconds to random(12,20)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
The burglar alarm beeps away. You walk quietly through the darkness with <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span>, passing doors marked with printouts and placards of various small business logos.
"This one," he murmurs. There's a sign on the door; you recognise the green checkmark logo from the STD certificates displayed in the club.
<div style = "display: block; margin-left: auto; margin-right: auto; width: 50%;">\
<table>\
<tr>\
<td>\
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/khaengKoiIndEst/loveSafeCheckMarkSmall.png"+' >'>>\
</td>\
<td>\
//คลินิกสุขภาพเพศ//
<small>//LoveSafe Sexual Health Clinic//</small>
</td>\
</tr>\
</table>\
</div>\
Ian gets down on his knees, peeping under the door with the <span class="imageLink"><<link "borescope">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/borescope.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Pick the lock.|WW-1670 Lock picking]]//
<</page>><<silently>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-holdingKronos-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-holdingKronos-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle + "-rear")>>
<<set _randomSeconds to random(8,12)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set $avatar.clothing.pushUnique("clothing/accessories/kronosLockpick/50_kronosLockpick")>>
<<set $avatar.clothing.pushUnique("clothing/accessories/kronosLockpick/40_kronosLockpick-rear")>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You grab the <span class="imageLink"><<link "Kronos lockpick">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/kronos.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, pick a tension wrench, and get to work on the lock.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Tradecraft check'' to pick the internal lock. Difficulty: Mild (2).
<<link "Roll 2 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 2>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Tradecraft check.'' Target: 2. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace "#avatar-container">>\
<<emote-brows-attentive>>
<<avatar>>
<</replace>>\
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
This is a pin tumbler lock, easier to pick than the lever lock on the front door. The Kronos buzzes and vibrates in your hand as you [[probe for the sweet spot|WW-1690 Open sesame]]...
<<else>>
This is a pin tumbler lock, easier to pick than the lever lock on the front door. The Kronos buzzes and vibrates in your hand as you [[probe for the sweet spot|WW-1680 Tough lock]]...
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Tradecraft// skill</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
//Buzz, vrrr, scrape.// You work on the lock, teasing the tumblers, trying to trick it into [[opening up for you|WW-1690 Open sesame]]...
<</page>><<silently>>
<<set _randomSeconds to random(50,70)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
//Bzzz, scratch, whirr, click...//
<<if hasVisited("WW-1680 Tough lock")>>The lock can't hold out long against the Kronos.<<else>>The lock's no match for the Kronos.<</if>> You probe it insistently with the gently buzzing head, until the last tumbler clicks into place, and the lock suddenly goes slack.
An easy twist of the tension wrench, and the door pushes open.
You and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> step through into the STD clinic. It's [[quiet, dark and still|WW-1700 Inside the clinic]], eery in the grainy green tint of night vision.
<</page>><<silently>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle)>>
<<set $avatar.foreground.pushUnique("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle + "-rear")>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-holdingKronos-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-holdingKronos-" + $kate.hairStyle + "-rear")>>
<<set $header.line1 to "''LOVESAFE SEXUAL HEALTH CLINIC''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<set _randomSeconds to random(5,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set $avatar.clothing.delete("clothing/accessories/kronosLockpick/50_kronosLockpick")>>
<<set $avatar.clothing.delete("clothing/accessories/kronosLockpick/40_kronosLockpick-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/clinicNightVision.jpg" 350 1000 775 0>>\
<<printInfiltrationClock>>\
Stark, cheap, industrial. More like a lab than a surgery.
Medical workbenches line the walls, dotted with little jugs and vials of chemicals. Scrub tunics are slung over the backs of office wheelie chairs.
The gyne exam chair has rickety, folding metal stirrups that you just couldn't imagine spreading your legs and putting your ankles into. This place looks better suited to harvesting kidneys than carrying out intimate women's health exams. //[[Gross.|WW-1710 PC]]//
<</page>><<silently>>
<<set _randomSeconds to random(5,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> quietly closes the door behind you.
There's a desktop PC and printer on one of the workbenches. That's an obvious target for patient records.
//[[Hack it with your laptop.|WW-1720 Get your laptop out]]//
<</page>><<silently>>
<<set _randomSeconds to random(15,20)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You set up your <span class="imageLink"><<link "laptop">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/ruggedisedLaptop.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on the workbench. Even in dark mode, the screen is dazzling until your <div class="tooltip">NVGs<span class="tooltiptext">Night Vision Goggles</span></div> adjust.
Across the room, <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> starts investigating some filing cabinets. The drawers rumble as they're opened and closed.
You take a photo of the PC before you touch it – just so you can check you didn't disturb its position – then connect it to your laptop with a fiber optic USB cable.
//[[Set up the malware attack.|WW-1730 Fine dining]]//
<</page>><<silently>>
<<set _randomSeconds to random(15,25)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Your gloved fingers //tap-tap-tap// softly on the laptop keys.
Opening <div class="tooltip"><small>FINE DINING,</small><span class="tooltiptext">a CIA app, designed to give field officers a 'menu' of attacks to choose from, no coding skills required</span></div> you configure a few settings, selecting the powered-down PC as the target, and choosing the <div class="tooltip"><small>CLONERANGER</small><span class="tooltiptext">clones the hard drive for later decryption off-site; installs various spy- and malware to facilitate remote admin access if required</span></div> attack.
<<link "//Run <small>CLONERANGER.</small>//" "WW-1740 What would MODOK do">><</link>>
<</page>><<silently>>
<<set _randomSeconds to random(15,25)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<div class="tooltip"><small>CLONERANGER</small><span class="tooltiptext">clones the hard drive for later decryption off-site; installs various spy- and malware to facilitate remote admin access if required</span></div> launches. The first thing it does is power on the PC, although that's not easy to detect: <small>CLONERANGER</small> did that without activating the screen, LEDs or internal fan.
The only signs of activity are the gentle //trss-trss-chik// of the hard disk drive, and the [[status reports scrolling|WW-1750 Arcane commands]] on your laptop.
<</page>><<silently>>
<<set _randomSeconds to random(45,55)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
On the screen, you watch a long stream of arcane text commands being sent to the target PC.
<div style = "font-family:monospace" class="greyedOut">\
<hr />
<small>echo "Configuring network interface with settings: !target_network_setting!"
REM Start reverse shell
for /F "tokens=*" %%a in ('powershell """-ExecutionPolicy Bypass -EncodedCommand Zuul_135"""') do (
set line=%%a
if """"!line:~0,2!"=="Co""""" (
set port=!line:~13!
goto break
)
)
:break
echo "Establishing reverse shell on port !port!"...</small>
<hr />
</div>\
You have no idea what any of it means, but the whole point of <div class="tooltip"><small>FINE DINING</small><span class="tooltiptext">a CIA app, designed to give field officers a 'menu' of attacks to choose from, no coding skills required</span></div> is that you don't have to understand it to use it.
Across the room, a file drawer rumbles open. "[[Got something|WW-1760 Patient files]]," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> says.
<</page>><<silently>>
<<set _randomSeconds to random(8,12)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Leaving your laptop running, you cross the room to investigate. "Look," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs. "Patient files?"
The second filing cabinet is packed with them. Long, multi-page forms with complex codes, check boxes, and hand-written notes.
"They're all in fucking Thai," Ian grumbles. Neither of you can read the 72-character alphabet, and photographing every form in the cabinet would take all night.
<span class="greyedOut">//[High IQ]//</span> [[These sections are filled out in women's handwriting.|WW-1770 This is a woman's hand]]
<</page>><<silently>>
<<set _randomSeconds to random(2,4)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Look...this is women's handwriting." The first part of each form is written out in a different hand than the rest: rounder, neater, girlier. "Different women."
You flip through a couple more forms to confirm your suspicion.
"Uh huh..." <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> not sure where this is going.
[[The patients fill this part out themselves.|WW-1780 They're written by the patients]]
<</page>><<silently>>
<<set _randomSeconds to random(4,7)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"This section gets filled out by the patients," you explain. //Probably name and contact details...//
"So what?" <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> still doesn't get it.
[[Farang bargirls will write in English.|WW-1790 Bargirls ain't linguists]]
<</page>><<silently>>
<<set _randomSeconds to random(4,7)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Our girls will write in English."
<span class="greenHighlighter">Ian ''respected'' that.</span>
"Roger." The pair of you rifle quickly through the rest of the drawer – but can't find any forms part filled out in English.
<<if not hasVisited("WW-1800 Second drawer")>>\
//[[Search the second drawer.|WW-1800 Second drawer]]//
<</if>>\
//[[Search the third drawer.|WW-1820 Third drawer]]//
<<if not hasVisited("WW-1810 Bottom drawer")>>\
//[[Search the bottom drawer.|WW-1810 Bottom drawer]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<set _randomSeconds to random(10,15)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<<if hasVisited("WW-1810 Bottom drawer")>>\
Same same in the second drawer. Lots of forms, no English.
<<else>>\
You close the drawer and move onto the second one.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> helps you rifle through the forms, but there's nothing in English.
<</if>>
<<if not hasVisited("WW-1800 Second drawer")>>\
//[[Search the second drawer.|WW-1800 Second drawer]]//
<</if>>\
//[[Search the third drawer.|WW-1820 Third drawer]]//
<<if not hasVisited("WW-1810 Bottom drawer")>>\
//[[Search the bottom drawer.|WW-1810 Bottom drawer]]//
<</if>>\
<</page>><<silently>>
<<set _randomSeconds to random(10,15)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<<if hasVisited("WW-1800 Second drawer")>>\
Same same in the bottom drawer. Lots of forms, no English.
<<else>>\
You close the drawer and move onto the bottom one.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> helps you rifle through the forms, but there's nothing in English.
<</if>>
<<if not hasVisited("WW-1800 Second drawer")>>\
//[[Search the second drawer.|WW-1800 Second drawer]]//
<</if>>\
//[[Search the third drawer.|WW-1820 Third drawer]]//
<<if not hasVisited("WW-1810 Bottom drawer")>>\
//[[Search the bottom drawer.|WW-1810 Bottom drawer]]//
<</if>>\
<</page>><<silently>>
<<set _randomSeconds to random(10,15)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<<if $kate.firstName != "Sadie">>
<<set _sadie to "Sadie">>
<<else>>
<<set _sadie to "Mercedes">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
It's more of the same in this drawer. Everything's written in flowing, organic Thai script.
Then...a whole wedge, with the first sections written out in curvy, feminine English.
Familar real names, and stage names to print on the certificates – //$amanda.firstName $amanda.surname, $amanda.stripperName. $zoe.firstName $zoe.surname, $zoe.stripperName.//
"Bingo," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> mutters.
<<link "//Look for a form marked '_sadie'.//" "WW-1830 Many forms">><</link>>
<</page>><<silently>>
<<set _randomSeconds to random(10,15)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<if ndef $sadie>>
<<set $sadie to {},
$sadie.stripperName to "Sadie",
$sadie.firstName to "Lena",
$sadie.surname to "Dorfmann">>
<</if>>
<<if $kate.cover.firstName == "Sadie">>
<<set $sadie.stripperName to "Mercedes">>
<</if>>
<<if $kate.firstName == "Lena">>
<<set $amanda.firstName to "Christina",
$amanda.nickname to "Christina">>
<</if>>
<<if $kate.surname == "Hoffman">>
<<set $amanda.surname to "Möller">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You rifle through forms until you see it. //$sadie.firstName $sadie.surname, $sadie.stripperName.//
An address in Düsseldorf, some phone numbers and an email, a next of kin named Jette $sadie.surname...this is it, paydirt.
//[[Photograph the document.|WW-1840 Tactical photoshoot]]//
<</page>><<silently>>
<<set _randomSeconds to random(10,15)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> holds up each page of the form in turn while you photograph them with the <span class="imageLink"><<link "infrared camera">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/irCamera.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
You check each shot on the camera screen. No blurry pictures, no missed information.
Just eerie black-and-white shots of a medical form in the dark, framed by big gloved hands and hairy arms.
[[Done.|WW-1850 Packing up]]
<</page>><<silently>>
<<set _randomSeconds to random(55,65)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Done."
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> refiles the forms, while you check on the computer hack you left running.
It's complete – the hard drive is cloned onto your laptop, and a nasty little piece of spyware is installed, giving <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> and <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> remote access to this computer any time they want.
//[[Pack up and go.|WW-1860 Last check]]//
<</page>><<silently>>
<<set _randomSeconds to random(45,55)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Gear gets loaded into the backpack. One last visual check, to make sure you haven't left a cable or a screwdriver lying around.
Then you and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> slip out into the [[corridor|WW-1870 Corridor]], closing the clinic door softly behind you.
<</page>><<silently>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set $header.line1 to "''KHAENG KOI INDUSTRIAL ESTATE''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/nvgCorridor.jpg" 300 1000 700 0>>\
<<printInfiltrationClock>>\
The burglar alarm chirps impotently as you walk back along the corridor, quickly and quietly.
Pausing at the door, you check the deauther watch to confirm the camera outside is still out of action.
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ianNV.png']]")>>
<<set Dialog.open()>>
<</link>></span> holds the <span class="imageLink"><<link "neodymium block">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/neodymiumBlock.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> up to the door contact, waiting for your signal.
//[[Give him the nod.|WW-1880 The nod]]//
<</page>><<silently>>
<<set _randomSeconds to random(3,6)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You nod. He hits the door release button with his elbow.
The door unlocks with a loud //click.//
//[[Open it and peep out.|WW-1890 Peep show]]//
<</page>><<silently>>
<<set _randomSeconds to random(5,8)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-brows-attentive>>
<<set $avatar.foreground.delete("accessories/samsNVGs/60_samsNVGs")>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle)>>
<<set $avatar.foreground.delete("nightVisionOverlaysV2/118Overlays/99_nvgOverlay-118BlackBag-" + $kate.hairStyle + "-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
Sliding off your <div class="tooltip">NVGs<span class="tooltiptext">Night Vision Goggles</span></div>, you push open the door, and peep out into the parking lot.
<<image "/locationPhotos/thailand/khaengKoiIndEst/frontDoor1.jpg" 100 1000 800 0>>\
It's clear. No police ambush, no rent-a-cops coming to investigate.
[[Clear.|WW-1900 Clear]]
<</page>><<silently>>
<<set _randomSeconds to random(3,5)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
"Clear."
The <div class="tooltip">NVGs<span class="tooltiptext">Night Vision Goggles</span></div> go back into the rucksack, then you and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slip back out into the warm night, clicking the door shut behind you.
It's not worth re-locking it – it'll take too long, and whoever opens up on Monday morning will probably just assume someone forgot to lock up properly. The building's still protected by the keypad lock and the burglar alarm.
//[[Head back to the hole in the fence.|WW-1910 The urge to run]]//
<</page>><<silently>>
<<set _randomSeconds to random(8,11)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaengKoiIndEst/industrialEstateYard.jpg" 268 768 568 0>>\
<<printInfiltrationClock>>\
You know you have to act casual, but stepping back out into the floodlights makes your heart thump wildly in your chest.
Fighting the irrational urge to run, you fall into step with <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> calm, measured pace.
//[[Box breathing.|WW-1920 Box breathing exit]]//
<<if hasVisited("WW-1043 The one everybody will pick")>>\
<span class="greyedOut">//[Boyfriend snap cover]//</span> //[[Hold hands.|WW-1930 Handholding]]//
<<else>>\
<span class="greyedOut">//[Boyfriend snap cover] Hold hands.//</span>
<</if>>\
<</page>><<silently>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You slip back into the box breathing technique.
Calm measured breaths to control your racing heartbeat, and fight the urge to just [[break out into a sprint|WW-1940 A stroll in the yard]].
<</page>><<silently>>
<<set _randomSeconds to random(3,5)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
You reach out instinctively. The back of <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand brushes yours, latex on latex, then your fingers intertwine, knitting comfortably together.
It's how you'd act if you were a normal couple. It's also deeply reassuring to have some physical contact in a tense situation. You can feel the strength in his hand and his arm: solid, masculine, protective.
//[[Just a normal walk with my boyfriend.|WW-1940 A stroll in the yard]]//
<</page>><<silently>>
<<set _randomSeconds to random(25,35)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
With your blood rushing in your ears, you walk calmly but with purpose, making your way to the exit.
Fenceposts cast long, looming shadows in the bright light. Your eyes flicker around, searching for any signs of danger or ambush. But everything appears to be [[still and quiet|WW-1950 Making the cut]].
<</page>><<silently>>
<<set _randomSeconds to random(8,14)>>
<<set $infiltrationSeconds += _randomSeconds>>
<</silently>>\
<<header>>\
<<page>>\
<<printInfiltrationClock>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> peels up the fence for you.
You slither out on your knees and elbows, then [[hold it up for him|WW-1960 Ian's exit]] on the other side.
<</page>><<silently>>
<<set _randomSeconds to random(8,14)>>
<<set $infiltrationSeconds += _randomSeconds>>
<<set $infilClockMM to Math.floor( $infiltrationSeconds / 60 ),
$infilClockSS to $infiltrationSeconds % 60>>
<</silently>>\
<<header>>\
<<page>>\
''<small><span class="blinking">Infiltration time $infilClockMM minutes $infilClockSS seconds</span></small>''
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pushes the backpack out through the gap, then belly crawls out after it.
//We're out.// You let the fence back down with a sigh of relief.
But it's not over yet. You've got a backpack stuffed with specialised <div class="tooltip">B&E<span class="tooltiptext">Breaking & Entry</span></div> gear, an illegal 9mm handgun in your bra, and the SUV is parked [[four streets away|WW-1970 Return to SUV]].
<</page>><<silently>>
<<set $header.line1 to "''PHRA KANONG''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<set $avatar.clothing.delete("clothing/accessories/blackUltrathickSurgicalGloves/20_blackUltrathickSurgicalGloves3")>>
<<set $avatar.clothing.delete("clothing/accessories/blackUltrathickSurgicalGloves/20_blackUltrathickSurgicalGloves3-rear")>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your surgical gloves and wipe your clammy palms on your leggings.
<<if hasVisited("WW-1930 Handholding")>>Hand in hand, you<<else>>You<</if>> and <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stroll calmly back through the streets of Phra Kanong.
<div class="tooltip">Soi dogs<span class="tooltiptext">"street dogs"; more than 300,000 strays live wild in Bangkok</span></div> bark, the hubbub of the city picks up, cars and motorbikes buzz past. Everything [[seems normal|WW-1980 SUV]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/phraKanong/ramshackleSoi.jpg" 46 493 444 0>>\
The black SUV's parked where you left it.
Your heart leaps with excitement at the sight of your ride out of here. Safety, manoeuvrability and anonymity, all wrapped into two tons of steel and glass and rubber.
You fight the urge to [[quicken your pace|WW-1990 Loading in]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Bip-bip!// <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> unlocks it with the keyfob. The two of you calmly load the backpack and laptop case into the back seat, then climb into the front.
You step up into the passenger seat. Heavy doors //whump// shut, [[blocking out the outside world|WW-2000 Blow up the outside]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
All the tension and nerves you were suppressing roar back unexpectedly. Your ears pound and you feel momentarily light-headed and weak, like you're sagging into the passenger seat. //Fuck.//
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> turns the ignition and the powerful engine purrs into life. You watch his face as he manoeuvres the big SUV out of the parking space, checking his mirrors and the street: [[alert, focused, capable|WW-2010 Kilo, India now complete]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls away, and soon the SUV is merging into the Friday night traffic.
//We did it.// Your second real-life <div class="tooltip">black bag job<span class="tooltiptext">a break-in to obtain intel</span></div>. In and out in under <<= ($infilClockMM+1)>> minutes, right under the nose of a security camera, leaving very few traces behind. Just a cut in an old fence, and a partly unlocked door.
Back at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>R.G. Casey House<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>//ERROR IN KATE.AGENCY VAR//<</if>>, you'd sometimes get to read field reports of taskings like this, carried out in the dead of night in some distant time zone. Their cool, dispassionate tone always made you wonder how the officers felt carrying them out.
And now you know. [[Vulnerable and incredibly fucking stressed|WW-3000 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''UNMARKED SUV''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<</silently>>\
<a data-passage="WW-3010 Levity">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/bangkokPhetchaburiRoadAtNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
Your mood lifts as the minutes and the miles tick by with no sign of pursuit. Tense watchfulness gradually gives way to an irresistable bubbling up of excitement and confidence.
"Don't count your chickens, but...mighta got away with that." <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets out one of his rare grins.
[[I need to get changed.|WW-3020 Need to change]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"I need to change."
You can't go back to the hostel in different clothes from the ones you left in. You pop open your seatbelt, and [[climb through to the backseat|WW-3030 Ian's good mood]].
<</page>><<silently>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WW-1280 Almost there")>>\
"Fuck me," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says over his shoulder. "How hard was that lock?"
<span class="greyedOut">//[Laugh]//</span> [[I know, right!|WW-3040 Belly laugh]]
<<else>>\
"Hey, fuck me," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says over his shoulder. "You're pretty lethal with a fuckin' lockpick."
[[Haha, thanks! I normally suck at deadbolts.|WW-3040 Belly laugh]]
<</if>>\
<</page>><<silently>>
<<emote-eyes-squint>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<<set $avatar.clothing.delete("clothing/jewellery/deautherWatch/50_watch-deautherWatch")>>
<<set $avatar.clothing.delete("clothing/jewellery/deautherWatch/50_watch-deautherWatch-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Something about the way he says it makes you laugh, right from your belly. <<if hasVisited("WW-1280 Almost there")>>"I know, right! I //hate// deadbolts!"<<else>>"Thanks! I normally //suck// at deadbolts."<</if>>
"Pfft. I <<if hasVisited("WW-1280 Almost there")>>hate<<else>>suck at<</if>> //lockpicking,"// <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains. "Dunno why, I'm just shit at it. Doesn't matter how many courses they send me on, I fuckin' //suck..."//
You take off the deauther watch, and reach up under your top for your handgun.
[[You seem more like a kick-it-down kind of guy.|WW-3050 You're a kick-it-down kind of guy]]
[[Maybe because of your massive hands?|WW-3060 You have truckasaurus hands]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. You seem more like a kick-it-down kind of a guy," you say. Reaching up under your top, your fingers curl around the butt of your pistol.
<<include "WW-3070 Heh, maybe">>
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe 'cos of your //massive// hands," you suggest, reaching up under your top for the pistol grip.
<<include "WW-3070 Heh, maybe">>
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-emptyFlashbang-" +$kate.braSize)>>
<<set $avatar.underwear.delete("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-glock26-" +$kate.braSize)>>
<</silently>>\
<span class="greenHighlighter">Ian ''liked'' that.</span>
<<if hasVisited("WW-3050 You're a kick-it-down kind of guy")>>\
"Yeah," <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Boom! Much simpler."
<<else>>\
"Yeah, maybe!" <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs and pats the wheel. "That would explain it."
<</if>>\
You draw the <span class="imageLink"><<link "Glock 26">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/khaengKoiIndEst/glock26.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> out of your bra holster. Keeping it low and out of sight, you<<if hasVisited("WW-520 Condition 0")>> restore it to a safe condition with a few //clacks, shlicks, thunks// and //clicks//, then<</if>> rewrap it in a dish towel for transport.
"Sooo...what's the deal with you?" Ian asks.
<span class="greyedOut">//[Take off your <<trainer>>s]//</span> [[What do you mean?|WW-3070 What do you mean?]]
<span class="greyedOut">//[Take off your <<trainer>>s]//</span> [[No deal, I'm pretty normal.|WW-3080 No deal, I'm normal]]<<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
"Hm?" you ask, kicking your <<trainer>>s off into the footwell. "What do you mean?"
"Well, you're just...you know." Ian says. "You're young, you're bright...could've got any job you wanted, right? How'd you end up doing intel?"
[[If I told you, I'd have to kill you.|WW-3100 If I told you I'd have to kill you]]
<<link "They were recruiting at my <<university>>." "WW-3120 I was recruited at uni">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
"No deal," you assure him, kicking your <<trainer>>s off into the footwell. "I'm pretty normal."
"Oh yeah," he scoffs, "perfectly normal. Out on Friday night, picking locks with a gun in your bra."
[[Okay, normal apart from my job.|WW-3090 Normal apart from my job]]
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, normal apart from my job."
"Yeah, that's what I mean. How'd you end up in intel?"
[[If I told you, I'd have to kill you.|WW-3100 If I told you I'd have to kill you]]
<<link "They were recruiting at my <<university>>." "WW-3120 I was recruited at uni">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-scrunch>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"If I told you, I'd have to kill you."
"Ohhh. This is like some top secret, //Femme Nikita// kind of shit."
[[Love that film.|WW-3110 Loved that film]]
<</page>><<silently>>
<<emote-calm>>
<<emote-nose-wrinkle>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Love that film."
"Yeah. But what's the real story?"
He's Top Secret cleared, you can tell him.
<<link "Nothing like Nikita. They were recruiting at my <<uni>>." "WW-3120 I was recruited at uni">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<remove-leggings-ogLeggings>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _cv to "resumé">>
<<else>>
<<set _cv to "CV">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WW-3110 Loved that film")>>\
"Nothing like Nikita," you warn, peeling down your leggings on the backseat. "They were recruiting at my <<uni>>, that's it."
<<else>>\
"They were recruiting at my <<uni>>," you tell him, peeling down your leggings on the backseat.
<</if>>\
"Oh right. Like the old <div class="tooltip">tap on the shoulder<span class="tooltiptext">informal method of recruitment into an intelligence service, where candidates are approached directly at university and invited to apply</span></div> kind of thing? Is that real?"
[[Kind of, a professor sounded me out.|WW-3130 Tap on the shoulder]]
<<link "No, just put my _cv in a big pile." "WW-3140 Applied">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Kind of," you tell him, pulling stretchy lycra off your ankles. "One of my professors sounded me out for it."
"He must've seen something in you."
[[She.|WW-3132 She]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"She."
"She. What were you studying?"
[[Business.|WW-3142 Business degree]]
[[Journalism.|WW-3144 Journalism degree]]
[[Law.|WW-3146 Law degree]]
[[Psychology.|WW-3148 Psychology degree]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No," you shake your head, pulling stretchy lycra off your ankles. "Just put my <<if $kate.agency == "cia" or $kate.agency == "csis">>resumé<<else>>CV<</if>> in a big pile."
"Huh. What was your degree in?"
[[Business.|WW-3142 Business degree]]
[[Journalism.|WW-3144 Journalism degree]]
[[Law.|WW-3146 Law degree]]
[[Psychology.|WW-3148 Psychology degree]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Business."
"Huh. So you could've been making a fortune at fuckin' Amazon or whatever. How come you chose this?"
<<include "WW-3149 Kate answers menu">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Journalism."
"Huh. So you were training to be, what, a reporter? How come you chose this?"
<<include "WW-3149 Kate answers menu">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Law."
"Huh. So you could've been making six figures. How come you chose this?"
<<include "WW-3149 Kate answers menu">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Psychology."
"Huh. I guess with that, you can go into anything? How come you chose this?"
<<include "WW-3149 Kate answers menu">>\
<</page>>[[Service.|WW-3150 Service]]
[[It chose me, really.|WW-3152 It chose me]]
[[Challenge.|WW-3154 Challenge]]
[[Excitement.|WW-3156 Excitement]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hm. Guess I wanted to do something that made a difference, you know? Felt like a chance to maybe...I don't know. Protect people. It was hard to walk away from that."
<span class="greenHighlighter">Ian ''respected'' that.</span>
"Yeah, I get that." It's the kind of thing that'd be hard to explain properly to a civilian, but it feels like Ian knows exactly what you're saying.
[[What did you do in the army?|WW-3160 Utrinque Paratus]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"More like...it chose me, really," you shrug. "I guess I was just curious at first. But the further I went into it, the more I got hooked."
"Yeah, I get that. There's something addictive about it, right? Like once you know it's there, you can't go back to real life." //Exactly,// he totally gets it.
[[What did you do in the army?|WW-3160 Utrinque Paratus]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I guess I just wanted something a bit...different from everyone else. You know, push me, test me...see what I'm capable of."
<span class="greenHighlighter">Ian ''respected'' that.</span>
"Yeah, I get that." A civilian might find that hard to understand, but it feels like Ian knows exactly what you mean.
[[What did you do in the army?|WW-3160 Utrinque Paratus]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Just...seemed a lot more exciting than the nine-to-five, right? They told me it'd all be vodka martinis and car chases."
<span class="greenHighlighter">Ian ''liked'' that.</span>
"Yeah." Ian laughs. "They told me something similar at the Careers Office. Left out one or two things, right?"
[[What did you do in the army?|WW-3160 Utrinque Paratus]]
<</page>><<silently>>
<<if hasVisited("WW-3156 Excitement")>>
<<emote-mouth-smile>>
<<else>>\
<<emote-mouth-talking>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"What'd you do in the army?"
"Infantry," Ian answers. "<div class="tooltip">Paras<span class="tooltiptext">Parachute Regiment: UK airborne unit trained for rapid deployment, air assault and seizing key objectives</span></div>, then <div class="tooltip">Two Two<span class="tooltiptext">22 SAS Regiment: UK Special Forces unit, trained for unconventional warfare, counter-terrorism, hostage rescue and special reconnaissance</span></div>."
[[Miss it?|WW-3170 Miss the army?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Miss it?"
"Yeah, sometimes," he admits. "I miss the lads. But the Army was doing my fucking nut in. <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> gives better taskings, never know what you'll end up doing."
//<span class="greyedOut">[Take off your top]</span>// [[Yeah, tell me about it.|WW-3180 Tell me about it]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<<remove-top-blackLongSleevedTee>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you say dryly, peeling off your top in the backseat. "Tell me about it."
"Holy shit. I couldn't //believe// the briefing..."
<span class="greyedOut">//[Unclip your bra holster]//</span> [[Tell me about it!|WW-3190 Tell me about it!]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<<emote-brows-raised>>
<<set $avatar.underwear.pushUnique("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-" +$kate.braSize)>>
<<set $avatar.underwear.delete("clothing/underwear/rosePinkAbbieLaceTrimBra/30_bra-rosePinkAbbieLaceTrimBra-emptyFlashbang-" +$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you laugh pointedly as you unclip the holster from your bra, "tell me about it!"
"What is it you were doing before? If you can say, I mean."
<span class="greyedOut">//[Put on your shorts]//</span> [[Analyst.|WW-3200 I'm an analyst]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-smile>>
<<wear-shorts-blueDenimDIYJeansShorts>>
<</silently>>\
<<header>>\
<<page>>\
"Analyst," you tell him, doing up your shorts. "Mainly tracking money flows, and, y'know. Finding patterns in data."
"What? You're kidding."
"No, why?"
"Seriously?" <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes meet yours in the rearview. "Bullshit."
[[Why?|WW-3210 Why]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why bullshit?"
"'Cos I've seen you on video! You fuckin'...//swan around// in that strip club, wrapping everyone round your little finger..."
He's teasing you, but a smile spreads across your face.
"All these guys are //desperately// trying to bang you. Meanwhile you're like...skimming fucking door codes, mapping out how the money laundering works..."
[[Heh, stop.|WW-3220 Stop]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, stop," you protest bashfully.
"I'm serious! Then you rock up at <div class="tooltip"><small>INDIGO,</small><span class="tooltiptext">the safehouse</span></div> strap on an <div class="tooltip">HK<span class="tooltiptext">Heckler & Koch (MP5 submachine gun)</span></div>, and go do a <div class="tooltip">black bag job<span class="tooltiptext">a break-in to obtain intel</span></div> with two grizzly old bastards. I figured you were some kind of fuckin' ninja Black Widow, Double O agent..."
<<if $kate.braSize == "large">>\
[[Pfft. More like Double D agent.|WW-3230 Double D agent]]
<</if>>\
[[Hahaha, shut up!|WW-3240 Oh shush]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"More like a...Double D agent," you wave away the praise. //"That's// why I got picked."
He laughs. "Nah." Your eyes <span class="imageLink"><<link "meet again">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "That's not why. Seriously. How old are you?"
<<link "$kate.age." "WW-3250 I'm over 18">><</link>>
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Ohmygod." You laugh self-consciously. "Shut up!"
"I'm just saying. You had me completely fooled. Seriously." Your eyes <span class="imageLink"><<link "meet again">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in the rearview, and you feel a moment of real connection. "How old are you?"
<<link "$kate.age." "WW-3250 I'm over 18">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm $kate.age."
"Fuck. Me. Wow. I wish I'd had //half// your brains when I was $kate.age."
//Is he into me?// It really feels like it. That's...unexpected. The warm, puffed-up feeling radiating through your body is in danger of turning into an embarrassing blush.
<span class="greyedOut">//[Put on your top]//</span> [[Stop, you're making me blush.|WW-3240 Stoppp]]
<</page>><<silently>>
<<wear-top-whiteTouristyTempleTShirt>>
<</silently>>\
<<header>>\
<<page>>\
"Stoppp," you protest, slipping back into your t-shirt. "You're making me blush."
"Just calling it like I see it."
//[[Finish changing and climb back into the front.|WW-3250 Back to the front]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<wear-shoes-greyAdidasPaceVSTrainers>>
<</silently>>\
<<header>>\
<<page>>\
You lace up your <<trainer>>s, pack away the gear into the backpack, then clamber back over the centre console and into the front.
Bangkok glides past outside: neon, traffic and crowds. You both keep an eye on the traffic, but neither of you see [[any sign of a tail|WW-3252 All clear]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
A little after ten <small>P.M.,</small> <span class="imageLink"><<link "Ian">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls over near a busy BTS skytrain station. "Here we go."
The tyres crunch to a stop, but you don't get out straight away. For a moment, you just sit there, watching the people bustling around the station.
Ian has grown quiet beside you, his big hand [[hovering restlessly over the gear shift|WW-3254 Back in drive]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Like he wants to put it into drive, and take you someplace else. It feels weird just ending the night at this point. This moment feels like...the part where you ask him up for coffee. Or he leans across and kisses you.
Hesitation's written on <span class="imageLink"><<link "Ian's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/ian.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> face. You can feel the tension building.
But then he breaks the silence. "Alright. Take care of yourself," he says, and the moment is over.
[[Doing my best.|WW-3260 I'm trying]]
[[Don't worry, I'll be careful.|WW-3270 Besides, I'm a cautious fellow]]
<<if hasVisited("GNO-17050 Your job")>>\
[[That's still your job.|WW-3280 Your job, remember]]
<<else>>\
[[That's your job, remember?|WW-3280 Your job, remember]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You nod. "Doing my best. Thanks, Ian."
<<include "WW-3290 Grab bag">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Don't worry about me," you tell him, "I'll be careful. Thanks, Ian."
<<include "WW-3290 Grab bag">>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("GNO-17050 Your job")>>\
"Hey," you smirk. "That's still your job. See you later."
<<else>>\
"Hey," you smirk. "That's your job, remember? See you later."
<</if>>\
<<include "WW-3290 Grab bag">>
<</page>>You grab your <<handbag>>, and climb out [[into the street|WW-4000 Title card]].<<silently>>
<<set $header.line1 to "''ABOARD BTS SKYTRAIN''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<a data-passage="WW-3300 Skytrain ride">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/skytrainAtNightBangkokTitleCard.jpg"+' >'>>
</a><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You climb the steps, board a skytrain, and sink onto a hard yellow plastic seat. The engine whirrs and the train rolls out into the city, clacketing above the traffic below. You look for the SUV, but don't spot it.
Your carriage is nearly full, a mix of locals and tourists. There are teenagers laughing and joking, faces lit by the glow of their <<if $kate.agency == "cia" or $kate.agency == "csis">>cellphones<<else>>mobile phones<</if>>. An old <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> man sits quietly, lost in thought, staring out the window. Next to you, a young mother holds her child close, [[whispering softly|WW-3310 Drained]] to him in Thai.
<</page>><<silently>>
<<emote-eyes-squint>>
<</silently>>\
<<header>>\
<<page>>\
You've been running on adrenaline all night. But as the minutes pass, your energy and alertness drain away and you realise you're exhausted, head-on-the-glass tired.
The steady rocking of the train and the soft, affectionate whispers of the young <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>> beside you mingle into a lullaby.
You have to fight hard to stay awake all the way to [[National Stadium BTS|WW-3320 Taxi]].
<</page>><<silently>>
<<set $header.line1 to "''TAXI RIDE''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/taxiRideNight.jpg" 167 1000 567 0>>\
You climb in the back of a taxi and ride it west, towards the river and the hostel.
The driver weaves expertly through busy streets, deftly avoiding the tangles of cars and tuk-tuks and motorbikes, until he finally pulls up in the little <div class="tooltip">trok<span class="tooltiptext">alley</span></div> outside Baan Krung Thep.
You climb tiredly up the creaky staircase, brush your teeth and crash out in your bed. You're shattered. Thank //god// your next shift at the club is a whole [[eighteen hours away|WW-5000 Title card]]...
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "PATPONG / MAY 2018">>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-nearlyGoneHennaTattoo"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-nearlyGoneHennaTattoo-rear")>>
<</if>>
<<wear-ring-transmitterRing>>
<<wear-knickers-blackGotYourBackLaceThong>>
<<if ndef $purchasedHeels>>
<<set $purchasedHeels to "redVelvetCrissCrossStrappyStilettoHeelSandals">>
<</if>>
<<= '<<wear-shoes-' + $purchasedHeels + '>>'>>
<<apply-makeup-lipstick-rubyWoo>>
<<apply-makeup-eyeliner-ramona>>
<<apply-makeup-eyeshadow-smoky>>
<<= '<<apply-makeup-pedicure "' + $kate.lastWornPedicure + '">>'>>
<<if not hasVisited("GNO-47700 Kate chooses short nails")>>
<<= '<<set $avatar.foreground.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-rear")>>' >>
<<= '<<set $avatar.underwear.pushUnique("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz")>>' >>
<<= '<<set $avatar.underwear.pushUnique("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz-rear")>>' >>
<</if>>
<<set $avatar.clothing.pushUnique("/makeup/bodyGlitter/05_bodyGlitter1-" + $kate.braSize)>>
<<set $avatar.clothing.pushUnique("/makeup/bodyGlitter/05_bodyGlitter1-rear")>>
<<set $kate.isUsingHerStripperName to true>>
<<emote-mouth-smile>>
<</silently>>\
<a data-passage="WW-5010 VIP entry">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/hardCockCafeStreetNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<<set _dominantKink to $kate.kinks.random()>>
<</silently>>\
<<header>>\
<<page>>\
//"Coming up next, lads, we've got two best mates who've agreed to go //allll// the way for you tonight, live in five, the girl/girl show at the one and only 'Ard Cock Cafe, you are //not// gonna wanna miss this..."//
''9.54 <small>P.M.</small>'' Saturday night finds you stripped back down to your <<knickers>>, serving drinks in a room full of horny men.
Right now, they're watching you load up beers and shots onto a tray for the VIP room. A dozen different men, watching your nearly naked body at work. Staring at you, drinking you in, //eye fucking// you. <<if _dominantKink == "exhibitionist">>Nothing to protect your modesty but a little scrap of lace and lycra.<<elseif _dominantKink == "submissive">>Fully dressed men being waited on by near-naked women.<<elseif _dominantKink == "masochist">>Like they're two drinks away from just dragging you out from the bar and //gangbanging// you.<<else>>//[ERROR IN DOMINANTKINK TEMP VAR]//<</if>>
It's //so// demeaning. You don't understand why it's also still so incredibly //hot.// Four hours and several tequila shots into your shift, your nipples are rock hard and your thong is a [[hot wet mess|WW-5012 Coming through please guys]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +6" "*Horny.* Your nipples are stiff, your pussy's wet, you're enjoying the attention.">>
<</first>>
<<set $kate.arousal to 6>>
<<remove-makeup-manicure>>
<<= '<<set $avatar.underwear.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz")>>' >>
<<= '<<set $avatar.underwear.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz-rear")>>' >>
<<remove-ring-transmitterRing>>
<<remove-bracelet-friendshipBraceletsLeftWrist>>
<<set $avatar.underwear.delete("/113Tattoos/10_tattoo-leftHand-nearlyGoneHennaTattoo"),
$avatar.underwear.delete("/113Tattoos/10_tattoo-leftHand-nearlyGoneHennaTattoo-rear")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.01_shot")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.02_shot")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.03_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.04_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.05_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.06_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.07_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.08_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.09_beer")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.10_shot")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.11_shot")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.12_shot")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/10.13_shot")>>
<<set $hideAvatarArms to true>>
<<replace "#avatar-container">>\
<<set $avatar.body.delete("25_arms-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.delete("30_arms-"+$kate.complexion+"-relaxed-rear")>>
<<set $avatar.body.pushUnique("25_arms-"+$kate.complexion+"-upperArmsHoldingTray")>>
<<set $avatar.body.pushUnique("30_arms-"+$kate.complexion+"-upperArmsHoldingTray-rear")>>
<<set $avatar.foreground.pushUnique("/accessories/drinksTray/20_silverDrinksTray-"+$kate.complexion)>>
<<avatar>>
<</replace>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Coming through, please, guys!"
The pervs at the bar get out of your way as you come out from the counter, balancing a tray of beers and shots worth [[four nights' pay|WW-5015 Four nights' pay]].
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
//Sweet Child O'Mine// booms out of the PA, soaring guitars and a driving beat ringing out as you weave through the throng.
High heels slow you down, balancing the tray slows you down. But the same guys who were touching you every time you leaned across the bar leave you alone when you're carrying drinks to the VIP.
It's some kind of male dominance hierarchy thing; you're on an errand for the alphas, therefore you [[mustn't be impeded|WW-5016 Unimpeded]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Club patrons move aside for you; nobody puts a hand on your butt or squeezes a boob.
All they do is //watch,// staring at your <<if $kate.braSize == "small">>pierced nipples glinting in the club lights<<else>>naked breasts jiggling<</if>> as you walk, <<if $kate.braSize != "small" and $kate.piercings.includes("nipplesSilverBarbells")>>nipple piercings glinting in the club lights, <</if>>drinking in the sight of your ass in a scrappy thong passing them by.
You can't deny that you get a little kick out of commanding all that sexual attention. But you keep your facial expression cool, confident and aloof.
You press your back and butt up against the door to the VIP. It's cool, wet and clammy on your bare skin.
//[[Push it open.|WW-5020 VIP room]]//
<</page>><<silently>>
<<set $header.line1 to "''VIP ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You push against the door, drinks balanced precariously on the tray. Taking tiny steps in heels, you pivot into the VIP.
<<image "/locationPhotos/thailand/hardCockCafe/vipRoomWithPlasma.jpg" 180 1000 580 0>>\
Men peer in from the dancefloor, stealing a glimpse of the VIP experience. Tonight's 'special guests' are a rowdy bunch of South Africans, here on a stag weekend.
You're pretty sure if the bride-to-be could see what her fiancé and his buddies were up to right now, [[the wedding would be off|WW-5030 Mem getting railed]].
<</page>><<silently>>
<<first>>
<<addNotification "New feature!" "This episode has two illustrated sex scenes. Let us know if you want more in future!">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Two of them are just //fucking// <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span>. Right there on a couch, right in front of their friends, right in front of you.
<<image "/locationPhotos/thailand/hardCockCafe/memVIPSpitroast.jpg" 150 1000 600 0>>\
Yesterday you were eating breakfast together, while she was making jokes about mangoes and impotence. Now she's getting double teamed in a room full of strangers.
Stripped naked, she's got one stiff prick in her mouth, and another thrusting steadily into her from behind. Her muffled, encouraging gasps mingle with wet slurps and the //slap-slap-slap// of [[skin on skin|WW-5032 Skin on skin]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Hardcore porn's playing on one of the flat screens – a woman on her knees, <span class="imageLink"><<link "sucking cock while other men come on her face">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/vipScreen-spermMania.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The dressing room's streaming live on another screen – half-naked <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> in their backstage sanctuary.
Naked, sexualised women, [[everywhere you look|WW-5040 U2]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
And now there's you, bringing the drinks in your <<knickers>>. In theory, you absolutely shouldn't care what a bunch of lecherous creeps think about //anything,// let alone your body.
In practice...as you pivot into the room, your stomach's churning with a strange mix of emotions. Anticipation, vulnerability, fear, excitement.
You're about to be seen, //really// seen – and you're stripped down to high heels and a few inches of cheap, stretchy lycra. It's //absurd.// And oddly intoxicating.
//Are they gonna like [[what they see|WW-5050 Like what they see]]? Why do I even care?//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Seven instances of the male gaze turn to you as you enter. Even the two guys fucking <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> glance over. Eyes roam all over your body, taking in your long glossy legs and naked skin, perched and presented on stiletto heels.
You feel like a doe, being sized up by a pack of hyenas. //Fuck.// Your breath catches in your throat and your nipples go bullet hard.
<<if $kate.braSize == "large">>\
"Faaack," murmurs a stag. "Tits on that."
<<else>>\
"This the barmaid you liked? Or was it the other–"
"Nah mate, this one<<if $kate.braSize == "medium">>, with the perky tits<<elseif $kate.braSize == "small">>, I like 'em skinny<</if>>. Hi sweetie."
<</if>>\
<span class="greyedOut">//[Put on a smile]//</span> [[Evening, gentlemen.|WW-5060 Hello boys][$kateSays to "Evening, gentlemen."]]
<span class="greyedOut">//[Put on a smile]//</span> [[Hi guys.|WW-5060 Hello boys][$kateSays to "Hi guys."]]
<span class="greyedOut">//[Put on a smile]//</span> [[Hello boys.|WW-5060 Hello boys][$kateSays to "Hello boys."]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
You force a friendly smile. "$kateSays"
"Come over, sweetie," pudgy fingers beckon you close. "We don't bite."
"Much! Hahahah!"
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> glances over from the couch. Her dark eyes meet yours for a moment; then a hand presses down on the back of her head, forcing her back down onto the cock in her mouth.
//[[Serve the drinks.|WW-5070 Service]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "The States">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "London">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Oz">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You carry the drinks over to the table. As you lean in to put the drinks down, a stag reaches up and grabs your breast, casually cupping it in front of his friends. You just let him do it, it's allowed here. "Fokken nice," he murmurs.
On the far couch, wet little slurps and squelches mingle with <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> soft, orgasmic gasps.
"Where you from, sweetie?" asks the fat guy.
<<link "_katesMotherland." "WW-5080 London">><</link>>
<</page>><<silently>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.09_beer")>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "The States">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "London">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Oz">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"_katesMotherland," you tell him, setting down his beer and shot. His chubby fingers touch your knee and glide smoothly up your inner thigh. A jolt of anticipation runs through your body.
<<if $kate.agency == "cia">>\
"Hah! Long way from home, bokkie."
"Do you have red MAGA panties?"
[[Wouldn't be caught dead in 'em.|WW-5100 Kate wouldn't be caught dead in MAGA panties]]
[[Now you've said it, I want a pair.|WW-5110 Kate wants MAGA panties]]
[[I'm not really into politics.|WW-5120 Not into politics]]
<<elseif $kate.agency == "mi6">>\
"She's got that sexy accent, 'ey brus?"
"Say something dirty."
[[You've got it all wrong, I'm a good girl.|WW-5130 I'm a good girl]]
[[I haven't washed my hands in days.|WW-5140 Haven't washed my hands in days]]
<<elseif $kate.agency == "asis">>\
"She's got that sexy accent, 'ey brus?"
"Say something dirty."
[[You've got it all wrong, I'm a good girl.|WW-5130 I'm a good girl]]
[[I haven't washed my hands in days.|WW-5140 Haven't washed my hands in days]]
<<elseif $kate.agency == "csis">>\
"Ah, thought you were <<if $kate.ethnicity == "French Canadian">>French<<else>>American<</if>>."
[[Yeah, I get that a lot.|WW-5160 I get that a lot]]
<<elseif $kate.agency == "nzsis">>\
"Ahhhh, Kiwi."
"Thought you were an Aussie."
[[Yeah, I get that a lot.|WW-5160 I get that a lot]]
<<else>>\
<<set _tempVar to "ERROR IN KATEAGENCY VAR">>
<</if>>\
<</page>><<silently>>
<<emote-brows-rogerMoore>>
<<emote-mouth-smirk>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.13_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.08_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"Wouldn't be caught dead in 'em," you say, setting down drinks for a stag with spiky hair and a hooked, beak-like nose .
<span class="greenHighlighter">The stags ''liked'' that.</span>
"Hey, hey. Making American Girls Available. How's that on a pair of panties?"
"[[Hahhhh|WW-5300 Pussy touch]]!"
<</page>><<silently>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.13_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.08_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"Now you've said it, I want a pair," you say, setting down drinks for a stag with spiky hair and a hooked, beak-like nose .
<span class="redHighlighter">The stags ''disliked'' that.</span>
That gets a rumble of disapproval. "Fuckin' Trump supporter, brus."
"Might have to [[punish her|WW-5300 Pussy touch]] for that."
<</page>><<silently>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.13_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.08_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not really into politics," you answer diplomatically, setting down drinks for a stag with spiky hair and a hooked, beak-like nose .
"Not fokken surprised with that cuiter in charge."
"Hey, hey. Making American Girls Available. How's that on a pair of panties?"
"[[Hahhhh|WW-5300 Pussy touch]]!"
<</page>><<silently>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.13_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.08_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"You've got it all wrong," you say, setting down drinks for a stag with spiky hair and a hooked, beak-like nose . "I'm a good girl."
<span class="redHighlighter">The stags ''disliked'' that.</span>
"Pfft. Course you are."
"It's alright, bokkie, you don't need to lie [[to impress us|WW-5300 Pussy touch]]."
<</page>><<silently>>
<<emote-mouth-smirk>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.13_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.08_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," you say, setting down drinks for a stag with spiky hair and a hooked, beak-like nose . "Haven't washed my hands in days."
<span class="greenHighlighter">The stags ''respected'' that.</span>
A moment's silence while the joke hangs in the air; then you get a round of laughter when it lands.
"Hahhh! Got some spunk in her."
"Not yet she hasn't."
"Bwahahaah!" Fatso's joke gets a [[bigger laugh|WW-5300 Pussy touch]] than yours.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//I like to get fucked from behind,// pops into your head.
Accompanied by the realisation that if those words actually come out of your lips, it won't just be <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/test/memAvatarPlaceholder1.png']]")>>
<<set Dialog.open()>>
<</link>></span> getting railed in here.
[[Can't talk dirty, I'm a good girl.|WW-5130 I'm a good girl]]
[[Dirty? I haven't washed my hands in days.|WW-5140 Haven't washed my hands in days]]
<</page>><<silently>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.13_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.08_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you say, setting down drinks for a stag with spiky hair and a hooked, beak-like nose . "I get that a lot."
"Bet that's not all you get a lot of, bokkie."
"Working here mate. I bet she does fokken blowbangs for the [[right tip|WW-5300 Pussy touch]]."
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-eyes-big>>
<</silently>>\
<<header>>\
<<page>>\
Cupping your tit, Beaky casually pinches your stiff, sensitive nipple. At the same time, Fatso's finger presses up into your //crotch// and only a millimetre-thin scrap of hot wet lycra stops his finger from sinking straight up into your pussy.
You stifle a gasp. A graceful twist of your hips, and you're sliding away like a swan. One of them slaps your ass as you go. Three more guys at the [[table|WW-5310 Third service]].
<</page>><<silently>>
<<first>>
<<addNotification "Arousal +1" "*DTF.* Your body's ready and willing.">>
<</first>>
<<emote-eyes-calm>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.12_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.07_beer")>>
<</silently>>\
<<header>>\
<<page>>\
"Ag, man," Fatso slaps his thigh, laughing hysterically. "Sy's fokken sopnat!" That gets a laugh from his mates.
You lean in to serve the next VIP, a big and stocky guy with a bushy beard. His dark, amused eyes lock intently onto yours as you set down his drinks. He reaches up and cups your breasts, pinching both your nipples, sending little jolts of pleasure running through them. "Hi bokkie."
[[Hi.|WW-5311 Hi Jared]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hi."
<<if $kate.braSize == "small">>"Cute<<elseif $kate.braSize == "medium">>"Nice<<else>>//"Lovely//<</if>> tits on you, bokkie. Fuck." He toys with your nipples a little longer before he lets you go.
You straighten up, playing it cool. Sharp slaps ring out from the other couch, <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> getting spanked. She whimpers theatrically, her voice muffled on a mouthful of wet cock, making the guys fucking her chuckle.
"So what's your deal, eh?" a stag asks you. "How's <<if $kate.agency == "cia">>an American<<elseif $kate.agency == "mi6">>an English<<elseif $kate.agency == "asis">>an aussie<<elseif $kate.agency == "csis">>a Canadian<<elseif $kate.agency == "nzsis">>a kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> chick end up in a place like this?"
"Ja, what's the story?"
[[Let's just say I'm not great at budgeting.|WW-5320 I suck at budgeting]]
[[It's temporary, just saving up to keep travelling.|WW-5330 Saving up for my adventure]]
[[Turns out teaching jobs aren't as easy to get as they say.|WW-5340 Teaching jobs are scarce]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well...let's just say I'm not great at budgeting..."
That gets a callous laugh out of the stags. "Awww." Fatso's voice drips with fake concern. "Bokkie's pocket money ran out."
"Ag, man, <<if $kate.agency == "asis" or $kate.agency == "nzsis">>she didn't even get that far<<else>>she got stuck on the other side of the world<</if>>!" Beaky laughs like this is hilarious.
<<include "WW-5350 Cold-blooded stags">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"This is temporary," you assure them. "Just saving up some more travel cash."
That gets a callous laugh out of the stags. "Awww." Fatso's voice drips with fake concern. "Bokkie's little adventure's on hold."
"Ag, man, <<if $kate.agency == "asis" or $kate.agency == "nzsis">>didn't even get that far<<else>>she's stuck on the other side of the world<</if>>!" Beaky laughs like this is hilarious.
<<include "WW-5350 Cold-blooded stags">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well...I tried to get a job as an English teacher, but..."
That gets a callous laugh out of the stags. "Awww." Fatso's voice drips with fake concern. "Bokkie thought she'd be helping the little kiddies."
"Ag, man!" Beaky laughs like this is hilarious. "Silly bitch."
<<include "WW-5350 Cold-blooded stags">>
<</page>>"Hey, least she's getting a taste of the local culture, 'ey brus?" Bushy Beard nods his chin to the other couch. The two stags railing <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> smile and give you the [[thumbs up|WW-5360 Travel difficulties]].<<silently>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Aw, look, you pissed her off." The next stag is all muscle, with a shaved head and tattoo-covered arms. His big rough hand cups your breast, squeezes it hard. One of the other stags fondles your [[bare ass|WW-5362 Bare ass]] as you lean over the table.
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Cheer up, bokkie, it's not our fault <<if hasVisited("WW-5320 I suck at budgeting")>>you're shit with money<<elseif hasVisited("WW-5330 Saving up for my adventure")>>you're shit with money<<elseif hasVisited("WW-5340 Teaching jobs are scarce")>>you're not a teacher<<else>><</if>>, get over yourself."
That gets another round of [[boisterous laughter|WW-5370 Tight smile]] at your expense.
<</page>><<silently>>
<<showFront>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.10_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.05_beer")>>
<<emote-brows-calm>>
<<emote-eyes-squint>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Forcing a tight smile, you set a beer and shot down in front of Muscle Man.
He tugs on your stiff nipples, making your breasts tingle with anticipation, a smug smirk on his face. Before you can straighten up, the stag's hand on your ass slithers between your legs. Unknown male fingers roam casually onto your crotch.
//[[Move away and serve the last stag.|WW-5380 Soaking]]//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.11_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.06_beer")>>
<</silently>>\
<<header>>\
<<page>>\
His fingertip presses the crotch of your thong into your pussy, then you're twisting gracefully out of reach. "Eish," Bushy Beard laughs, "she's fokken //wet// for it."
"Told ya bru," sniggers Fatso.
"'Ey, thanks." Surprisingly, the last stag doesn't touch you at all as you set down his drinks. But Muscle Man reaches over and tries to <<link "yank down your <<knickers>>" "WW-5390 Squeak of protest">><</link>>.
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-calm>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-tuggedDownOnLeftHip")>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-tuggedDownOnLeftHip-rear")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-rear")>>
<</silently>>\
<<header>>\
<<page>>\
He drags the waistband down on one side. You twist away, barely managing to hold the tray upright, letting out a squeak of protest that gets another big laugh.
"Ah, classic man, you nearly [[got 'em off|WW-5392 Nearly got em off]]..."
<</page>><<silently>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
Over on the couch, <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> being dragged into a new position. Your eyes meet briefly, a moment checking in on each other from across the room.
She gives you a brief, ironic eye roll, before she's tugged down into place by her wrists and ankles. The dick that was in her mouth thrusts into her pussy, and the one that was just in her pussy goes into her mouth.
"Ah, //fuck// ja!"
"Thai cunt is something else. Fuck."
The last drinks are for those guys.
[[I'll just put these down here.|WW-5400 Oogy wawa]]
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'll just, uh, put these down here..."
The stags ignore you as shot glasses clink together. "Oogy wawa," Fatso says.
"Oogy wawa!" his mates echo, then [[knock down the shots|WW-5410 Thong straighten]].
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong")>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-rear")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-tuggedDownOnLeftHip")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-tuggedDownOnLeftHip-rear")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.01_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.02_shot")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.03_beer")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/10.04_beer")>>
<<unset $hideAvatarArms>>
<<replace "#avatar-container">>\
<<set $avatar.body.pushUnique("25_arms-"+$kate.complexion+"-relaxed")>>
<<set $avatar.body.pushUnique("30_arms-"+$kate.complexion+"-relaxed-rear")>>
<<set $avatar.body.delete("25_arms-"+$kate.complexion+"-upperArmsHoldingTray")>>
<<set $avatar.body.delete("30_arms-"+$kate.complexion+"-upperArmsHoldingTray-rear")>>
<<set $avatar.foreground.delete("/accessories/drinksTray/20_silverDrinksTray-"+$kate.complexion)>>
<<avatar>>
<</replace>>
<<wear-ring-transmitterRing>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<= '<<apply-makeup-manicure "' + $kate.lastWornManicure + '">>'>>
<<if not hasVisited("GNO-47700 Kate chooses short nails")>>
<<= '<<set $avatar.foreground.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '")>>' >>
<<= '<<set $avatar.clothing.delete("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-rear")>>' >>
<<= '<<set $avatar.underwear.pushUnique("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz")>>' >>
<<= '<<set $avatar.underwear.pushUnique("/makeup/manicure/5_manicure-' + $kate.lastWornManicure + '-kurz-rear")>>' >>
<</if>>
<<set $avatar.foreground.push("/accessories/drinksTray/20_silverDrinksTray-heldInRightHand-"+$kate.complexion)>>
<<set $avatar.foreground.push("/accessories/drinksTray/20_silverDrinksTray-heldInRightHand-"+$kate.complexion+"-rear")>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You curl your thong back up into place. //Fuck.// These guys are seriously assholes, but your body is seriously turned on. Your body's hot, your heart's pounding, and your nipples and your pussy are //craving// more touch.
A sharp, stinging slap hits <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> ass. She answers with a muffled feminine cry and energised thrusts of her hips.
The guy behind her grips her ankles and there's something seriously //hot// about the way he's controlling her. You can't help but imagine yourse–//stop, stop, stop, get a grip, you've gotta get out of here...//
[[Anything else, guys?|WW-5412 Anything else]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um." You take a breath and run a hand through your hair to steady yourself. "Anything else, guys?"
Swigging their beers, the five men at the table all just stare at you for a moment, eyeing up your body. Long legs, naked tits.
You do your best to hold their gaze, trying to stay [[relaxed and confident|WW-5415 The Wait]].
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Ag, what the fuck." Bushy Beard has reached a decision. "I don't normally pay for it. But this is a good cause, right brus?"
"Ja," agrees Fatso. "Hundred percent."
"Ag, man, for sure," says Beaky. "Let's help her out, fuck it."
"What's your name, bokkie?" Bushy Beard asks.
<<link "$kate.stripperName." "WW-5420 River">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.stripperName."
"Cute. Alright, $kate.stripperName." He pats his knee. "How much to fuck you?"
[[You can't afford it.|WW-5422 You can't afford it]]
[[Sorry, I don't do that kind of thing.|WW-5426 Not that kinda girl]]
[[I just serve drinks.|WW-5430 I just serve drinks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "You can't afford it."
A pause...then incredulous laughter erupts from the stags. "Bokkie ain't going cheap."
"She thinks you're broke, Jared."
Bushy Beard's dark eyes narrow. "You don't know what I can afford, sweetheart."
"Come //on,// bokkie," Fatso says. "We know you want it, you're fokken soaking wet."
[[I can get you another bargirl?|WW-5424 I can get another bargirl?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You ignore that. "I can get you another <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>?" you offer.
"What's the matter, bokkie?" Bushy Beard asks. "I'm not your type?"
"It's the beard, bru. Puts her off."
"Did you get molested by a bloke with a beard?" The stags laugh at that.
[[I can get you drinks or a bargirl, that's it.|WW-5440 I'm flattered but][$kateSays to "drinksOrBargirl"]]
[[Sorry, guys, I'm not for sale.|WW-5440 I'm flattered but][$kateSays to "not4Sale"]]
[[We've got some really sexy girls here tonight, you can take your pick.|WW-5440 I'm flattered but][$kateSays to "pimpMyFriends"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry." You shake your head. "I don't do that kind of thing."
//"Course// you do."
"Come //on,// bokkie," Fatso says. "We know you want it, you're fokken soaking wet."
[[I can get you another bargirl?|WW-5424 I can get another bargirl?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "I just serve drinks..."
"Ja, ja, ja. You don't normally do this kinda thing, blah blah blah."
"Come //on,// bokkie," Fatso says. "You're fokken soaking, let's do it."
[[I can get you another bargirl?|WW-5424 I can get another bargirl?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "drinksOrBargirl">>\
<<emote-brows-calm>>\
"I can get you drinks or a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>," you insist. "That's i–"
<<elseif $kateSays == "not4Sale">>\
<<emote-brows-calm>>\
"Sorry guys." You shake your head with finality. "I'm not for sale."
<<elseif $kateSays == "pimpMyFriends">>\
<<emote-brows-calm>>\
"We've got some real sexy girls here tonight," you say, "you can–"
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Come //on,// bokkie. He's a nice guy! He's trying to help you out!"
"I'm not into any weird shit," Bushy Beard promises. "Just come over here, sit on my lap, we'll talk about it."
"Guys, guys, she's just playing hard to get." Beaky gets out his wallet. "Let's make it worth her while. Your <span class="imageLink"><<link "mate here">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> was <div class="tooltip">two-and-a-half<span class="tooltiptext">฿2,500: <<if $kate.agency == "cia">>$75<<elseif $kate.agency == "mi6">>£50<<elseif $kate.agency == "asis">>$100<<elseif $kate.agency == "csis">>$100<<elseif $kate.agency == "nzsis">>$100<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> [[for a fuck|WW-5450 Mem was 2500]]..."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-calm>>
<<if $kate.agency == "cia">>
<<set _aHundredQuid to "$150",
_nah to "Naw">>
<<elseif $kate.agency == "mi6">>
<<set _aHundredQuid to "£100",
_nah to "Nah">>
<<elseif $kate.agency == "asis">>
<<set _aHundredQuid to "$200",
_nah to "Nah">>
<<elseif $kate.agency == "csis">>
<<set _aHundredQuid to "$200",
_nah to "Naw">>
<<elseif $kate.agency == "nzsis">>
<<set _aHundredQuid to "$200",
_nah to "Nah">>
<<else>>
<<set _aHundredQuid to "ERROR IN KATESMOTHERLAND TEMP VAR",
_nah to "Nah">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"White girl's worth a bit more, ey?" Beaky counts out a sheaf of red and violet banknotes from his wallet. "How about we pay you double? <div class="tooltip">Five grand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. Just to go sit in my man Jared's lap. Okay?"
From the looks on their faces, it's obvious they're all expecting you to say yes. Bushy Beard leans back in the couch, a smile playing on his lips.
"I wanna go on her right after," murmurs Fatso.
"Shut up, Gus."
<<link "_nah, keep your _aHundredQuid." "WW-5460 Nah keep your money">><<set $kateSays to "nah">><</link>>
[[Guys, I'm flattered, but no.|WW-5460 Nah keep your money][$kateSays to "flattered"]]
[[Sorry, guys, I can't.|WW-5460 Nah keep your money][$kateSays to "sorry"]]
<</page>><<silently>>
<<if $kate.agency == "cia">>
<<set _aHundredQuid to "one fifty",
_nah to "Naw">>
<<elseif $kate.agency == "mi6">>
<<set _aHundredQuid to "hundred quid",
_nah to "Nah">>
<<elseif $kate.agency == "asis">>
<<set _aHundredQuid to "two hundred bucks",
_nah to "Nah">>
<<elseif $kate.agency == "csis">>
<<set _aHundredQuid to "two hundred bucks",
_nah to "Naw">>
<<elseif $kate.agency == "nzsis">>
<<set _aHundredQuid to "two hundred bucks",
_nah to "Nah">>
<<else>>
<<set _aHundredQuid to "ERROR IN KATESMOTHERLAND TEMP VAR",
_nah to "Nah">>
<</if>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "nah">>\
"_nah. Keep your _aHundredQuid."
<<elseif $kateSays == "flattered">>\
<<emote-brows-raised>>\
"Guys, I'm flattered, but..."
<<elseif $kateSays == "sorry">>\
<<emote-brows-raised>>\
"Sorry, guys, I can't..."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Whaaat?!" Beaky waggles the money incredulously. "It's <div class="tooltip">five thousand!<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> Twice what we gave <span class="imageLink"><<link "her">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/test/memAvatarPlaceholder1.png']]")>>
<<set Dialog.open()>>
<</link>></span>."
"You can't say no to him," Muscle man says. "He's the groom. Come on, we're just trying to have a good time."
"Why are you being so difficult? You're fokken soaking."
"You too good for us or something?"
"We're //VIPs.// Maybe we'll need a little word with your boss, ey?"
"We're friends of the owner, you'll be in big trouble."
[[I'm not allowed.|WW-5470 Not allowed]]
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your throat feels thick and you have to swallow. "Ummm..."
Some part of you almost considers just saying a number. Then you remember there's a //camera// in here, periodically uploading to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> //Get a grip of yourself, $kate.firstName.//
[[Sorry boys, I can't...|WW-5460 Sorry I can't]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry boys, I can't..."
"Aw, don't be like that! We're just trying to have a good time."
"Why are you being so difficult?"
"You too good for us or something?"
"We're VIPs. Maybe we'll need a little word with your boss, ey?"
[[I'm not allowed...|WW-5470 Not allowed]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Look, I'm not //allowed..."//
"Aw, that's okay, don't worry!" Fatso's tone is soothing. "We won't tell. Our little secret, ey?"
"What happens in here stays in here. No one's gotta know."
Over on the couch, <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> gets a little break as both stags pull out of her. One shoves her back into the couch; the other carefully rolls a filled condom off of his cock, and holds it up over her head.
She glances at you, then stares up at the condom, opening up her mouth and nodding encouragingly.
[[I can't take the bargirls' job and their money.|WW-5480 Union rules]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Guys, it's impossible." You nod to the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> getting changed on the big plasma screen. "I can't take their job and their money..."
On the other couch, the stag sniggers as he empties out the condom into <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> waiting mouth. She gulps it down, then goes straight over the back of the couch, with the guy she didn't make come thrusting hard inside her, a brisk //slap-slap-slap// of skin on skin.
"Course you can!" Fatso is telling you.
"You don't have to pretend you're not interested. We can see it in your eyes."
"Come //onnn,// bokkie. Don't be a good girl, be fun."
"What's the harm in it? You're [[already fokken working here|WW-5482 Final offer]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Brus, I just made her drink the fokken condom..."
"Classic, man. This one's gonna do Jared."
"Alright, fuck it," Beaky raises his voice commandingly. "<div class="tooltip">Fifty K<span class="tooltiptext"><<if $kate.agency == "cia">>$1500<<elseif $kate.agency == "mi6">>£1000<<elseif $kate.agency == "asis">>$2000<<elseif $kate.agency == "csis">>$2000<<elseif $kate.agency == "nzsis">>$2000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, final offer. But you gotta do //all// of us for that."
"Yeahhh," Fatso enthuses. "[[Now you're talking|WW-5484 White knights]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your throat feels thick and you have to swallow. Not that you'd ever say yes – even if this room weren't hooked up to a surveillance feed automatically uploading to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> Just...if //$kate.stripperName// were a real person, she'd probably be considering it, right?
That's like, eighty shifts or something. And she's //already// fucking Connor, and she fucked Kriangsak, and really //what's the harm in it?// Especially when you're this turned on. These guys are all gross as hell, but you'd have <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/test/memAvatarPlaceholder1.png']]")>>
<<set Dialog.open()>>
<</link>></span> to help you, and there really is a kind of sick hotness in the idea of just //taking the money// and then you wouldn't have a choice and...
Bushy Beard pats his knee, and his smile is almost friendly. "Come on, bokkie. No big deal."
[[I said no.|WW-5486 Not doing it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shake your head. "I said no."
"No?!"
A moment's silence – except for the //slap-slap-slap// and <span class="imageLink"><<link "Mem's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span> feminine little gasps and oohs – then the stags groan in frustration. "Fuuuck!"
"You //boring fucking cow."// Bushy Beard's bitter disappointment gets a round of laughs from his mates.
"Talk about a tease."
"You could've at least pretended to be into it. [[Fuck|WW-5500 Guys it's fine]]."
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Guys, guys, it's fine, fuck her." Fatso points to the big plasma screen, streaming live from the dressing room. "Who do we like?"
"How 'bout blondie with the big tits."
"In red?"
"Ja."
"Who's that?" Fatso asks you.
[[That's Jib.|WW-5510 That's Jib]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's Jib."
"How old is she?"
[["18."|WW-5511 18]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"18."
//"Nice.// How much?"
[[฿2500 each.|WW-5530 How much is Jib]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "yeah">>\
"Yeah."
"Alright. How much?"
[[฿2500 each.|WW-5530 How much is Jib]]
<<elseif $kateSays == "2500">>\
"Yeah," you tell him. "It's <div class="tooltip">2500<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$75<<elseif $kate.agency == "mi6">>£50<<elseif $kate.agency == "asis">>$100<<elseif $kate.agency == "csis">>$100<<elseif $kate.agency == "nzsis">>$100<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> each." Same same as they paid for <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
A moment's conference while they decide if they want to spend another <div class="tooltip">17500 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$525<<elseif $kate.agency == "mi6">>£350<<elseif $kate.agency == "asis">>$700<<elseif $kate.agency == "csis">>$700<<elseif $kate.agency == "nzsis">>$700<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
"Ja, alright, fuck it, let's get some lesbian shit going on in here. Do we pay you?"
[[Sure.|WW-5540 Yeah, pay me]]
<<elseif $kateSays == "rattlesnake">>\
"Like a rattlesnake," you promise.
"Heh. How much?"
[[฿2500 each.|WW-5530 How much is Jib]]
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">2500<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$75<<elseif $kate.agency == "mi6">>£50<<elseif $kate.agency == "asis">>$100<<elseif $kate.agency == "csis">>$100<<elseif $kate.agency == "nzsis">>$100<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> each." Same same as they paid for <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_vipRoom-nudeBlackFencenetLegWraps.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
A moment's conference while they decide if they want to spend another <div class="tooltip">17500 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$525<<elseif $kate.agency == "mi6">>£350<<elseif $kate.agency == "asis">>$700<<elseif $kate.agency == "csis">>$700<<elseif $kate.agency == "nzsis">>$700<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
"Ja, alright, fuck it, let's get some lesbian shit going on in here. Do we pay you?"
[[Sure.|WW-5540 Yeah, pay me]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $avatar.foreground.pushUnique("/accessories/cashInHand/20_cashInHand-20kBaht")>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, sure."
"Alright, brus, fork out...not you, Jared, fuck's sake, bru, stop trying to pay for shit..."
With the round of drinks, it all adds up to <div class="tooltip">฿19,950<span class="tooltiptext"><<if $kate.agency == "cia">>$598.50<<elseif $kate.agency == "mi6">>£399<<elseif $kate.agency == "asis">>$798<<elseif $kate.agency == "csis">>$798<<elseif $kate.agency == "nzsis">>$798<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. Fatso hands you a chunky wad of violet and brown banknotes.
"Better be worth it. Who's yer mate at the bar? <<if $kate.braSize != "large">>With the big tits<<elseif $kate.hairColour != "blonde">>The blonde<<else>>With the pigtails<</if>>?"
[[Roxy.|WW-5550 Send Roxy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That's Roxy."
"Ja, we want her next time."
"C'mere, bokkie," Muscle Man opens his wallet. "Lemme give you your tip."
"She hasn't fokken earned it," Fatso protests.
//[[Go get your tip.|WW-5560 Tip]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//"Boring bitch." "Stupid cunt."// You get two smacks on the ass as you circle around the guys to reach Muscle Man.
He reaches up...and slips his finger straight down the front of your thong.
You try to stay cool, even though your body's hot and your heart's pounding in your chest. His fingertip touches your <<if $kate.bikiniLine == "hollywood">>bare shaved pubic bone<<else>>trimmed bush<</if>>, and he must be able to feel how //hot// you are, he can probably [[feel your pulse|WW-5561 Feel your pulse]].
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("/accessories/thongMoney/08_thongMoney-20Baht")>>
<</silently>>\
<<header>>\
<<page>>\
He tugs the front of your <<knickers>> away from your body. "You think not fucking makes you special, but it doesn't." Muscle Man pokes two green <div class="tooltip">฿20<span class="tooltiptext">฿40 = <<if $kate.agency == "cia">>$1.20<<elseif $kate.agency == "mi6">>80p<<elseif $kate.agency == "asis">>$1.60<<elseif $kate.agency == "csis">>$1.60<<elseif $kate.agency == "nzsis">>$1.60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> bills into your underwear, one by one. "It just makes you broke."
[[Thanks for the advice.|WW-5570 Thanks for the advice][$kateSays to "Thanks for the advice."]]
[[Whatever.|WW-5570 Thanks for the advice][$kateSays to "Whatever."]]
[[I'd rather be broke than with guys like you.|WW-5570 Thanks for the advice][$kateSays to "I'd rather be broke than with guys like you."]]
<</page>><<silently>>
<<emote-brows-attentive>>
<<emote-mouth-talking>>
<<set $avatar.underwear.delete("/accessories/thongMoney/08_thongMoney-20Baht")>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
Pulling the meagre tip out of your <<knickers>>, you [[turn on your heel and leave|WW-5700 Exit Kate]].
<</page>><<silently>>
<<emote-mouth-calm>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "small">>"Ja, fuck off, you flat-chested bitch."<<elseif $kate.braSize == "medium">>"Yeah, fuck off, slut."<<else>>"Nice tits."
"Shame she's so uptight."<</if>>
Sweeping out of their lives would probably feel more empowering if your ass weren't framed and sculpted in a skimpy thong. Fatso slaps your ass //hard// on the [[way out|WW-5710 Girl/Girl show]].
<</page>><<silently>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//Ow!// A hot sting burns your butt. //Assholes.//
Escaping the VIP, you step back out into the noisy hubbub of the Hard Cock Cafe on a Saturday night. Ancient dad rock booms out of the speakers and the whole dancefloor smells like booze and sweat.
Your heart's pounding, your body's tingling all over. You feel like about thirty seconds of attention could make you come. If you can't cool yourself down with willpower, you might need to sneak off for a quick 'bathroom break'.
//[[Take a moment.|WW-5712 Take a minute]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Luckily, you emerged in the middle of a big distraction.
Up on stage, the girl/girl show has started, starring $gina.nickname and $amanda.stripperName. On Thursday night you were all glammed up for a night on the town; now those two are wearing <span class="imageLink"><<link "tacky stripper costumes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ginaAndAmanda_hccGirlGirlShow1-stageCostumes.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and making out with each other in front of a hundred guys.
The crowd's rapt, watching the two girls trade languid, soft kisses. Their fingers are in each others' hair, noses brushing, tongues in mouths, lipstick on lipstick.
You take a moment to [[catch your breath|WW-5720 Kate heads to the bar]]. Shake it off, come back down, reset.
<</page>><<silently>>
<<first>>
<<addNotification "Arousal -1" "*Horny.* You're still turned on, but a little calmer.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
Some deep breaths to calm down and centre yourself.
Then the guys standing around start to notice you, and you need to get moving, because one of the guys looking at you has cool hair and //hot// arms and you're thinking crazy thoughts about dragging him off for a quickie in the <<if $kate.agency == "cia">>restroom<<elseif $kate.agency == "mi6">>loos<<elseif $kate.agency == "asis">>toilets<<elseif $kate.agency == "csis">>restroom<<elseif $kate.agency == "nzsis">>toilets<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
//[[Strut to the bar.|WW-5722 Strutter]]//
<</page>><<silently>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You strut back to the bar, your heels keeping you at a moderate pace, forcing a feminine sway to your ass as you weave around little groups of guys and scattered loners.
You thought your little break had calmed you down, but you can feel your body responding as soon as men start to notice you.
Eyes on your curves as you sashay past. Fleeting little touches in the dark – big fingertips brushing against your thighs, your bare ass, the clingy little waistband of your black thong.
All the attention and attraction is just...exhilarating. But you play it ultra cool as you [[head for the bar|WW-5730 And I sat next to the one that's landing]].
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "chirpy Londoner">>
<<else>>
<<set _chirpyBrit to "chirpy Brit">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You slot into a space at the bar between two small groups of guys. <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Káyk">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/kayk/kayk_bar-blackTieSideTanga.png']]")>>
<<set Dialog.open()>>
<</link>></span> are serving drinks on this side.
"'Ello!" a <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs at the unexpected arrival of a nearly naked woman, right next to him at the bar. "Getcha a drink, love?" He leans in close and shouts to make himself heard.
You smile and face him, turning your back on the <span class="imageLink"><<link "two asian bros">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/asianBros.png']]")>>
<<set Dialog.open()>>
<</link>></span> behind you.
[[Tequila?|WW-5740 Thanks][$shotKateChose to "Tequila"]]
[[Rum?|WW-5740 Thanks][$shotKateChose to "SangSom"]]
[[Thanks, maybe later.|WW-5740 No thanks]]
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<if _kateD10 - $kate.arousal gte 2>>
<<set _resistArousalCheckPassed to true>>
<</if>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, sure!" you shrug. "$shotKateChose okay?" <<if $shotKateChose == "SangSom">>Everybody calls it 'Thai whiskey', but it's really rum.<</if>>
The <span class="imageLink"><<link "guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods happily.
Behind you, an anonymous hand cups your bare butt. A little thrill bubbles up inside you at the sudden skin on skin contact.
<<if _resistArousalCheckPassed>>\
//<span class="greyedOut">[Resist Arousal check ''passed'']</span> [[Push it away.|WW-5760 Resistant grope path]]//
<<else>>\
//<span class="greyedOut">[Resist Arousal check ''failed''] Push it away.</span>//
<</if>>\
//[[Let him fondle your ass.|WW-5770 Permissive grope path]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<set _kateD10 to random(1,10)>>
<<if _kateD10 - $kate.arousal gte 2>>
<<set _resistArousalCheckPassed to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks. Maybe later."
The <span class="imageLink"><<link "guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs good-naturedly, turning his attention back to his friends.
Behind you, an anonymous hand cups your bare butt. A little thrill bubbles up inside you at the sudden skin on skin contact.
<<if _resistArousalCheckPassed>>\
//<span class="greyedOut">[Resist Arousal check ''passed'']</span> [[Push it away.|WW-5760 Resistant grope path]]//
<<else>>\
//<span class="greyedOut">[Resist Arousal check ''failed''] Push it away.</span>//
<</if>>\
//[[Let him fondle your ass.|WW-5770 Permissive grope path]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You reach back, touch a hairy wrist, and gently but firmly push it away. //Wonder if it was the hot one?//
<<include "WW-5580 Ploy spots Kate">>
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your hands are full, it's not like you can stop him, really. //Hope it's the hot one.//
<<include "WW-5580 Ploy spots Kate">>
<</page>>Seeing you at the bar, Ploy clicks off the beer taps. Leaving two pints of Chang half-poured, she comes over to check what you want.
Balancing confidently in sky high heels, she looks <span class="imageLink"><<link "extra sexy tonight">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> for some reason. Her thong's scandalously small, and its turned basically sheer in the bright club lights.
<span class="greyedOut">//[Pass her the stuff]//</span> [[They want Roxy next time.|WW-5590 They want Roxy]]<<silently>>
<<emote-mouth-oh>>
<<set $avatar.foreground.delete("/accessories/drinksTray/20_silverDrinksTray-heldInRightHand-"+$kate.complexion)>>
<<set $avatar.foreground.delete("/accessories/drinksTray/20_silverDrinksTray-heldInRightHand-"+$kate.complexion+"-rear")>>
<<set $avatar.foreground.delete("/accessories/cashInHand/20_cashInHand-20kBaht")>>
<</silently>>\
<<header>>\
<<page>>\
"They want Roxy next time," you shout, passing the tray and cash over the bar to <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Huh?"
//[[Get up on the rail and shout.|WW-5590 Ploy's ass]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<if _kateD10 - $kate.arousal gte 2>>
<<set _resistArousalCheckPassed to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You step up on the footrail to get closer; <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> does the same. Her bare butt pops up into view in the mirrored backbar when she does this: an eye-catching flash of her toned honey buttocks, framed and split by a skimpy black thong.
When you've noticed your own customers gazing over your shoulder...you thought they were just checking out your bum. Now you realise that stepping up onto the rail looks so much more whorish than you imagined. It's like you're deliberately presenting a view of what it'd look like to fuck you from behind. //Fuck.//
<<if hasVisited("WW-5760 Resistant grope path")>>\
The anonymous hand returns to your butt, cupping it again. You can see who it is in the backbar mirror; <span class="imageLink"><<link "it's not the hot guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/assGuy.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<else>>\
The anonymous hand on your ass is getting bolder, roaming possessively over your bare butt cheeks. You can see who it is in the backbar mirror; <span class="imageLink"><<link "it's not the hot guy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/assGuy.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</if>>\
Ploy tucks her hair behind her ear to hear you.
<<if _resistArousalCheckPassed>>\
<span class="greyedOut">//[Resist Arousal check ''passed''] [Remove his hand]//</span> [[They WANT ROXY!|WW-5600 Kate resists I]]
<<else>>\
<span class="greyedOut">//[Resist Arousal check ''failed''] [Remove his hand] They WANT ROXY!//</span>
<</if>>\
<span class="greyedOut">//[Let him do it]//</span> [[They WANT ROXY!|WW-5610 Kate permits I]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You push the hand away<<if hasVisited("WW-5760 Resistant grope path")>> again<</if>>, gently but firmly. Up close, <span class="imageLink"><<link "Ploy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> perfume is an exotic mix of spicy and sweet. "They want Roxy next time!" you shout.
<<include "WW-5620 Great tip">>
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You let <span class="imageLink"><<link "Asian Bro">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/assGuy.png']]")>>
<<set Dialog.open()>>
<</link>></span> keep groping your butt. Up close, <span class="imageLink"><<link "Ploy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> perfume is an exotic mix of spicy and sweet. "They want Roxy next time!" you shout.
<<include "WW-5620 Great tip">>
<</page>><<silently>>
<</silently>>\
"<div class="tooltip">Khâ<span class="tooltiptext">Okay</span></div>." Her brows arch at the amount of cash you've passed across the bar. "<div class="tooltip">Ôo hŏo<span class="tooltiptext">Wow</span></div>, this tip?"
<<if hasVisited("WW-5610 Kate permits I")>>\
<<silently>>
<<first>>
<<addNotification "Arousal +1" "*DTF.* Asian Bro's hand on your ass feels pretty great.">>
<</first>>
<</silently>>\
<span class="imageLink"><<link "Asian Bro's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/assGuy.png']]")>>
<<set Dialog.open()>>
<</link>></span> finger roams onto the back of your thong, just above your butt, stroking your tailbone through straps and lace. It's incredibly intimate and instantly erotic.
<</if>>\
[[No, they paid for Jib.|WW-5630 No it's for Jib]]<<silently>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "the London guy">>
<<else>>
<<set _chirpyBrit to "the British guy">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"No," you shout, "they paid for Jib."
<<if hasVisited("WW-5600 Kate resists I")>>\
The customer's hand finds its way back onto your ass again, fondling your butt cheek. At the same time, <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cups your breast in one hand, and <span class="imageLink"><<link "Ploy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> in the other, giggling and showing off to his mates.
<<else>>\
Staying in contact with your thong, the fingertip slides slowly down, following the flimsy little strap of lycra down the cleft between your buttocks.
At the same time, <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cups your breast in one hand, and <span class="imageLink"><<link "Ploy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> in the other. He's giggling and showing off to his mates, like it's all a big joke, but your body feels like either of these men could make you come with just their fingers.
<</if>>\
Ignoring the grope, Ploy recounts the money. "Okay, so...tip where?" she shouts, sure there's been a mistake. "<div class="tooltip">Forty Bah<span class="tooltiptext"><<if $kate.agency == "cia">>$1.20<<elseif $kate.agency == "mi6">>80p<<elseif $kate.agency == "asis">>$1.60<<elseif $kate.agency == "csis">>$1.60<<elseif $kate.agency == "nzsis">>$1.60<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>?"
[[They're cheap ass VIPs.|WW-5370 Cheap ass VIPs]]
[[They got pissed off because I wouldn't fuck them.|WW-5380 I wouldn't fuck]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"They're cheap ass VIPs," you shout.
<<include "WW-5390 Assholes">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"They got pissed off because I wouldn't fuck them," you explain.
<<include "WW-5390 Assholes">>\
<</page>><<silently>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "London Guy">>
<<else>>
<<set _chirpyBrit to "British Guy">>
<</if>>
<</silently>>\
"They assholes," <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> shouts. "I make them wait for Roxy."
<<if hasVisited("WW-5600 Kate resists I")>>\
Fingertips trace little circles over the back of your thong, toying with the strap. Then <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pinches your stiff nipple.
"Make 'em kiss!" shouts one of his mates.
<<if hasVisited("WW-5740 Thanks")>>\
<<link "Get me a $shotKateChose on this guy!" "WW-5400 Slide down">><</link>>
<<else>>\
[[I've gotta get Jib!|WW-5400 Slide down]]
<</if>>\
<<else>>\
The fingertip sliding down your ass crack stops right on your asshole, touching it through your thong. Then <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pinches your stiff nipple. //Oh fuck.//
<span class="greyedOut">//[Arousal too high] Lift his hand off your ass.//</span>
<span class="greyedOut">//[High Arousal]//</span> //[[Let him keep going.|WW-5392 Under pressure]]//
<</if>>\<<silently>>
<<first>>
<<addNotification "Arousal +1" "*On the edge.* You're ready to fuck.">>
<</first>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "London Guy">>
<<else>>
<<set _chirpyBrit to "British Guy">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>'s squeezing your nipple. <span class="imageLink"><<link "Asian Bro">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/assGuy.png']]")>>
<<set Dialog.open()>>
<</link>></span>'s finger is going in your //ass// unless you stop him.
And you just...don't. You push back against him instead, ever so slightly. Pressure on your asshole, pushing against it through your thong. _chirpyBrit tweaking and kneading your stiff nipple. //If they keep doing this I'm gonna fucking come. If he //touches// my pussy I'm gonna fucking come.//
Your face is up close to <span class="imageLink"><<link "Ploy's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span>. "Make 'em kiss!" shouts one of _chirpyBrit's mates.
<<if hasVisited("WW-5740 Thanks")>>\
//<span class="greyedOut">[Snap out of it!]</span>// <<link "Get me a $shotKateChose on this guy!" "WW-5400 Slide down">><</link>>
<<else>>\
//<span class="greyedOut">[Snap out of it!]</span>// [[I've gotta get Jib!|WW-5400 Slide down]]
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "London Guy">>
<<else>>
<<set _chirpyBrit to "British Guy">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> clumsily tries to push you and <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> into a lesbian kiss.
<<if hasVisited("WW-5740 Thanks")>>\
That<<if hasVisited("WW-5392 Under pressure")>> breaks the spell<<else>>'s enough<</if>>. "Get me a $shotKateChose on this guy!"
<<else>>\
That<<if hasVisited("WW-5392 Under pressure")>> breaks the spell<<else>>'s enough<</if>>. "I've gotta get Jib!"
<</if>>\
//[[Climb down from the rail.|WW-5410 Slither]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/ploy/ploy_bar-sheerBlackThong.png']]")>>
<<set Dialog.open()>>
<</link>></span> both slip out of his grasp, stepping down off the rail simultaneously. Asian Bro's hand squeezes your naked butt cheek.
[[Girl/girl show's up there, guys!|WW-5420 Girl/girl show's up there]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Girl/girl show's up there, guys!"
You point up to the stage. The <span class="imageLink"><<link "clothes are nearly off">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ginaAndAmanda_hccGirlGirlShow1-strippedToKnickers.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and $amanda.stripperName and $gina.nickname's sensual makeout is turning explicit – dirty wet kisses, with their hands down the front of each others' <<knickers>>, fingers strumming each others' clit to the beat of a rock song that's [[older than them both|WW-5422 Now departing]].
<</page>><<silently>>
<<emote-mouth-smile>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "London Guy">>
<<else>>
<<set _chirpyBrit to "British Guy">>
<</if>>
<<if $kate.agency == "cia">>
<<set _katesMotherland to "America">>
<<elseif $kate.agency == "mi6">>
<<set _katesMotherland to "London">>
<<elseif $kate.agency == "asis">>
<<set _katesMotherland to "Australia">>
<<elseif $kate.agency == "csis">>
<<set _katesMotherland to "Canada">>
<<elseif $kate.agency == "nzsis">>
<<set _katesMotherland to "New Zealand">>
<<else>>
<<set _katesMotherland to "ERROR IN KATESMOTHERLAND TEMP VAR">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WW-5740 Thanks")>>\
<span class="imageLink"><<link "Ploy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/test/ployPlaceholder1.png']]")>>
<<set Dialog.open()>>
<</link>></span> sets down a shot of tequila on the bar. You clink it to <span class="imageLink"><<link "_chirpyBrit's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beer, and knock it down. The shot helps calm you down. A little.
"So where you from?" <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans in close to shout in your ear.
<<else>>\
"You sure you don't want a drink?". <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans in close to shout in your ear.
<</if>>\
<<if hasVisited("WW-5740 Thanks")>>\
"_katesMotherland!" You lean in to shout in his ear. Asian Bro's hands are sliding all over your ass. "I've gotta go!"
<<else>>\
"Yeah!" You lean in to shout in his ear. Asian Bro's hands are sliding all over your ass. "I've gotta go!"
<</if>>\
You extricate yourself gently, and [[head backstage|WW-5430 Crossing the dancefloor]] to find Jib.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-talking>>
<<if $kate.agency == "mi6">>
<<set _chirpyBrit to "London Guy">>
<<else>>
<<set _chirpyBrit to "British Guy">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Mmm. You smell great!" <span class="imageLink"><<link "_chirpyBrit">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/cheekyBrit.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shouts in your ear.
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You head towards the stage, where <span class="imageLink"><<link "thongs are coming off">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ginaAndAmanda_hccGirlGirlShow1-nude.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> as the girl/girl show moves into a higher gear.
//"Like I said they're best mates in real life, guys. We've seen 'em snog, but do we wanna watch 'em //fuck,// make some noise if you do..."//
The DJ's announcement gets a round of rowdy masculine whoops and wolf-whistles from the crowd. $amanda.stripperName and $gina.nickname grin self-consciously.
You thread through the edge of the crowd, heels catching on the sticky dancefloor. You're trying to breathe to calm yourself down, you're trying to be inconspicuous, but you're still [[walking almost naked|WW-5435 Eyes on you]] through a room full of sweaty, horny <<if $kate.agency == "cia" or $kate.agency == "csis">>guys<<else>>blokes<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Everything seems...//heightened.// The pulse of the music through your body, the vibrations booming out of the speakers as you get closer to the stage. Eyes locking onto you from every angle as distracted, horny men notice the naked babe parading through their midst.
A hand on your ass as you pass a group in the dark. A guy with saucer eyes tugs on your wrist, tries to pull you aside; you smile at him and keep walking. //Smack!// Someone slaps you and it feels //good.//
Cross Eye the bouncer sees you coming, and holds open the No Entry door. A cool breeze rolls out from the [[backstage corridor|WW-5440 Ears ringing]] to meet you.
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Ears ringing, you stride through the carpeted-up backstage corridor. The buzzing tube light still hasn't been replaced, and there's a strong smell of bleach from the staff <<if $kate.agency == "mi6">>loos<<else>>toilets<</if>>.
//[[Go to the dressing room.|WW-5440 Dressing room]]//
<</page>><<silently>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Entering the dressing room feels like reaching a feminine place of respite. It's buzzing with half-dressed Thai bargirls, chatting, fixing hair and makeup, and swigging alcopops. The air's thick with hairspray, perfume, lotions and body sprays.
Jib's in front of a mirror, touching up her lipstick. She's wearing a <span class="imageLink"><<link "very skimpy black dress and a bra made of red ribbons">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
She glances over when she sees you. "Hey $kate.cover.firstName, wha's up?"
[[They want you in the VIP.|WW-5450 They want you in the VIP]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hey. They, uh, want you in the VIP." Telling her that doesn't feel great. It feels like you're complicit.
"Coooh," <span class="imageLink"><<link "Jib's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> expression is unreadable, you can't tell if she's being sarcastic. "Who VIP?"
[[South African stag party, Mem's already in there.|WW-5460 South African stags]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"South African stag party." You grab the opportunity to access your locker, dialling in the combination to your padlock. "Mem's already in there."
"Uh huh." <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> spritzes on some perfume, adding a waft of exotic scent to the already pungent air. "How many client?"
[[Seven.|WW-5470 Seven]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
Rolling on some deodorant, you hesitate for a moment. "Seven."
<span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just nods. "Uh huh." She takes a moment to prep the things she'll need, tucking <span class="imageLink"><<link "condoms">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/condoms.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "poppers">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/poppersGirlyPower.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and her <span class="imageLink"><<link "lube shooter">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/jibsLubeLauncher.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> into a chic little pouch.
A few weeks ago, you had no inkling that syringes for squirting lube into a girl's butt were in mass production. But there's one in every <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>'s bag of tricks.
"Hey $kate.stripperName!" <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/moo/moo_hcc-backstageTopless.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles up from brushing her hair. "You have good time with $zoe.stripperName?"
[[It got kind of crazy.|WW-5472 GNO was cray cray][$kateSays to "crayCray"]]
[[Think I'm still hung over.|WW-5472 GNO was cray cray][$kateSays to "hangin"]]
[[Why didn't you come?|WW-5472 GNO was cray cray][$kateSays to "yUNoThere"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "crayCray">>\
"It got kind of crazy," you admit.
"<div class="tooltip">Khâ<span class="tooltiptext">Right</span></div>!" <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/moo/moo_hcc-backstageTopless.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "$zoe.stripperName, she ee bah. Mrs Crazy." She's about to say something else, but then <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> interrupts.
<<elseif $kateSays == "hangin">>\
"Ugh. Feels like I'm still hung over," you quip.
<span class="imageLink"><<link "Moo's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/moo/moo_hcc-backstageTopless.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laugh lights up her face. "You young, you fine." She's about to say something else, but then <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> interrupts.
<<elseif $kateSays == "yUNoThere">>\
"Hey, why weren't you there?"
"I look after son," <span class="imageLink"><<link "Moo">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/moo/moo_hcc-backstageTopless.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. She looks to her phone, and you know she's about to show you a photo of him, but then <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> interrupts.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Moooo <div class="tooltip">pi<span class="tooltiptext">'older sister' – a polite Thai honorific when addressing an older woman</span></div>..." she coos. "<div class="tooltip">Chan book VIP. Ter dai len show chan dai mai kha?<span class="tooltiptext">I'm booked in VIP. Can you take my shows?</span></div>"
"<div class="tooltip">Khâ, mai mee muan<span class="tooltiptext">Yeah, no problem</span></div>."
"<div class="tooltip">Aww, khob khun na<span class="tooltiptext">Thaaanks</span></div>." Jib scrunches up her face and gives Moo an air kiss. "$kate.firstName, you go to bar?"
[[Yep.|WW-5474 We go together][$kateSays to "Yep."]]
[[Yeah, I need to get back.|WW-5474 We go together][$kateSays to "Yeah, I need to get back."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"We go together." <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pats <span class="imageLink"><<link "Moo's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/moo/moo_hcc-backstageTopless.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shoulder goodbye, and goes with you out into the [[backstage corridor|WW-5480 Corridors]].
<</page>><<silently>>
<<set $header.line1 to "''BACKSTAGE CORRIDORS''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Muffled club music booms through the carpeted walls. Walking side by side with <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you can't shake the feeling of unease that's settled into your stomach. You know what's waiting for her, and you can't help but feel a little guilty about sending her into it.
"They pay already, or..." Jib has to raise her voice to be heard over the music.
[[Yeah, it's behind the bar.|WW-5490 Your money's behind the bar]]
[[Yeah. Jib, be careful, they were real jerks.|WW-5500 Kate warns Jib]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you reply, raising your voice as you near the No Entry door. "It's behind the bar." She'll keep half of the <div class="tooltip">฿17,500<span class="tooltiptext"><<if $kate.agency == "cia">>$525<<elseif $kate.agency == "mi6">>£350<<elseif $kate.agency == "asis">>$700<<elseif $kate.agency == "csis">>$700<<elseif $kate.agency == "nzsis">>$700<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, the rest goes to the club.
"Good job!" It's weird being commended at work by a <span class="imageLink"><<link "teenager">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Head back out to the club.|WW-5510 Dancefloor honies]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, it's behind the bar. Jib...be careful of those guys, okay? They were real jerks to me."
<span class="greenHighlighter">Jib ''liked'' that.</span>
"Awww, don' worry." <span class="imageLink"><<link "Jib's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smile is indulgent, like a <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>> reassuring a child, even though you're $kate.age and she's still technically a teenager. "I be fiiine."
Her hand brushes your arm comfortingly. It's like she thinks you're the one who needs to be [[looked after|WW-5510 Dancefloor honies]].
<</page>><<silently>>
<<set $header.line1 to "''DANCEFLOOR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Bright lights flood your vision as you step back out into the club. The pulsing beat of a pop song booms out of the PA, pounding through your body and making your bones vibrate.
//<small>🎵</small>Saw your faaace, heard your naame, gotta get with you<small>🎵</small>
<small>🎵</small>Girls, like, girls, like, boyyys do...<small>🎵</small>//
With the stage behind you this time, it feels like the whole room is looking in your direction. <span class="imageLink"><<link "Jib's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers curl into yours, and you walk [[hand-in-hand|WW-5512 Hand-in-hand]] across the dancefloor.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Jib's dress is scandalous – <span class="imageLink"><<link "it's cut below the breasts, and her bra is made of ribbons">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hcc-blackPeekabooMinidressAndRedRibbonBra-carryingBag.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – but at least she's wearing a dress, at least she's wearing a bra. Next to her you feel almost totally naked.
Stares linger on your bodies as you walk back through the crowd. Catcalls you can't hear over the loud music. Men shouting comments about the two of you into their friends' ears [[as you pass|WW-5520 Split up]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/test/jibPlaceholder.png']]")>>
<<set Dialog.open()>>
<</link>></span> split up near the bar. She heads for the VIP, you [[get back to your post|WW-5530 Roxy disliked that]].
<</page>><<silently>>
<<set $header.line1 to "''MAIN BAR''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You duck under the glowing blue bar counter.
<span class="redHighlighter">Roxy ''disliked'' that.</span>
Looking busy and stressed out, <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/roxy/roxy_barWineHighWaistThong.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gives you an accusing look.
[[What?|WW-5540 What]]
//[[Serve a customer.|WW-5580 Deep breath]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
Putting a hand on her shoulder, you lean into her ear. She smells great, citrus and flowers. "What's wrong?" you shout.
"You can't take break!" <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/roxy/roxy_barWineHighWaistThong.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains, shouting back into your ear. <<if $kate.braSize == "large">>You're two busty girls, standing very close, and her breast squashes slightly into yours when she leans in.<<else>>Her breast squashes slightly into your arm when she leans in.<</if>> "Bar is too busy!"
[[Sorry.|WW-5550 Sorry Roxy]]
[[I didn't, I had to get Jib for the VIP.|WW-5560 I didn't]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shrug apologetically. "Sorry."
<span class="redHighlighter">Roxy ''disliked'' that.</span>
<span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/roxy/roxy_barWineHighWaistThong.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just rolls her eyes and gets back to serving.
//[[Serve a customer.|WW-5580 Deep breath]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I didn't!" you insist. "They wanted another <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> in the VIP. I had to go get Jib."
<span class="greenHighlighter">Roxy ''respected'' that.</span>
"Oh." <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/roxy/roxy_barWineHighWaistThong.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks somewhat mollified. "Fine then." She shrugs, which is the closest she ever comes to an apology.
//[[Serve a customer.|WW-5580 Deep breath]]//
//[[Warn her about the VIPs.|WW-5570 Kate warns Roxy]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She goes to move away, but you pull her back. "Careful when you go in the VIP," you tell her. "They're jerks, they were hassling me for extras."
"<div class="tooltip">Remek<span class="tooltiptext">Wonderful</span></div>," <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/roxy/roxy_barWineHighWaistThong.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pouts. "Enough. Let's go back to work."
//[[Serve a customer.|WW-5580 Deep breath]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Interacting with the other girls for a couple of minutes calmed you down a little, helped to ground you.
Now you need to get right back into it. There are guys waiting at the bar, trying to catch your eye. In a couple of seconds they're gonna be groping you and you're not sure you're going to be able to handle it.
You take a deep breath to ground yourself. //Easy. Calm down, be mindful. You're in charge of your body, not these guys. Just breathe through it.//
//[[Get up on the rail and take an order.|WW-5600 On the rail]]//
<</page>><<silently>>
<<if $kate.agency == "asis">>
<<set _roundFacedAussie to "round faced young Queensland kid">>
<<else>>
<<set _roundFacedAussie to "round faced young Aussie kid">>
<</if>>
<<emote-calm>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
You've no idea who's been waiting longest. Smiling brightly, you hook a high heel on the footrail, step up, and lean forward on the bar. "Guys, who's next?"
A <span class="imageLink"><<link "_roundFacedAussie">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/aussieFatKid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just grabs your breast, totally casually. You've had //boyfriends// who wouldn't have the confidence to just touch you like that. //Wonder what else this kid would do if...easy, easy.// "Yeah, two Changs!" he's shouting in your ear. "D'ya know [[how to make–|WW-5610 Crack!]]"
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-smile>>
<<set $avatar.body.pushUnique("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<<header>>\
<<page>>\
//''Crack!''// <span class="imageLink"><<link "His mate">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/aussieThinKid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans across the bar and //slaps// your raised ass. You suck in a gasp.
"–a Baby Guinness?" <span class="imageLink"><<link "the kid shouting in your ear">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/aussieFatKid.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> carries on, kneading your breast while he talks. Stinging heat radiates out of your ass cheek while he lists the ingredients. "Ya just need [[Kahlua and Baileys|WW-5620 Chaos]], right..."
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-eyes-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
He takes hold of your other stiff nipple, giving it a squeeze and a tug that makes your pussy //tingle.//
Then you realise it's not him at all, but a different customer, a <span class="imageLink"><<link "seedy looking old expat">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/scruffyExpat.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> with a deep, leathery tan. He shouts something in your //other// ear. The only word you catch is your name, $kate.stripperName.
"Guys, one at a time," you protest. But there are two guys playing with your nipples and shouting at you, and more waiting to order. Your body's right back up on the edge, your neglected pussy throbbing for some of the attention your breasts are getting.
It's like a rollercoaster. It's chaos. You glance across at <span class="imageLink"><<link "Roxy">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/roxy/roxy_barWineHighWaistThong.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. A fat Asian guy is cupping her big, bare boobs, while his friend lifts up [[one of her pigtails|WW-5630 This place is insane]] to shout in her ear.
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
Past her, lit up under dazzling stage lights, <span class="imageLink"><<link "$gina.nickname and $amanda.stripperName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/groups/ginaAndAmanda_hccGirlGirlShow1-nude.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are down on their hands and knees, backs arched, hips rocking in a sensuous rhythm as they fuck a double dildo.
<<image "/locationPhotos/thailand/hardCockCafe/ginaAmandaGirlGirlShow.jpg" 70 1000 470 0>>\
Two nights ago you were out drinking with them. Now they're crawling around on a stage, humping a sex toy.
This place is //insane.// And it's only a little past 10 <small>P.M.,</small> you've got four hours to go. //You can do this, just calm down. Think about the mission, think about how gross and seedy these guys are, think about, I don't care I just want someone to fuck me [[right now|WW-9000 Title card]]...//
<</page>><<silently>>
<<set $header.line1 to "''MANAGER'S OFFICE''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<emote-calm>>
<<wear-knickers-blackGotYourBackLaceThong>>
<<set $avatar.body.delete("/113Expressions/60_butt-spankingFlush-handprint1-rear")>>
<</silently>>\
<a data-passage="WW-9010 Office">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hardCockCafe/3Point5HoursLaterOfficeTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<span class="blinking">''1.33 <small>A.M.</small>''</span> <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> walks you into the office with his hand on your ass.
This is it, you're //finally// going to be fucked. It'll stream later on <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> and you simply //do not// care. After hours and hours of teasing and foreplay, your nipples are straining, your pussy's drenched and desperate, and your body just //needs// this.
"They complained about you in the VIP," he grumbles.
[[The 'VIPs' were assholes.|WW-9020 They suck][$kateSays to "The 'VIPs' were assholes."]]
[[They wanted extras.|WW-9020 They suck][$kateSays to "They wanted extras."]]
[[They got mad because I wouldn't fuck them.|WW-9020 They suck][$kateSays to "They got mad because I wouldn't fuck them."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Mm-hm." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> squeezes your butt as he walks you to the desk.
The club's winding down. Next door in the dressing room, through the one-way mirror, <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_hccDressingRoom-toplessInTealBoyshorts.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-toplessPuttingOnGreyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are changing back into their street clothes.
"Tid was all for making you go back in and 'apologise'. Yer lucky I'm such a nice boss."
[[I'd have quit.|WW-9030 Kate threatens to quit]]
[[Oh yeah, you're a treasure.|WW-9040 You're a treasure]]
[[I'm not apologising, they're pricks.|WW-9050 Not apologising to pricks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'd have quit," you promise him.
"Bollocks," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You love it here."
<<include "WW-9060 Bending Kate over">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh yeah. You're a treasure."
<span class="greenHighlighter">Connor ''liked'' that.</span>
"I love it when yer sassy."
<<include "WW-9060 Bending Kate over">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't see why I should apologise to a bunch of pricks."
<span class="greenHighlighter">Connor ''liked'' that.</span>
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets out an amused little //huff.// "Speaking of pricks."
<<include "WW-9060 Bending Kate over">>
<</page>>He plonks the cash bag down on the desk. Then he reaches up your back, gives you a little push between your shoulder blades.
//[[Let him bend you over.|WW-9070 Pressed]]//<<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You go with the pressure, letting Connor bend you over the desk.
It's //completely// disempowering. One second you're having a conversation, the next second all you're here for is sex. Your thong stretches taut between your buttocks, the backs of your legs stretch, and your breasts <<if $kate.braSize == "small">>press<<else>>squash<</if>> against the cold hard surface.
Connor's thumbs curl into [[your thong|WW-9080 Knickers down]].
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-downAroundKnees")>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-downAroundKnees-rear")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-rear")>>
<</silently>>\
<<header>>\
<<page>>\
All night long, it's been your single scrap of modesty. The one badge of office that sets you apart from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> on stage.
Connor just casually peels it down. A waft of cool air [[hits your pussy|WW-9090 Outercourse]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
His finger glides deeply up inside you, right up to the knuckle. You suck in a sensual gasp as you nearly //come.// "You dirty little bitch," he murmurs.
The finger slips out, there's fumbling with his shorts, then his hand's on your ass. "You think you're too good for this place, don't ya." The tip of his cock slips between your wet lips, nudges inside you. "[[Yer fuckin' not|WW-9100 Penetration]]."
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//"Unhhh!"// Your <<if $kate.mouthShape == "thin">>delicate<<else>>pouty<</if>> red lips part and let out a high-pitched feminine groan as his dick slithers inside you, filling you up in a single, easy thrust.
Then he's fucking you, big hands holding your hips, his fat stiff cock thrusting inside you, his balls thwapping gently against your stiff little clit.
[[Unnh!|WW-9110 Noisy girl][$kateSays to "Unnh!", $kateDoesntSay to "Ohhh!"]]
[[Ohhh!|WW-9110 Noisy girl][$kateSays to "Ohhh!", $kateDoesntSay to "Unnh!"]]
<span class="greyedOut">//[Arousal too high] Stay quiet.//</span>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//"$kateSays $kateDoesntSay"// Your voice comes out loud and expressive, moaning in time with each thrust. Connor fucks you //hard,// pushing and pulling your hips like you're a rag doll.
Heat rises in your cheeks, and your breath catches high in your chest. Your nipples feel like they're drilling into the desktop. Tension surges suddenly in your breasts and your groin. Oh fuck! //[[I'm gonna|WW-9120 Fast girl]]...//
<<unset $kateDoesntSay>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
//"Ohhhhhhh!"//
It hits you suddenly, the fastest ever, rocking your body with a clenching, powerful orgasm. Your pussy pulses and throbs and your breath comes out in short noisy gasps.
You arch your back up off the desk, your pretty features [[contorted in pleasure|WW-9130 Quickie fuck]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Much later, you'll realise you probably looked straight up at the hidden camera when you did that. But for now you're just lost in the moment.
Connor's fat cock is thrusting inside you, brisk and rhythmic. He reaches under and cups your breasts, squeezing and fondling them roughly, playing with them while he fucks you.
You've just come. But you're [[not done yet|WW-9140 Not done yet]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
It's like your body's primed for more. Your breath comes out in feminine gasps and moans over the //slap-slap-slap// of skin on skin as Connor gives you a brisk, hard fuck over the office desk. They must be able to hear you next door but that feels irrelevant right now.
He keeps pounding into you, his fat cock driving deep inside you. His breathing is laboured and uneven, his hands rough and careless as they squeeze and cup your <<if $kate.braSize == "small">>small tits<<elseif $kate.braSize == "medium">>firm, perky tits<<else>>big, soft tits<</if>>.
Bent over and roughly taken, your back arching to meet his thrusts, you can feel yourself getting close again. Your body tenses and you grip the edges of the desk as a second orgasm [[builds up inside you|WW-9150 Kate orgasm 2]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Pinching your <<if $kate.piercings.includes("nipplesSilverBarbells")>>pierced <</if>>nipples, thrusting his fat, stiff cock into you hard from behind, Connor brings you to a second noisy orgasm over the office desk.
This time it's more intense, more satisfying. Pleasure rocks your body then you're filled with that warm, relaxed haze you get after good sex.
All the tension of the last few hours is gone, blown away by an overload in all your pleasure centres. You feel tingly and loose all over, like you could just flop down in a [[blissed-out heap|WW-9160 Connor fuck]].
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck. Fuck. I needed that.// You feel warm and fulfilled and released.
Connor's still fucking you, so you...
//[[...relax and let him finish.|WW-9170 Chilled out fuck]]
[[...try the Singapore Grip.|WW-9180 Singapore Grip]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He's about to come, you can tell. His hands come off your tits. He grabs your hip, grabs a fistful of your hair, pins you down on the desk. Holds you still, while he fucks you as hard and as fast as he can.
It doesn't take long. "Mmmmh!" he groans. "Fuck!" Then his strokes slow down and stop, and you know [[he's come|WW-9500 Connor creampie]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The trick Kriangsak taught you pops back into your head. Rhythmically, steadily, you tense and squeeze the muscles in your pussy, massaging Connor's dick while he fucks you.
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Ah yeah," he grunts. "Good girl. Fuck. Dinnay stop."
He's about to come, you can tell. His hands come off your tits. He grabs your hip, grabs a fistful of your hair, pins you down on the desk. Holds you still while he fucks you as hard and as fast as he can.
It doesn't take long. "Mmmmh!" he groans. "Fuck!" Then his strokes slow down and stop, and you know [[he's come|WW-9500 Connor creampie]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Slag," he groans. Breathing heavily, he releases your hair, squeezes your butt, cups a boob.
Then his cock slithers out of you, leaving your pussy flooded with his [[gooey sperm|WW-9510 Post-orgasmic chill]].
<</page>><<silently>>
<<showFront>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
//Oh. Mygod. I just came twice in about five minutes.//
Straightening up, you [[tug your thong back into place|WW-9520 Thong up]].
<</page>><<silently>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong")>>
<<set $avatar.underwear.pushUnique("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-rear")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-downAroundKnees")>>
<<set $avatar.underwear.delete("clothing/underwear/blackGotYourBackLaceThong/30_knickers-blackGotYourBackLaceThong-downAroundKnees-rear")>>
<<emote-brows-calm>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
There's a satisfied grin on <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> flushed face as he plonks himself heavily in the office chair. "That was fuckin' great."
He counts out your wages, your share of the bar tips, and the <div class="tooltip">฿750<span class="tooltiptext"><<if $kate.agency == "cia">>$22.50<<elseif $kate.agency == "mi6">>£15<<elseif $kate.agency == "asis">>$30<<elseif $kate.agency == "csis">>$30<<elseif $kate.agency == "nzsis">>$30<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> 'bonus' he always gives you after sex. "Hey, how was <<Zoe>>'s party? You had a couple cocktails on us, right?"
[[Yeah, thanks.|WW-9530 Yeah, thanks]]
[[You want me to pay that back?|WW-9540 You want it back?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $avatar.foreground.pushUnique("/accessories/cashInHand/20_cashInHand-2kBaht2")>>
<</silently>>\
<<header>>\
<<page>>\
He's talking about the <div class="tooltip">฿1000 spending money<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> he gave you. "Yeah, thanks," you smile politely.
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Dinnay mention it. Yer a fucking cute wee thing, you know that? When's your next shift?"
[[Monday.|WW-9550 Monday bloody Monday]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $avatar.foreground.pushUnique("/accessories/cashInHand/20_cashInHand-2kBaht2")>>
<</silently>>\
<<header>>\
<<page>>\
He's talking about the <div class="tooltip">฿1000 spending money<span class="tooltiptext"><<if $kate.agency == "cia">>$30<<elseif $kate.agency == "mi6">>£20<<elseif $kate.agency == "asis">>$40<<elseif $kate.agency == "csis">>$40<<elseif $kate.agency == "nzsis">>$40<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> he gave you. "You want me to pay that back?" you ask.
"Och, no," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> waves away your offer. "It was a present. When's your next shift?"
[[Monday.|WW-9550 Monday bloody Monday]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Monday."
"Oh, aye. New girl's trying out Monday. Show her the ropes, eh? You'll be big sister."
[[Big sister?|WW-9560 Big sister]]
[[What new girl?|WW-9570 What new girl]]
<<link "$emilia.firstName?" "WW-9580 Emilia">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Big sister?"
"Aye. Y'know, take her under yer wing, help her out."
[[Okay.|WW-9590 Okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What new girl?"
"The aussie. The one with the boyfriend, remember?"
<<link "$emilia.firstName?" "WW-9580 Emilia">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$emilia.firstName?"
"Aye. Take her under yer wing, help her out."
[[Okay.|WW-9590 Okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay."
"Good. I'm off Monday, but let me give you some advice." <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> expression is inscrutable. "Get on Nin and Lu's good side. There's only so many <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls we're allowed to keep on the books. We dinnay need three of 'em to be //barmaids."//
[[What are you saying?|WW-9600 What do you meme]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What are you saying?"
"I'm saying it's either you or Roxy." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points up at the ceiling. "Upstairs or out."
[[How's it decided?|WW-9610 How's it decided]]
[[I'm not gonna be a bargirl.|WW-9630 Not gonna be a bargirl]]
<<link "Maybe $emilia.firstName will wash out." "WW-9620 Maybe Emilia will wash out">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How's it decided?"
"By higher powers. Like I said, if I were you, I'd make friends with Nin and Lu."
[[Got it. Thanks.|WW-9650 Got it]]
[[I'm not gonna be a bargirl.|WW-9630 Not gonna be a bargirl]]
[[You'd miss me if I quit.|WW-9640 You'd miss me]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe $emilia.firstName will wash out."
"Pfft. Dinnay think her boyfriend'll let her." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "He's mad keen. Little prick keeps texting me, he's my new best mate."
[[I'm not gonna be a bargirl.|WW-9630 Not gonna be a bargirl]]
[[How's it decided?|WW-9610 How's it decided]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not gonna be a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>."
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Like I said. Better get on Nin and Lu's good side, then."
[[Got it. Thanks.|WW-9650 Got it]]
[[You'd miss me if I quit.|WW-9640 You'd miss me]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"You'd miss me if I quit."
<span class="greenHighlighter">Connor ''liked'' that.</span>
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. "I'd get over it. Anyway, off you fuck, I've got work to do."
[[See you next week.|WW-9660 C U N W]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Got it. Thanks."
"Nay problem. Anyway." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> dismisses you with a curt upwards nod of his chin. "Off you fuck, I've got work to do."
[[See you next week.|WW-9660 C U N W]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"See you next week."
Clutching your pay, you leave the office and [[go get changed|WW-9670 Dressing room]].
<</page>><<silently>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<set $header.line1 to "''DRESSING ROOM''",
$header.line2 to "HARD COCK CAFE / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You feel a moment's trepidation as you push open the door to the dressing room. They must know you were just having sex in the office.
But when you walk in with a just-fucked glow and a wad of cash in your hand, none of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> getting ready to go home bat an eyelid. //Guess they've all done it.//
"How ya goin', $kate.cover.firstName?" Back in her street clothes, <span class="imageLink"><<link "$gina.nickname's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_hccDressingRoom-denimSkirtAndLedZepTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> loading cash, makeup and lingerie back into her <<handbag>>.
"Hey $kate.cover.firstName," says <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-greyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[Hey Jib. How was the VIP?|WW-9680 How was the VIP?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Hey. Um...how was the VIP?"
"Fiiiine," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-greyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies breezily.
You didn't expect a monologue, but...//how was getting fucked by seven older men? Fiiiine.//
[[Just wanted to check you and Mem were okay.|WW-9690 Mem speaketh]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, cool. Just wanted to check you and Mem were okay."
"Awww." <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-greyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scrunches up her face. "You sweet. Thaaanks."
"Well." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-toplessInDaisyDukes2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> peers around her locker door. "For a second, I thought you only worry about Jib."
[[Of course not.|WW-9720 Of course not]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Course not."
"Just joking." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-toplessInDaisyDukes2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smirks. "We're big girls, we're fine."
"<div class="tooltip">Khâââ<span class="tooltiptext">Riiight</span></div>. VIP easy with two girl," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-greyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> explains. "Client all ready. No hagg-oh, no problem."
[[No what?|WW-9730 No what?]]
[[I guess.|WW-9740 I guess]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No what?"
"No hagg-oh," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-greyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> repeats.
[[I guess.|WW-9740 I guess]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
You shrug as you open up your locker. "I guess."
"Shoulda heard 'em, tryin' to hire <<if $kate.agency == "mi6">>Pommy<<else>>$kate.stripperName<</if>>." <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-braAndDaisyDukes.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs, then puts on a deep, gruff voice. "We give you <div class="tooltip">five thousan'<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>. Okay, fine, <div class="tooltip">fifty thousan'<span class="tooltiptext"><<if $kate.agency == "cia">>$1500<<elseif $kate.agency == "mi6">>£1000<<elseif $kate.agency == "asis">>$2000<<elseif $kate.agency == "csis">>$2000<<elseif $kate.agency == "nzsis">>$2000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
<span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_hccDressingRoom-denimSkirtAndLedZepTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nearly spits out her mineral water. //"Fifty// thousand?!"
"For whole room," Mem clarifies.
"Ah right. Hey, that's still not bad. [[How many clients|WW-9750 Seven]]?"
<</page>><<silently>>
<<emote-mouth-calm>>
<<set $avatar.foreground.delete("/accessories/cashInHand/20_cashInHand-2kBaht2")>>
<</silently>>\
<<header>>\
<<page>>\
"Seven client," <span class="imageLink"><<link "Jib">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/jib/jib_hccDressingRoom-greyDress.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says helpfully.
"Pfff. Shoulda done it," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_hccDressingRoom-denimSkirtAndLedZepTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you.
//"But I caaan't,"// <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-braAndDaisyDukes.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> switches impressions, impersonating you. //"[[I just serve driiink|WW-9760 I just serve driiink]]."//
<</page>><<silently>>
<<removeShoes>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
That gets a laugh out of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
//"It other girl's job. If I do it, they kill me. I can't [[take their money|WW-9770 You should bargirl]]..."//
<</page>><<silently>>
<<emote-eyes-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"You should have done it," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-braAndDaisyDukes.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "We all do it."
"Defo," <span class="imageLink"><<link "$gina.nickname">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/gina/gina_hccDressingRoom-denimSkirtAndLedZepTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees. "It's really not as big a deal as you think it is."
[[Don't think I could do it.|WW-9780 Don't think I could bargirl]]
[[I'm good barmaiding for now.|WW-9790 I'm good for now]]
[[Maybe someday, not yet.|WW-9800 Not bargirling yet]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<wear-shorts-blueDenimDIYJeansShorts>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I think I'll stick behind the bar." You wriggle into your jean shorts. "I don't think I could do it."
<span class="redHighlighter">$gina.nickname ''disliked'' that.</span> <span class="redHighlighter">Mem ''disliked'' that.</span> <span class="redHighlighter">Jib ''disliked'' that.</span>
<span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-daisyDukesAndBandTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "[[We all do it|WW-10000 Title card]]," she repeats...
<</page>><<silently>>
<<emote-mouth-talking>>
<<wear-shorts-blueDenimDIYJeansShorts>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I'm good for now." You wriggle into your jean shorts. "I'll just stick to the bar."
"Yeah, no hurry," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-daisyDukesAndBandTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We're [[just sayin'|WW-10000 Title card]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<<wear-shorts-blueDenimDIYJeansShorts>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe one day," you lie, wriggling into your jean shorts. "I'll stick to the bar for now."
<span class="greenHighlighter">$gina.nickname ''liked'' that.</span> <span class="greenHighlighter">Mem ''liked'' that.</span> <span class="greenHighlighter">Jib ''liked'' that.</span>
"Yeah, no hurry," <span class="imageLink"><<link "Mem">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/mem/mem_hccDressingRoom-daisyDukesAndBandTee.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "We're [[just sayin'|WW-10000 Title card]]..."
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<set $kate.isUsingHerStripperName to false>>
<<emote-calm>>
<<wear-bra-nudeStrapless>>
<<wear-top-whiteRibbedButtonUpCroppedTShirt>>
<</silently>>\
<a data-passage="WW-10010 Kate's room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
<span class="blinking">''2.24 <small>A.M.</small>''</span> Back in your room, you're wired and awake.
<span class="greyedOut">//[Arousal too high] Write your report.//</span>
//[[Enjoy a little 'me time'.|WW-10020 Masturbation]]//
<</page>><<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You have to write your report. But...//first things first.//
//[[Get naked and get into bed.|WW-10100 Kate's fantasy]]//
<</page>><<silently>>
<<removeBra>>
<<removeShorts>>
<<removeKnickers>>
<<set $avatar.clothing.pushUnique("teenRom/50_katesBedsheets2")>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
You peel off your clothes, and slip into bed. Even though you came earlier in the office – //twice!// – you don't feel like you're fully back down to normal yet.
Tonight was so sexy. It wasn't because you're into any of the guys there, you're //not,// but something about the way you're //treated// in there makes you //wet.//
Connor said Tid wanted you to go back into the VIP and 'apologise'. //Fuuuck.// If the mission had depended on it...would you have done it? You [[can't imagine|WW-10110 Actually]] anything more unfair and humiliating.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Actually...//yes I can.// Under the bedsheet, you flick and tug your nipples, getting your body ready for round 3.
It's not like the VIPs would be happy with you saying sorry. You'd have to...
//
<<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut">[Exhibitionist]</span> [[...strip to show them you were serious.|WW-11000 Exhib fantasy]]
<<else>>\
<span class="greyedOut">[Exhibitionist] ...strip to show them you were serious.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut">[Masochist]</span> [[...be punished.|WW-12000 Masochistic fantasy]]
<<else>>\
<span class="greyedOut">[Masochist] ...be punished.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut">[Submissive]</span> [[...do any perverse thing they wanted.|WW-13000 Submissive fantasy]]
<<else>>\
<span class="greyedOut">[Submissive] ...do any perverse thing they wanted.</span>
<</if>>\
//\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Take 'em off, bokkie. Hand 'em over.//
That little scrap of material is your only badge of office, the one thing that sets a topless barmaid apart from the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div>.
Your middle finger slips between your hot, wet lips as you picture being made to take your thong off in the VIP. Peeling it down, stepping out of it.
Stripping yourself not just of your clothes, but of your [[status|WW-11010 Night with Bokkie]].
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
In your fantasy, cash is exchanged...then you're going straight over the back of the couch.
//She's soaking, brus, hahaha!
Dirty little bitch.
I'm first.//
You stroke and fondle your stiff, wet clit as you imagine Bushy Beard climbing up behind you on the couch, his hands settling possessively [[on your hips|WW-11020 Bushy Beard fuck]]...
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You imagine it thrusting up inside you, the first stiff cock of a very long night.
His mates holding up camera phones all around, snapping photos and recording video, immortalising your first time [[getting paid to fuck|WW-11030 Next customer]]...
<</page>><<silently>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
Laughter and cheering as Bushy Beard comes inside you. But for you, the session's only getting started. The bright light of a camera phone shines in your face as more cash is shoved into your hand, and another man takes Bushy Beard's place on the couch behind you.
New hands on your hips. A second, different cock slithering straight into you. All on film. //They're turning me into a whore and they're [[putting it on the internet|WW-14000 Kate orgasm]]...//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You picture them roughly manoeuvring you to the couch. Strong hands gripping your arms, a fist holding your hair. Frogmarching you as fast as you can go in heels.
//Put the bitch on the couch.//
In your fantasy they just fling you onto it. Then they're pinning your wrists, roughly [[yanking down|WW-12010 Fingered]] your thong.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Someone's fingers thrust up inside your pussy – not foreplay, not to get you off, just roughly penetrating you. You imagine kicking out and resisting...
//Whoa, bokkie!
Got a live one brus!//
Strong hands grabbing your ankles, a fist holding your hair. Two fingers just casually //fucking// you while you squirm and fight. Stinging slaps across your face and ass until you //calm down, bokkie, it's just a fuck.//
Then a couple more, just to [[show you who's boss|WW-12020 Showing bokkie who's boss]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
There's //seven// of them, they're going to //fuck// you, there's nothing you can do. Strumming and fondling your clit under the bedsheets, you imagine all the hands pinning you down, their smug expressions, the condescending taunts.
//Coulda got paid for this, bokkie, now you're doing it for free.
No wonder she's broke.
Relax, bokkie. It's happening, might as well enjoy it.//
Rough hands grope your tits. One of the VIPs slides a wet finger [[straight into your butt|WW-12030 Spitroast]].
<</page>><<silently>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
Squeezing your butt in one hand, tapping and pressing your clit with the other, you writhe on the bed, gasping softly as you picture yourself being held down and finger fucked. Two fingers in your pussy, one in the butt.
Then they're done with their fingers, it's time to take turns on you with their cocks. One in your mouth, one fucking you from behind, the same degrading treatment they gave to Mem. They pin you down, hold your hair, grab your breasts, spank your ass.
One of them comes in your pussy. For a moment you're just sucking cock and getting spanked. Then a different stag climbs up behind you. New hands settle on your hips, and a third cock is [[unceremoniously thrust inside you|WW-14000 Kate orgasm]]...
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Sex with them is your first thought. But it's too basic to get you off. You need something spicier, something more taboo. Maybe...
//Let's get some lesbian shit going on in here.//
Why did you think that? You're straight. But, in a way...that kind of makes it hotter. Your middle finger slips between your hot, wet lips as you picture it, you and Mem, having to [[make out with each other|WW-13010 Girl/girl kiss]] while the VIPs watch.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
It doesn't //matter// that you're straight. They don't care, they want to watch you kiss and fuck another woman. So that's just what you're going to have to do.
You stroke and fondle your stiff, wet clit as you picture yourself sliding off your thong, and [[climbing onto the couch with Mem|WW-13020 Putting on a show]]...
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You've seen girl/girl shows on stage, so...you know what the two of you would have to do. Soft lipstick kisses. Tongues exploring each other's mouths. You imagine the heat of your bodies pressing together, poising yourselves //just so// to show off your naked curves to the audience.
You picture yourself doing what you've seen so many of the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> do. Entertaining men with a [[tacky, titillating lesbian show|WW-13030 What number am I thinking of]].
<</page>><<silently>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
The idea of being made to fuck another woman – just for the entertainment of a bunch of horny men – is so demeaning. And so hot. Strumming your clit, you pinch and tweak your nipples, imagining lowering them into Mem's mouth, making her suck your tits for the boys.
You can picture the VIPs, jeering and guffawing as they egg you into the 69 position. Lowering your wet pussy onto her mouth, dipping your face between her spread legs...//tasting// her. While the stags all watch.
Then rough hands taking hold of your hips from behind, big stiff cocks thrusting into both of you while your tongues [[lash each other's clits|WW-14000 Kate orgasm]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Your breath comes out in high-pitched gasps as that mental image pushes you over the edge. //[[Fuck...fuck...fuck.|WW-14010 Post orgasmic chill]]//
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-sexy>>
<<emote-eyes-calm>>
<<set $avatar.clothing.delete("teenRom/50_katesBedsheets2")>>
<</silently>>\
<<header>>\
<<page>>\
//Ohmygod. Fuck.// Kick off the bedsheets, you stare up at the ceiling, letting your pulse and breathing slowly return to normal. The afterglow of tonight's third orgasm feels like a mix of exhilaration and shame.
That was...wow. You just fantasised about <<if hasVisited("WW-11000 Exhib fantasy")>>being prostituted on the internet<<elseif hasVisited("WW-12000 Masochistic fantasy")>>being pinned down and raped by five older men<<elseif hasVisited("WW-13000 Submissive fantasy")>>doing a lesbian floorshow with a potential agent<</if>>. //What the hell is wrong with me? What kind of person gets off on that?//
//It's just a fantasy. It doesn't mean anything.// You compartmentalise it for now; you've got things to do. Shower, report, bed.
<<if hasVisited("GNO-56208 Yoginis")>>You've got to meet up with the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> [[tomorrow morning|TNG-100 Title card]]...<<else>>At least tomorrow's your own. You are determined to have a [[lazy Sunday|TNG-100 Title card]]...<</if>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not a fucking sex toy," you grumble.
Carrying the money bag to the desk, <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just chuckles at that.
//[[Take them off.|WW-9030 Knickers off]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Only a moment's hesitation when you picture the hidden camera on the back wall, recording footage for the analysts at <div class="tooltip">Faslane<span class="tooltiptext">headquarters of Combined Task Force <small>NEPTUNE</small></span></div> and <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div>.
Then your fingers flutter up to your hips, and grasp the skimpy elastic waistband of your thong.
//[[Take it off.|WW-9040 Down it comes]]//
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
Down it comes, a scrap of soft clingy lace and lycra sliding down your long shaven legs.
Your pulse quickens. You felt naked before; you feel really naked now. Not a scrap of clothing on you, just shoes and jewellery. //Fuuuck.// Your nipples are straining and your pussy's drenched.
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> plonks himself heavily in the office chair, looking at something on his phone.
//[[Go wait on the couch.|WW-9050 Wait on the couch]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You //click-click-click// over to the couch, your thong dangling from your fingers.
Connor glances up from his phone, distracted by the sway of your hips. For a second you think he might just jump up and ravish you. But he buries his nose back in his phone, //tap-tap-tapping// out a message.
<span class="greyedOut">//[Arousal too high] Perch demurely on the arm.//</span>
<span class="greyedOut">//[Arousal too high] Sit with your legs crossed.//</span>
//[[Recline seductively on the couch.|WW-9060 Couched][$kateSays to "recline"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Bare skin hits black leather as you drape your body over the couch, poised temptingly, waiting for your manager.
//Tap-tap-tap. Tap-tap-tap-tap.// <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> seems to be sending the world's longest text message. Twirling a finger in your hair, you watch him work.
[[What are you working on?|WW-9070 What are you working on]]
//[[Wait patiently.|WW-9080 Patience]]//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//Might as well try to get some intel.// You're not sure you've picked up anything at all from tonight's shift. "What are you working on?"
"Shut up."
<<include "WW-9090 Tapatap">>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Last time you were too chatty, he gagged you with your own <<knickers>>. You decide to just keep quiet and watch for now.
<<include "WW-9090 Tapatap">>
<</page>><<if hasVisited("WW-9070 What are you working on")>>He ignores your displeased little huff. <</if>>//Tap-tap-tap-tap// go his thumbs. The muffled sound of <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> chatting and giggling drifts through the [[one-way mirror|WW-9100 The wait]] from next door.<<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your eyes roam around the room, but there's nothing to see. On the security monitors, a naked Amanda is straddling and making out with an Asian guy in one of the rooms upstairs. In their tank, the fish swim languidly.
For the first time ever, you're going to work a shift at the club and have absolutely nothing to report.
//Tap-tap-tap.// Laying around naked, just waiting for <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> to use you for sex is...//I don't know. Confusing.// A weird mix of humiliating and [[hot|WW-9110 So hot]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're so turned on. Your body feels like a gun, cocked and loaded and ready to go off at the slightest squeeze. //Tap-tap-taptap. Tap-tap-tap. Whoosh.//
The phone gets tossed on the desk and the chair creaks as <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rises to his feet. "They complained about you in the VIP," he says.
[[The 'VIPs' were assholes.|WW-9120 They suck][$kateSays to "The 'VIPs' were assholes."]]
[[They wanted extras.|WW-9120 They suck][$kateSays to "They wanted extras."]]
[[They got mad because I wouldn't fuck them.|WW-9120 They suck][$kateSays to "They got mad because I wouldn't fuck them."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You're such a pig."
"You love it." He's already back to his phone, //tap-tap-tap-tap-tap.//
//[[Get on all fours.|WW-9080 All fours]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Ugh," you grumble even as you shift position. Then you realise you've been presented with a dilemma.
One end of the couch faces the door, the other points towards the hidden camera.
//[[Face to the camera, ass to the door.|WW-9090 Ass to the door]]
[[Face to the door, ass to the camera.|WW-9100 Ass to the camera]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Not showing <div class="tooltip"><small>ECHELON</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> that.//
You get up on all fours and face the camera wall instead, resisting the urge to look up at it. You might not be showing the camera your asshole, but it still feels humiliating when you picture 'Officer $kate.firstName[0]' in this position. Naked on her hands and knees.
Your bare pussy's just pointing at the door like you're just...presenting yourself to anybody who comes in.
//Tap-tap-tap, tap-tap-tap-tap.// <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[still typing on his phone|WW-9110 Waiting]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
'$kate.stripperName' shouldn't have any idea there's a camera on the back wall. There's no reason for her to just...present herself to anybody who comes in through the door.
//So that means I have to...//
Oh god. But you //have// to. Your body's moving before you've properly thought it through.
Shifting onto all fours, facing the office door, you slowly, hesistantly, push your naked ass up into the air.
Showing it to the camera. Showing it to <div class="tooltip"><small>ECHELON.</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> //Ohmygod.// This must look so...whorish. //Fuck.//
//Tap-tap-tap, tap-tap-tap-tap.// <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[still typing on his phone|WW-9110 Waiting]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Tap-tap-tap-tap// go his thumbs. The muffled sound of <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> chattering and giggling in the dressing room drifts through the one-way mirror.
This is so humiliating. Naked, on all fours, just...waiting for him. Holding your wet pussy up in the air, open and ready for him. //Tap-tap-tap. Tap-tap-tap-tap. Whoosh.//
The phone gets tossed on the desk and the chair creaks as <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rises to his feet. "They complained about you in the VIP," he says.
[[The 'VIPs' were assholes.|WW-9120 They suck][$kateSays to "The 'VIPs' were assholes."]]
[[They wanted extras.|WW-9120 They suck][$kateSays to "They wanted extras."]]
[[They got mad because I wouldn't fuck them.|WW-9120 They suck][$kateSays to "They got mad because I wouldn't fuck them."]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Mm-hm." He comes over to the couch, towering over you. //Is he going to get me to blow him first?// Your gaze flicks down to his crotch, then back up to his eyes.
He reaches down, casually pawing your breast with an absolute lack of propriety. "Tid wanted to make ya go back in and 'apologise' to 'em." When he pinches your nipple it makes you want to gasp. "Yer lucky I'm such a nice boss."
[[I'd have quit.|WW-9130 Kate threatens to quit]]
[[Oh yeah, you're a treasure.|WW-9140 You're a treasure]]
[[I'm not apologising, they're pricks.|WW-9150 Not apologising to pricks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'd have quit," you promise him.
"Bollocks," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You love it here."
<<include "WW-9160 Connor's cock">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh yeah. You're a treasure."
<span class="greenHighlighter">Connor ''liked'' that.</span>
"I love it when yer sassy, right before you suck a dick."
<<include "WW-9160 Connor's cock">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't see why I should apologise to a bunch of pricks."
<span class="greenHighlighter">Connor ''liked'' that.</span>
"Heh." <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets out an amused little //huff.// "Speaking of pricks."
<<include "WW-9160 Connor's cock">>
<</page>>Letting go of your breast, he pushes down the front of his shorts. His cock dangles right in front of your face.
//[[Put it in your mouth.|WW-9180 Kate sucks]]//<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
Wetting your lips, you lower your head. <<if hasVisited("WW-9090 Ass to the door")>>From this angle, you doubt the camera can see anything at all except his back, although it'll be pretty obvious what you're doing.<<else>>You can't help but imagine what this looks like on <div class="tooltip"><small>ECHELON,</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div> but it's not like you can back out now.<</if>>
Your <<if $kate.mouthShape == "thin">>delicate<<else>>pouty<</if>> red lips brush up against it. Then they part, and you take the tip of his soft, dangling cock into your mouth. <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets out a little murmur of satisfaction as you taste his dick.
//[[Suck it.|WW-9190 Suckle]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
//Tricky angle.// Especially because your hands need to stay down on the couch. You curve your back and dip your elbows to get low enough to get all of his cock into your mouth.
"Thaaat's it," Connor murmurs. "Suck it, ya slag."
Breathing through your nose you ignore the insult, and suckle gently on his flaccid, hanging cock.
//[[Get it hard.|WW-9200 Hardening]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Breathing through your nose, with your ass in the air, you instinctively suckle and slurp on the squidgy dick in your mouth. You can feel it starting to firm up and harden as Connor relaxes and gets into it.
<<if hasVisited("WW-9100 Ass to the camera")>>\
//[[Keep sucking.|WW-9210 Quite the view]]//
<<else>>\
//[[Keep sucking.|]]//
<</if>>\
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _modifiers to -4>> /* high arousal */
<<if $kate.kinks.includes("exhibitionist")>>
<<set _modifiers -= 1>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
This position leaves you utterly exposed and you know the camera is getting a good view of your naked ass.
It's at quite a high angle, so they //might// not be able to see your actual pussy. That's a good thing, right?
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Resist Arousal check.'' Difficulty: Mild (2).
<<link "Roll 2 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 + _modifiers gte 2>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Resist Arousal check.'' Target: 2. You rolled: (<<= _kateD10>><<= _modifiers>>) = <<= _kateD10+_modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="greyedOut">//[Exibitionist or High Arousal]//</span> //[[Give them a better view.|WW-9220 Enjoy the show boys]]//<br />
<span class="greyedOut">//[Resist Arousal check ''passed'']//</span> //[[Better not.|]]//
<<else>>
<span class="greyedOut">//[Exibitionist or High Arousal]//</span> //[[Give them a better view.|WW-9220 Enjoy the show boys]]//<br />
<span class="greyedOut">//[Resist Arousal check ''failed''] Better not.//</span>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10_modifiers<span class="tooltiptext">-4 //Arousal//<<if $kate.kinks.includes("exhibitionist")>>, -1 //Exhibitionist//<</if>></span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
As soon as you picture it, you know you're going to do it.
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
On all fours, your hands have to stay down. You try to arouse him using just your mouth, using your tongue to lick, swirl and massage the head and the shaft.
TK ass in the air on all fours, pussy/exposure sensation
<span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs in satisfaction. Slowly, gradually his cock gets fatter and harder in your mouth.
//[[Suck it.|WW-9180 Sucker]]//
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
It's stiff enough to slurp on. On your hands and knees you rock gently back and forth on the couch, sucking <span class="imageLink"><<link "Connor's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> cock, nursing it towards a full erection.
His fingers curl into your hair, firm but gentle pressure taking control, making you [[quicken your pace|WW-9190 Schlup schlup schlup]].
<</page>><<silently>>
<<emote-eyes-squint>>
<<emote-mouth-blowjob>>
<</silently>>\
<<header>>\
<<page>>\
You look up at him, <<if $kate.eyeColour == "blue">>blue<<elseif $kate.eyeColour == "chestnut">>doe<<elseif $kate.eyeColour == "emerald">>jade<<elseif $kate.eyeColour == "grey">>grey<<elseif $kate.eyeColour == "hazelnut">>honey brown<<elseif $kate.eyeColour == "sapphire">>pale blue<<else>>//ERROR IN KATE.EYECOLOUR VAR//<</if>> eyes meeting his bruise blue gaze, as he tugs you by the hair, rhythmically fucking your soft wet mouth.
The room's quiet except for the muffled music from the club, some talk and laughter from the girls next door, and the gentle //shlup-shlup-shlup// of [[your lips on cock|WW-9200 Down with the stiffness]].
<</page>><<silently>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
//Shlup-shlup-shlup.// Over and over while his cock gets stiffer and fuller in your mouth. "That's it, ya little fuckin' slag."
<<if $kate.braSize == "large">>Your breasts sway gently underneath you, your nipples stiff and desperate for attention.<<else>>Your nipples are stiff and desperate for attention.<</if>> Your pussy feels hot and wet and //empty.//
Then – finally – when his cock is //rock// hard in your mouth, he pulls out. "Turn around," <span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grunts.
//[[Do it.|WW-9210 So fucking ready]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You're so fucking ready. You shuffle around on the couch, turning to face <<if hasVisited("WW-9090 Ass to the door")>>the door. You feel a little bit better that Connor is blocking your body from the surveillance camera, although there'll be little doubt back at base as to what you're doing.<<else>>the back wall, and the surveillance camera.<</if>>
Then...on camera, on <div class="tooltip"><small>ECHELON...</small><span class="tooltiptext">a secure global electronic surveillance network operated by the FIVE EYES alliance</span></div><span class="imageLink"><<link "Connor">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/npcAvatars/connor3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grabs your hip, and slides his fat hard cock right into <<link "'Officer $kate.firstName[0]'" "WW-9220 Officer K">><</link>>.
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
//Oh my fucking God!// A gasp catches in your throat, high up in your chest. Then he's fucking you, //hard,// and it feels so good
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-2000 Arrival BKK">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/suvarnabhumi/thailandTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''SUVARNABHUMI AIRPORT (BKK)''",
$header.line2 to "THAILAND / APRIL 2018">>
<<set $avatar.background.pushUnique("agency/20_airportLoungeWindow-both")>>
<</silently>>\
<<header>>\
<<page>>\
It's the best kind of flight. Short and uneventful. You touch down at <div class="tooltip">Suvarnabhumi<span class="tooltiptext">"soo-WANNA-poom"</span></div> Airport, and take a long, long, travelator-assisted walk, following signs to ''ตรวจคนเข้าเมือง Immigration.''
<<image "/locationPhotos/thailand/suvarnabhumi/concourse.jpeg" 150 1000 600 0>>\
This is one of the busiest airports in <<if $kate.agency == "cia" or $kate.agency == "csis">>Southeast<<else>>South East<</if>> Asia. At Immigration, you join the end of a <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> that seems to wind endlessly around snaking rope lines.
You've read that sixty million people pass through here every year. It honestly looks like there could be that many people ahead of you <<if $kate.agency == "cia" or $kate.agency == "csis">>[[in line|WELBANG-3000 Fake passport]]<<else>>[[in the queue|WELBANG-3000 Fake passport]]<</if>>.
<</page>><<silently>>
<<set $avatar.background.delete("agency/20_airportLoungeWindow-both")>>
<</silently>>\
<<header>>\
<<page>>\
In one way, the long wait is welcome. You've been mentally preparing for this moment, but now it's here, stress gnaws at your stomach and gets worse each time the <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> shuffles forward.
This is the first time you've entered a foreign country using a fake passport. It's in a fake name, with pages of [[forged entry stamps|WELBANG-4000 Forged entry stamps]] to support the <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div> that you're a seasoned backpacker, returning to Thailand.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Everyone assured you the forgery would be undetectable. Every detail, right down to the kind of ink used for each fake entry stamp, would have been taken care of by the eggheads in the Technical Section.
Now you're actually in the <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>>, you wish you'd asked more questions about this. //Spies get caught at borders.//
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
//[[Wait in line.|WELBANG-5000 Kate's turn]]//
<<else>>\
//[[Wait in the queue.|WELBANG-5000 Kate's turn]]//
<</if>>\
<</page>><<silently>>
<<if $kate.agency eq "mi6">>
<<set $kate.nationality to "british">>
<<if $kate.ethnicity eq "English">>
<<set $coverSurnames to setup.englishSurnames>>
<</if>>
<<elseif $kate.agency eq "cia">>
<<if $kate.ethnicity eq "Anglo American">>
<<set $coverSurnames to setup.englishSurnames>>
<<elseif $kate.ethnicity eq "Irish American">>
<<set $coverSurnames to setup.irishAmercanSurnames>>
<<elseif $kate.ethnicity eq "Italian American">>
<<set $coverSurnames to setup.italianAmericanSurnames>>
<<elseif $kate.ethnicity eq "Polish American">>
<<set $coverSurnames to setup.polishAmercanSurnames>>
<</if>>
<<elseif $kate.agency eq "asis">>
<<if $kate.ethnicity eq "Anglo Australian">>
<<set $coverSurnames to setup.ausNZSurname>>
<</if>>
<<elseif $kate.agency eq "csis">>
<<if $kate.ethnicity eq "Anglo Canadian">>
<<set $coverSurnames to setup.canadianSurname>>
<<elseif $kate.ethnicity eq "French Canadian">>
<<set $coverSurnames to setup.frenchCanadianSurnames>>
<</if>>
<<elseif $kate.agency eq "nzsis">>
<<if $kate.ethnicity eq "NZ European">>
<<set $coverSurnames to setup.ausNZSurname>>
<</if>>
<<else>>
<<set $coverSurnames to ["Walrusson"]>>
<</if>>
<<set $coverSurnames.delete($kate.surname)>>
<<set $kate.cover to {},
$kate.cover.firstName to $kate.firstName,
$kate.cover.surname to $coverSurnames.random()>>
<</silently>>\
<<header>>\
<<page>>\
The <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> slithers inexorably forward. You feel sick, really sick when you get to the yellow line.
//"Nex'."//
You step in front of a gimlet-eyed immigration officer, who welcomes you to the Land of Smiles with a surly, suspicious glare.
//[[Smile.|WELBANG-6000 Cover name][$temp.playerDecision to "smile"]]
[[Poker face.|WELBANG-6000 Cover name][$temp.playerDecision to "pokerFace"]]
[[Look tired.|WELBANG-6000 Cover name][$temp.playerDecision to "tired"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "smile">>\
<<emote-mouth-smile>>\
You hand him your passport, putting on a sunny, carefree smile. Inside, your stomach's doing flip-flops.
<<elseif $temp.playerDecision == "pokerFace">>\
You hand him your passport, your facial expression carefully neutral. Inside, your stomach's doing flip-flops.
<<elseif $temp.playerDecision == "tired">>\
<<emote-brows-raised>>\
<<emote-eyes-squint>>\
You hand him your passport, affecting the tired look of a seasoned airport traveller. Inside, your stomach's doing flip-flops.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
He flips to your identity page, and <<if $kate.cover.surname != $kate.surname>>[[studies it carefully|WELBANG-7000 Undercover]]<<else>>studies it carefully<</if>>.
''PASSPORT/PASSEPORTE/PASAPORTE''
<small><span class="greyedOut">//Surname / Nom / Apellidos//</span></small>
<span class="blackTextbox"><<textbox "$kate.cover.surname" $kate.cover.surname autofocus>></span> <<link "🔀" `passage()`>><<set $kate.cover.surname to $coverSurnames.random()>><</link>>
<small><span class="greyedOut">//Given Names / Prenoms / Nombres//</span></small>
<span class="blackTextbox"><<textbox "$kate.cover.firstName" $kate.cover.firstName>><<link "🔀" `passage()`>>
<<if $kate.ethnicity == "English">>
<<set $kate.cover.firstName to setup.englishFemaleFirstnames1990s.random()>>
<<elseif $kate.agency == "cia">>
<<set $kate.cover.firstName to setup.usFirstname.random()>>
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>
<<set $kate.cover.firstName to setup.ausNZFirstname.random()>>
<<elseif $kate.agency == "csis">>
<<set $kate.cover.firstName to setup.canadianFirstname.random()>>
<<else>>
<<set $kate.cover.firstName to "ERROR IN KATE.ETHNICITY OR KATE.AGENCY VARS">>
<</if>>
<</link>></span>
<</page>><<silently>>
<<unset $coverSurnames>>
<<set $kate.isUndercover to true>>
<</silently>>\
<<header>>\
<<page>>\
He flips through the pages of fake entry stamps. According to them, you've spent the last nine months in Thailand, with occasional border hops to renew your visa.
"What is the purpose of your visi', Miss $kate.cover.surname?"
[[Travelling.|WELBANG-8000 Tourism][$temp.playerDecision to "Travelling"]]
[[Tourism.|WELBANG-8000 Tourism][$temp.playerDecision to "Tourism"]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"$temp.playerDecision," you tell him.
"Hrrm. How long are you plan to stay this time?"
[[Three months.|WELBANG-9000 Three months]]
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
"Three months," you reply. Clark told you to keep your answers short and sweet.
He reaches for the rubber stamp...then frowns, his hand hovering over it. Something makes him look back up at you, right into your eyes.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Deception check.'' Difficulty: Mild (2).
<<link "Roll 2 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 2>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Deception check.'' Target: 2. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
The border guard stares probingly at the spy. She gazes back, innocent as a lamb. <br /> <br />
And the moment passes. He stamps your passport, and [[waves you through|WELBANG-33000 Covert border cross]].
<<else>>
//Something's not right.// He snaps shut your passport without stamping it, and calls to [[a colleague in plain clothes|WELBANG-10000 Enhanced security]].
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Deception// skill</span></div> to look innocent.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
A short conversation in Thai – technical language, an acronym, you don't catch the meaning. The man in plain clothes fixes you with a stern look. "This way, plea, Miss $kate.cover.surname," he says.
[[Where are we going?|WELBANG-11000 Where are we going?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Where are we going?"
"This way," he repeats.
He escorts you to a side room, tells you to sit, and leaves you in there alone. It's a plain room, like an interview room from a police station: a desk, some chairs, no other furniture.
A CCTV camera is set up in one corner, a red LED gazing down at you like an unblinking eye.
//[[This isn't good.|WELBANG-12000 This isn't good]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck, fuck, fuck.// What went wrong?
This isn't actually the first time you've been in an room like this – as part of your <<= $kate.agency.toUpperCase()>> training, during a practice mission in Norway, you were arrested by local police and interrogated by officers from <div class="tooltip">E-tjenesten<span class="tooltiptext">the Norwegian intelligence service</span></div>.
That was scary, even though you figured out pretty quickly that it was all part of the exercise.
This time, it's the real deal. And you haven't even made it past customs. The mission is off to the [[worst possible start|WELBANG-13000 Female officers]].
<</page>><<silently>>
<<emote-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
After a tense wait the door opens, and two Thai women in business suits enter.
In heavily accented English, one asks you questions about your history of drug use, while the other empties out the contents of your <<handbag>>, item by item.
[[I'm not carrying drugs.|WELBANG-14000 I'm not holding]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not carrying drugs," you protest. Her response is to swab test your <<handbag>>.
You sit there in awkward silence, until her machine starts beeping accusingly. "Ha. When you last come in contac' heroin?" she demands.
[[Never!|WELBANG-15000 No heroin]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"What? I've never even //seen// heroin!" That machine can't be right – have you stumbled into some kind of corrupt airport security sting?
"Maybe," she says, looking at you carefully. "We do strip search."
[[No way.|WELBANG-16000 No way]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-upset>>
<</silently>>\
<<header>>\
<<page>>\
"No way," you say flatly.
"You can appeal to airpor' manager," she says. "But then you wait several hour. And probly you still get strip search."
"You can' get rid of it," her partner pipes up. "From now on, special toilet. Everything examine," she explains. "Whatever happen, we find it now."
[[There's nothing to find!|WELBANG-17000 I'm innocent!]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"There's nothing to find!" you protest. Your voice comes out shriller and thinner than you'd like.
The woman just taps her drug scanner in reply. You stare at each other for a long moment.
[[Fine, let's get this over with.|WELBANG-18000 Kate consents to a strip search]]
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-upset>>
<</silently>>\
<<header>>\
<<page>>\
"Fine," you mutter. "Let's get this over with."
"Stan' up, plea, Miss $kate.cover.surname," she says. "All clothes, take them off."
[[This is bullshit.|WELBANG-19000 This is bullshit]]
//[[Stand up.|WELBANG-20000 Kate stands]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-frown>>
<<emote-mouth-upset>>
<</silently>>\
<<header>>\
<<page>>\
"This is bullshit," you protest sullenly.
The two women just stare back impassively.
<<if hasVisited("WELBANG-20000 Kate stands")>>\
<<if $kate.isWearing.includes("top")>>\
//[[Take off your top.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "top"]]//
<<elseif $kate.isWearing.includes("bra")>>\
//[[Take off your bra.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "bra"]]//
<</if>>\
<<if $kate.isWearing.includes("shorts")>>\
//[[Take off your shorts.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "shorts"]]//
<<elseif $kate.isWearing.includes("knickers")>>\
<<link "//Take off your <<knickers>>//" "WELBANG-21000 Kate strips naked">><<set $temp.playerDecision to "knickers">><</link>>
<</if>>\
<<if $kate.isWearing.includes("shoes")>>\
//[[Take off your sandals.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "sandals"]]//
<</if>>\
<<else>>\
//[[Stand up.|WELBANG-20000 Kate stands]]//
<</if>>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-frown>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
Your chair scrapes back as you rise to your feet.
"Clothes off," repeats the woman.
<<if not hasVisited("WELBANG-19000 This is bullshit")>>\
[[This is bullshit.|WELBANG-19000 This is bullshit]]
<</if>>\
<<if $kate.isWearing.includes("top")>>\
//[[Take off your top.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "top"]]//
<<elseif $kate.isWearing.includes("bra")>>\
//[[Take off your bra.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "bra"]]//
<</if>>\
<<if $kate.isWearing.includes("shorts")>>\
//[[Take off your shorts.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "shorts"]]//
<<elseif $kate.isWearing.includes("knickers")>>\
<<link "//Take off your <<knickers>>//" "WELBANG-21000 Kate strips naked">><<set $temp.playerDecision to "knickers">><</link>>
<</if>>\
<<if $kate.isWearing.includes("shoes")>>\
//[[Take off your sandals.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "sandals"]]//
<</if>>\
<</page>><<silently>>
<<if $temp.playerDecision == "top">>
<<remove-top-rustVNeckShortCrinkleSleevedTop>>
<<elseif $temp.playerDecision == "bra">>
<<remove-bra-whiteHalfCupCentralDart>>
<<elseif $temp.playerDecision == "shorts">>
<<remove-shorts-blackDenimDaisyDukes>>
<<elseif $temp.playerDecision == "knickers">>
<<remove-knickers-whiteBrazilianCutWithLaceHem>>
<<elseif $temp.playerDecision == "sandals">>
<<remove-shoes-tanAnkleHighStrappyFlatSandals>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "top">>\
You pull your top off over your head, and set it down on the desk.
<<elseif $temp.playerDecision == "bra">>\
You reach behind your back and unfasten your bra. When you lay it on the desk, the partner checks it carefully for concealed items.
<<elseif $temp.playerDecision == "shorts">>\
You unbutton your daisy dukes, and wriggle them down over your hips. You slide them off and set them down on the desk; the partner goes carefully through all the pockets.
<<elseif $temp.playerDecision == "knickers">>\
Glowering resentfully at the two women, you slide your <<knickers>> off and toss them onto the desk.
<<elseif $temp.playerDecision == "sandals">>\
In turn you lift your feet, and slide off your sandals. The floor feels dirty underfoot.
<</if>>\
<<if not $kate.isWearing.includesAny("top", "shorts", "bra", "knickers", "shoes")>>\
<<emote-brows-attentive>>\
Now you're naked in some airport security room, in front of two fully-dressed women and a CCTV camera. You feel a mix of [[pissed off and vulnerable|WELBANG-22000 Pissed off and vulnerable]].
<<else>>\
<<if not hasVisited("WELBANG-19000 This is bullshit")>>\
[[This is bullshit.|WELBANG-19000 This is bullshit]]
<</if>>\
<<if $kate.isWearing.includes("top")>>\
//[[Take off your top.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "top"]]//
<<elseif $kate.isWearing.includes("bra")>>\
//[[Take off your bra.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "bra"]]//
<</if>>\
<<if $kate.isWearing.includes("shorts")>>\
//[[Take off your shorts.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "shorts"]]//
<<elseif $kate.isWearing.includes("knickers")>>\
<<link "//Take off your <<knickers>>//" "WELBANG-21000 Kate strips naked">><<set $temp.playerDecision to "knickers">><</link>>
<</if>>\
<<if $kate.isWearing.includes("shoes")>>\
//[[Take off your sandals.|WELBANG-21000 Kate strips naked][$temp.playerDecision to "sandals"]]//
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The partner puts on a pair of disposable gloves as she approaches you.
She starts by searching through your hair, parting and sweeping through it with her fingers, checking for anything hidden on your scalp.
When she's satisfied there's nothing there, her hands slip down to your mouth, fingertips resting on your lips and jawline. "Open," she commands.
//[[Open your mouth.|WELBANG-23000 Open wide]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
You open wide. Her fingers slip inside, invading your mouth with tangy, probing latex. She sweeps them all around your gums, under your tongue, presses your teeth.
She sweeps all over the roof of your mouth, making you gag and [[blink back tears|WELBANG-24000 Bend over]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-upset>>
<<emote-brows-rogerMoore>>
<</silently>>\
<<header>>\
<<page>>\
Satisfied your mouth is clear, she guides you around the side of the desk. The touch of her gloves is wet with your spit. "Here," she commands. "Bend over."
She's positioned you so your back's directly facing the CCTV camera.
//[[Bend over the desk.|WELBANG-25000 Kate bends over]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
Reluctantly, you bend over the edge of the desk, your ass pointing up at the camera.
With her fingertips on your back, she pushes you fully down, your breasts squashing into the desk underneath you. Over the top of your body, her partner passes across a squeezy tube of lubricant.
"Feet apar'," comes the command from behind you. "Wider, wider." She taps inside your ankles with her shoe.
//[[Spread your legs.|WELBANG-26000 Spread em]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You shuffle your bare feet further apart, spreading your legs for the woman and the camera.
A brief pause while nothing happens. Then the fingertips of her left hand push gently down on your back again – not exactly holding you down, just encouraging you to stay in place.
Then what feels like two fingers, thrusting briskly up [[inside your vagina|WELBANG-27000 Vaginal search]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<<emote-brows-worried>>
<<emote-mouth-upset>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
You squeak in protest as her fingers push all the way in to hit your cervix, hurting you.
Instinctively you try to straighten up, but she pushes you firmly back down, almost before you tried to move, like she was expecting it. "Stay dow'," her partner commands sternly.
Still deeply inside you, all the way up to the knuckles, you feel her fingers twist around, wiggling and searching.
You're being poked and prodded like an animal. It's absolutely humiliating. Your eyes prick suddenly with tears.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make an ''Emotional Control check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Emotional Control check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
You blink them back, forcing yourself to breathe, looking past the woman in front of you and drawing strength from a point on the wall behind her. //[[No way am I letting these bitches see me cry.|WELBANG-28000 Stoic anal search]]//
<<else>>
You try to hold them back but you can't. [[Big hot tears|WELBANG-29000 Sad anal search]] well up in your eyes, spattering down on the cheap desk like raindrops.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Neuroticism// modifier</span></div> to keep it together.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-attentive>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
The fingers slip out. A pause in which you psyche yourself up, while behind you more lube is applied.
A firm push down on your back; then two fingertips touch your asshole. With a forceful push, they squeeze inside.
Your tight sphincter resists the intrusion, but can't prevent it; with firm insistent pressure, her two fingers sink all the way up into your ass, right up to the knuckles.
This is horrible. Her fingers twist and wiggle, probing inside your ass for a hidden object.
Then, mercifully...they slide out. Her fingers withdrawing is a physical sensation like passing a shit. You clench your stomach up tight, feeling like you could lose control of your bowels right there if you're not careful. And this morning has been [[humiliating enough|WELBANG-30000 Cleanup]].
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-eyes-big>>
<<emote-eyes-tearful>>
<<emote-mouth-upset>>
<<emote-cheeks-blush>>
<</silently>>\
<<header>>\
<<page>>\
The fingers slip out. A pause in which you try to fight back the tears, while behind you more lube is applied.
A firm push down on your back; then two fingertips touch your asshole. With a forceful push, they squeeze inside.
Your tight sphincter resists the intrusion, but can't prevent it; with firm insistent pressure, her two fingers sink all the way up into your ass, right up to the knuckles.
This is horrible. Her fingers twist and wiggle, probing inside your ass for a hidden object.
Then, mercifully...they slide out. Her fingers withdrawing is a physical sensation like passing a shit. You clench your stomach up tight, feeling like you could lose control of your bowels right there if you're not careful. And this morning has been [[humiliating enough|WELBANG-30000 Cleanup]].
<</page>><<silently>>
<<if hasVisited("WELBANG-29000 Sad anal search")>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-eyes-tearful>>
<<emote-mouth-pout>>
<<else>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
One of the women gives you some tissues to <<if hasVisited("WELBANG-29000 Sad anal search")>>dry your eyes and <</if>>wipe the lube off yourself. "Get dress," she says, shoving [[your clothes|WELBANG-31000 Get dress]] towards you.
<</page>><<silently>>
<<if hasVisited("WELBANG-29000 Sad anal search")>>
<<emote-calm>>
<<emote-brows-worried>>
<<emote-mouth-pout>>
<<avatar-expr-removeEyelid-tearful>>
<</if>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-shorts-blackDenimDaisyDukes>>
<<wear-top-rustVNeckShortCrinkleSleevedTop>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<</silently>>\
<<header>>\
<<page>>\
One watches you dress, while the other disappears to get your visa stamped.
"You free to go," she says, handing your fake passport back to you. "Stay out of trouble."
[[That's it?|WELBANG-32000 That's it?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"That's it?" You search her eyes for some sign of apology, or at least sympathy, but there's none. "What about the swab test?"
She responds with an uncaring shrug. "Could be heroin. Could be spill cosmetic."
//Is she fucking serious? That means if they test any woman's bag...//
It's an outrage, but you keep your mouth shut. All you want to do is get out of here; you've already attracted //way// too much attention just getting [[into the country|WELBANG-33000 Covert border cross]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-expr-removeEyelid-tearful>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-27000 Vaginal search")>>\
<<emote-brows-worried>>\
<<wear-multicolouredMalaysianCrossBodyBag>>\
With your passport stamped, you're free to head to baggage claim. You can hardly believe it; your first covert border cross, and you ended up getting cavity searched for drugs.
It'd probably make a hilarious story back at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "asis">>HQ<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "nzsis">>HQ<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Which is why you're not telling a soul about it, not ever.
//[[Go pick up your backpack.|WELBANG-33500 Chekhov's phone]]//
<<else>>\
<<emote-mouth-smile>>\
And that's that, you just made your first covert border cross. Excitement and relief rush up inside you so hard you could laugh. Instead you just take your passport and move on, your expression neutral.
It's hard to explain how much your estimation of <<if $kate.agency == "cia">><div class="tooltip">DST<span class="tooltiptext">CIA's Directorate of Science & Technology</span></div><<else>>the Technical Section<</if>> just went up. When you get back to <<if $kate.agency == "cia">>DC<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, you're //definitely// buying those nerds a drink.
//[[Go pick up your backpack.|WELBANG-33500 Chekhov's phone]]//
<</if>>\
<</page>><<silently>>
<<wear-ogBackpack>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-27000 Vaginal search")>>\
You grab your pack and head out into the Arrivals area. It's bustling and decorated with statues of Hindu gods and monsters – which you'd probably be interested in if you hadn't just had rubbery fingers shoved up every orifice.
<<image "/locationPhotos/thailand/suvarnabhumi/suvarnabhumiStatue.jpeg" 150 1000 600 0>>\
You change up some money at a SuperRich booth as fast as possible. You just want to [[get out of here|WELBANG-34000 Taxi where you go]].
<<else>>\
<<emote-mouth-calm>>\
After passing through baggage claim, you head out into the Arrivals area. It's bustling with business travellers, wide-eyed tourists, and family reunions, all watched over by cool statues of Hindu gods and monsters.
<<image "/locationPhotos/thailand/suvarnabhumi/suvarnabhumiStatue.jpeg" 150 1000 600 0>>\
You change up some cash at a SuperRich money exchange booth. You don't need to pick up a SIM card: your phone's already equipped with a special SIM that appears normal, but secretly works on more than 350 roaming networks.
Whatever else happens, you should always be able to [[get comms|WELBANG-34000 Taxi where you go]] if you need to.
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Gliding on through the crowds, you catch the attention of some private taxi kiosks: "Taxi, taxi, where you go?"
You know from your country research that these guys will rip you off. They charge twice as much as the meter taxis, one floor down.
//[[Take a private taxi to your hostel.|WELBANG-35000 Private taxi]] <span class="greyedOut">(฿฿฿฿, 40-60 mins)</span>
[[Take a meter taxi to your hostel.|WELBANG-36000 Meter taxi]] <span class="greyedOut">(฿฿, 40-60 mins)</span>
[[Take the bus to your hostel.|WELBANG-40000 Bus]] <span class="greyedOut">(฿, 40-60 mins)</span>
[[Take the Skytrain to central Bangkok, then find transport to your hostel.|WELBANG-42000 Skytrain station]] <span class="greyedOut">(฿, 25 mins + secondary journey)</span>//
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Fuck it<<if hasVisited("WELBANG-27000 Vaginal search")>>. You just want to get out of here<<else>>, it's only a few Baht<</if>>, and you're on expenses anyway. You walk up to one of the private taxi kiosks and book a ride.
<<image "/locationPhotos/thailand/suvarnabhumi/airportTaxis.jpg" 150 1000 500 0>>\
You follow a driver out into the steamy morning heat. You've arrived in Thailand during the hottest part of the year and it feels like stepping into a sauna. Sweat prickles on your brow, just from the short walk [[to the taxi|WELBANG-37000 Taxi ride]].
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You walk right on past the private kiosks, and head downstairs to hire a meter taxi.
<<image "/locationPhotos/thailand/suvarnabhumi/airportTaxis.jpg" 150 1000 500 0>>\
You've arrived in Thailand during the hottest part of the year. Heading out into the steamy morning heat feels like stepping into a sauna.
You only have to wait a couple <<if $kate.agency != "cia" and $kate.agency != "csis">>of <</if>>minutes for a taxi. That's long enough for your shoulders to get slick and sweaty under the straps of all your gear.
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
//[[Climb in back.|WELBANG-37000 Taxi ride]]//
<<else>>\
//[[Climb in the back.|WELBANG-37000 Taxi ride]]//
<</if>>\
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<remove-ogBackpack>>
<<set $header.line1 to "''MOTORWAY 7''",
$header.line2 to "THAILAND / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You load your backpack into the <<if $kate.agency == "cia" or $kate.agency == "csis">>trunk<<else>>boot<</if>>, and slide into the backseat. Inside it's so air-conditioned that it feels like climbing into a fridge. A photo of King Rama dangles from the rearview mirror.
The taxi edges out of the airport and begins the <<if $kate.agency == "cia" or $kate.agency == "csis">>32km<<else>>20 miles<</if>> drive west to Bangkok. Within minutes you're grinding slowly through the [[worst traffic you've ever seen|WELBANG-37100 Traffic jam]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's like someone turned the <<if $kate.agency == "mi6">>motorway<<else>>freeway<</if>> into a <<if $kate.agency == "cia" or $kate.agency == "csis">>parking lot<<else>>car park<</if>>. It's marked with four lanes, but the jostling, competing drivers have formed at least six in their efforts to grind slowly forward.
There's nothing much to do except watch the roadside scenery trickle past. Slick billboards and ramshackle buildings peep out from the tropical countryside. Occasionally you crawl past rickety shop stalls, set up to sell food and flowers to the traffic.
A little kid wearing shorts without a shirt approaches cars, holding a scrawny rooster up to the windows in turn. //Jesus. Who buys a rooster in the middle of a traffic jam?// But then the <<if hasVisited("WELBANG-41000 S1 bus stop")>>bus<<else>>taxi<</if>> edges forward, and the kid falls behind, and you [[never get to find out|WELBANG-38000 Title card]].
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-39000 Bangkok outskirts">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/bangkokTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("WELBANG-43000 Skytrain ride")>>After about an hour on the road, the<<else>>The<</if>> scenery turns more concrete and urban as \
<<if hasVisited("WELBANG-37000 Taxi ride")>>\
you cruise into downtown Bangkok.
<<elseif hasVisited("WELBANG-41000 S1 bus stop")>>\
your bus rolls into downtown Bangkok.
<<elseif hasVisited("WELBANG-43000 Skytrain ride")>>\
the skytrain cruises into downtown Bangkok.
<</if>>\
The first thing you notice about the Big Mango is how built up everything is. There are endless high-rise buildings, busy expressway flyovers, and billboards for western brands, advertised in English.
Then you start catching glimpses of a less westernised city \
<<if hasVisited("WELBANG-37000 Taxi ride")>>\
[[peeping through the cracks|WELBANG-51000 Soi Samsen]]\
<<elseif hasVisited("WELBANG-41000 S1 bus stop")>>\
[[peeping through the cracks|WELBANG-51000 Soi Samsen]]\
<<elseif hasVisited("WELBANG-43000 Skytrain ride")>>\
[[peeping through the cracks|WELBANG-44000 Phaya Thai BTS]]\
<</if>>\
. Cluttered alleyways with pipes and hanging cables. Ornate old temples tucked between the skyscrapers and shopping centres. Road bridges over canals lined with ramshackle apartments, washing hanging from every window.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You walk right on past the private kiosks, and head downstairs to catch a bus.
<<image "/locationPhotos/thailand/suvarnabhumi/airportBus.jpg" 100 1000 540 0>>\
You've arrived in Thailand during the hottest part of the year. Heading out into the steamy morning heat feels like stepping into a sauna. Sweat prickles your brow just during the short walk to the [[S1 bus stop|WELBANG-41000 S1 bus stop]].
<</page>><<silently>>
<<remove-ogBackpack>>
<</silently>>\
<<header>>\
<<page>>\
You climb aboard the air-conditioned bus, and find a seat. Wafts of hot air wash inside every time the doors open to admit another passenger.
You sit and wait as it fills up, and eventually it's ready to go. A conductor walks the aisle just before departure, collecting fares: the ticket costs ฿60 (<<if $kate.agency == "cia">>$2<<elseif $kate.agency == "mi6">>£1.40<<elseif $kate.agency == "asis">>$2.50<<elseif $kate.agency == "csis">>$2.50<<elseif $kate.agency == "nzsis">>$2.70<<else>>ERROR IN KATE.AGENCY VAR<</if>>).
The bus edges out of the airport and begins the <<if $kate.agency == "cia" or $kate.agency == "csis">>32km<<else>>20 miles<</if>> drive west to Bangkok. Within minutes you're grinding slowly through the [[worst traffic you've ever seen|WELBANG-37100 Traffic jam]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You walk right on past the private kiosks, heading for the airport link skytrain. Your ticket costs ฿40 (<<if $kate.agency == "cia">>$1.30<<elseif $kate.agency == "mi6">>90p<<elseif $kate.agency == "asis">>$1.70<<elseif $kate.agency == "csis">>$1.65<<elseif $kate.agency == "nzsis">>$1.80<<else>>ERROR IN KATE.AGENCY VAR<</if>>).
<<image "/locationPhotos/thailand/suvarnabhumi/skytrainPlatform2.jpg" 220 1000 620 0>>\
//[[Climb aboard.|WELBANG-43000 Skytrain ride]]//
<</page>><<silently>>
<<set $header.line1 to "''SARL SKYTRAIN''",
$header.line2 to "THAILAND / APRIL 2018">>
<<remove-ogBackpack>>
<<set $avatar.background.pushUnique("malaysia/22_greenBackpackOnGround-both")>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/suvarnabhumi/sarlSkytrain.jpeg" 230 1000 460 0>>\
This air-conditioned monorail runs directly into Bangkok, whooshing serenely over gridlocked traffic on Motorway 7 below.
Suvarnabhumi is <<if $kate.agency == "cia" or $kate.agency == "csis">>32km<<else>>20 miles<</if>> east of Bangkok; it's about a [[25-minute cruise|WELBANG-38000 Title card]] on the skytrain.
Tropical countryside rolls smoothly by on both sides, billboards and hotels and industrial buildings rising out from the trees.
<</page>><<silently>>
<<set $header.line1 to "''PHAYA THAI BTS STATION''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The train pulls into a station deep in the city.
<<image "/locationPhotos/thailand/bangkok/skytrainStation.jpg" 100 1000 550 0>>\
You've arrived in the hottest part of the year. [[Stepping out onto the platform|WELBANG-45000 Phaya Thai street level]] feels like walking into a sauna.
<</page>><<silently>>
<<set $header.line1 to "''PHAYA THAI ROAD''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<wear-bigBlackSunglasses>>
<<set $avatar.background.delete("malaysia/22_greenBackpackOnGround-both")>>
<<wear-ogBackpack>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/phayaThaiStreetLevel.jpg" 250 1000 700 0>>\
You head down to street level, and find yourself in a hot, bustling, built-up city street. So...this is Bangkok!
According to your phone, your hostel's about <<if $kate.agency == "cia" or $kate.agency == "csis">>10km<<else>>six miles<</if>> across town. You're already sweating, just from carrying your backpack down a flight of steps.
There's no way you're walking all that way in this heat, so you need to find more transport.
//[[Take a taxi.|WELBANG-46000 Phaya Thai taxi]] <span class="greyedOut">(฿, 20 mins)</span>
[[Take a tuk-tuk.|WELBANG-47000 Phaya Thai tuk-tuk]] <span class="greyedOut">(฿, 20 mins)</span>
[[Take a motorcycle taxi.|WELBANG-48000 Phaya Thai Mo-sai]] <span class="greyedOut">(฿, 10 mins)</span>//
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / APRIL 2018">>
<<remove-ogBackpack>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
Taxis are everywhere, painted in a rainbow of bright, cheery colours. You flag down one in hot pink, and slide into the backseat.
It's clean and air-conditioned, and smells of fresh new leather. A Buddhist charm dangles from the rearview mirror.
<<image "/locationPhotos/thailand/bangkok/phayaThaiTaxi.jpg" 250 1000 700 0>>\
It's about a 20-minute drive through [[sprawling and busy|WELBANG-51000 Soi Samsen]] city streets.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Riding in a tuk-tuk's on every tourist's bucket list.
<<image "/locationPhotos/thailand/bangkok/phayaThaiTukTuk.jpeg" 50 1000 680 0>>\
They're basically 3-wheeled go carts, with a metal cage attached. You climb in <<if $kate.agency != "cia" and $kate.agency != "csis">>the <</if>>back and get ready for a [[new experience.|WELBANG-48000 Phaya Thai tuk-tuk ride]]
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / APRIL 2018">>
<<remove-ogBackpack>>
<</silently>>\
<<header>>\
<<page>>\
The mighty tuk-tuk splutters into life, and then you're out in the busy Bangkok traffic, wind rushing in through the open cabin when you're moving.
<<image "/locationPhotos/thailand/bangkok/tukTukRide.jpg" 130 1000 580 0>>\
This vehicle mixes the manoeuvrability of a car with the comfort of a motorbike. You get to sit in <<if $kate.agency != "cia" and $kate.agency != "csis">>the <</if>>back, rattling around when it's moving, and sucking down clapped-out exhaust fumes when you're stuck in traffic.
It's a silly way to travel. It's also great fun whizzing through the streets in a [[thundering tuk-tuk|WELBANG-51000 Soi Samsen]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/mosai.jpg" 134 1000 580 0>>\
You head up a side street where a row of motorcycle taxis are lined up. Mainly used by locals (all prices are in Thai), the "mo sai" is hands down the most convenient and thrilling way to get around the city.
Tourists are welcome, [[if they're daring|WELBANG-49000 Mo-sai rider]].
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Climbing on the back of a motorbike, your knees round some guy's hips, brings back memories of your "bad boy" phase in <<if $kate.agency == "cia" or $kate.agency == "csis">>senior high<<elseif $kate.agency == "mi6">>sixth form<<else>>high school<</if>>.
Your <<if $kate.agency == "cia" or $kate.agency == "csis">>pop<<else>>dad<</if>> hated it when a boy would come round to pick you up on a motorbike. It was around this time your <<if $kate.agency == "cia" or $kate.agency == "csis">>mom<<else>>mum<</if>> gave you the talk about always using protection.
If only she could see you now – you're not even wearing a helmet. You grip the pillion bar as the bike buzzes out into the [[Bangkok traffic|WELBANG-50000 Mo-sai journey]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/mosaiRide.jpg" 134 1000 580 0>>\
You cling on the back for a ten-minute adrenaline rush. Your rider weaves between vehicles tangled in traffic, and at one point even mounts the <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalk<<else>>pavement<</if>> to get up to a busy junction fast.
It's not all easy riding. The mo sai's natural enemy is the traffic light. Part of the experience is sitting on the back of a motorbike in <<if $kate.agency == "cia">>86<<else>>30<</if>>-degree heat, sucking down clapped-out exhaust fumes while you wait for a light to turn green.
When it does, all the bikes that have edged their way to the front of the junction roar off together. It's amazing how fast your rider can get his bike going in such little space, or how quickly he slows down to squeeze back between the <<if $kate.agency == "cia" or $kate.agency == "csis">>lines of traffic<<else>>traffic queueing<</if>> at the next red light.
When it's over, you're buzzing with [[excitement and relief|WELBANG-51000 Soi Samsen]].
<</page>><<silently>>
<<set $header.line1 to "''TROK LAM PU''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-ogBackpack>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-37000 Taxi ride")>>\
The city's sprawling. You roll for miles through busy city streets, checking out the buildings and the people, until a series of turns lets you know you must be near your destination.
<<elseif hasVisited("WELBANG-41000 S1 bus stop")>>\
The city's sprawling. You gaze out the window as the bus chugs through several miles of busy city streets.
Eventually, you reach your stop. It's only a short walk from there to your destination, but you break out into a sweat after just a couple hundred metres. No wonder the traffic here is so bad – walking anywhere must be a last resort.
<</if>>\
<<image "/locationPhotos/thailand/bangkok/soiSamsen.jpg" 134 1000 650 0>>\
<<if hasVisited("WELBANG-37000 Taxi ride")>>\
You're staying in the Banglamphu neighbourhood, better known as the Khao San Road area. You chose a place a few blocks away from the action (on the grounds that it'd be nice to get a good night's sleep from time to time).
<<elseif hasVisited("WELBANG-41000 S1 bus stop")>>\
You're staying in the Banglamphu neighbourhood, better known as the Khao San Road area. You chose a place a few blocks away from the action (on the grounds that it'd be nice to get a good night's sleep from time to time).
<<elseif hasVisited("WELBANG-46000 Phaya Thai taxi")>>\
The taxi drops you off near your hostel. You're staying in the Banglamphu neighbourhood, better known as the Khao San Road area. You chose a place a few blocks away from the action (on the grounds that it'd be nice to get a good night's sleep from time to time).
<<elseif hasVisited("WELBANG-47000 Phaya Thai tuk-tuk")>>\
The tuk-tuk drops you off near your hostel. You're staying in the Banglamphu neighbourhood, better known as the Khao San Road area. You chose a place a few blocks away from the action (on the grounds that it'd be nice to get a good night's sleep from time to time).
<<elseif hasVisited("WELBANG-48000 Phaya Thai Mo-sai")>>\
You get off near your hostel. You're staying in the Banglamphu neighbourhood, better known as the Khao San Road area. You chose a place a few blocks away from the action (on the grounds that it'd be nice to get a good night's sleep from time to time).
<</if>>\
It's down a <div class="tooltip">trok<span class="tooltiptext">alley</span></div> that runs alongside a Buddhist temple. This little area feels quiet and peaceful.
//[[Check in to your hostel.|WELBANG-51100 Title card]]//
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-51200 Check in">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/baanTepaLobby.jpg" 80 1000 500 0>>\
You walk through a little courtyard set up with tables and chairs and a book exchange, and into a chintzy little lobby decorated with bric-a-brac and old photos.
Here you're checked in by a pretty, chubby Thai lady wearing purple lipstick. "I call my son," she says, "he carry bag."
[[Thanks.|WELBANG-51300 Wun Sen][$temp.playerDecision to "thanks"]]
[[No need.|WELBANG-51300 Wun Sen][$temp.playerDecision to "noNeed"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "thanks">>\
<<emote-mouth-smile>>\
"Thanks," you smile.
<<elseif $temp.playerDecision == "noNeed">>\
<<emote-mouth-oh>>\
"No need," you tell her, but she waves away your refusal.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Wun Sen!" she shouts through a doorway. //"Wun Sen!"//
Her cries summon a skinny Thai teenager with floppy hair and a put upon look. "Carry Miss $kate.cover.surname bag," his mother commands.
You're pretty sure you could take this kid in an arm wrestle, but he gestures for your pack anyway.
//[[Let him carry your backpack.|WELBANG-51400 Wun Sen chat]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<<remove-ogBackpack>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks," you tell him, sliding off your pack and handing it over. He slings it up onto his back, and leads you up the wooden staircase.
"Where you from, Miss?" he asks.
<<if $kate.agency == "cia">>\
[[The US.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "us"]]
<<elseif $kate.agency == "mi6">>\
[[England.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "england"]]
[[The UK.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "uk"]]
<<elseif $kate.agency == "asis">>\
[[Australia.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "australia"]]
<<elseif $kate.agency == "csis">>\
[[Canada.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "canada"]]
<<elseif $kate.agency == "nzsis">>\
[[New Zealand.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "newZealand"]]
<<else>>\
ERROR IN KATE.AGENCY VAR
<</if>>\
[[You speak English?|WELBANG-51410 You speak English?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"You speak English?" you ask. You'd heard it was uncommon here.
<<if $kate.agency == "cia">>\
"A little," he nods. "You American, right?"
[[Right.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "right"]]
<<elseif $kate.agency == "mi6">>\
"A little," he nods. "You English, right?"
[[Right.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "right"]]
<<elseif $kate.agency == "asis">>\
"A little," he nods. "You Australian, right?"
[[Right.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "right"]]
<<elseif $kate.agency == "csis">>\
<<if $kate.ethnicity == "French Canadian">>
"A little," he nods. "Are you French?"
[[French Canadian.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "frenchCanadian"]]
<<else>>
"A little," he nods. "You American, right?"
[[Canadian.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "canadianActually"]]
<</if>>
<<elseif $kate.agency == "nzsis">>\
"A little," he nods. "You Australian, right?"
[[New Zealand.|WELBANG-51500 Hostel corridors][$temp.playerDecision to "kiwiActually"]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "us">>\
"The US," you tell him.
<<elseif $temp.playerDecision == "england">>\
"England," you tell him.
<<elseif $temp.playerDecision == "uk">>\
"The UK," you tell him.
<<elseif $temp.playerDecision == "australia">>\
"Australia," you tell him.
<<elseif $temp.playerDecision == "canada">>\
"Canada," you tell him
<<elseif $temp.playerDecision == "newZealand">>\
"New Zealand," you tell him.
<<elseif $temp.playerDecision == "right">>\
"Right," you say.
<<elseif $temp.playerDecision == "frenchCanadian">>\
"French Canadian," you correct him.
<<elseif $temp.playerDecision == "canadianActually">>\
"Canadian," you correct him.
<<elseif $temp.playerDecision == "kiwiActually">>\
"New Zealand," you correct him.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Coo'," he replies. "I go <<if $temp.playerDecision == "frenchCanadian">>to Canada myself one day. And France."<<else>>there myself one day."<</if>>
He leads you through the corridors of a traditional Thai wooden townhouse, built before the age of concrete. You saw similar ones on the way in, old wooden streets untouched by urbanisation.
<<image "/locationPhotos/thailand/bangkok/hostelCorridor.jpg" 100 1000 550 0>>\
Most of those were run-down and rotting, but this place is in good condition. The paint job's maintained and the floors are smooth and polished.
They creak with every step, making you feel like you're moving around [[inside something precious|WELBANG-53000 Kate's room]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
He shows you up to your room on the top floor.
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
Single bed, thin walls, a shared bathroom: it's cute, but it's not exactly the Mandarin Oriental. In fact, it feels a little like going back into <<if $kate.agency == "cia" or $kate.agency == "csis">>a college dorm<<else>>university accommodation<</if>>.
[[Thanks. It's Wun Sen, right?|WELBANG-53100 Wun Sen right?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks Wun Sen," you tell the kid. "Your name's Wun Sen, right?"
"Righ'," he nods. "Well, Wun Sen is, uhhh...nick name. Most Thai have nick name."
[[So what does yours mean?|WELBANG-53200 Kate meets Noodle]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"So what does Wun Sen mean?"
"Oh. Uh..." the skinny teenager looks embarrassed. "It mean 'noodle'."
[[Nice to meet you, Wun Sen.|WELBANG-53300 Nice to meet you Wun Sen][$kate.nameForNoodle to "Wun Sen"]]
[[Nice to meet you, Noodle.|WELBANG-53300 Nice to meet you Wun Sen][$kate.nameForNoodle to "Noodle"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Nice to meet you, $kate.nameForNoodle." He slinks away, smiling shyly, leaving you to [[unpack your stuff|WELBANG-54000 Kate unpacks]].
<</page>><<silently>>
<<remove-shoes-tanAnkleHighStrappyFlatSandals>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You only brought what you can stuff into a backpack, so it doesn't take long to unpack it all.
A sign inside your little closet says //PLEASE NO SMOKING, NO CANDLE, NO JOSS STICK//. You didn't need that to know it wouldn't take much for this old house to go up in flames.
Soon your things are put away. You're meeting your handler tomorrow, but you've got downtime between now and then.
//[[Go out and explore.|WELBANG-55000 Title card]]//
<</page>><<silently>>
<<remove-shorts-blackDenimDaisyDukes>>
<<remove-top-rustVNeckShortCrinkleSleevedTop>>
<<wear-skirt-blueAndRedEthnicPatternFlippyMini>>
<<wear-top-whiteFrillySpaghettiStrapVest>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<page>>\
//[[A LITTLE LATER...|WELBANG-55100 Trok moped]]//
<</page>><<silently>>
<<set $header.line1 to "''TROK LAM PU''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You change into some clean clothes, lock up your room, and head back out into the <div class="tooltip">trok<span class="tooltiptext">alley</span></div> outside the hostel.
<<if def $kate.nameForNoodle>>$kate.nameForNoodle<<else>>Wun Sen<</if>> is out here, hanging out with a friend his age. He's sitting astride a battered, low-powered motor scooter.
[[Careful on that thing, Wun Sen.|WELBANG-55200 Wun Sen and friend][$temp.playerDecision to "careful"]]
[[Sure you're old enough to ride that, Noodle?|WELBANG-55200 Wun Sen and friend][$temp.playerDecision to "oldEnough"]]
//[[Ignore them.|WELBANG-55200 Wun Sen and friend][$temp.playerDecision to "ignore"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "careful">>\
<<emote-mouth-oh>>\
"Careful on that thing, Wun Sen," you call out as you pass.
"I will," he grins. You leave him to it, and head back out towards the [[main street|WELBANG-56000 Kate goes wandering]].
"<div class="tooltip">Kon nee krai?<span class="tooltiptext">Who's this?</span></div>" the friend asks as you go.
"<div class="tooltip">Khek rao eng nang kor hai pa teau.<span class="tooltiptext">A guest, she asked me to show her round.</span></div>"
"<div class="tooltip">Mung kohok...<span class="tooltiptext">You lie...</span></div>"
<<elseif $temp.playerDecision == "oldEnough">>\
<<emote-mouth-smirk>>\
<<emote-nose-scrunch>>\
"You old enough to ride on that thing, Noodle?"
"Huh? I'm eighteen!" he insists.
//Sure, Noodle.// You smile skeptically and [[keep walking|WELBANG-56000 Kate goes wandering]]. "<div class="tooltip">Kon nee krai?<span class="tooltiptext">Who's this?</span></div>" the friend asks as you go.
"<div class="tooltip">Khek rao eng nang kor hai pa teau.<span class="tooltiptext">A guest, she asked me to show her round.</span></div>"
"<div class="tooltip">Mung kohok...<span class="tooltiptext">You lie...</span></div>"
<<elseif $temp.playerDecision == "ignore">>\
You ignore the teenagers, and head back out towards the [[main street|WELBANG-56000 Kate goes wandering]].
"<div class="tooltip">Kon nee krai?<span class="tooltiptext">Who's this?</span></div>" the friend asks as you walk past.
"<div class="tooltip"><<if $kate.agency == "cia">>Pen khun Amerikan<<elseif $kate.agency == "mi6">>Pen khun Angri<<elseif $kate.agency == "asis">>Pen khun Australia<<elseif $kate.agency == "csis">>Pen khun Canada<<elseif $kate.agency == "nzsis">>Pen khun New Zealand<<else>>ERROR IN KATE.AGENCY VAR<</if>><span class="tooltiptext">She's <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>British<<elseif $kate.agency == "asis">>Australian<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>a New Zealander<<else>>ERROR IN KATE.AGENCY VAR<</if>>.</span></div>"
"<div class="tooltip">Suy mak...<span class="tooltiptext">She's hot...</span></div>"
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''THANON SAM SEN''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You emerge from the quiet little <div class="tooltip">trok<span class="tooltiptext">alley</span></div> out to the main road.
<<image "/locationPhotos/thailand/bangkok/samsenRoad.jpg" 100 1000 560 0>>\
It's a long, busy <div class="tooltip">thanon<span class="tooltiptext">main road</span></div>, lined for miles with hundreds of little mom-and-pop restaurants, hostels, massage parlours, groceries and convenience stores.
//[[Walk and explore.|WELBANG-57000 Soi Samsen]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You wander down the street, taking it slow and easy in the heat. Sweat's running down your back after just a couple of minutes anyway.
This part of town's nowhere near as slick as the urban canyons you cruised in through; at street level, the shops and restaurants are clean and modern, but everything around and above them is [[dingy and ramshackle|WELBANG-57100 Soi dog]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ethnicity on the street is a mix: maybe one person in three is a <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div>.
Walking along, you get your first sight of one of Bangkok's many <div class="tooltip">soi dogs<span class="tooltiptext">"street dogs"; more than 300,000 dogs live wild in Bangkok</span></div> – a tired, neglected mutt, cooling off in the aircon escaping through the automatic door of a 7-Eleven.
//[[Poor guy.|WELBANG-58000 Stumbling on the KSR]]//
<</page>><<silently>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
//Poor guy.// This heat's bad enough just in summer clothes; he must be baking under his dusty fur.
It's sad, but you can't take care of 300,000 wild dogs, and you've heard they can be dangerous anyway. Maybe you'll look into supporting a soi dog charity later. For now, you keep walking, leaving the furbag to enjoy the wafts of aircon.
You've noticed the flow of tourists is tending in a certain direction. Following along into a walking street, you realise you're arrived on the [[Khao San Road|WELBANG-59000 KSR title card]], the Mecca of backpackers.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="WELBANG-60000 KSR">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/khaoSanRoad/khaoSanRoadSelfieTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''KHAO SAN ROAD''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaoSanRoad/ksrLateAfternoon.jpg" 120 1000 620 0>>\
Countless stalls line this busy walking street, selling food, clothes, gadgets, souvenirs, luggage and knick-knacks.
Hip travellers from every corner of the globe bustle here, haggling with street vendors, drinking in the bars, getting massages, eating street food and taking selfies in this iconic location.
//[[Take a selfie.|WELBANG-60100 Selfie]]
[[Check out the Khao San Road.|WELBANG-61000 KSR sunset]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You find a spot to snap a selfie, proving you made it to the centre of the backpacking universe. Camera held up, chin tilted down...//click.//
It's actually a really flattering shot. Maybe if you hadn't been a spy, you could've made it on Instagram.
You tuck your phone back into your <<handbag>>, and start [[exploring the Khao San Road.|WELBANG-61000 KSR sunset]]
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
This famous road is shorter than you expected, but packed to bursting point. It's lined with dirt-cheap hostels, bars and nightclubs, restaurants, travel agencies, tailors, tattoo parlours, Thai massage spas, and street stalls selling touristy knick knacks.
<<image "/locationPhotos/thailand/khaoSanRoad/ksrSunset.jpg" 120 1000 620 0>>\
The sun's going down by the time you reach the far end. And the KSR is coming alive; neon signs lighting up, backpacker anthems like Bob Marley and the Red Hot Chilli Peppers booming out from the bars and pubs, filling up with buzzed backpackers getting their drink on.
Hundreds more have arrived since you got here, and more are coming. There's an excitment in the air, like the start of a party.
Spicy wafts of [[sizzling street foods|WELBANG-62000 Sizzling street foods]] remind you that the last thing you ate was a snack on the plane.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There are food stalls everywhere, selling fresh-cooked curries and stir-fries and grilled meat skewers to hungry backpackers.
[[Barbecued reddish meat on skewers.|WELBANG-62100 Moo bing kao nieow]]
[[Fried doughnut things.|WELBANG-62200 Pa tong go]]
[[Grilled sausage balls.|WELBANG-62400 Sai grok Isaan]]
[[Sticky rice in bamboo tubes.|WELBANG-62300 Khao lahm]]
[[Grilled squid.|WELBANG-62400 Pla muek yang nam chim]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stop off at a cart with a grill, drawn by the smoky charred goodness of fresh grilled meat. ฿50 (<<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>>) gets you three chunky skewers and a bag of sticky rice on the side.
<<image "/locationPhotos/thailand/khaoSanRoad//streetFood/porkSkewersMooBing.jpg" 140 1000 550 0>>\
This is <div class="tooltip">moo bing kao nieow<span class="tooltiptext">grilled pork & sticky rice</span></div>. Made from fatty chunks of pork, it's juicy and zingily tasty, like thick smoky bacon. The sweet, salty sauce it's marinaded in gives it an [[exotic asian tinge|WELBANG-63000 Street food experience]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stop off at a lady selling dough sticks shaped like chromosomes, frying them up in a wide, shallow vat. ฿50 (<<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>>) gets you a bag of chromosomes and a tub of green dip on the side.
<<image "/locationPhotos/thailand/khaoSanRoad//streetFood/paTongGo.jpg" 90 1000 550 0>>\
This is <div class="tooltip">pa tong go<span class="tooltiptext">Thai-style Chinese doughnuts</span></div>, a cross between a doughnut and bread. They're crispy on the outside, and a little chewy on their honeycombed inside. Their flavour is quite plain, so yours are served with a tasty [[green custard dip|WELBANG-63000 Street food experience]] made of coconut milk and egg.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stop off at a stall grilling rice stuffed inside ten-inch bamboo tubes. ฿20 (<<if $kate.agency == "cia">>60c<<elseif $kate.agency == "mi6">>40p<<elseif $kate.agency == "asis">>80c<<elseif $kate.agency == "csis">>80c<<elseif $kate.agency == "nzsis">>80c<<else>>ERROR IN KATE.AGENCY VAR<</if>>) gets you a tube. Before she hands it over, the old lady vendor gives it a swift whack with a knife, cracking the tube and making it easy to peel open.
<<image "/locationPhotos/thailand/khaoSanRoad//streetFood/khaoLahm.jpg" 90 1000 550 0>>\
This is <div class="tooltip">khao lahm<span class="tooltiptext">bamboo sticky rice</span></div>, a fun snack to eat. You pull out the leaf plug at the top, then peel back the bamboo like a banana, revealing a delicious sticky rice cake inside. It's sweet and creamy, stuffed with [[tender black beans|WELBANG-63000 Street food experience]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stop off at a stall cooking up pinkish sausage balls on a grill. ฿50 (<<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>>) gets you six of them on a bamboo skewer, mixed with little chunks of vegetable.
<<image "/locationPhotos/thailand/khaoSanRoad//streetFood/saiGrokIsaan.jpg" 120 1000 580 0>>\
This is <div class="tooltip">sai grok Isaan<span class="tooltiptext">Isaan sour sausage</span></div>. It's tangy, smoky, and garlicky, with a buttery, satisfyingly chewy texture. In between bites of sausage, chunks of ginger, raw cabbage and chillis add [[zingy highlights|WELBANG-63000 Street food experience]] to the strong meaty flavour.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stop off at a stall cooking purple squids on an open grill. ฿50 (<<if $kate.agency == "cia">>$1.50<<elseif $kate.agency == "mi6">>£1<<elseif $kate.agency == "asis">>$2<<elseif $kate.agency == "csis">>$2<<elseif $kate.agency == "nzsis">>$2<<else>>ERROR IN KATE.AGENCY VAR<</if>>) gets you a whole squid. The vendor slices one up into bite-sized pieces, and serves it on a paper plate with a side of fiery green dipping sauce.
<<image "/locationPhotos/thailand/khaoSanRoad//streetFood/plaMuekYangNamChim.jpg" 120 1000 580 0>>\
This is <div class="tooltip">pla muek yang nam chim<span class="tooltiptext">grilled squid with green chilli sauce</span></div>. It's delicious, [[fresh grilled calamari|WELBANG-63000 Street food experience]], that you can eat with a skewer or just your fingers. The dipping sauce is sour, garlicky, and spicy hot.
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You grab a seat nearby, and enjoy your first Bangkok street food experience. Sweat on your back, pungent air, eating cheap and delicious food in a rickety chair while crowds of interesting people mill past: it feels like you've really arrived somewhere exotic.
You finish your food and watch the sun go down. It was delicious; [[you could use a beer|WELBANG-64000 Night falls]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaoSanRoad/ksrNightlife.jpg" 120 1000 620 0>>\
Darkness falls, bringing a slight but welcome coolness to the air.
The Khao San Road is buzzing, a neon circus filling up with buzzing backpackers in party mode.
//[[Get an early night.|WELBANG-115000 Tuk-tuk]]
[[Stay out for a beer.|WELBANG-65000 Kate grabs a beer]]//
<</page>><<silently>>
<<set $header.line1 to "''KHAOSAN 1986''",
$header.line2 to "KHAO SAN ROAD / APRIL 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You're outside a bar called Khaosan 1986. You head inside, and order a beer at a bar watched over by a massive neon monkey head.
The loud music sounds like a weird cross between a spaghetti western and the alien band from //Star Wars,// with warbly Thai vocals over the top. Anywhere else it'd totally suck; here's it's perfect. Some Thai guys near you are singing along at the tops of their voices.
<<image "/locationPhotos/thailand/khaoSanRoad/khaosan1986Bar.jpg" 120 1000 540 0>>\
//[[Take your beer up to the balcony.|WELBANG-66000 1986 balcony]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's standing room only in this packed, busy bar. You find a space at the edge to lean, and people watch.
<<image "/locationPhotos/thailand/khaoSanRoad/khaoSan1986Bar2.jpg" 0 1000 563 0>>\
Your beer goes down fast and easy. Is there anything better on a hot night than a cold beer?
//TK write a people watch scene here, for now go back and go up to the balcony//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You take your beer up to the balcony, and take a long, deeply satisfying gulp. Is there anything better on a hot night than a cold beer?
<<image "/locationPhotos/thailand/khaoSanRoad/khaosan1986BalconyView.jpg" 50 1000 540 0>>\
You gaze down over a thronging mass of different nationalities, age groups and styles milling around below.
There are dreadlocked hippies living their bohemian dream, girls strutting casually in bikini tops, old expats with huge cameras, tall Koreans with their hair in topknots, groups of newbies still white from colder climates, all drinking and friendly and having a good time.
"Special, isn't it." The old <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div> guy at the balcony beside you leans in and strikes up a conversation. Probably in his sixties, he's tall and shabby, with a massive beer gut. His accent is South African.
[[Yeah.|WELBANG-67000 Mike][$temp.playerDecision to "yeah"]]
//[[Smile politely.|WELBANG-67000 Mike][$temp.playerDecision to "smile"]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "yeah">>\
"Yeah," you smile. "It is pretty amazing."
<<elseif $temp.playerDecision == "smile">>\
You smile politely at the old fella, who takes that as an invitation to shuffle in closer and talk to you.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"First time here?" he asks.
[[Yeah.|WELBANG-68000 Kate chats with Mike][$temp.playerDecision to "yeah"]]
[[Nah.|WELBANG-68000 Kate chats with Mike][$temp.playerDecision to "nah"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "yeah">>\
"Yeah," you admit. //Fuck!// You just contradicted your <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div>. It probably doesn't matter with some random civilian, but in other circumstances a slip-up like that could be fatal. "First time."
"Ah, I envy you," he says. "I love it here, but you can only see it for the first time once."
<<elseif $temp.playerDecision == "nah">>\
"Nah," you tell him, sticking to your <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div>. "You?"
"Me?" He laughs at that, a big mirthful //ug yug yug// that makes his beer belly jiggle. "I've been here for years," he says. "Thailand, I mean. Love it here. It's paradise."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
You spend a while chatting with him, subtly picking his brain for observations about the country that you can pass off as your own later.
He's pleasant enough – and is obviously relishing female company forty years his junior – but you don't want to get stuck with an obese sixty-year old <<if $kate.agency == "cia" or $kate.agency == "csis">>dude<<else>>bloke<</if>> all night. Once you've finished your beer, you decide to move on.
//[[Wish him a good night, and keep exploring.|WELBANG-69000 Back on the street]]//
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''KHAO SAN ROAD''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You say goodbye to Mike, and head back down to the Khao San Road.
The street is absolutely bustling with revellers now. All the bars have tables out front, a different song blasting out every twenty steps.
It's good-natured chaos: backpackers roaming around; street vendors and tuk-tuk drivers shouting their wares; street performers breakdancing and busking; tourists drinking shots of snake blood and rolling around on ฿50 laughing gas balloons.
You wander amidst the throng, soaking in the wild but friendly vibe.
//[[Get a henna tattoo.|WELBANG-70000 Henna tattoo]]
[[Eat a scorpion.|WELBANG-71000 Kate eats a scorpion]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stop by a street stall painting girls with beautiful henna tattoos. Taking your place in a creaky picnic chair, you relax and watch as a dark-skinned Indian girl quickly and efficiently paints a pretty, intricate pattern over your hand and fingers.
Each deft stroke of her tiny brush tingles like menthol. The wafts of henna ink smell earthy and hay-like.
It takes about ten minutes. The artist doesn't speak English, but she smiles winningly at you once she's finished. The bill is ฿80 (<<if $kate.agency == "cia">>$2.40<<elseif $kate.agency == "mi6">>£1.60<<elseif $kate.agency == "asis">>$3.20<<elseif $kate.agency == "csis">>$3.20<<elseif $kate.agency == "nzsis">>$3.20<<else>>ERROR IN KATE.AGENCY VAR<</if>>).
//[[Pay ฿80.|WELBANG-80000 KSR in full swing][$temp.playerDecision to "80"]]
[[Pay ฿160.|WELBANG-80000 KSR in full swing][$temp.playerDecision to "160"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/khaoSanRoad/scorpionStall.jpg" 50 1000 540 0>>\
A group of teenaged <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> lads are clustered around a street food stall selling...crispy fried scorpions on sticks. There's tittering, boyish laughter and banter as they [[dare each other|WELBANG-72000 It easy]] to eat one of the things.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Come on," the old Thai lady manning the stall cajoles them. "It easy. Look – " she locks eyes with you as you pass. //"Lady// brave enough eat scorpion!"
All eyes <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> are suddenly upon you.
[[Well...how much?|WELBANG-73000 How much?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Well...how much?" you ask.
"Normal price 50 Bah. Lady price, 40 Bah."
//[[Pay ฿50.|WELBANG-74000 Kate pays full price]]
[[Haggle.|WELBANG-75000 Kate haggles]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Okay. Lady price, 40 Baht."
<<image "/locationPhotos/thailand/khaoSanRoad/mmmScorpion.jpg" 30 1000 630 0>>\
To the incredulous admiration of the <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> lads, you hand over ฿40 (<<if $kate.agency == "cia">>$1.20<<elseif $kate.agency == "mi6">>80p<<elseif $kate.agency == "asis">>$1.60<<elseif $kate.agency == "csis">>$1.60<<elseif $kate.agency == "nzsis">>$1.60<<else>>ERROR IN KATE.AGENCY VAR<</if>>) in return for a massive, evil-looking [[arachnid on a skewer|WELBANG-76000 When in Rome]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Lady price 30 Baht," you insist.
"Okay. Lady price, 30 Bah."
<<image "/locationPhotos/thailand/khaoSanRoad/mmmScorpion.jpg" 30 1000 630 0>>\
To the incredulous admiration of the <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> lads, you hand over ฿30 (<<if $kate.agency == "cia">>90c<<elseif $kate.agency == "mi6">>60p<<elseif $kate.agency == "asis">>$1.20<<elseif $kate.agency == "csis">>$1.20<<elseif $kate.agency == "nzsis">>$1.20<<else>>ERROR IN KATE.AGENCY VAR<</if>>) in return for a massive, evil-looking [[arachnid on a skewer|WELBANG-76000 When in Rome]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The boys watch in horrified fascination as you stare at what you just bought.
It looks inedible – and not just because it's black and armoured and festooned with pincers and articulated legs and //oh my god it's hairy underneath.// It looks literally inedible, because there's no obvious part of it that a human would eat. "How do I..."
"Jus' eat," the old lady says. "Whole thing." She mimes eating a scorpion, as though it were a <<if $kate.agency == "cia">>Hershey bar<<elseif $kate.agency == "mi6">>Kit Kat<<elseif $kate.agency == "asis">>Kit Kat<<elseif $kate.agency == "csis">>Coffee Crisp<<elseif $kate.agency == "nzsis">>chocolate fish<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
[[Stinger too?|WELBANG-77000 Stinger too?]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Stinger too?" you ask, pointing at the barb and making sure you're not about to die.
She nods impatiently. "Whole thing," she insists.
The <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> lads watch in rapt attention as you haltingly move it up to your lips...
//[[Put it in your mouth.|WELBANG-78000 Kate eats a scorpion]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You slowly let it pass your lips, wincing as your mouth fills up with spiky little legs and claws. The sensation makes you shudder. You crunch down hard and fast to get it over with.
The <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> lads cheer as you force yourself to chew on the crispy little snack. Tastewise, texturewise, it's...kind of like a dried out, crunchy chicken wing. But with [[legs and claws|WELBANG-79000 Cronch cronch cronch]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's not actually //bad...//just really, really weird. You choke down the monster in a few gross, crunchy mouthfuls, and accept gratefully when one of the <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> lads offers you a swig from his beer to wash it down. "You're <<if $kate.agency == "asis">>fuckin'<<else>>bloody<</if>> //cool,"// he tells you, in a giggly, high-pitched voice.
//Well, that's one more thing crossed off the bucket list.// You [[slip away from the boys|WELBANG-80000 KSR in full swing]] while they're all eagerly forking over money for fried scorpions; they're just a bunch of kids, you don't want to hang out with them.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-70000 Henna tattoo")>>\
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-freshHennaTattoo"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-freshHennaTattoo-rear")>>\
<<if $temp.playerDecision == "80">>\
You hand her four green banknotes and rejoin the crowd.
<<elseif $temp.playerDecision == "160">>\
You hand her eight green banknotes, and rejoin the crowd.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<else>>\
You mingle back into the crowd, sweeping bits of scorpion out from between your teeth with your tongue.
<</if>>\
<<image "/locationPhotos/thailand/khaoSanRoad/golfBar.jpg" 0 1000 603 0>>\
The street-long party's in full swing. Every bar you pass is packed and raucous.
Lots of people are now drinking "buckets", very strong cocktails served in plastic cups the size of a big noodle pot. You have to meet your handler tomorrow.
//[[Stick to beer.|WELBANG-81000 Bucket bar][$temp.playerDecision to "beer"]]
[[Try a bucket.|WELBANG-81000 Bucket bar][$temp.playerDecision to "bucket"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "beer">>\
You stop off to grab a fresh beer from one of the many street bars.
<<elseif $temp.playerDecision == "bucket">>\
You stop by a street bar to order a bucket. This is basically a half bottle of liquor poured onto ice, topped up with Coke or Red Bull. //Better not have too many of these!// It tastes good, though, sweet and refreshing, with a strong, satisfying kick.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<image "/locationPhotos/thailand/khaoSanRoad/bucketBar.jpg" 40 1000 587 0>>\
Khao San has a friendly, anyone-can-talk-to-anyone vibe. The guy ordering six buckets next to you notices your accent, and strikes up a conversation. <<if $kate.agency == "cia">>"Hey, you're American?"<<elseif $kate.agency == "mi6">>"'Scuse me, you're English?"<<elseif $kate.agency == "asis">>"Alright Sheila?"<<elseif $kate.agency == "csis">><<if $kate.ethnicity == "French Canadian">>"Hey, tu es Quebecois?"<<else>>"Hey, you're Canadian?"<</if>><<elseif $kate.agency == "nzsis">>"Hey, another Kiwi?"<<else>>ERROR IN KATE.AGENCY VAR<</if>> he asks. He invites you to come and hang out with his friends.
[[Okay, why not.|WELBANG-82000 Countrymen]]
[[No thanks.|WELBANG-115000 Tuk-tuk][$temp.playerDecision to "dodgeRoadie"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
This guy, "Roadie" (you later learn his surname is Rhodes), is a fellow <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>Brit<<elseif $kate.agency == "asis">>Aussie<<elseif $kate.agency == "csis">><<if $kate.ethnicity == "French Canadian">>Quebecois<<else>>Canuck<</if>><<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>>, here with his friends on a weeklong <<if $kate.agency == "cia">>bachelor<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stag<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>> party. You're introduced to the groom and his friends, all of whom are tired, drunk and sunburnt, but happy.
They're all normal twentysomething <<if $kate.agency == "cia" or $kate.agency == "csis">>guys<<else>>blokes<</if>> from <<if $kate.agency == "cia">>San Diego<<elseif $kate.agency == "mi6">>Leiceister<<elseif $kate.agency == "asis">>Melbourne<<elseif $kate.agency == "csis">>Toronto<<elseif $kate.agency == "nzsis">>Auckland<<else>>ERROR IN KATE.AGENCY VAR<</if>>. One of them gives of a weird, standoffish vibe, but the rest are cool and quite funny, so you hang out drinking and chatting with some randoms from back home for a while.
They're drinking way faster than you. Soon their buckets are low and they're moving onto a new bar; they invite you to come with them.
[[Sorry, got to go.|WELBANG-115000 Tuk-tuk][$temp.playerDecision to "oneDrinkWithRoadie"]]
[[Okay.|WELBANG-83000 Lucky Beer]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tag along with the <<if $kate.agency == "cia">>bachelors<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stags<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>> when they move down the street, ending up outside a busy place called Lucky Beer.
<<image "/locationPhotos/thailand/khaoSanRoad/luckyBeer.jpg" 40 1000 563 0>>\
The crowd from this bar mingles with the crowd from Khaosan Center Bar across the street – hundreds of people drinking and talking and dancing. The atmosphere is amazing, like a [[buzzing late night street party|WELBANG-84000 Banter]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Tagging onto the <<if $kate.agency == "cia">>bachelor<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stag<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>> party added a flirty new ingredient to the mix – not because you're leading them on, just because you're a girl hanging around with six guys on holiday. Stomachs are sucked in and jokes are told extra loud as they instinctively vie for your attention.
They're okay to hang around with – apart from the weird guy – but none are anything like as hot as <<if hasVisited("MALAY-24000 I'm fine")>>Handsome Guy from the pool in Malaysia<<else>>Max Sandström<</if>>. Flirting with them is okay, but you'd need <<if $temp.playerDecision == "beer">>to switch to buckets<<elseif $temp.playerDecision == "bucket">>to keep drinking buckets<<else>>(ERROR) IN TEMP.PLAYERDECISION VAR)<</if>> to be in serious danger of actually ending up in bed with one of these guys.
//[[Slip away and head back to the hostel.|WELBANG-115000 Tuk-tuk]]
<<link "Stay out drinking with the <<stag>>s." "WELBANG-85000 Title card">><</link>>//
<</page>><<page>>\
//[[A FEW BEERS LATER...|WELBANG-86000 Mulligans]]//
<</page>><<silently>>
<<set $header.line1 to "''MULLIGANS IRISH PUB''",
$header.line2 to "KHAO SAN ROAD / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
In Mulligans Irish Pub, you learn that Jimmy the Groom is working his way through a long list of challenges that Roadie and the other <<if $kate.agency == "cia">>bachelors<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stags<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>> cooked up back in <<if $kate.agency == "cia">>San Diego<<elseif $kate.agency == "mi6">>Leiceister<<elseif $kate.agency == "asis">>Melbourne<<elseif $kate.agency == "csis">>Toronto<<elseif $kate.agency == "nzsis">>Auckland<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
<<image "/locationPhotos/thailand/khaoSanRoad/mulligans.jpg" 200 1000 600 0>>\
Roadie shows you [[the list|WELBANG-87000 Knickers off challenge]]. Some involve girls, but you can't help with things like "photobomb 3 girls photos" or "kiss a MILF".
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe this one?" asks Roadie, pointing out number 6 on the list:
//6 TRIPLE THREAT Get selfies kissing a blonde, brunette and a redhead.//
"Still need a <<if $kate.hairColour == "blonde" or $kate.hairColour == "Champagne">>blonde<<elseif $kate.hairColour == "ginger">>redhead<<else>>brunette<</if>>," he says. "Or wait – this one!"
//13 SUPERMAN Get a girl to give you her <<knickers>> then wear them Superman style.//
"Yeah," enthuses one of the other <<if $kate.agency == "cia">>bachelors<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stags<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>>. "That one!"
<<link "No way! I'll give him the kiss, but that's it." "WELBANG-88000 Kate objection">><<set $temp.playerDecision to "noWay">><</link>>
[[Seriously? In this skirt?|WELBANG-88000 Kate objection][$temp.playerDecision to "seriously"]]
[[Can't, not wearing any.|WELBANG-87500 Commando Kate]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Can't," you shrug. "Not wearing any."
"Seriously?" Roadie's voice comes out low and flustered.
"Uh...wow," murmurs the other guy. If blood's rushing somewhere in their bodies, it's not to the brain.
"Just, uh, just the kiss then."
[[Sure.|WELBANG-111000 The photo]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "noWay">>\
<<emote-mouth-smirk>>\
"No way!" you object. "I'll give him the kiss, but that's it!"
<<elseif $temp.playerDecision == "seriously">>\
<<emote-mouth-beam>>\
<<emote-nose-wrinkle>>\
<<emote-brows-raised>>\
"Seriously?" you ask. "In this skirt?"
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"It'd make his night," says Roadie, wearing the earnest expression of a man with no ulterior motivation to get you out of your underwear.
"Mmm, yeah, he'd love it," the other <<if $kate.agency == "cia">>bachelor<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stag<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>buck<<else>>ERROR IN KATE.AGENCY VAR<</if>> magnanimously agrees.
<span class="greyedOut">[Refuse]</span> [[Not happening, guys, drop it.|WELBANG-89000 Not happening]]
<<link "But I //can't...//" "WELBANG-90000 Kate plays hard to get">><</link>>
<</page>><<silently>>
<<if $kate.hairColour == "blonde">>
<<set _brunette to "blonde">>
<<elseif $kate.hairColour == "ginger">>
<<set _brunette to "redhead">>
<<else>>
<<set _brunette to "brunette">>
<</if>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Not happening," you shake your head, "not in this skirt."
They're disappointed, but they drop it when they sense that you're not going to play along. "Jimmy, kiss from a _brunette coming up."
"[[Sweet|WELBANG-111000 The photo]]!" he replies.
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"But I //can't..."// you resist.
"You can, you can," argues Roadie. "Look...you're the coolest girl we've met, who else is gonna do it?"
<span class="greyedOut">[Refuse]</span> [[Not happening, guys, drop it.|WELBANG-89000 Not happening]]
[[Someone in a longer skirt?|WELBANG-91000 Someone else]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Someone in a longer skirt?"
"Come on, do it for the stag, you'd make his night," whines Roadie.
"You'd be a //legend,"// wheadles his buddy.
The weird guy rolls his eyes at all the attention you're getting.
<span class="greyedOut">[Refuse]</span> [[Not happening, guys, drop it.|WELBANG-89000 Not happening]]
[[Alright, alright, I'll do it.|WELBANG-92000 I'll do it]]
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<emote-nose-wrinkle>>
<</silently>>\
<<header>>\
<<page>>\
"Alright, alright, I'll do it."
"Seriously?" Roadie's eyes light up.
"Awesome!" chimes in the buddy.
The weird guy shoots you a cold, disapproving stare. You pretend not to notice.
<<if $kate.kinks.includes("exhibitionist")>>\
//<span class="greyedOut">[Exhibitionist]</span> [[Hold my drink, I'll do it here.|WELBANG-104000 Hold my beer]]//
<<else>>\
<span class="greyedOut">//[Exhibitionist] Hold my drink, I'll do it here.//</span>
<</if>>\
[[Be right back.|WELBANG-93000 Kate goes to the bathroom]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Be right back," you tell them. You down your drink, and head off to the ladies' room.
These two are eating you up. You don't need to look back to know they're staring after you as you go.
There's a <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> for the ladies' room, of course.
<<link "Join the <<queue>>." "WELBANG-94000 Ladies room">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You chat amiably with a drunk Venezuelan girl while the <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>queue<</if>> shuffles forwards, comparing <<if hasVisited("WELBANG-70000 Henna tattoo")>>henna tattoos<<else>>handbags<</if>> and travel companions.
She's here on her honeymoon, and she's very interested to learn exactly how badly the <<if $kate.agency == "cia">>bachelors<<elseif $kate.agency == "mi6" or $kate.agency == "csis">>stags<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>bucks<<else>>ERROR IN KATE.AGENCY VAR<</if>> are actually misbehaving.
Eventually the pair of you make it inside the ladies' room. In here there's still a <<queue>> for the stalls.
//[[Wait your turn.|WELBANG-97000 Cubicle]]
<<link "Take your <<knickers>> off right here." "WELBANG-95000 Knickers off (ladies room)">><</link>>//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You glance around the ladies' room. Only <<if $kate.firstName != "Daniela" and $kate.cover.firstName != "Daniela">>Daniela<<else>>Maria Gabriela<</if>> is paying any attention to you. //Fuck it.// In as brisk and efficient a manner as possible, you reach up under your flippy little skirt, fingers finding the waistband of your <<knickers>>.
You peel them down and step out of them. <<if $kate.firstName != "Daniela" and $kate.cover.firstName != "Daniela">>Daniela<<else>>Maria Gabriela<</if>> looks at you, startled.
<<link "It's a <<stag>> thing." "WELBANG-96000 Nothin but a stag thing">><</link>>
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"It's a <<stag>> thing," you explain, smoothing down your skirt.
"<div class="tooltip">Qué carajo?<span class="tooltiptext">What the fuck?</span></div>" she exclaims.
You shrug and [[head back to the group|WELBANG-100000 Commando walk]], no doubt leaving <<if $kate.firstName != "Daniela" and $kate.cover.firstName != "Daniela">>Daniela<<else>>Maria Gabriela<</if>> with visions of her husband cavorting around with underwear-free girls on his own <<stag>> party.
<</page>><<silently>>
<<if $kate.hairColour == "blonde">>
<<set _brunette to "blonde">>
<<elseif $kate.hairColour == "ginger">>
<<set _brunette to "redhead">>
<<else>>
<<set _brunette to "brunette">>
<</if>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You wait patiently in <<if $kate.agency == "cia" or $kate.agency == "csis">>line<<else>>the queue<</if>>, chatting with <<if $kate.firstName != "Daniela" and $kate.cover.firstName != "Daniela">>Daniela<<else>>Maria Gabriela<</if>>. When it's your turn, you say goodbye to her, and lock yourself in a little cubicle.
Privacy at last. Now you're out of the heat of the moment, you're starting to have second thoughts. Maybe this wasn't such a good idea? This skirt is really short.
//[[Go through with it.|WELBANG-99000 Knickers off (cubicle)]]
<<link "Not doing it. Jimmy can have the kiss from a _brunette instead." "WELBANG-98000 Kate backs out">><</link>>//
<</page>><<silently>>
<<if $kate.hairColour == "blonde">>
<<set _brunette to "blonde">>
<<elseif $kate.hairColour == "ginger">>
<<set _brunette to "redhead">>
<<else>>
<<set _brunette to "brunette">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Fuck it. You're not even sure why you agreed to do this anyway. Your <<knickers>> are staying on.
When you get back to the group, the crestfallen look on Roadie and pal's faces almost makes you feel guilty. But they accept that you changed your mind. "Jimmy...kiss from a _brunette coming up."
"[[Sweet|WELBANG-111000 The photo]]!" he replies.
<</page>><<silently>>
<<set _sexualFantasy to $kate.kinks.random()>>
<<first>>
<<addNotification "Arousal +1" "The aircon isn't the only reason your nipples are getting hard.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//Can't believe I'm doing this,// you think as you reach up under your flippy little skirt, fingers finding the waistband of your <<knickers>>.
You peel them down and step out of them, and smooth down your skirt. //Fuck.// It's not the first time you've gone commando, but this might be the shortest skirt you've ever done it in.
<<if _sexualFantasy == "exhibitionist">>\
This might be a bad idea. In a skirt this short, you could end up flashing strangers all night.
<<elseif _sexualFantasy == "submissive">>\
This might be a bad idea. You just met these guys, you probably shouldn't be doing sexual tasks for them already. What if they come up with other things for you to do? That'd be terrible.
<<elseif _sexualFantasy == "masochist">>\
This might be a bad idea. What if they decide they want to check? It's not like you could do much to stop them.
<<else>>\
(ERROR IN SEXUALFANTASY TEMP VAR)
<</if>>\
<<link "//Rejoin the <<stag>> party.//" "WELBANG-100000 Commando walk">><</link>>
<</page>><<silently>>
<<if not hasVisited("WELBANG-99000 Knickers off (cubicle)")>>
<<first>>
<<addNotification "Arousal +1" "The aircon isn't the only reason your nipples are getting hard.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You walk back through the crowd in Mulligan's, very aware of your skirt swishing and the feel of cool AC'd air in contact with your now bare pussy.
Roadie and his friend are prickling with excitement when you return. "So, uh..?" Roadie asks.
//[[Show him what's in your hand.|WELBANG-101000 Here they are]]//
<</page>><<silently>>
<<emote-brows-naughty>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You hold up your hand in reply, letting a scrap of pink fabric dangle from your fingers. "Whoa!" they both exclaim at once.
"Jimmy! $kate.cover.firstName's doing your Superman challenge!"
"Whoa!" The whole <<stag>> party's attention locks onto you in an instant.
"Did you just take them off?" asks one.
[[What do you think?|WELBANG-102000 What do you think][$temp.playerDecision to "wdyt"]]
<<link "Maybe they're spares from my <<handbag>>." "WELBANG-102000 What do you think">><<set $temp.playerDecision to "maybe">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "wdyt">>\
"What do you think?"
"Whoa!" Six male gazes are flitting between your <<knickers>> and your thighs.
"Jimmy's gotta wear 'em," someone points out.
<<link "//Give your <<knickers>> to Jimmy.//" "WELBANG-110000 Kate surrenders her underwear">><</link>>
<<elseif $temp.playerDecision == "maybe">>\
"Maybe they're spares from my <<handbag>>," you suggest.
"Are they?"
//[[Shrug enigmatically.|WELBANG-103000 Kate answers the question][$temp.playerDecision to "shrug"]]
[[Nope.|WELBANG-103000 Kate answers the question][$temp.playerDecision to "nope"]]//
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "shrug">>\
You answer with an enigmatic shrug. Six male gazes flit between your <<knickers>> and your thighs, trying to figure it out.
<<elseif $temp.playerDecision == "nope">>\
"Nope," you reply.
"Whoa!" Six male gazes flit between your <<knickers>> and your thighs.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Jimmy's gotta wear 'em," someone points out.
<<link "//Give your <<knickers>> to Jimmy.//" "WELBANG-110000 Kate surrenders her underwear">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-naughty>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Hold my drink." Roadie takes it from you, while you glance around the busy bar. "Give me some cover."
Roadie and pal quickly shuffle into a blocking position, protecting you from view somewhat – although both //their// gazes are fixed on you.
[[Turn around, guys.|WELBANG-105000 Avert ye gaze]]
<<link "//Take off your <<knickers>>.//" "WELBANG-109000 Knickers off, with an audience">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Turn around, guys."
A moment's hesitation, then they both turn their backs.
<<link "//Take off your <<knickers>>.//" "WELBANG-106000 Knickers off (behind Roadie's back)">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You glance around one last time. Nobody's looking at you right now...but that could change at any second.
//Fuck it.// As briskly and efficiently as possible, you reach up under your flippy little skirt, thumbs slipping inside the waistband of your <<knickers>>.
You peel them quickly down your legs, and step out of them.
Not the first time you've done that in your life, of course, but it is the first time you've done it in the middle of a busy Irish pub. You smooth down your skirt anxiously.
[[You can look now.|WELBANG-107000 Audience reaction]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You can look now," you say.
They turn around immediately, eyes drawn to the little scrap of pink fabric dangling from your fingers. "[[Whoa|WELBANG-108000 Whoa!]]!" they both exclaim at once.
<</page>><<silently>>
<<if not hasVisited("WELBANG-99000 Knickers off (cubicle)")>>
<<first>>
<<addNotification "Arousal +1" "The aircon isn't the only reason your nipples are getting hard.">>
<</first>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Jimmy! $kate.cover.firstName's doing your Superman challenge!"
"Whoa!" The whole stag party's attention locks onto you in an instant.
"Fuck. Did she just take those off?" asks one.
"Missed it, <<if $kate.agency == "cia" or $kate.agency == "csis">>dude<<else>>mate<</if>>," replies Roadie with some satisfaction. Six male gazes flit between your <<knickers>> and your short, flippy skirt.
"Jimmy's gotta wear 'em," someone points out.
<<link "//Give your <<knickers>> to Jimmy.//" "WELBANG-110000 Kate surrenders her underwear">><</link>>
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
You glance around one last time. Only Roadie and his pal are looking at you right now, but that could change any second.
//Fuck it.// As briskly and efficiently as possible, you reach up under your flippy little skirt, thumbs slipping inside the waistband of your <<knickers>>.
You peel them quickly down your legs, and step out of them. "Whoa!" both guys exclaim at once.
Not the first time you've done that in your life, of course, but it is the first time you've done it in the middle of [[a busy Irish pub|WELBANG-108000 Whoa!]].
<</page>><<silently>>
<<if $kate.hairColour == "blonde">>
<<set _brunette to "blonde">>
<<elseif $kate.hairColour == "ginger">>
<<set _brunette to "redhead">>
<<else>>
<<set _brunette to "brunette">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
You hand over your <<knickers>> to Jimmy. His <<stag>>s cheer as he pulls them on over his jeans.
"Let's get a photo of you two," one suggests.
"Yeah, you can do the kiss from a _brunette too," says Roadie.
//[[Pose with Jimmy.|WELBANG-111000 The photo]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-87500 Commando Kate")>>\
"Sure." They both managed to keep their eyes on your face through that whole conversation, but you catch them staring at your legs for the rest of the night.
<</if>>\
You pose side by side with Jimmy while the <<stag>>s pull out camera phones. "Remember guys," he shouts, swaying on his feet and slurring his words. "If <<if $kate.firstName != "Helen" and $kate.cover.firstName != "Helen">>Helen<<else>>Tracy<</if>> sees this I'm //fucked..."//
You lean in and kiss Jimmy's stubbly cheek to a blast of camera flashes and shutter clicks. You're surprised to feel a hand cup your ass.
//[[Fend him off.|WELBANG-112000 Disentangled][$temp.playerDecision to "defensive"]]
[[Let him paw you.|WELBANG-112000 Disentangled][$temp.playerDecision to "permissive"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "defensive">>\
Subtly but firmly, you lift his paw off your butt while the cameras go off.
<<elseif $temp.playerDecision == "permissive">>\
It only lasts a few moments. You let him fondle your butt through your skirt while the cameras go off, then disentangle yourself gracefully.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
The <<stag>>s are eager to show off their photos. You inspect a set of shots of you kissing the cheek of a [[doughy, drunk husband-to-be|WELBANG-113000 Title card]]<<if hasVisited("WELBANG-110000 Kate surrenders her underwear")>>, wearing your <<knickers>> over his jeans<</if>>. It's not obvious in any of them that he had a handful of your ass at the time.
<</page>><<page>>\
//[[SOME TIME LATER...|WELBANG-114000 Thai reggae band]]//
<</page>><<silently>>
<<emote-brows-calm>>
<<set $header.line1 to "''BRICK BAR''",
$header.line2 to "KHAO SAN ROAD / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You tag along to the next bar with them<<if hasVisited("WELBANG-110000 Kate surrenders her underwear")>> - minus your underwear, of course<</if>>. There's live music in the Brick Bar, a Thai ska band. Despite being about as far from Jamaica as you can get, they're actually really good. It'd take a heart of stone to stand in the crowd without shimmying along to the beat.
<<image "/locationPhotos/thailand/khaoSanRoad/brickBar.jpg" 0 1000 429 0>>\
At midnight the <<stag>> party's going strong, but you realise that you'd [[better call it a night|WELBANG-114000 Kate says her goodbyes]]. You're meeting your handler tomorrow, and the last thing you need is being hung over for that.
<</page>><<silently>>
<<set $header.line1 to "''KHAO SAN ROAD''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
"Wait, you're //going?// You're not serious..." Everybody except the weird guy is sorry to lose you from the <<stag>> party. Roadie looks especially stricken after his goodbye hug, staring forlornly after you as you walk away.
They were nice but, unlike them, you're not here on <<holiday>>. You've got serious work to do tomorrow.
<<image "/locationPhotos/thailand/khaoSanRoad/ksrNightCrowd.jpg" 50 1000 530 0>>\
Leaving the Brick Bar, you [[thread your way|WELBANG-115000 Tuk-tuk]] through a crowd of late-night revellers, drinking and laughing and swaying on their feet.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if not hasVisited("WELBANG-114000 Kate says her goodbyes") and hasVisited("WELBANG-84000 Banter")>>\
You slip away from the <<stag>>s when they move on to Mulligans Irish Pub.
<<elseif $temp.playerDecision == "oneDrinkWithRoadie">>\
You slip away, instead, not wanting to get roped into a bar crawl with a bunch of random guys. You wander around a little more, people watching, until it's time to head back.
<<elseif $temp.playerDecision == "dodgeRoadie">>\
You slip away instead, not wanting to get tied down with a bunch of strangers. You drink and walk around, people watching, until it's time to head back.
<</if>>\
There are tuk-tuks everywhere<<if not hasVisited("WELBANG-47000 Phaya Thai tuk-tuk")>> – basically 3-wheeled go carts, with a metal cage attached<</if>>. You hire one with cool UV lights shining off the back, and settle into the backseat.
<<image "/locationPhotos/thailand/khaoSanRoad/tukTukAtNight.jpg" 0 1000 580 0>>\
The mighty tuk-tuk crawls slowly through the crowds on Khao San, before unleashing its full power on the open road. Roaring like a bumblebee, it picks up speeds approaching <<if $kate.agency == "cia" or $kate.agency == "csis">>30kph<<else>>20mph<</if>>.
You enjoy the cool rushing night air as you buzz through the streets you walked along earlier. It's a short ride back to your [[hostel|WELBANG-115100 Title card]].
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-116000 Back home">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<avatar-stripNaked>>
<<avatar-getWet>>
<<wear-towel-whiteBathSheet>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-freshHennaTattoo"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-freshHennaTattoo-rear")>>
<</if>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shoes-greyToeThongFlipFlops>>
<</silently>>\
<<header>>\
<<page>>\
You head upstairs for a quick, tepid shower, then go to bed in your little room. There's no actual aircon here, but an old ceiling fan provides some relief.
<<if hasVisited("WELBANG-110000 Kate surrenders her underwear")>>\
That thing with the <<stag>>s was kind of a turn-on. <<if hasVisited("WELBANG-27000 Vaginal search")>>A nice antidote to that awful shit at the airport this morning. <</if>>It was just playful, really, but drinking with six guys who knew you were going commando under your short skirt added a sexual frisson to that last couple hours.
You slip under your sheet, wondering if any of them will [[fantasise about you|WELBANG-117000 Kate warms up her fantasy]] later.
<<else>>\
<<if hasVisited("WELBANG-27000 Vaginal search")>>//What a day.// That thing at the airport was horrible, but in a way you were lucky. You know from your training that much worse things can happen to spies who get stopped at a border.<<else>>//Khao San was pretty cool.// It might have been fun to stay out for longer, but you want to be alert and well rested when you meet with your handler tomorrow.<</if>>
//[[Get some sleep.|WELBANG-119000 Title card]]//
<</if>>\
<</page>><<silently>>
<<avatar-dryOff>>
<<set $avatar.foreground.pushUnique("teenRom/50_katesBedsheets")>>
<<emote-eyes-closed>>
<<remove-towel-whiteBathSheet>>
<<remove-shoes-greyToeThongFlipFlops>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-97000 Cubicle")>>\
You think back to that moment in the ladies' room stall, toying with the waistband of your <<knickers>>, deciding whether or not to go for it. Then walking [[back through the busy bar|WELBANG-118000 Kate's fantasy]] with them in your hand...
<<elseif hasVisited("WELBANG-96000 Nothin but a stag thing")>>\
You think back to the look on <<if $kate.firstName != "Daniela" and $kate.cover.firstName != "Daniela">>Daniela<<else>>Maria Gabriela<</if>>'s face when you peeled off your <<knickers>>. How it felt walking [[back through the busy bar|WELBANG-118000 Kate's fantasy]] with them in your hand...
<<else>>\
You think back to that moment when you reached up under your skirt and peeled down your <<knickers>>, [[right there in the bar|WELBANG-118000 Kate's fantasy]]. The look on the <<stag>>'s faces when they realised what you'd done...
<</if>>\
<</page>><<silently>>
<<set _sexualFantasy to $kate.kinks.random()>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
<<if _sexualFantasy == "exhibitionist">>\
In your fantasy, it's not enough for the <<stag>>s to see your underwear in your hand, they need to //check// you're not wearing any, it's in the rules. You picture yourself reluctantly getting talked into holding up your skirt, right there in the middle of the Irish pub. And of course you have to hold up your skirt like that when they're taking pictures...
<<elseif _sexualFantasy == "masochist">>\
In your fantasy, Roadie and his friends turn more forceful once they know you've taken off your underwear. You picture them just flipping up your flimsy little skirt whenever they feel like it, making you flash your bare ass and pussy over and over again. Especially the guy who didn't like you. You can picture him lifting up your skirt to spank your ass, in front of everyone...
<<elseif _sexualFantasy == "submissive">>\
<<silently>>
<<if $kate.hairColour == "blonde">>
<<set _brunette to "blonde">>
<<elseif $kate.hairColour == "ginger">>
<<set _brunette to "redhead">>
<<else>>
<<set _brunette to "brunette">>
<</if>>
<</silently>>\
In your fantasy, the <<stag>>s keep making you do dares from Jimmy's list. It starts with them making you do //kiss from a _brunette// again, because you didn't get into it enough the first time. You picture five camera phones going off while you make out with Jimmy, letting him finger your naked pussy right there in the middle of the Irish pub...
<<else>>\
(ERROR IN SEXUALFANTASY TEMP VAR)
<</if>>\
The fantasy and your strumming fingers bring you to a quick, satisfying orgasm in your little hostel bed. Knowing how thin the walls are, you try not to be too vocal. //Like being back in <<university>>,// you think.
//[[Get some sleep.|WELBANG-119000 Title card]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-knickers-blackUnderArmourSportsKnickers>>
<<wear-bra-blackUnderArmourSportsBra>>
<<wear-shorts-blackHikerShortsWithBrownBelt>>
<<wear-top-yellowAndBlackCottonFlaredVest>>
<<wear-hosiery-blackTrainerSocks>>
<<wear-shoes-blackAndWhiteConverseLowTops>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>
<<page>>\
//[[NEXT MORNING...|WELBANG-200000 Next morning]]//
<</page>><<silently>>
<<set $header.line1 to "''BTS SKYTRAIN''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/btsDaytime1.jpg" 134 1000 500 0>>\
The day dawns hot and sunny. After breakfast at the hostel, you get a tuk-tuk to National Stadium, then ride an air-conditioned BTS skytrain [[a few stops downtown|WELBANG-201000 BTS SALA DAENG]].
<</page>><<silently>>
<<wear-bigBlackSunglasses>>
<<set $header.line1 to "''SALA DAENG BTS STATION''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
BTS Sala Daeng is near Patpong, home of the Hard Cock Cafe – but that's not your destination today.
<<image "/locationPhotos/thailand/bangkok/btsSalaDaengEntrance.jpg" 134 1000 500 0>>\
Steps lead down from the platform to a busy <div class="tooltip">thanon<span class="tooltiptext">main road</span></div>, lined with shops, office high-rises and construction sites.
Following a memorised route, you walk a few minutes, [[counting off landmarks|WELBANG-202000 Trok La-O entrance]] in your head.
<</page>><<silently>>
<<set $header.line1 to "''RAMA IV ROAD''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The busy street has a hot urban smell, exhaust fumes and tarmac baking in the blazing sun.
Sweat's rolling down your back when you reach a blue building on a narrow <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, right about where you expected it.
<<image "/locationPhotos/thailand/safehouse/trokLaOEntry.jpg" 134 1000 500 0>>\
//[[Enter Trok La-O.|WELBANG-203000 Trok La-O]]//
<</page>><<silently>>
<<set $header.line1 to "''TROK LA-O''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
It's a long, narrow alley, hemmed in by 1930s teakwood Thai townhouses.
<<image "/locationPhotos/thailand/safehouse/trokLaOAlleyway.jpg" 134 1000 500 0>>\
There's no way you can be under surveillance yet. But you stop anyway, pretending to pick a stone out of your <<trainer>>, and check that nobody followed you [[into the trok|WELBANG-204000 Baan Noina main gate]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're clear. At the far end of the <div class="tooltip">trok<span class="tooltiptext">alley</span></div> is a walled garden, protected by a blue gate and a security camera.
<<image "/locationPhotos/thailand/safehouse/baanNoinaGate.jpg" 200 1000 750 0>>\
You ring the bell, and look up at the camera so you're recognised.
A few moments later, you hear a bolt slide back on the [[other side|WELBANG-205000 Password check]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yo." Clark opens the gate slightly and peeps out. "What's the password?"
[[Are you serious?|WELBANG-206000 Walled garden][$temp.playerDecision to "ruSerious"]]
[[Stop fucking around.|WELBANG-206000 Walled garden][$temp.playerDecision to "stopFuckingAround"]]
<<link "'Moron.'" "WELBANG-206000 Walled garden">><<set $temp.playerDecision to "moron">><</link>>
<</page>><<silently>>
<<set $header.line1 to "''SAFEHOUSE INDIGO''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "ruSerious">>\
"Are you serious?"
"No." He flashes that big, charming, all-American grin, and opens the gate to let you in.
<<elseif $temp.playerDecision == "stopFuckingAround">>\
"Stop fucking around," you reply. You're hot and stressed out.
"Lighten up, kid." He flashes that big, charming, all-American grin, and opens the gate to let you in.
<<elseif $temp.playerDecision == "dickhead">>\
"Is it '<<if $kate.agency == "cia" or $kate.agency == "csis">>jackass<<else>>dickhead<</if>>'?"
"Yeah." He flashes that big, charming, all-American grin, and opens the gate to let you in.
<<elseif $temp.playerDecision == "moron">>\
"Is it 'Moron'?" You're hot and stressed out.
"Yeah." He flashes that big, charming, all-American grin, and opens the gate to let you in.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<image "/locationPhotos/thailand/safehouse/baanNoinaWalledGarden.jpg" 90 1000 620 0>>\
You step into a gorgeous little private garden, patio chairs set by a little plunge pool that you'd love to just leap into. It's attached to a sprawling, luxurious teak villa with shutters and balconies.
Looks like the [[support team|WELBANG-207000 Ian]] is getting better accommodation than the undercover on this mission.
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
Clark leads you inside. Here you're introduced to another man: tall and supremely fit, with a shaven head and piercing, intelligent eyes, you'd guess he's in his late thirties.
<<image "/locationPhotos/thailand/safehouse/baanNoinaLivingRoom.jpg" 90 1000 620 0>>\
"$kate.cover.firstName, Ian. Ian, $kate.cover.firstName." His handshake is both solid and gentle; strength, not applied. "Ian's run a couple grab jobs like this for us before. He'll be your handler and your backup here."
"Pleased to meet you, $kate.cover.firstName." <<if $kate.agency == "mi6">>He's also English; his<<else>>His<</if>> accent's <<if $kate.agency == "mi6">>East London, working class<<else>>English, working class<</if>>.
[[Hi.|WELBANG-208000 Nice to meet you][$temp.playerDecision to "hi"]]
[[Likewise.|WELBANG-208000 Nice to meet you][$temp.playerDecision to "likewise"]]
[[My pleasure.|WELBANG-208000 Nice to meet you][$temp.playerDecision to "myPleasure"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "hi">>\
"Hi."
<<elseif $temp.playerDecision == "likewise">>\
"Likewise."
<<elseif $temp.playerDecision == "myPleasure">>\
"My pleasure."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"You wanna show her round before we start?"
"Yeah. $kate.cover.firstName, if you don't mind?"
//[[Follow Ian.|WELBANG-209000 Kit inspection]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Ian takes you on a fast tour of the Thai house – not so much showing you the rooms, more showing you where mission gear is stashed. "If you're in trouble and I'm not around, <div class="tooltip">E&E<span class="tooltiptext">escape and evade</span></div> back here if you can."
<<image "/locationPhotos/thailand/safehouse/gearCloset.jpg" 450 1000 970 0>>\
He shows you the hook where vehicle keys are kept; the <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>cupboard<</if>> where there's a <div class="tooltip">bug out bag<span class="tooltiptext">containing hair dye, new clothes, new travel docs, credit cards and a fat wad of Thai cash</span></div> set up for you; and also what's inside a couple of [[racquet bags|WELBANG-210000 Chekhov's guns]] hanging up in that same <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>cupboard<</if>>.
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
"All goes to plan, you won't need any of this," he says, unzipping a bag. "But just in case."
<<image "/locationPhotos/thailand/safehouse/racquetBagAK.jpg" 120 1000 580 0>>\
You could carry these bags down a high street anywhere in the world and no one would look twice. But one holds a <div class="tooltip">Type 56-1 assault rifle<span class="tooltiptext">a Chinese AK variant</span></div> with six loaded mags; [[the other|WELBANG-211000 Tactical bags]] holds an Uzi submachine gun with six extra mags.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He unzips the side pockets to show you that each bag also holds a handgun: a chunky <span class="imageLink"><<link "Glock 17">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/glock17.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in the AK bag, a smaller, sleeker <span class="imageLink"><<link "Glock 26">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/safehouse/sigP365.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in the other.
Internal pockets hold suppressors and spare mags for the pistols, plus miscellaneous tactical items like first aid gear, burner phones, and cable ties (for securing prisoners).
The weapons and equipment are secured with padded velcro straps so they won't clink together when they're set down or [[on the move|WELBANG-212000 Chekhov's knife]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He doesn't draw attention to it, but it's hard to miss a massive, black steel fighting knife strapped into the AK bag. It's disturbingly //big,// practically a short sword.
Just seeing it fills you with a mix of curiosity and dread. Your instinct tells you that you're looking at an object that someone has been killed with. Maybe more than one someone.
Of course that could be true of the firearms, too. But for some reason it seems worse when it's a blade. Unholier.
"If I'm not around," Ian's saying, and you realise he means //if I've been killed,// "this kit will be. I've stashed building keys out in the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, I'll show you where later."
[[Okay.|WELBANG-213000 One last thing][$temp.playerDecision to "ok"]]
[[Got it.|WELBANG-213000 One last thing][$temp.playerDecision to "gotIt"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "ok">>\
"Okay."
<<elseif $temp.playerDecision == "gotIt">>\
"Got it."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"One last bit of kit." He reaches into his pocket and produces a woman's ring decorated with a chunky, non-precious gemstone.
[[What is it?|WELBANG-214000 One ring to rule them all][$temp.playerDecision to "whatIsIt"]]
[[Oh my god, it's finally happening.|WELBANG-214000 One ring to rule them all][$temp.playerDecision to "omg"]]
[[Shouldn't you get down on one knee for this?|WELBANG-214000 One ring to rule them all][$temp.playerDecision to "oneKnee"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "whatIsIt">>\
"What is it?"
"You can twist the stone." He turns it slightly to demonstrate. "Burst transmitter – one full twist and it pings my phone with the location. Try it."
<<elseif $temp.playerDecision == "omg">>\
"Oh my god, it's finally happening." He looks confused for a moment, then his serious expression breaks into a grin. //He looks about ten years younger when he smiles.//
"Uh...not that kind of ring. But look, you can twist the stone." He turns it slightly to demonstrate. "Burst transmitter – one full twist and it pings my phone with the location. Try it."
<<elseif $temp.playerDecision == "oneKnee">>\
<<emote-mouth-smile>>\
<<emote-brows-raised>>\
<<emote-nose-wrinkle>>\
"Shouldn't you get down on one knee for this?" His serious expression breaks into a grin. //He looks about ten years younger when he smiles.//
"Uh...not that kind of ring. But look, you can twist the stone." He turns it slightly to demonstrate. "Burst transmitter – one full twist and it pings my phone with the location. Try it."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
//[[Twist the gemstone.|WELBANG-215000 Ping]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You take the ring and give the gemstone a twist. You feel a slight bump when you turn it all the way.
Nothing happens immediately. But a few seconds later, Ian's phone chirps a little alarm sound.
He shows you the screen – you're looking at a satellite map of Bangkok, centred on two overlapping dots. Ian zooms in with a pinch gesture, and now you can recognise the little plunge pool out in the private garden.
"Ping me with that for any reason, I'll find you and get eyes on you," he says. "Then we improvise. Does it fit?"
//[[Try it on.|WELBANG-216000 With this ring I declare]]//
<</page>><<silently>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
You slip it on. "Yeah."
"Okay, good. Look, found this in a bar," he says, passing you a glossy, tacky flyer of a woman peeling off her clothes.
<<image "/locationPhotos/thailand/safehouse/hccFlyer2.png" 0 1000 603 0>>\
"When're you going in?"
//[[Tomorrow.|WELBANG-217000 Tomorrow]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Tomorrow night," you tell him.
"Awesome. How are you gonna play it?"
[[Walk in, ask for a job.|WELBANG-218000 Keep it simple]]
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Walk in, ask for a job," you shrug. Back at Faslane, you'd agreed to try the direct route first. If that doesn't work, Clark and <<Olivia>> will cook up something more subtle and complex for the officer who replaces you.
"Got it," he nods. "You're, uh...okay with working topless?"
[[Yeah, no problem.|WELBANG-218010 Topless okay?][$temp.playerDecision to "noProblem"]]
[[Not crazy about it, but if it works...|WELBANG-218010 Topless okay?][$temp.playerDecision to "ifIMust"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "noProblem">>\
<<emote-brows-calm>>\
"Yeah," you tell him. "No problem."
<span class="greenHighlighter">Ian ''liked'' that.</span>
"Great," he nods. "Well don't worry, I'm sure they'll hire you. And if anything goes bad, I've got your back."
<<elseif $temp.playerDecision == "ifIMust">>\
"Not crazy about it," you shrug. "But if it works..."
"Yeah," he nods. "Not often you get a shot at a target like DEVILFISH. Just remember, I've got your back."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
[[Thanks, Ian.|WELBANG-219000 Thanks Ian]]
<</page>><<silently>>
<<emote-brows-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, Ian."
"No problem. C'mon, let's find the [[boss man|WELBANG-220000 Actions on]]..."
<</page>><<silently>>
<<emote-calm>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
The pair of you rejoin Clark. For the rest of the day, the three of you work out the final details: mainly figuring out in advance how you and Ian will act in various what-if scenarios.
What if you get caught snooping somewhere and can't talk your way out? What if you walk in tomorrow night and just happen to see DEVILFISH?
//[[Talk and plan.|WELBANG-221000 Mission prep]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You talk and plan with the guys, who are reassuringly calm, organised and thorough.
It's obvious that they're both veterans of countless field taskings like this. A few times, the talk moves onto subjects you find incredibly cool and exciting – like Ian's plan on how to physically capture DEVILFISH, and whisk him out of the country without interference from local police or military – and you realise this is just a normal day in the office for these guys.
It's a million miles away from one of //your// normal days in the office, but you try to mirror their cool detachment anyway.
Night falls, bringing some relief from the heat, and everyone's tired from a day of talk and concentration. "Let's get food," says Clark. "[[Khao chae|WELBANG-222000 Khao chae]]?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Khao chae is a traditional Thai summer dish – chilled rice in jasmine flavoured iced water, served with a smorgasbord of fruit, vegetables and hot crunchy treats on the side.
<<image "/locationPhotos/thailand/safehouse/khaoChae.jpg" 40 1000 500 0>>\
Clark gets some sent over from a local restaurant, and the three of you eat it [[out in the walled garden|WELBANG-223000 Takeout and beers]], washed down with cold stubby cans of Singha beer.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Eating rice on the rocks is a new experience, but it's a refreshing antidote to the sweaty Thai summer heat.
You eat and chat – small talk, nothing operational now you're sitting out in the open. <<if hasVisited("WELBANG-71000 Kate eats a scorpion")>>They laugh when you tell them you ate a scorpion last night; Ian tells you he was once stung on the bum by one, in Belize.<</if>>
<<image "/locationPhotos/thailand/safehouse/walledGardenAtNight.jpg" 500 1000 1000 0>>\
After the food, the guys strip down to their shorts for a dip in the plunge pool.
//[[Just dangle your feet in.|WELBANG-223500 Modest plunge pool]]
[[Get in, in your underwear.|WELBANG-224000 Plunge pool in underwear]]//
<</page>><<silently>>
<<remove-hosiery-blackTrainerSocks>>
<<remove-shoes-blackAndWhiteConverseLowTops>>
<</silently>>\
<<header>>\
<<page>>\
You kick off your <<trainer>>s and socks, and dangle your feet in the plunge pool.
The water's cool and incredibly refreshing. With the guys stripped down to their shorts, you subtly compare their bodies while you swig Singha beer and chat. They're both strong, with solid, muscular arms and chests. But where Clark is turning a little soft around the middle – dad bod - Ian is lean hard muscle all over. His thighs look like they could break necks.
The three of you drink and chat and relax [[until late|WELBANG-225000 Title card]]. Clark is flying back to Faslane tomorrow, but Ian's staying out for the duration of the job. More assets will be brought over when they're needed, but for this phase it's just you and Ian on the ground.
<</page>><<silently>>
<<remove-shorts-blackHikerShortsWithBrownBelt>>
<<remove-top-yellowAndBlackCottonFlaredVest>>
<<remove-hosiery-blackTrainerSocks>>
<<remove-shoes-blackAndWhiteConverseLowTops>>
<<avatar-wetBody>>
<</silently>>\
<<header>>\
<<page>>\
Feeling a little self-conscious, but not wanting to be left out, you peel off your t-shirt and shorts, and slip into the plunge pool with Clark and Ian.
The water's cool and incredibly refreshing. With the guys stripped down to their shorts, you subtly compare their bodies while you swig Singha beer and chat. They're both strong, with solid, muscular arms and chests. But where Clark is a little soft around the middle – dad bod - Ian is lean hard muscle all over. His thighs look like they could break necks.
The three of you drink and chat and relax [[until late|WELBANG-225000 Title card]]. Clark is flying back to Faslane tomorrow, but Ian's staying out for the duration of the job. More assets will be brought over when they're needed, but for this phase it's just you and Ian on the ground.
<</page>><<page>>\
//[[NEXT MORNING...|WELBANG-226000 Next morning]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-ring-transmitterRing>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-knickers-blackUnderArmourSportsKnickers>>
<<wear-bra-blackUnderArmourSportsBra>>
<<wear-shorts-blackHikerShortsWithBrownBelt>>
<<wear-top-yellowAndBlackCottonFlaredVest>>
<<wear-hosiery-blackTrainerSocks>>
<<wear-shoes-blackAndWhiteConverseLowTops>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/safehouse/baanNoinaGuestRoom.jpg" 0 1000 550 0>>\
You stay the night in one of the spare rooms, and eat leftovers for breakfast with Clark and Ian in the morning.
Afterwards, Clark heads back to the airport, and you head back to your hostel near the Khao San Road.
Today's a [[critical day|WELBANG-226900 Title card]] for the mission. Tonight you're visiting the target location for the first time.
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-227000 Stressed">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<<remove-hosiery-blackTrainerSocks>>
<<remove-shoes-blackAndWhiteConverseLowTops>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Back in your little room at the hostel, it's just you and your thoughts.
Walking into some seedy foreign sex bar to ask for a job would be intimidating enough – if on top of that you didn't have a secret mission to spy on the Thai mafia who are somehow enmeshed with the place.
One agent's already missing, presumed dead – and she disappeared //fast.// You fidget with the transmitter ring on your finger, not yet used to its weight.
Maybe she'd have lived if she'd had Ian on standby. Or maybe when they took her, it was so fast there'd have been [[no time|WELBANG-228000 The wait]] to intervene.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The minutes tick by, both too slow and too fast. You practised deception and cover roles endlessly during your training <<if $kate.agency == "asis">>on<<else>>at<</if>> <<recruitHQ>>. But that was mainly against members of the public, not hardened foreign gangsters.
Besides, that was more than a year ago. What if you're rusty? What if you fuck up and say something stupid? And get yourself //killed?// NOC postings are normally for veteran officers like Ian and Clark – not rookies. //What the <<if $kate.agency == "mi6" or $kate.agency == "cia">>hell<<elseif $kate.agency == "csis">>heck<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>blazes<<else>>[ERROR IN KATE.AGENCY VAR]<</if>> am I doing here?//
For the very first time in ten days, you [[miss your desk|WELBANG-229000 Stress]].
<</page>><<silently>>
<<first>>
<<addNotification "Stress +1" "There's a tense knot in your stomach.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You pace around the wooden floarboards of your small room. A growing sense of dread makes it impossible to eat, impossible to relax. Your thoughts are racing around in circles.
<div class="greyHighlighter">\
<b>New rule: <i>Stress.</i></b> $kate.firstName has gained a level of //Stress.// Stress negatively modifies some dice rolls, and can limit your freedom of action.
If $kate.firstName's Stress gets too high, the task force may pull her from the mission. You can reduce Stress via healthy options like exercise and meditation, or unhealthy ones like drugs and alcohol.
</div>\
//[[Go for a run.|WELBANG-230000 Go for a run]]
[[Do some yoga.|WELBANG-232000 Yoga]]//
<</page>><<silently>>
<<set $header.line1 to "''BANGLAMPHU NEIGHBOURHOOD''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<remove-shorts-blackHikerShortsWithBrownBelt>>
<<remove-top-yellowAndBlackCottonFlaredVest>>
<<remove-ring-transmitterRing>>
<<wear-shorts-blackShortSportsShorts>>
<<wear-top-whiteTightCropTop>>
<<wear-shoes-greenHikingShoesWithWhiteSocks>>
<<remove-knickers-blackUnderArmourSportsKnickers>>
<<remove-bra-blackUnderArmourSportsBra>>
<</silently>>\
<<header>>\
<<page>>\
//This is no good.// You change into running gear, guzzle down some water, and head out into the streets.
The heat's brutal. Your legs and lungs are straining after just the first hundred metres. //Gonna have to take this one slow,// you realise right away. Slow and steady.
Your thoughts clear up as you [[pound along the pavements|WELBANG-231000 Khlongside run]] of this foreign city. Like always, the run itself takes over your mind, the effort of the exercise demanding all your focus.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With no particular route in mind, you follow some steps down from a road bridge, and find yourself running along one of the many <div class="tooltip">klongs<span class="tooltiptext">canals</span></div> that wind through Bangkok.
<<image "/locationPhotos/thailand/bangkok/khlongBoardwalk.jpg" 0 1000 542 0>>\
After the hustle and bustle of the streets, it's like finding a hidden nature trail. You run along it for a mile or so, discovering many little cafes and market stalls and temples tucked away down here, before you [[turn back|WELBANG-234000 Post-workout shower]].
<</page>><<silently>>
<<remove-shorts-blackHikerShortsWithBrownBelt>>
<<remove-top-yellowAndBlackCottonFlaredVest>>
<<remove-ring-transmitterRing>>
<<wear-shorts-blackShortSportsShorts>>
<<wear-top-whiteTightCropTop>>
<<remove-knickers-blackUnderArmourSportsKnickers>>
<<remove-bra-blackUnderArmourSportsBra>>
<</silently>>\
<<header>>\
<<page>>\
//This is no good.// You peel off your clothes and change into your yoga gear.
<<image "/locationPhotos/thailand/hostel/baanTepaBalcony.jpg" 50 1000 500 0>>\
Your room has a little balcony, overlooking the hostel courtyard and overlooked by an ordinary Bangkok apartment building.
You unroll your yoga mat on its creaky boards. Stepping onto it barefoot, you get into [[Mountain Pose|WELBANG-233000 Mountain pose]].
<</page>><<silently>>
<<set $avatar.blink to false>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
Deep, calm breaths, your lungs filling and emptying in time with your slow, graceful movements.
You can feel your racing thoughts slowly coming under control, fading out of your mind as you focus on the present: your breathing, your body.
You move into your next position, on all fours on the mat, arching and curling your back in Cat Camel Pose. Today you're going to take your time and do your full session, just you and your yoga mat [[out on a balcony|WELBANG-234000 Post-workout shower]].
<</page>><<silently>>
<<set $avatar.blink to true>>
<<avatar-expr-removeEyelid-closed>>
<<first>>
<<addNotification "Stress -1" "Exercise is a healthy way to control stress.">>
<</first>>
<<avatar-stripNaked>>
<<wear-towel-whiteBathSheet>>
<<wear-shoes-greyToeThongFlipFlops>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
//That helped.// Afterwards you peel off your sweaty <<if hasVisited("WELBANG-231000 Khlongside run")>>running<<elseif hasVisited("WELBANG-232000 Yoga")>>yoga<<else>>exercise<</if>> gear, and go take a shower.
The bathrooms here are shared (but not co-ed). The shower stalls – in the women's bathroom, anyway – are open to the room, so you get an eyeful of <span class="imageLink"><<link "some naked backpacker">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hostel/girlInShower2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> washing her hair when you walk in.
//[[Take a shower.|WELBANG-235000 Shower scene]]//
<</page>><<silently>>
<<remove-towel-whiteBathSheet>>
<<avatar-getWet>>
<<set $avatar.blink to false>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
You hang your towel on a hook, and step into an empty shower stall. The water pressure's feeble and the temperature is tepid, but it feels refreshing anyway.
You stay under the [[lukewarm spray|WELBANG-236000 Dry off]] for a long time, washing away the sweat and the stress.
<</page>><<silently>>
<<set $avatar.blink to true>>
<<avatar-expr-removeEyelid-closed>>
<<avatar-dryOff>>
<<remove-towel-whiteBathSheet>>
<<remove-shoes-greyToeThongFlipFlops>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
Back in your room, you towel off and dry your hair, and think through the plan one more time. You've decided to visit the Hard Cock Cafe shortly after it opens: hopefully it won't be too crazy busy then, and you'll be able to find a manager to talk to about a bar job.
Afternoon is turning into evening, so it's time to get ready for tonight.
Even though you're calmer after the <<if hasVisited("WELBANG-231000 Khlongside run")>>run<<elseif hasVisited("WELBANG-232000 Yoga")>>yoga<<else>>exercise<</if>> and a shower, there's a tense nauseous sensation in your stomach as you pick out what to wear.
<<link "//Take off your robe.//" "WELBANG-237000 Dress up">>
<<remove-bathRobe-whiteBathRobe>>
<</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Underwear</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "WELBANG-237100 Underwear">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Bottoms</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="bottoms-container">\
<<include "WELBANG-237300 Bottoms">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Tops</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="tops-container">\
<<include "WELBANG-237400 Tops">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Dresses</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="dress-container">\
<<include "WELBANG-237200 Dresses">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-5" name="tabs">\
<label for="tab-5"><div>Shoes</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="shoes-container">\
<<include "WELBANG-237500 Shoes">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "WELBANG-236990 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("clothing/shoes/blackAndWhiteConverseLowTopTrainers/20_shoes-blackAndWhiteConverseTrainers")>>\
<<link "Black Converse low tops">>\
<<wear-hosiery-blackTrainerSocks>>\
<<wear-shoes-blackAndWhiteConverseLowTops>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black Converse low tops">>\
<<remove-hosiery-blackTrainerSocks>>\
<<remove-shoes-blackAndWhiteConverseLowTops>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/blackStrappyGladiatorFlatSandals/20_shoes-blackStrappyGladiatorFlatSandals")>>\
<<link "Black strappy gladiator flat sandals">>\
<<wear-shoes-blackStrappyGladiatorFlatSandals>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black strappy gladiator flat sandals">>\
<<remove-shoes-blackStrappyGladiatorFlatSandals>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/brownAnkleHighStrappyFlatSandals/20_shoes-brownAnkleHighStrappyFlatSandals")>>\
<<link "Brown ankle high strappy flat sandals">>\
<<wear-shoes-brownAnkleHighStrappyFlatSandals>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Brown ankle high strappy flat sandals">>\
<<remove-shoes-brownAnkleHighStrappyFlatSandals>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/creamBSKSandals/20_shoes-creamBSKSandals")>>\
<<link "Cream BSK sandals">>\
<<wear-shoes-creamBSKSandals>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cream BSK sandals">>\
<<remove-shoes-creamBSKSandals>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shoes/greyToeThongFlipFlops/20_shoes-greyToeThongFlipFlops")>>\
<<link "Grey thong flip flops">>\
<<wear-shoes-greyToeThongFlipFlops>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Grey thong flip flops">>\
<<remove-shoes-greyToeThongFlipFlops>>\
<<replace "#shoes-container">>\
<<include "WELBANG-237500 Shoes">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.agency == "cia" or $kate.agency == "csis">>Panties<<elseif $kate.agency == "mi6">>Knickers<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>Undies<<else>>ERROR IN KATE.AGENCY VAR<</if>>
<<if !$avatar.underwear.includes("malaysia/30_pants-blackLaceStringWithBlackCentralBow")>>\
<<link "Black lacy thong">>\
<<wear-knickers-blackLaceStringWithBlackCentralBow>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black lacy thong">>\
<<remove-knickers-blackLaceStringWithBlackCentralBow>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackStringWithPinkPolkaDots/30_pants-blackWithPinkPolkaDotsString")>>\
<<link "Black thong with pink polka dots">>\
<<wear-knickers-blackWithPinkPolkaDotsString>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black thong with pink polka dots">>\
<<remove-knickers-blackWithPinkPolkaDotsString>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedMidiKnickers/30_pants-cherryRedMidiWithSplitSide")>>\
<<link "Cherry red midi <<knickers>>">>\
<<wear-knickers-cherryRedMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red midi <<knickers>>">>\
<<remove-knickers-cherryRedMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("malaysia/30_pants-nudeStringWithTwoBowsOnStraps")>>\
<<link "Nude thong">>\
<<wear-knickers-nudeStringWithTwoBowsOnStraps>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude thong">>\
<<remove-knickers-nudeStringWithTwoBowsOnStraps>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkSheerBikiniCutKnickers/30_pants-pinkSheerBikiniCutPantsWithCentralPinkBow")>>\
<<link "Pink sheer bikini cut <<knickers>>">>\
<<wear-knickers-pinkSheerBikiniCutKnickers>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink sheer bikini cut <<knickers>>">>\
<<remove-knickers-pinkSheerBikiniCutKnickers>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/whiteBrazilianCutPantiesWithLaceHem/30_pants-whiteBrazilianCutWithLaceHem")>>\
<<link "White lacy hem Brazilian <<knickers>>">>\
<<wear-knickers-whiteBrazilianCutWithLaceHem>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White lacy hem Brazilian <<knickers>>">>\
<<remove-knickers-whiteBrazilianCutWithLaceHem>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
Bras
<<if !$avatar.underwear.includes("clothing/underwear/blackPlungeBraWithPinkBow/30_bra-blackPlungeWithPinkBow-rear")>>\
<<link "Black criss-cross plunge bra">>\
<<wear-bra-blackPlungeWithPinkBow>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black criss-cross plunge bra">>\
<<remove-bra-blackPlungeWithPinkBow>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedPlungeBra/30_bra-cherryRedPlunge-rear")>>\
<<link "Cherry red plunge bra">>\
<<wear-bra-cherryRedPlunge>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red plunge bra">>\
<<remove-bra-cherryRedPlunge>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/nudeStraplessBra/30_bra-nudeStrapless-rear")>>\
<<link "Nude strapless bra">>\
<<wear-bra-nudeStrapless>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude strapless bra">>\
<<remove-bra-nudeStrapless>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkSheerBraWithCentralBow/30_bra-pinkSheerBraWithCentralPinkBow-rear")>>\
<<link "Pink sheer bra">>\
<<wear-bra-pinkSheerWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink sheer bra">>\
<<remove-bra-pinkSheerWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/whiteHalfCupBraCentralDart/30_bra-whiteHalfCupCentralDart-rear")>>\
<<link "White half cup bra">>\
<<wear-bra-whiteHalfCupCentralDart>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White half cup bra">>\
<<remove-bra-whiteHalfCupCentralDart>>\
<<replace "#underwear-container">>\
<<include "WELBANG-237100 Underwear">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("clothing/dresses/whiteMiniSmockSummerDress/30_dress-whiteMiniSmockSummerDress3-rear")>>\
<<link "White mini smock summer dress">>\
<<wear-dress-whiteMiniSmockSummerDress>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White mini smock summer dress">>\
<<remove-dress-whiteMiniSmockSummerDress>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/dresses/yellowHalterNeckSummerDress/30_dress-yellowHalterNeckSummerDress-rear")>>\
<<link "Yellow halter-neck summer dress">>\
<<wear-dress-yellowHalterNeckSummerDress>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Yellow halter-neck summer dress">>\
<<remove-dress-yellowHalterNeckSummerDress>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.agency == "cia" or $kate.agency == "csis">>\
Pants
<<include "WELBANG-237310 Trousers">>
<</if>>\
Shorts
<<if !$avatar.clothing.includes("malaysia/20_shorts-blackDenimDaisyDukes")>>\
<<link "Black denim Daisy Dukes">>\
<<wear-shorts-blackDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black denim Daisy Dukes">>\
<<remove-shorts-blackDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/trousers/blackHikerShortsWithBrownBelt/20_shorts-blackHikerShortsWithBrownBelt")>>\
<<link "Black hiker shorts">>\
<<wear-shorts-blackHikerShortsWithBrownBelt>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black hiker shorts">>\
<<remove-shorts-blackHikerShortsWithBrownBelt>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/shorts/blueDenimDaisyDukes2/20_shorts-blueDenimDaisyDukes")>>\
<<link "Blue denim Daisy Dukes">>\
<<wear-shorts-blueDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue denim Daisy Dukes">>\
<<remove-shorts-blueDenimDaisyDukes>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_shorts-darkGreyShortsWithBeltLoops")>>\
<<link "Grey cargo shorts">>\
<<wear-shorts-darkGreyShortsWithBeltLoops>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Grey cargo shorts">>\
<<remove-shorts-darkGreyShortsWithBeltLoops>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
Skirts
<<if !$avatar.clothing.includes("clothing/skirts/bloomingLavenderFlippyMini/20_skirt-bloomingLavenderFlippyMini")>>\
<<link "Blooming lavender flippy mini">>\
<<wear-skirt-bloomingLavenderFlippyMini>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blooming lavender flippy mini">>\
<<remove-skirt-bloomingLavenderFlippyMini>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/skirts/blueAndRedEthnicPatternFlippyMini/20_skirt-blueAndRedEthnicPatternFlippyMini3")>>\
<<link "Blue & red ethnic pattern flippy mini">>\
<<wear-skirt-blueAndRedEthnicPatternFlippyMini>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Blue & red ethnic pattern flippy mini">>\
<<remove-skirt-blueAndRedEthnicPatternFlippyMini>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/skirts/ogKhakiMini/20_skirt-ogKhakiMini")>>\
<<link "OG khaki mini">>\
<<wear-skirt-ogKhakiMini>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// OG khaki mini">>\
<<remove-skirt-ogKhakiMini>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if $kate.agency != "cia" and $kate.agency != "csis">>\
Trousers
<<include "WELBANG-237310 Trousers">>
<</if>>\<<if !$avatar.clothing.includes("malaysia/20_trousers_oliveGreenCapriCargoPants")>>\
<<link "Olive green capris">>\
<<wear-trousers-oliveGreenCapriCargoPants>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Olive green capris">>\
<<remove-trousers-oliveGreenCapriCargoPants>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#bottoms-container">>\
<<include "WELBANG-237300 Bottoms">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("clothing/tops/blackPlungeHalterneckTop/30_top-blackPlungeHalterneckTop-rear")>>\
<<link "Black plunge halterneck top">>\
<<wear-top-blackPlungeHalterneckTop>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black plunge halterneck top">>\
<<remove-top-blackPlungeHalterneckTop>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/20_top-blackRibbedCroppedTshirt-rear")>>\
<<link "Black ribbed button front cropped t-shirt">>\
<<wear-top-blackRibbedButtonUpCroppedTShirt>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black ribbed button front cropped t-shirt">>\
<<remove-top-blackRibbedButtonUpCroppedTShirt>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/blackPlungeHalterneckTop/30_top-darkGreyTankTop-rear")>>\
<<link "Dark grey tank top">>\
<<wear-top-darkGreyTankTop>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Dark grey tank top">>\
<<remove-top-darkGreyTankTop>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/lightGreyScoopNeckSleevelessTankVest/30_top-lightGreyScoopNeckSleevelessTankVest-rear")>>\
<<link "Light grey scoop neck sleeveless tank vest">>\
<<wear-top-lightGreyScoopNeckSleevelessTankVest>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Light grey scoop neck sleeveless tank vest">>\
<<remove-top-lightGreyScoopNeckSleevelessTankVest>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/orangeHighNeckHalterTop/30_top-orangeHighNeckHalterTop-rear")>>\
<<link "Orange high neck halter top">>\
<<wear-top-orangeHighNeckHalterTop>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Orange high neck halter top">>\
<<remove-top-orangeHighNeckHalterTop>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/30_top-whiteCutOutKnitTop-rear")>>\
<<link "White cut out knit top">>\
<<wear-top-whiteCutOutKnitTop>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White cut out knit top">>\
<<remove-top-whiteCutOutKnitTop>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("malaysia/30_top-whiteRibbedCroppedTshirt-rear")>>\
<<link "White ribbed button front cropped t-shirt">>\
<<wear-top-whiteRibbedButtonUpCroppedTShirt>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White ribbed button front cropped t-shirt">>\
<<remove-top-whiteRibbedButtonUpCroppedTShirt>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("clothing/tops/whiteSpaghettiStrapsVestTop/30_top-whiteSpaghettiStrapsVestTop-rear")>>\
<<link "White spaghetti straps vest top">>\
<<wear-top-whiteSpaghettiStrapsVestTop>>\
<<replace "#dress-container">>\
<<include "WELBANG-237200 Dresses">>
<</replace>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White spaghetti straps vest top">>\
<<remove-top-whiteSpaghettiStrapsVestTop>>\
<<replace "#tops-container">>\
<<include "WELBANG-237400 Tops">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WELBANG-236990 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includesAll("dress", "shoes") or (($kate.isWearing.includes("shoes")) and ($kate.isWearing.includes("top") and $kate.isWearing.includesAny("shorts", "skirt", "trousers")))>>\
<<if hasVisited("WELBANG-281000 Shower scene")>> /* kate has met Connor and now needs to go to the interview at his apartment */ \
If you're happy with your look, you can head out to [[the apartment|WELBANG-283000 Title card]].
<<else>>\
If you're happy with your look, you can head out to the [[Patpong red light district|WELBANG-238000 Title card]].
<</if>>\
<</if>>\<<silently>>
<</silently>>\
<a data-passage="WELBANG-239000 Patpong Night Market">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/patpongSunsetTitleCard.jpg"+' >'>>
</a><<silently>>
<<wear-ring-transmitterRing>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-bigBlackSunglasses>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
The sun's going down as you step off the back of a tuk-tuk near the entrance to the Patpong Night Market.
<<image "/locationPhotos/thailand/patpong/patpongStalls.jpg" 100 1000 666 0>>\
Here, endless market stalls fill two long, narrow <div class="tooltip">sois<span class="tooltiptext">streets</span></div>, connected by bustling little <div class="tooltip">troks<span class="tooltiptext">alleys</span></div>. Vendors haggle with a [[slow-walking horde|WELBANG-240000 Entering Patpong]] of tourists, selling knock-off designer clothes, bags, souvenirs and electronics.
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<set $header.line1 to "''PATPONG SOI 1''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You pay the driver and mingle into the tourist swarm. You pass market stalls selling tees, knock-off Louis Vitton <<handbag>>s, ninja knives, and DVDs of upcoming Hollywood blockbusters.
Patpong isn't just a Mecca for shopaholics: it's also the oldest red light district in Bangkok. The <div class="tooltip">soi<span class="tooltiptext">street</span></div> is lined with dozens and dozens of neon-lit bars, names like SUPER PUSSY and KISS BAR hinting at the entertainment inside.
<<image "/locationPhotos/thailand/patpong/barGirls.jpg" 100 1000 564 0>>\
The windows are all covered over, but many bars have little groups of scantily clad Thai bargirls [[out on display|WELBANG-241000 World's biggest whorehouse]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's jarring how blatant the prostitution is. The streets are lined with //women// for sale, and tourists and families and locals – even a lady cop – are just walking along shopping for trinkets and street food, like young women out selling themselves in the street is the most normal thing in the world.
<<image "/locationPhotos/thailand/patpong/whores.jpg" 50 1000 564 0>>\
The bargirls themselves totally ignore you, busy cooing and enticing passing men to venture beyond the black curtains draped over the entryways.
When they tempt one inside, you catch blasts of club music and glimpses of lithe, golden-skinned girls in underwear and spike heels as the curtains are pushed aside.
//[[Look for the Hard Cock Cafe.|WELBANG-242000 Girls everywhere]]//
<</page>><<silently>>
<<set $header.line1 to "''PATPONG SOI 2''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You cut through a busy little <div class="tooltip">trok<span class="tooltiptext">alley</span></div> that connects Patpong 1 to its sister <div class="tooltip">soi<span class="tooltiptext">street</span></div>, Patpong 2.
It's more of the same – market stalls up the middle, golden-skinned bargirls in spike heels and skimpy clothes lining the sides.
<<image "/locationPhotos/thailand/patpong/moreBarGirls.jpg" 50 1000 564 0>>\
Halfway up Patpong 2, you spot a [[familiar neon sign|WELBANG-243000 Hard Cock Cafe sign]], glowing under the dusky sky.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/hccNeonSignPlaceholder.jpg" 0 1000 600 0>>\
It looks just like the other raunchy bars in Patpong – tacky neon, blocked out windows.
There's no bargirl out front, but big posters like the flyer Ian showed you yesterday advertise WHITE GIRLS, BACKPACK GIRLS, THAI GIRLS in English and in Thai.
//[[Go inside.|WELBANG-244000 Entrance tunnel]]//
<</page>><<silently>>
<<set $header.line1 to "''HARD COCK CAFE''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
This is it; one of those moments when an entire operation hinges on one officer and the next couple <<if $kate.agency != "cia" and $kate.agency != "csis">>of <</if>>minutes. You take a deep breath, and push aside the curtain.
You step through into a gloomy, tunnel-like corridor, lit by pink and purple neon. Muffled music booms up ahead. The corridor's lined with velvet rope barriers, like some kind of glamorous walkway, except the velvet's grimy and missing a few sections.
The walls are decorated with framed photos of half-naked women – some posing with rock guitars – and bright neon signs promising you COCKTAILS and ROCK MUSIC and GIRLS GIRLS GIRLS.
//[[Keep going.|WELBANG-245000 Tunnel walk]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It has that pheromonal smell of an old nightclub, built up over decades of partying, smoke, spilled alcohol, body sweat, hairspray, and cheap cologne. Your <<if $kate.lastWornShoes == "blackAndWhiteConverseLowTops">><<trainer>>s<<else>>sandals<</if>> crunch on the sticky carpet as you head inside.
The framed "artworks" on the walls are a mix. Some are <span class="imageLink"><<link "covers from music magazines">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/luiMagazine.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, some are <span class="imageLink"><<link "old vinyl record sleeves">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/roxyMusicCountryLife.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Some are female musicians, posing nude for photoshoots: <span class="imageLink"><<link "Rihanna">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/rihanna.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Lily Allen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/lilyAllen.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Amy Winehouse">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/amyWinehouse.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, plus some rockers from further back you only half recognise. Is that <span class="imageLink"><<link "Belinda Carlisle">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/hardCockCafe/belindaCarlisle.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>?
Interspersed between the music industry stars are shots of girls who've worked here: some posed and glamour style, others candid shots from inside the club. About half are Thai, half are <div class="tooltip">farang<span class="tooltiptext">foreign</span></div>. Lots are topless bartenders, smiling out from behind a neon blue bar. From the hairstyles and the photo quality, some of these photos date back to the 90s.
//[[Keep going.|WELBANG-246000 Tunnel exit]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The corridor twists right, leading up to a set of swing double doors. A pulsing, familiar bassline and thumping drumbeat seep out from behind it, getting louder as you approach.
You feel a chilling sensation as you approach – literally chilling, the aircon is up on full blast.
//[[Push open the doors and enter the Hard Cock Cafe.|WELBANG-247000 HCC main floor]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Like a cowgirl sheriff entering an outlaw saloon, you push open the double doors and step through.
You're greeted by a blasting 80s rock song...and your first real look at the place where a deniable CIA task force wants you to get a job.
<<image "/locationPhotos/thailand/hardCockCafe/hccMainRoomHitmanPlaceholder.jpg" 0 1000 476 0>>\
You're in a dingy strip club, dominated by two big blasts of garish neon – a [[glowing hot pink stripper stage|WELBANG-248000 Stripper stage]] on the left, a glowing pale blue bar counter to the right.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
On stage, a Thai girl with pink hair and thigh high rocker boots is sliding off her bra, hips swinging in time to the old rock song blaring out of the PA.
<<image "/locationPhotos/thailand/hardCockCafe/hccPingPlaceholder.jpg" 0 1000 600 0>>\
//It's a, nice day for a, white wedding
It's a, nice day to, start again!//
//[[Check out the bar.|WELBANG-249000 Topless bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Working the bar are two more Thai girls, and a busty blonde <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girl with pigtails. Right now you're the only girl in here wearing a top.
<<image "/locationPhotos/thailand/hardCockCafe/svetlanaPlaceholder.jpg" 150 1000 748 0>>\
//[[Scope out the crowd.|WELBANG-250000 Brodeo]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Everyone else you see is male. There's maybe twenty guys in here, on their own, in pairs, clustered in little groups. About half are asian, half are <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div>. Some are over at the stage watching the strip show, the rest are propping up the bar.
In stark contrast to the women, they're all fully clothed and many are well past their prime. Lots are so old they probably remember this ancient rock song from when it [[first came out|WELBANG-250100 Male gaze]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A few glance up as you walk in through the double doors. //They probably think I'm one of the strippers.//
You've been dealing with the male gaze ever since you started developing hips and breasts and pretty facial features, but there's something deeply and offensively objectifying about the casual way the men who've noticed you look you over.
Every instinct in your body screams at you to just turn around and walk straight out.
//[[Find a clear spot at the bar.|WELBANG-251000 Landing at the bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Feeling vulnerable and incredibly self conscious – but trying not to show it – you head for the bar. You're instinctively drawn to the other white woman in this place.
Pigtails is busy pouring a pint of Chang when you land at an empty patch of bright blue neon. You were half-expecting to be hit on or hassled, but everyone is just ignoring you so far.
//[[Sweep the crowd for DEVILFISH.|WELBANG-251100 Crowd sweep]]
[[Keep your head down and wait to be served.|WELBANG-252000 Pigtails at work]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Without sparking eye contact – you don't want to send any come-on signals to these guys – you subtly sweep for faces.
None of them look anything like DEVILFISH. Most are old and out-of-shape, perving over half-naked women half their age. A minority are your age, but this is the last place on Earth that you can imagine meeting a guy you like.
Something about the whole setup just feels seedy and...wrong. Any smart, self-respecting woman would run a mile from this place.
//[[Wait for Pigtails.|WELBANG-252000 Pigtails at work]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
This close, you can see over the bar and check out the Hard Cock Cafe bartender uniform in all its glory. Spike heels; a scrappy, brightly-coloured thong, glowing in the club lights, some makeup and jewellery...and that's it.
Pigtails serves a guy his pint of Chang, takes a handful of blue and green banknotes as payment, rings them up in a cash drawer. It's so weird watching a girl do normal bartender stuff, half-naked: her boobs jiggling slightly as she moves, her round, naked ass on full display when she turns her back to get something.
She pours herself a shot; knocks it back with the bearded guy she just served, who's easily old enough to be her dad; then turns her attention [[over to you|WELBANG-253000 Kate meets Pigtails]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Her breasts jiggle springily on her chest as she clip clops over to you. Her nipples are stiff, but so are yours probably: the aircon in here is freezing. It's probably a nice refreshing temperature for a fat hairy guy in his street clothes, but it's giving you goosebumps.
Pigtails greets you with a neutral expression and a curt, upward nod of her chin. So much for a sisterly welcome.
[[I heard there are jobs here?|WELBANG-254000 Can I see your manager?][$temp.playerDecision to "jobs"]]
[[Can I speak to a manager?|WELBANG-254000 Can I see your manager?][$temp.playerDecision to "manager"]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "jobs">>\
"Hi, I heard there are jobs here?" You need to lean in over the bar and shout to be heard.
"Mmhmm," she nods, having already deduced the purpose of your visit. "Wait here. I call manager." Her accent is Slavic brusqueness.
<<elseif $temp.playerDecision == "manager">>\
"Hi. Can I speak to a manager?" You need to lean in over the bar and shout to be heard.
"You want job?" she guesses, looking you over. "Wait here. I call him." Her accent is Slavic brusqueness.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
[[Thanks.|WELBANG-255000 Thanks]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks." She shrugs and turns away, makes a call on a phone behind the bar, a finger pressed in her other ear so she can hear whoever she's talking to.
With her back to you, all you can do is stare at her curvy, round ass cheeks, framed by a tiny scrap of brightly coloured fabric.
After a few moments on the phone, she slams it down, and goes right back to serving drinks. She doesn't look at you again.
//[[Wait at the bar.|WELBANG-256000 Kate waits]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You prop up the bar, waiting, and feeling self-conscious. A few of the men here are eyeing you curiously; the two topless Thai girls working the bar both shoot you looks that feel like disapproval.
Up on stage, the pink-haired Thai girl's thong is coming down in time with the music, sliding slowly and sensuously down the length of her thigh high rocker boots.
//Looks like they go all the way here.// Her bikini line is dyed the same bright pink as the hair on her head.
//[[Wait.|WELBANG-257000 The wait]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Butterflies teem in your stomach as you wait, and wait.
One of the men at the bar is just straight up //staring// at you now. Drinking alone, he must be fifty or older, with ginger-grey hair combed over his balding head and tumbling out of his face in a thick curly beard.
You pretend you haven't noticed, not wanting to give him an excuse to come up and talk to you. You keep your gaze elsewhere, keeping track of his position out of the corner of your eye.
//[[Wait.|WELBANG-258000 Connor arrives]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Finally...the manager arrives. He's a fortysomething expat <div class="tooltip">farang<span class="tooltiptext">white foreigner</span></div>, with thick salt-and-pepper hair, wearing a faded Hawaiian shirt that's too tight on his dad bod.
He heads for Pigtails, but notices you before she can point you out. Ignoring her, he walks straight up to you, brusque purposefulness written all over his face, the look of a man who's been pulled away from something important.
You straighten up as he bears down on you, greeting him with a...
//[[...smile.|WELBANG-259000 Meeting Connor][$temp.playerDecision to "smile"]]
[[...poker face.|WELBANG-259000 Meeting Connor][$temp.playerDecision to "pokerFace"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "smile">>\
<<emote-mouth-smile>>\
<<emote-nose-wrinkle>>\
You smile disarmingly as he comes up to you.
<<elseif $temp.playerDecision == "pokerFace">>\
You gaze back warily, mirroring his serious look.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Yer here for a job?" he has to lean in close to be heard over the loud rock music. Scottish accent? You're pretty tuned into them after Faslane.
[[Yeah!|WELBANG-260000 Yes I am][$temp.playerDecision to "yeah"]]
[[Yes please!|WELBANG-260000 Yes I am][$temp.playerDecision to "yesPlease"]]
<</page>><<silently>>
<<emote-mouth-open>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G",
_kateCupSize to "G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<else>>
(ERROR IN KATEBRASIZE OR KATECUPSIZE TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "yeah">>\
"Yeah!" you shout back.
<<elseif $temp.playerDecision == "yesPlease">>\
"Yes please!" you shout back.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
He nods and looks you up and down, studying your body with a serious, critical eye. <<if $kate.braSize != "large">>"Turn round," he shouts, twirling a finger in the air.
//[[Turn around.|WELBANG-261000 Turn around bright eyes]]//
<<else>>"Nice tits," he shouts. "How big are they?"
[[Pretty big!|WELBANG-260001 Pretty big]]
<<link "_kateBraSize." "WELBANG-260002 Kate tells Connor her bra size">><</link>>
<<link "_kateCupSize cup." "WELBANG-260003 Kate tells Connor her cup size">><</link>>
<</if>>\
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<<emote-brows-raised>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G",
_kateCupSize to "G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<else>>
(ERROR IN KATEBRASIZE OR KATECUPSIZE TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, pretty big!"
He frowns and leans in close, to shout in your ear. "What's. Your. Bra. Size."
<<link "_kateBraSize." "WELBANG-260002 Kate tells Connor her bra size">><</link>>
<<link "_kateCupSize cup." "WELBANG-260003 Kate tells Connor her cup size">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G",
_kateCupSize to "G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<else>>
(ERROR IN KATEBRASIZE OR KATECUPSIZE TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I'm a _kateBraSize," you shout.
"Alright, turn round," he shouts, twirling a finger in the air.
//[[Turn around.|WELBANG-261000 Turn around bright eyes]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G",
_kateCupSize to "G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<else>>
(ERROR IN KATEBRASIZE OR KATECUPSIZE TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"I'm <<if $kate.agency == "mi6">>a<<else>>an<</if>> a _kateCupSize cup," you shout.
"Alright, turn round," he shouts, twirling a finger in the air.
//[[Turn around.|WELBANG-261000 Turn around bright eyes]]//
<</page>><<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn around and show him your back. As you do, you inadvertently make eye contact with the beardy guy, who's watching with interest.
The rock song fades out and a Thai DJ comes on the mic. "Alrigh' guys, give it up for Ping..." One guy whoops and there's a muted smattering of applause from the stage area.
//[[Face forward.|WELBANG-262000 Face front]]//
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You turn back to the manager, whose symmetrical features suggest a much luckier genetic heritage than Beardy. His eyes are blue and he was probably hot in his thirties. Back when the shirt fit.
"Alright, fine," he leans in again, shouting to be heard over the piping synth intro to //Tainted Love.// "You free tomorrow night?"
[[Yeah, no problem!|WELBANG-263000 I'm free]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah!" you shout back. "No problem!" //Did I get the job?//
"Alright!" definitely Scottish. "Got a pen?"
<<link "//Get one from your <<handbag>>.//" "WELBANG-264000 Kate lends a pen">><</link>>
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You pull a pen and notepad from your <<handbag>> and pass them over. He sets the pad on the bar and scrawls down an address.
//Apt 8, 68 Witthayu Rd, Lumpini//
"Be there at five tomorrow," he shouts in your ear, then writes that down. //5PM.// "What's yer name?"
<<link "$kate.cover.firstName." "WELBANG-265000 Bond, Jane Bond">><</link>>
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.cover.firstName," you shout back.
"$kate.cover.firstName. I'm Connor," he shouts. "Seeya tomorrow, five o'clock."
Then he's gone, heading back towards the stage.
You tuck the pad and pen back into your <<handbag>>, and [[get out of there|WELBANG-266000 Escape to Patpong]].
<</page>><<silently>>
<<set $header.line1 to "''PATPONG NIGHT MARKET''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Jesus.// You leave the Hard Cock Cafe as fast as your stride can carry you. You let out a soft sigh of relief when you step back out into the warm noisy hubbub of the night market.
<<image "/locationPhotos/thailand/patpong/patpongStallsAtNight.jpg" 50 1000 450 0>>\
There are normal bars in Patpong – those are the ones with windows you can look through, and see fully dressed bartenders – but they're too close. You feel an instinctive need to get some distance from the hawkers selling knock-offs, and the girls selling their bodies.
Ignoring the chaos, you thread quickly through the crowd and [[get the hell out of Patpong|WELBANG-267000 A normal bar]].
<</page>><<silently>>
<<set $header.line1 to "''SILOM FINANCIAL DISTRICT''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
//I need a drink.// You cross a few <div class="tooltip">sois<span class="tooltiptext">streets</span></div> before you spot what looks like a normal – if hipsterishly run-down – bar on a street corner.
<<image "/locationPhotos/thailand/bangkok/smallsBarExt.jpg" 0 1000 563 0>>\
//[[Head inside.|WELBANG-268000 Smalls Bar]]//
<</page>><<silently>>
<<set $header.line1 to "''SMALLS BAR''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
Inside it's dimly lit, decorated like an old speakeasy from Paris or New Orleans. Jazz is playing softly and all the women are fully clothed. //Thank god.// Stepping back into a normal venue is incredibly reassuring.
//That was so seedy.//
<<image "/locationPhotos/thailand/bangkok/smallsBarInt1.jpg" 150 1000 550 0>>\
//[[Order a drink.|WELBANG-269000 Order a drink]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Sitting alone with your back to a corner, you knock down an icy cold shot of vodka, then wash it down with a long cold gulp of Chalawan Pale Ale.
You feel calmer almost immediately, the alcohol hit working before it's even in your veins.
//[[Better report in.|WELBANG-270000 Reporting in]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Back in the good old days of espionage, field reports were sent via coded radio transmissions, or invisible ink documents handed over in a brush pass or hidden in dead drops.
These days it's mostly done through secure messaging, although that's not without its risks – 30 US agents in China were rounded up and executed at the start of the decade, when a CIA messaging platform got cracked by Iranian and Chinese intelligence.
Some field operators switched over to commercial platforms after that; Ian is one of them. Checking one more time that there are no cameras or reflective surfaces behind you, you get out your phone and open [[Signal|WELBANG-271000 Signal]], a secure messaging app.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Back in Faslane, you memorised dozens of codewords to report various mission events.
//[[Send the codeword for "Left the target, follow up meeting set"|WELBANG-272000 Good comms procedure]]
[[Just report it in English.|WELBANG-273000 Bad comms procedure]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 20:20
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Mango b 217<span class="tooltiptext">I'm now outside the target. A follow-up meeting has been set tomorrow at 5PM.</span></div>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
rgr good work
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
The reply was instant; he must have been waiting for your report.
//[[Ask him to check out the address.|WELBANG-274000 Kate runs the address]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 20:20
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Met the mgr. Meeting set for tomorrow 1700
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
use proper comms procedure
</div>\
<div class="messageSignal last">\
where is the meeting
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
</div>\
His replies came back right away; he must have been waiting for your report.
//[[Ask him to check out the address.|WELBANG-274000 Kate runs the address]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 20:20
</div>\
<<if hasVisited("WELBANG-272000 Good comms procedure")>>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Mango b 217<span class="tooltiptext">I'm now outside the target. A follow-up meeting has been set tomorrow at 5PM.</span></div>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
(Ian) rgr good work
</div>\
</div>\
<<else>>\
<div class="pc messages">\
<div class="messageSignal last">\
Met the mgr. Meeting set for tomorrow 1700
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
use proper comms procedure
</div>\
<div class="messageSignal last">\
where is the meeting
</div>\
<</if>>\
<div class="pc messages">\
<div class="messageSignal last">\
Please check Apt 8, 68 Witthayu Rd, Lumpini
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
rgr stand by
</div>\
<div class="messageSignal">\
apartment nearby
</div>\
<div class="messageSignal">\
landlord is Thai letting agency in Bangkok
</div>\
<div class="messageSignal">\
looks normal
</div>\
<div class="messageSignal last">\
👍🏼 attend it, i'll be nearby
</div>\
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
//[[Okay.|WELBANG-275000 Wilco]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 20:20
</div>\
<<if hasVisited("WELBANG-272000 Good comms procedure")>>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Mango b 217<span class="tooltiptext">I'm now outside the target. A follow-up meeting has been set tomorrow at 5PM.</span></div>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
(Ian) rgr good work
</div>\
</div>\
<<else>>\
<div class="pc messages">\
<div class="messageSignal last">\
Met the mgr. Meeting set for tomorrow 1700
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
use proper comms procedure
</div>\
<div class="messageIOS last">\
where is the meeting
</div>\
<</if>>\
<div class="pc messages">\
<div class="messageSignal last">\
Please check Apt 8, 68 Witthayu Rd, Lumpini
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
rgr stand by
</div>\
<div class="messageSignal">\
apartment nearby
</div>\
<div class="messageSignal">\
landlord is Thai letting agency in Bangkok
</div>\
<div class="messageSignal">\
looks normal
</div>\
<div class="messageSignal last">\
👍🏼 attend it, i'll be nearby
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Wilco
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
get.the.job. good luck
</div>\
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
The message thread will automatically delete itself once you [[close the app|WELBANG-276000 Drink up]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You put your phone away and drink up, reflecting on your first experience inside the Hard Cock Cafe.
Jesus, nothing about that place was good for women. You're not looking forward to going back.
//And that's where DEVILFISH likes to hang out in Bangkok.// You gaze down at the chunky little ring on your finger, very grateful you have a means of summoning in some tall, heavily armed backup. After visiting that place, you can easily imagine needing it.
You finish your beer and [[head back to the hostel|WELBANG-277000 Title card]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shorts-offWhiteVelour70sTrackShorts>>
<<wear-top-petrolBlueDeathHornetCropTop>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<</silently>>\
<a data-passage="WELBANG-278000 Title card">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<page>>\
//[[NEXT DAY...|WELBANG-279000 Next day]]//
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You mooch around the hostel for most of the next day, not in the mood for sightseeing. At lunch you send out for noodles, and the landlady's son Wun Sen brings it up to your room when it arrives.
You [[munch them down absently|WELBANG-280000 Pot doodle]], lost in thought about the meeting later. You're not crazy about showing up to some strange apartment for a job interview...but at least you'll have armed backup lurking nearby.
Probably not many girls who turn up to apartment 8, 68 Witthayu Road can say that.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Sitting in a single bed, eating noodles out of a carton...this really is like being back at <<uni>>. Just hotter and sweatier, and a whole different class of stress.
You check the time...three o'clock. The meeting's in two hours; you'd better [[shower and get ready|WELBANG-281000 Shower scene]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<avatar-getWet>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shoes-greyToeThongFlipFlops>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<set $avatar.blink to false>>
<<avatar-expr-eyelid-closed>>
<</silently>>\
<<header>>\
<<page>>\
The drains are backed up, so you have to step in some other chick's washing water. //Gross.// You shower off [[as fast as you can|WELBANG-282000 Dress up]].
<</page>><<silently>>
<<set $avatar.blink to true>>
<<avatar-expr-removeEyelid-closed>>
<<avatar-dryOff>>
<<remove-towel-whiteBathSheet>>
<<remove-shoes-greyToeThongFlipFlops>>
<<wear-bathRobe-whiteBathRobe>>
<</silently>>\
<<header>>\
<<page>>\
Back in your room, it's time to <<link "get ready" "WELBANG-237000 Dress up">>
<<remove-bathRobe-whiteBathRobe>>
<</link>> for your meeting.
<</page>><<silently>>
<<wear-ring-transmitterRing>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<a data-passage="WELBANG-284000 Lumphini">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/lumphiniDistrictTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''LUMPHINI DISTRICT''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You take the skytrain again, this time getting off at BTS Ratchadamri, one stop along from BTS Sala Daeng.
Climbing down from the platform to street level, you emerge in the Lumphini District – the busy <div class="tooltip">sois<span class="tooltiptext">streets</span></div> around Lumpini Park, one of the largest green spaces in Bangkok.
This area's dominated by skyscrapers packed with offices, shopping malls, embassies and apartments. The address you've been given is on the other side of the park, so you'll need [[transport|WELBANG-285000 Taxi]] if you don't want to turn up looking like a sweaty mess.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-37000 Taxi ride") or hasVisited("WELBANG-46000 Phaya Thai taxi")>>\
You flag down a blue and yellow taxi and slide into the cold air-conditioned backseat.
<<else>>\
Taxis are everywhere, painted in a rainbow of bright, cheery colours. You flag down one in blue and yellow, and slide into the backseat.
It's clean and air-conditioned, and smells of fresh new leather. A Buddhist charm dangles from the rearview mirror.
<</if>>\
Crawling through the traffic isn't much faster than walking, but the aircon makes it much more comfortable. You gaze out at the park and the skyscrapers, watching the neighbourhood turn slightly downmarket as you get [[closer to your destination|WELBANG-286000 Dropped off]] – skyscrapers and shopping malls turning to apartment blocks and mom-and-pop stores.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Ten minutes or so later, the taxi drops you in a side-<div class="tooltip">soi<span class="tooltiptext">street</span></div>, a few blocks from the park. The meter reads ฿44 (<<if $kate.agency == "cia">>$1.32<<elseif $kate.agency == "mi6">>88p<<elseif $kate.agency == "asis">>$1.76<<elseif $kate.agency == "csis">>$1.76<<elseif $kate.agency == "nzsis">>$1.76<<else>>ERROR IN KATE.AGENCY VAR<</if>>). How do these guys make a living?
<<image "/locationPhotos/thailand/bangkok/priveBySansiri.jpg" 0 1000 453 0>>\
Heat washes over you as soon as you step back out into the world. The driver heads back to the main roads to hunt down another <<if $kate.agency == "cia">>buck thirty<<elseif $kate.agency == "mi6">>90p<<elseif $kate.agency == "asis">>dollar eighty<<elseif $kate.agency == "csis">>dollar eighty<<elseif $kate.agency == "nzsis">>dollar eighty<<else>>ERROR IN KATE.AGENCY VAR<</if>> fare, leaving you standing alone outside a nondescript lowrise apartment block.
//[[Head inside.|WELBANG-287000 Apartment entry]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
There's a bank of mailboxes and an entry keypad intercom outside the front door.
You learned <<if $kate.agency == "asis">>on<<else>>at<</if>> <<recruitHQ>> just how easy these systems are to defeat. All you need is a screwdriver and a magnet.
But today you have an invite.
//[[Buzz up to apartment 8.|WELBANG-288000 Kate buzzes up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You press the buzzer and wait.
After a few seconds, a gruff male voice comes over the intercom. "Hullo?" Sounds Scottish.
<<link "It's $kate.cover.firstName." "WELBANG-289000 Come on up">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's $kate.cover.firstName."
"Oh aye. Come on up. Second floor." A click as the front door unlocks. <<if $kate.agency == "cia" or $kate.agency == "csis">>He's British; he probably means the third floor.<</if>>
//[[Enter the building.|WELBANG-290000 Apt lobby]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<<set $header.line1 to "''68 WITTHAYU ROAD''",
$header.line2 to "LUMPHINI DISTRICT / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step into an air-conditioned lobby, decorated with ersatz art prints and two plastic plants. There's <<if $kate.agency == "cia" or $kate.agency == "csis">>an [[elevator|WELBANG-290100 Lift]]<<else>>a [[lift|WELBANG-290100 Lift]]<</if>> and a [[staircase|WELBANG-290200 Stairs]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Riding the <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> gives you a last chance to check your hair in the mirror.
The doors swoosh open and you step out into a nondescript corridor. You quickly find the door marked ''๘8''.
//[[Knock and wait.|WELBANG-291000 Knock and wait]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You climb the stairs to the <<if $kate.agency == "cia" or $kate.agency == "csis">>third<<else>>second<</if>> floor, avoiding the unnecessary danger of <<if $kate.agency == "cia" or $kate.agency == "csis">>an elevator<<else>>a lift<</if>>.
Emerging on a nondescript corridor, you quickly find the door marked ''๘8''.
//[[Knock and wait.|WELBANG-291000 Knock and wait]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tap on the door and wait.
You hear movement inside, then Connor opens the door. He's casually dressed, in a t-shirt and shorts. Again, the shirt's too clingy on the beer belly. Maybe he still buys clothes in the size he //used// to be.
"Come in, come in," he says.
//[[Enter the apartment.|WELBANG-292000 First impressions]]//
<</page>><<silently>>
<<set $header.line1 to "''APARTMENT ๘8''",
$header.line2 to "68 WITTHAYU ROAD / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You walk into a small and modern open-plan apartment. The layout reminds you of a scaled-up <<if $kate.agency == "cia" or $kate.agency == "csis">>RV<<elseif $kate.agency == "mi6">>caravan<<else>>camper van<</if>>, compact furniture around a walkway up the middle. Mirrored walls make the place look bigger than it really is.
<<image "/locationPhotos/thailand/bangkok/connorsApartment.jpg" 100 1000 500 0>>\
It's a very masculine space – bare walls, no cushions, few signs that it's actually occupied except electronic gadgets.
It has a slightly musky "guy smell" about it – not unpleasant, just there. A <<if $kate.agency == "mi6">>football<<else>>soccer<</if>> match is paused on the TV.
[[Cool place.|WELBANG-293000 Take a seat][$temp.playerDecision to "coolPlace"]]
//[[Look around.|WELBANG-293000 Take a seat][$temp.playerDecision to "takeALookAround"]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "coolPlace">>\
<<emote-mouth-talking>>\
"Cool place," you tell him.
"Thanks, I like it. Siddown," he says, indicating the couch.
<<elseif $temp.playerDecision == "takeALookAround">>\
You gaze around the little place. The bookshelves are empty, but it //does// look lived in; maybe he's just not a reader. It seems like it's just the two of you for this meeting – unless there's someone in the bathroom, or hiding in the <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.
"Siddown," Connor says, pointing to the couch.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
//[[Take a seat.|WELBANG-294000 Casting couch]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You sit, perching a little nervously, hoping this isn't a casting couch.
Thankfully, he pulls out one of the dining chairs, and sits across from you.
"So," he begins. "How'd you hear about the club?"
<span class="greyedOut">//[Lie]//</span> [[Some guys on Khao San Road.|WELBANG-295000 Word of mouth][$temp.playerDecision to "ksrGuys"]]
<span class="greyedOut">//[Lie]//</span> [[This girl at a half moon party.|WELBANG-295000 Word of mouth][$temp.playerDecision to "halfMoonGirl"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "ksrGuys">>\
"Some guys on Khao San told me about it," you lie.
"Oh aye? What'd they say?"
<<elseif $temp.playerDecision == "halfMoonGirl">>\
"This girl at a half moon told me about it," you lie.
"Oh aye?" He looks interested. "Who's that?"
"Can't remember her name. <<if $kate.agency == "asis">>English<<else>>Aussie<</if>> girl? Mousey blonde? Um...kind of a big forehead?"
He shrugs, losing interest in your intentionally vague and useless description. "What'd she say?"
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
[[You hire backpackers to work topless.|WELBANG-296000 Topless backpackers]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"That you hire backpackers to work topless."
"Aye, that's right. As <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> too," he adds. "Dancin', shaggin'...less hours, better money. You ever considered that?"
[[No thanks.|WELBANG-297000 No thank you]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"No thanks."
"Aye, well, your choice, obviously. And you can always change yer mind later, most girls do. So...what's your story? How long you been in Thailand?"
<span class="greyedOut">//[Lie]//</span> [[About nine months.|WELBANG-298000 Nine months]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"About nine months," you lie. "With the odd border run."
"Oh aye. Can I see yer passport?"
[[Sure.|WELBANG-299000 Passport inspection]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sure." You fish it out of your <<handbag>>, and hand it over.
<<if $kate.agency == "csis">><<if $kate.ethnicity == "French Canadian">>"Huh, thought you was French,"<<else>>"Huh, thought you was a Yank,"<</if>> he comments. <<elseif $kate.agency == "nzsis">>"Huh, thought you was an Aussie," he comments. "Sorry." <</if>>He flips through it perfunctorily, looking over $kate.cover.firstName $kate.cover.surname's visa stamps and ID page.
"Laos," he murmurs. "Where did you stay when you were there?"
<span class="greyedOut">//[Lie]//</span> [[Vientiane.|WELBANG-300000 Laos legend Vientiane]]
<span class="greyedOut">//[Lie]//</span> [[Little village over the border.|WELBANG-300100 Laos legend village]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Vientiane," you lie.
"Oh aye? That's, ah, got some monuments, right?"
"Yeah, they're pretty." A real interrogator would keep drilling into you here – //where are they, what do they look like, where are they in relation to your hotel.//
This guy just accepts that answer and moves on. A little thrill of superiority bubbles up at the indication that you're up against an amateur. //Have to work a teensy bit harder than that to trip up <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer, <<if $kate.agency == "cia" or $kate.agency == "csis">>pal<<else>>mate<</if>>.//
"Yer just back from Malaysia," he says. "What was that like?"
[[Touristy.|WELBANG-301000 Kate reviews Malaysia][$temp.playerDecision to "touristy"]]
[[Expensive.|WELBANG-301000 Kate reviews Malaysia][$temp.playerDecision to "expensive"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Little village over the border," you lie.
"Oh aye? What's it called?"
"Um...Muang something? Muang Pheir? It's just across the Mekong." Appearing vague then supplying details is one of the oldest counter-interrogation tricks in the book, but this guy just buys it and moves on. //Have to work a bit harder than that to trip up <<if $kate.agency == "cia">>a CIA<<elseif $kate.agency == "mi6">>an MI6<<elseif $kate.agency == "asis">>an ASIS<<elseif $kate.agency == "csis">>a CSIS<<elseif $kate.agency == "nzsis">>an SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> officer.//
"Yer just back from Malaysia," he says. "What was that like?"
[[Touristy.|WELBANG-301000 Kate reviews Malaysia][$temp.playerDecision to "touristy"]]
[[Expensive.|WELBANG-301000 Kate reviews Malaysia][$temp.playerDecision to "expensive"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "touristy">>\
"Nice. A bit touristy," you shrug. "I prefer it here."
<<elseif $temp.playerDecision == "expensive">>\
<<emote-mouth-smirk>>\
"Very expensive."
<<else>>\
//[ERROR IN TEMP.PLAYERDECISION VAR]//
<</if>>\
"Aye," he smiles knowingly. "So, let me guess. Yer travel money's running out, maybe some pals have gone home, but you wanna stay on. Right?"
[[Right.|WELBANG-302000 That's right]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Right," you nod, happy to let him join up the dots of your cover story for you. "Exactly."
"And no blue book, I take it?"
He means a Non-B Visa, the kind that entitles a foreigner to work in the Kingdom. There's no way a normal backpacker would have one of those, so it's not part of your <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div>.
[[No.|WELBANG-302100 No blue book]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"No," you shake your head.
"Got a boyfriend out here?" he asks.
[[No.|WELBANG-302200 Single]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G",
_kateCupSize to "G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<else>>
(ERROR IN KATEBRASIZE OR KATECUPSIZE TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"No."
"Okay." He nods, like he's heard the story a hundred times before. "Well, you look okay, and we can get around the blue book. Shifts are four 'til two, and the pay's <div class="tooltip">600 Baht<span class="tooltiptext"><<if $kate.agency == "cia">>$18<<elseif $kate.agency == "mi6">>£12<<elseif $kate.agency == "asis">>$24<<elseif $kate.agency == "csis">>$24<<elseif $kate.agency == "nzsis">>$24<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, cash each day. If the punters like you, we can give you enough shifts to earn <div class="tooltip">nine, ten K<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$270-300<<elseif $kate.agency == "mi6">>£180-200<<elseif $kate.agency == "asis">>$360-400<<elseif $kate.agency == "csis">>$360-400<<elseif $kate.agency == "nzsis">>$360-400<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in a month. How's that sound?"
[[Sounds great.|WELBANG-303000 Sounds great]]
[[600 Baht for ten hours' work?|WELBANG-302300 60 Baht an hour?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"600 Baht for ten hours?" You quickly do the math<<if $kate.agency != "cia" and $kate.agency != "csis">>s<</if>> in your head – that's...<<if $kate.agency == "cia">>$1.80<<elseif $kate.agency == "mi6">>£1.20<<elseif $kate.agency == "asis">>$2.40<<elseif $kate.agency == "csis">>$2.40<<elseif $kate.agency == "nzsis">>$2.40<<else>>ERROR IN KATE.AGENCY VAR<</if>> an hour. Topless.
"<div class="tooltip">Bargirls<span class="tooltiptext">club prostitutes</span></div> earn more," he says. "A lot more."
[[Never mind. 600's fine.|WELBANG-303000 Sounds great]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-302300 60 Baht an hour?")>>\
"Never mind," you tell him. "Six hundred's fine."
<<else>>\
"Sounds great," you say, bobbing your head along.
<</if>>\
"You keep half yer tips," he says. "Word o' warning, though, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> dinnay like it if it rains too much money at the bar. Way they see it: you wanna make bank, you oughta be working upstairs, same as them."
This is good, he's talking like you're already hired.
[[Okay, I'll be careful.|WELBANG-304000 I'll be careful]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you nod, "I'll be careful."
"I'm serious," he says. "Last time a barmaid got too big fer her knickers, she got taken out the back and glassed. Got forty stitches and went home looking like Freddie fuckin' Krueger. You dinnay want to piss these girls off."
"Wow," you murmur agreeably, but in your head you're calculating a new angle. //Could he be talking about the lost agent? Is that why she vanished?//
You'll have to find out – if it turns out she went missing because of a catfight with some hooker, the <div class="tooltip">OC<span class="tooltiptext">organised crime</span></div> threat might be [[overstated|WELBANG-305000 Stand up]]. That could have a big impact on the mission profile.
<</page>><<silently>>
<<set $kate.wasWearing to $kate.isWearing>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Alright," he nods, and you feel a little rush of excitement in your stomach. //Have I got the job?//
Then he keeps talking. "Let's take a look at ya, then. Stand up, kit off."
[[Right here?|WELBANG-306000 Here?]]
[[Okay.|WELBANG-305010 Knew it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck.// "Okay," you nod. You knew this was coming.
<<link "//Take off your <<handbag>>.//" "WELBANG-308000 Bag off">><</link>>
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<<if $kate.agency == "cia">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "mi6">>
<<set _kateBraSize to "34G",
_kateCupSize to "G">>
<<elseif $kate.agency == "asis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<elseif $kate.agency == "csis">>
<<set _kateBraSize to "34F",
_kateCupSize to "F">>
<<elseif $kate.agency == "nzsis">>
<<set _kateBraSize to "12F",
_kateCupSize to "F">>
<<else>>
(ERROR IN KATEBRASIZE OR KATECUPSIZE TEMP VAR)
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...here?"
"Aye," he nods impatiently. "Let's see what I'm supposed to be hiring."
<<if $kate.isWearing.includes("dress") and not $kate.isWearing.includes("knickers")>>\
[[Uh...I'm not wearing underwear.|WELBANG-306100 No knickers objection]]
<</if>>\
[[Um...okay.|WELBANG-307000 Um, okay]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm, um, not wearing underwear," you tell him. Your cheeks feel hot.
He shrugs unsympathetically.
[[Um...okay.|WELBANG-307000 Um, okay]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Um...okay." This wasn't entirely unexpected...but in the last couple <<if $kate.agency != "cia" and $kate.agency != "csis">>of <</if>>minutes you'd managed to convince yourself it wasn't happening.
The casual, expectant look on his face tells you that it most definitely is.
<<link "//Take off your <<handbag>>.//" "WELBANG-308000 Bag off">><</link>>
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You unsling your bag, and set it aside on the couch. Now neither of you are talking, the quiet whoosh of the aircon seems very loud.
//[[Stand up.|WELBANG-309000 Stand up]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your mouth feels dry as you rise to your feet. You didn't notice before, but his blue eyes have a purplish tinge. Like bruises.
They watch you, cool and expectant.
//Here goes.//
<<if $kate.isWearing.includes("dress")>>\
//[[Take off your dress.|WELBANG-309100 Dress off]]//
<<else>>\
//[[Take off your top.|WELBANG-310000 Top off]]//
<</if>>\
<</page>><<silently>>
<<if $kate.lastWornDress == "whiteMiniSmockSummerDress">>
<<set _undressingDescription to "pull it up and off over your naked body">>
<<elseif $kate.lastWornDress == "whiteMiniSmockSummerDress">>
<<set _undressingDescription to "pull it up and off over your head">>
<<elseif $kate.lastWornDress == "yellowHalterNeckSummerDress" and not $kate.isWearing.includesAny("bra", "knickers")>>
<<set _undressingDescription to "reach behind your neck and tug the bow loose. The loose light dress slips quickly down over your naked body">>
<<elseif $kate.lastWornDress == "yellowHalterNeckSummerDress">>
<<set _undressingDescription to "reach behind your neck and tug the bow loose. The loose light dress slips quickly down over your body">>
<<else>>
<<set _undressingDescription to "//[ERROR IN UNDRESSINGDESCRIPTION TEMP VAR]//">>
<</if>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.lastWornDress == "whiteMiniSmockSummerDress">>This dress goes on and off like a t-shirt. <</if>>Haltingly, you _undressingDescription.
<<if $kate.isWearing.includesAll("bra", "knickers")>>\
Now you're down to your underwear in some guy's bachelor pad. Not the very first time //that's// ever happened, of course. But...definitely a first for a job interview.
Connor watches expectantly, waiting for you to take off your bra.
//[[Take it off.|WELBANG-312000 Bra off]]//
<<elseif $kate.isWearing.includes("bra")>>\
A moment's break in eye contact as you turn to drop it on the couch. When you look back he's watching dispassionately, his face unreadable.
//[[Take off your bra.|WELBANG-309110 Dress commando nude scene]]//
<<elseif $kate.isWearing.includes("knickers")>>\
A moment's break in eye contact as you turn to drop it on the couch. When you look back, he's gazing at your bared breasts.
This doesn't feel like other times you've disrobed in front of a man: at least those times you've always known he's attracted to you. With Connor, you feel more naked, [[more vulnerable|WELBANG-313000 Turned on]] to his judgement.
<<else>>\
<<emote-mouth-sexy>>\
<<silently>>
<<first>>
<<addNotification "Arousal +1" "Stripping for him is turning you on, even though he's not your type.">>
<</first>>
<</silently>>\
It's weird because despite feeling vulnerable and despite not being attracted to him – you're //not// – your nipples stiffen and you feel a tingling in your groin anyway as his eyes run appraisingly over you. //What the hell is wrong with me.//
<<if $kate.tattoos.includes("leftHipBoneJacob")>>\
"Who's Jacob?" he asks.
[[First boyfriend.|WELBANG-316000 Jacob][$temp.playerDecision to "firstBF"]]
[[An ex.|WELBANG-316000 Jacob][$temp.playerDecision to "anEx"]]
[[My cat.|WELBANG-316000 Jacob][$temp.playerDecision to "myCat"]]
<<elseif $kate.braSize == "small">>\
"Built like a surfboard," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"At least the nipple bling's something to look at. Turn round," he commands, with a twirling finger.<<else>>"They'll need pierced," he says, pointing at your chest. "Or there's fuck all to look at. Turn round."<</if>>
<<elseif $kate.braSize == "medium">>\
"Nice," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"I like the nipple bling. Turn round," he commands, with a twirling finger.<<else>>"Let's see the arse."<</if>>
<<elseif $kate.braSize == "large">>\
"Those tits could hammer a nail," he chuckles, "very nice. Turn round."
<<else>>\
[ERROR IN KATE.BRASIZE VAR]
<</if>>\
<<if not $kate.tattoos.includes("leftHipBoneJacob")>>\
//[[Turn around.|WELBANG-317000 Turn around]]//
<</if>>\
<</if>>\
<</page>><<silently>>
<<removeBra>>
<<emote-mouth-sexy>>
<<first>>
<<addNotification "Arousal +1" "Stripping for him is turning you on, even though he's not your type.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You unhook your bra and slide it off. It's weird because despite feeling vulnerable and despite not being attracted to him – you're //not// – you feel a tingling in your groin anyway as you undress in front of him. //What the hell is wrong with me.//
His eyes run appraisingly down your naked body. \
<<if $kate.tattoos.includes("leftHipBoneJacob")>>\
"Who's Jacob?" he asks.
[[First boyfriend.|WELBANG-316000 Jacob][$temp.playerDecision to "firstBF"]]
[[An ex.|WELBANG-316000 Jacob][$temp.playerDecision to "anEx"]]
[[My cat.|WELBANG-316000 Jacob][$temp.playerDecision to "myCat"]]
<<elseif $kate.braSize == "small">>\
"Built like a surfboard," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"At least the nipple bling's something to look at. Turn round," he commands, with a twirling finger.<<else>>"They'll need pierced," he says, pointing at your chest. "Or there's fuck all to look at. Turn round."<</if>>
<<elseif $kate.braSize == "medium">>\
"Nice tits," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"I like the nipple bling. Turn round," he commands, with a twirling finger.<<else>>"Let's see the arse."<</if>>
<<elseif $kate.braSize == "large">>\
"Those tits could hammer a nail," he chuckles appreciatively, "very nice. Turn round."
<<else>>\
[ERROR IN KATE.BRASIZE VAR]
<</if>>\
<<if not $kate.tattoos.includes("leftHipBoneJacob")>>\
//[[Turn around.|WELBANG-317000 Turn around]]//
<</if>>\
<</page>><<silently>>
<<if $kate.lastWornTop == "blackRibbedButtonUpCroppedTShirt" or $kate.lastWornTop == "whiteRibbedButtonUpCroppedTShirt">>
<<set _undressingDescription to "unbutton your t-shirt, and slip it off">>
<<else>>
<<set _undressingDescription to "reach down to the hem of your top, and draw it up off over your head">>
<</if>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
Haltingly, you _undressingDescription.
<<if $kate.isWearing.includes("bra")>>\
He watches dispassionately, his face unreadable.
//[[Take off your bra.|WELBANG-312000 Bra off]]//
<<else>>\
This doesn't feel like other times you've bared your breasts in front of a man: at least those times you've always known he's attracted to you. With Connor, you feel more naked, more vulnerable to his judgement.
<<if $kate.isWearing.includes("shorts")>>\
"Shorts too," he prompts.
<<elseif $kate.isWearing.includes("skirt")>>\
"Skirt too," he prompts.
<<elseif $kate.isWearing.includes("trousers")>>\
"Breeks too," he prompts, pointing to your capris.
<<else>>\
//[ERROR IN KATE.ISWEARING ARRAY]//
<</if>>\
<<if not $kate.isWearing.includes("knickers")>>\
[[I'm not wearing underwear.|WELBANG-312100 Commando objection]]
<<else>>\
<<if $kate.isWearing.includes("skirt")>>\
//[[Take it off.|WELBANG-311000 Shorts off]]//
<<else>>\
//[[Take them off.|WELBANG-311000 Shorts off]]//
<</if>>\
<</if>>\
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.isWearing.includes("knickers")>>\
<<if $kate.isWearing.includes("shorts")>>\
<<removeShorts>>\
"Mm-hm." You reach down to the waistband of your shorts, unbutton them, slide them down your long legs and off.
<<elseif $kate.isWearing.includes("trousers")>>\
<<removeTrousers>>\
"Mm-hm." You undo your <<trousers>>, slide them down, and step out of them.
<<elseif $kate.isWearing.includes("skirt")>>\
<<removeSkirt>>\
"Mm-hm." You unzip your skirt, slip it down your long legs and off.
<<else>>\
//[ERROR IN KATE.ISWEARING.ARRAY]//
<</if>>\
Now you're <<link "down to your <<knickers>>" "WELBANG-313000 Turned on">><</link>> in some guy's bachelor pad. Not the first time //that's// ever happened, of course, but it's definitely a first for a job interview.
<<else>>\
<<silently>>
<<emote-mouth-calm>>
<<first>>
<<addNotification "Arousal +1" "Stripping for him is turning you on, even though he's not your type.">>
<</first>>
<</silently>>\
A moment's hesitation. \
<<if $kate.isWearing.includes("shorts")>>\
<<removeShorts>>\
Then you reach down to the waistband of your shorts, unbutton them, slide them down your long legs and off.
<<elseif $kate.isWearing.includes("trousers")>>\
<<removeTrousers>>\
Then you unfasten your <<trousers>>, slide them down your legs, and step out of them.
<<elseif $kate.isWearing.includes("skirt")>>\
<<removeSkirt>>\
Then you unzip your skirt, slip it down your long legs and off.
<<else>>\
//[ERROR IN KATE.ISWEARING.ARRAY]//
<</if>>\
It's weird because despite feeling vulnerable and despite not being attracted to him – you're //not// – you feel a tingling in your groin anyway as his eyes run appraisingly over you. //What the hell is wrong with me.//
<<if $kate.tattoos.includes("leftHipBoneJacob")>>\
"Who's Jacob?" he asks.
[[First boyfriend.|WELBANG-316000 Jacob][$temp.playerDecision to "firstBF"]]
[[An ex.|WELBANG-316000 Jacob][$temp.playerDecision to "anEx"]]
[[My cat.|WELBANG-316000 Jacob][$temp.playerDecision to "myCat"]]
<<elseif $kate.braSize == "small">>\
"Built like a surfboard," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"At least the nipple bling's something to look at. Turn round," he commands, with a twirling finger.<<else>>"They'll need pierced," he says, pointing at your chest. "Or there's fuck all to look at. Turn round."<</if>>
<<elseif $kate.braSize == "medium">>\
"Nice," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"I like the nipple bling. Turn round," he commands, with a twirling finger.<<else>>"Let's see the arse."<</if>>
<<elseif $kate.braSize == "large">>\
"Those tits could hammer a nail," he chuckles, "very nice. Turn round."
<<else>>\
[ERROR IN KATE.BRASIZE VAR]
<</if>>\
<<if not $kate.tattoos.includes("leftHipBoneJacob")>>\
//[[Turn around.|WELBANG-317000 Turn around]]//
<</if>>\
<</if>>\
<</page>><<silently>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
You unhook your bra and slide it off.
A moment's break in eye contact as you turn to drop the <<if $kate.lastWornBra == "pinkSheerWithCentralBow" or $kate.lastWornBra == "whiteHalfCupCentralDart">>pretty<<elseif $kate.lastWornBra == "cherryRedPlunge">>brightly coloured<<else>>feminine<</if>> contraption of wire and <<if $kate.lastWornBra == "pinkSheerWithCentralBow" or $kate.lastWornBra == "whiteHalfCupCentralDart">>lace<<else>>lycra<</if>> onto his couch. When you look back, he's gazing at your chest, watching your nipples harden in the aircon.
This doesn't feel like other times you've undressed in front of a man: at least those times you've always known he's attracted to you. With Connor, you feel more naked, <<if $kate.isWearing.includesAny("shorts", "skirt", "trousers")>>more vulnerable<<else>>[[more vulnerable|WELBANG-313000 Turned on]]<</if>> to his judgement.
<<if $kate.isWearing.includesAny("shorts", "skirt", "trousers")>>\
<<if $kate.isWearing.includes("shorts")>>\
"Shorts too," he prompts.
<<elseif $kate.isWearing.includes("skirt")>>\
"Skirt too," he prompts.
<<elseif $kate.isWearing.includes("trousers")>>\
"Breeks too," he prompts, pointing to your capris.
<<else>>\
//ERROR IN KATE.ISWEARING ARRAY//
<</if>>\
<<if not $kate.isWearing.includes("knickers")>>\
[[I'm not wearing underwear.|WELBANG-312100 Commando objection]]
<<else>>\
<<link "//Take <<if $kate.isWearing.includes('skirt')>>it<<else>>them<</if>> off.//" "WELBANG-311000 Shorts off">><</link>>
<</if>>\
<</if>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I'm, um, not wearing underwear," you tell him.
He shrugs unsympathetically, clearly expecting you to take them off anyway.
[[But the job's topless.|WELBANG-312200 Commando topless objection]]
<<link "//Take <<if $kate.isWearing.includes('skirt')>>it<<else>>them<</if>> off.//" "WELBANG-311000 Shorts off">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"But the job's topless," you protest.
"Interview's not. C'mon," he wiggles his finger impatiently.
[[I don't wanna.|WELBANG-312300 Reluctance objection]]
<<link "//Take <<if $kate.isWearing.includes('skirt')>>it<<else>>them<</if>> off.//" "WELBANG-311000 Shorts off">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"But I...don't want to."
"Lemme make it simple," he shrugs. "<<if $kate.isWearing.includes('skirt')>>Skirt<<elseif $kate.isWearing.includes("shorts")>>Get 'em<<elseif $kate.isWearing.includes("trousers")>>Get 'em<</if>> off, or it's no job."
<<link "//Take <<if $kate.isWearing.includes('skirt')>>it<<else>>them<</if>> off.//" "WELBANG-311000 Shorts off">><</link>>
<</page>><<silently>>
<<emote-mouth-sexy>>
<<first>>
<<addNotification "Arousal +1" "Stripping for him is turning you on, but you don't know why.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
It's weird because despite feeling vulnerable and despite not being attracted to him – you're //not// – you feel a tingling in your groin anyway as you stand half-naked in front of him. //What the hell is wrong with me.//
"Keep going," he says, indicating with a wiggle of his finger that your <<knickers>> should come off, too.
[[But the job's topless.|WELBANG-314000 But the job's topless]]
//[[Take them off.|WELBANG-315000 Knickers off]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"But the job's topless," you protest.
"Interview's not." He wiggles his finger again.
[[That doesn't make sense.|WELBANG-314100 Senseless objection]]
[[I don't wanna.|WELBANG-314100 I don't wanna]]
//[[Take them off.|WELBANG-315000 Knickers off]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"That...doesn't make sense," you object.
"Lemme make it simple," he shrugs. "Knickers off or it's no job."
//Fuck.//
//[[Take them off.|WELBANG-315000 Knickers off]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"I...don't want to."
"Lemme make it simple," he shrugs. "Knickers off or it's no job."
//Fuck.//
//[[Take them off.|WELBANG-315000 Knickers off]]//
<</page>><<silently>>
<<removeKnickers>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
A moment's hesitation. Then you obediently peel them down, and drop them onto the couch.
His eyes run appraisingly down your naked body. \
<<if $kate.tattoos.includes("leftHipBoneJacob")>>\
"Who's Jacob?" he asks.
[[First boyfriend.|WELBANG-316000 Jacob][$temp.playerDecision to "firstBF"]]
[[An ex.|WELBANG-316000 Jacob][$temp.playerDecision to "anEx"]]
[[My cat.|WELBANG-316000 Jacob][$temp.playerDecision to "myCat"]]
<<elseif $kate.braSize == "small">>\
"Built like a fuckin' surfboard," he scoffs. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"At least yer not fat. Turn round," he commands, with a twirling finger.<<else>>"They'll need pierced, or there's fuck all to look at. Turn round."<</if>>
<<elseif $kate.braSize == "medium">>\
"Nice tits," he muses. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"I like the nipple bling. Turn round," he commands, with a twirling finger.<<else>>"Let's see the arse."<</if>>
<<elseif $kate.braSize == "large">>\
"Those tits could hammer a nail," he chuckles appreciatively, "very nice. Turn round."
<<else>>\
[ERROR IN KATE.BRASIZE VAR]
<</if>>\
<<if not $kate.tattoos.includes("leftHipBoneJacob")>>\
//[[Turn around.|WELBANG-317000 Turn around]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "firstBF">>\
"First boyfriend," you answer truthfully.
"Mm-hm. \
<<elseif $temp.playerDecision == "anEx">>\
"An ex," you answer truthfully.
"Mm-hm. \
<<elseif $temp.playerDecision == "myCat">>\
"My cat," you lie. He chuckles.
"Dinnay want to talk about him? \
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<if $kate.braSize == "small">>\
Well, obviously he likes his chicks built like fuckin' surfboards," he scoffs. <<if $kate.piercings.includes("nipplesSilverBarbells")>>"At least the nipple bling's something to look at. Turn round," he commands, with a twirling finger.<<else>>"They'll need pierced, or there's fuck all to look at. Turn round."<</if>>
<<elseif $kate.braSize == "medium">>\
Well, I can see the appeal," he muses. "Nice tits, <<if $kate.piercings.includes("nipplesSilverBarbells")>>I like the nipple bling. Turn round," he commands, with a twirling finger.<<else>>let's see the arse."<</if>>
<<elseif $kate.braSize == "large">>\
He likes chicks with big fucking tits, eh," he chuckles, "me too. Now turn round, let's see the arse."
<<else>>\
[ERROR IN KATE.BRASIZE VAR]
<</if>>\
//[[Turn around.|WELBANG-317000 Turn around]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.braSize == "small">>//Built like a surfboard? What an asshole.// <</if>>You turn around, showing off your backside. With mirrors everywhere, it doesn't feel like you have any more modesty than when you were facing him.
"Nice, nice," he says. //"Verrry// fuckable. Okay, turn round, I'll need some pictures to show the boss."
[[I thought you were the boss.|WELBANG-318000 Who's the boss?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"I thought you were the boss."
"I'll be //your// boss," he clarifies, fiddling with his phone. "But I'm not the owner, that's Mr Kriangsak. He likes to see what I'm hiring."
[[Will I meet him?|WELBANG-319000 Mr Kriangsak][$temp.playerDecision to "willWeMeet"]]
[[Does he decide if I get hired?|WELBANG-319000 Mr Kriangsak][$temp.playerDecision to "whoIsTheDecisionMaker"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "willWeMeet">>\
"Will I meet him?"
"Aye, prolly, if yer with us long enough." He stands, and gestures towards the bedroom. "Go on through, there's a plain wall in there."
<<elseif $temp.playerDecision == "whoIsTheDecisionMaker">>\
"Does he decide?"
"Nah, it's up to me. Just gotta keep him in the loop." He stands, and gestures towards the bedroom. "Go on through, there's a plain wall in there."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
//[[Go through to the bedroom.|WELBANG-320000 To the bedroom]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You feel uneasy about leaving your clothes and bag behind. But at least you still have the transmitter ring. Ian said he'd be nearby.
Steeling your nerves, you head through into the little bedroom. The blinds are open and there's an office building across the street. The sheets in here haven't been changed in a while; you're greeted by a strong smell of "guy" as you enter.
"Aye, [[against that wall|WELBANG-321000 Strike a pose]]," instructs Connor.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You take up a position, back to a bare wall. All the walls are bare; this is //such// a bachelor pad. No nesting instinct.
"First one's fer the cops," Connor says, handing you back your passport. "Need to prove yer not underage. Hold this open for me."
//[[Hold the ID page up to your face.|WELBANG-322000 Passport photo]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You hold up your passport. Connor holds his phone up sideways, looking at you through the screen. It looks like a brand new Samsung Galaxy, but if he bought it in the night market, who knows?
<<if $kate.braSize == "small">>\
"You must be used to getting ID'd with those wee little bee stings," he chuckles.
<<elseif $kate.braSize == "large">>\
"Bet you dinnay get ID'd often," he chuckles. "That's a stonking set o'knockers."
<</if>>\
//Flash-click. Flash-click. Flash-click.// Nude photos for the local police force. Great.
"Okay. Now some fer the boss." He takes your passport back, and tosses it onto the bed.
//[[Stand there.|WELBANG-323000 Full frontal]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
He rotates his phone back to portrait mode, fiddles with the screen, then takes another series of photos.
//Flash-click, flash-click, flash-click// goes the phone, as it captures photo after photo of you, nude and full frontal. It's disconcerting: as an intelligence officer, you're trained to stay out of photographs, and here you are posing naked for a whole set. Hopefully these will stay in Thailand.
"Smile," he instructs, "boss'll think yer a bitch."
//[[Smile for the camera.|WELBANG-324000 Smile]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You force a Pan Am smile onto your face.
"Much better." //Flash-click, flash-click, flash-click!// You hold the smile while the camera phone captures another dozen or so nudes.
"Right, turn round."
//[[Turn around.|WELBANG-325000 Rear shots]]//
<</page>><<silently>>
<<avatar-expr-mouth-normal>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn and face the wall. "Verrry nice," murmurs Connor as the camera clicks away. "Yep, boss man'll like this."
//Boss man.// Ian used that phrase, too – <<if $kate.agency == "mi6">>is that Army slang<<else>>is that British slang, or could it be British Army slang<</if>>? Connor may be ex-<<if $kate.agency != "mi6">>British <</if>>military: another lead to check out.
//Click, click, click,// goes the camera phone. At least your face isn't in these ones. "Okay," he says, "that's enough."
[[Did I get the job?|WELBANG-326000 Did I get the job?]]
<</page>><<silently>>
<<emote-mouth-oh>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"Did I get the job?" you ask, turning back.
"Not yet," he shakes his head. "Need to make sure you can take a wee bit o' groping without freaking out."
He tucks his phone back into his shorts. Are you imagining it, or is that a bulge at the crotch?
[[Uh...|WELBANG-327000 Connor come closer][$temp.playerDecision to "uh"]]
[[I won't freak out.|WELBANG-327000 Connor come closer][$temp.playerDecision to "iWont"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "uh">>\
"Uh..." while you're processing that he comes over, right up in your personal space. He actually smells really good up close, some kind of woody, spicy cologne you like.
<<elseif $temp.playerDecision == "iWont">>\
"I won't freak out," you promise, but it doesn't stop him coming over, right up in your personal space. He actually smells really good up close, some kind of woody, spicy cologne you like.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"Now, some o' the punters'll get a wee bit handsy," he says, "specially after you've served 'em a few drinks." Then his hands are on your breasts, cupping them, feeling their <<if $kate.braSize == "small">>softness in his palms<<elseif $kate.braSize == "medium">>springy softness in his hands<<elseif $kate.braSize == "large">>hefty weight in his hands<</if>>.
//[[Push him away.|WELBANG-328000 Get off me]]
[[Hold still.|WELBANG-332000 Permissive Kate]]//
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Hey!" You try to push him away. But he must be <<if $kate.agency == "cia">>60lbs<<else>>four stone<</if>> heavier than you, and you end up just pushing yourself back against the cold wall.
"Easy, easy," he says soothingly. There's a glint in his eyes as he carries on pawing your breasts, even after you tried to get him to stop. He pinches both your nipples, then [[finally lets go|WELBANG-329000 Not cut out for this]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"You'll no last long in this job if you dinnay like being touched," he pronounces.
[[Sorry.|WELBANG-330000 Sorry]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorry. It was just a surprise."
"Okay. Well. Shall we try that again?"
//[[Nod.|WELBANG-331000 Nod]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
//Either that or the mission's scrubbed.// You take a breath, and nod.
His hands are back on your tits immediately, harder this time, confidently pinching and tugging on your nipples like it's foreplay. You stand there and take it, arms hanging limply at your sides.
<<if $kate.braSize == "small">>\
"Mmh, fuck," he murmurs breathily. "Like being back in school, haha!" //Back in the eighties,// you think but don't say. <<if $kate.piercings.includes("nipplesSilverBarbells")>>He gives your piercings a sharp little tug that makes you yelp. <<else>>He gives your stiff nipples a hard squeeze that makes you yelp. "Definitely need some bling on these."<</if>>
<<elseif $kate.braSize == "medium">>\
"Mmh, that's it," he murmurs breathily. He paws your breasts, <<if $kate.piercings.includes("nipplesSilverBarbells")>>gives your piercings a sharp little tug that makes you yelp.<<else>>gives your stiff nipples a hard squeeze that makes you yelp.<</if>>
<<elseif $kate.braSize == "large">>\
"Fuck me," he murmurs breathily, kneading and squeezing your big boobs. "These are awesome." <<if $kate.piercings.includes("nipplesSilverBarbells")>>He gives your piercings a sharp little tug that makes you yelp.<<else>>He gives your stiff nipples a hard squeeze that makes you yelp.<</if>>
<</if>>\
He lets go of your breasts, but it's just to take hold of your hips. "Turn round," he says, "it'll be the bum too."
//[[Turn around.|WELBANG-333000 Kate presents her ass]]//
<</page>><<silently>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
"Uh..." You tense up at his touch, but force yourself not to freak out while this guy paws your breasts like he's your boyfriend.
He smirks while he plays with them – squeezing them, cupping them, confidently pinching and tugging on your nipples like it's foreplay. You stand there passively, arms hanging limply by your sides.
<<if $kate.braSize == "small">>\
"Mmh, fuck," he murmurs breathily. "Like being back in school, haha!" //Back in the eighties,// you think but don't say. <<if $kate.piercings.includes("nipplesSilverBarbells")>>He gives your piercings a sharp little tug that makes you yelp. <<else>>He gives your stiff nipples a hard squeeze that makes you yelp. "Definitely need some bling on these."<</if>>
<<elseif $kate.braSize == "medium">>\
"Mmh, that's it," he murmurs breathily. He <<if $kate.piercings.includes("nipplesSilverBarbells")>>gives your piercings a sharp little tug that makes you yelp.<<else>>gives your stiff nipples a hard squeeze that makes you yelp.<</if>>
<<elseif $kate.braSize == "large">>\
"Fuck me," he murmurs breathily, kneading and squeezing your big boobs. "These are awesome." <<if $kate.piercings.includes("nipplesSilverBarbells")>>He gives your piercings a sharp little tug that makes you yelp.<<else>>He gives your stiff nipples a hard squeeze that makes you yelp.<</if>>
<</if>>\
He lets go of your breasts, but it's just to take hold of your hips. "Turn round," he says, "it'll be the bum too."
//[[Turn around.|WELBANG-333000 Kate presents her ass]]//
<</page>><<silently>>
<<showRear>>
<<first>>
<<addNotification "Arousal +1" "He's not your type. But all the touching's making you hot and wet.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
You turn and face the plain wall. His hands grab your butt, kneading it, squeezing it, spreading your cheeks apart. A fingertip brushes against your asshole, maybe by accident.
"Aye, fuck, yeah," he breathes, his voice husky. "Good girl. I think yer gonna fit in fine."
[[Am I hired?|WELBANG-334000 Am I hi–]]
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
"Am I hi–" Connor interrupts you by grabbing your hips and twisting you around.
"Shhh," he whispers, shoving you back against the wall. All his size and weight press into you as he moves in hungrily for a kiss. His cock is stiff in his shorts, pushing against your naked belly.
//[[Turn your face away.|WELBANG-335000 Head turner]]
[[Kiss him.|WELBANG-336000 Connor first kiss]]//
<</page>><<silently>>
<<emote-mouth-upset>>
<</silently>>\
<<header>>\
<<page>>\
You turn your face aside, getting stubbly kisses on your cheek and neck instead.
His weight presses into you, squashing you up against the cold wall. His hand slaps up against your crotch, feeling the wetness there. Then, totally unceremoniously, his finger sinks up inside your wet pussy, all the way to the knuckle.
//[[Squirm away.|WELBANG-337000 No, stop!]]//
//[[Let it happen.|WELBANG-363000 Kate lets it happen]]//
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
His tongue slips between your lips and into your mouth, eagerly probing. You kiss him back instinctively, your tongue licking his demurely.
His weight presses into you, squashing you up against the cold wall. His hand slaps up against your crotch, feeling the wetness there. Then, totally unceremoniously, his finger sinks up inside your wet pussy, all the way to the knuckle.
//[[Squirm away.|WELBANG-337000 No, stop!]]//
//[[Let it happen.|WELBANG-363000 Kate lets it happen]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-328000 Get off me")>>\
You try to squirm away, pushing off the wall this time for more strength. You can still barely move him. "Get //off,"// you whine, shoving your palms against his meaty chest.
<<else>>\
You try to squirm away, but he must be <<if $kate.agency == "cia">>60lbs<<else>>four stone<</if>> heavier than you, and you can't move him. "Get //off,"// you whine, shoving your palms against his meaty chest.
<</if>>\
"Eaaasy," he urges, pinning your shoulder back into the wall with his free hand. His finger's still up inside you, but he keeps it still.
"<div class="tooltip">Ten grand<span class="tooltiptext">in Thai Baht: <<if $kate.agency == "cia">>$300<<elseif $kate.agency == "mi6">>£200<<elseif $kate.agency == "asis">>$400<<elseif $kate.agency == "csis">>$400<<elseif $kate.agency == "nzsis">>$400<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> a month," he reminds you, his face so close you can feel his breath. "Fer a slag with no <<if $kate.braSize == "small">>tits and no <</if>><div class="tooltip">blue book<span class="tooltiptext">the visa entitling you to work in Thailand</span></div>. You want it? Earn it."
The two of you share a long, intense look. His bruise blue eyes hold an unspoken question.
<span class="greyedOut">//[Abort infiltration]//</span> [[Fuck you. Get off me.|WELBANG-338000 Fuck you]]
<span class="greyedOut">//[Nod]//</span> [[Okay.|WELBANG-362000 Kate accepts how it works]]
<</page>><<silently>>
<<emote-brows-frown>>
<<emote-mouth-pout>>
<</silently>>\
<<header>>\
<<page>>\
"Fuck you." Your voice comes out low and defiant. "Get off me."
He stares into your eyes, not relaxing his grip. You're naked and pinned against the wall, impaled on his finger. But there's an emergency burst transmitter on //your// finger, and you're //this// close to setting it off...
"Alright." His finger slides out of you. He wipes it on your hip, then lets you go. "Get yer things, and fuck off. Prick tease."
//[[Get out of there.|WELBANG-339000 Kate escapes]]//
<</page>><<silently>>
<<emote-brows-attentive>>
<</silently>>\
<<header>>\
<<page>>\
He gropes your ass as you push past him, scooping your passport off from the bed. Connor follows you back out into the living room, camera phone clicking behind you, recording your exit.
Your clothes are strewn on the couch. Connor snaps more photos of you while you get dressed.
//[[Ignore him.|WELBANG-340000 Getting dressed][$temp.playerDecision to "ignore"]]
[[Give him the finger.|WELBANG-340000 Getting dressed][$temp.playerDecision to "finger"]]//
<</page>><<silently>>
<<if $kate.wasWearing.includes("dress")>>
<<= '<<wear-dress-' + $kate.lastWornDress + '>>'>>
<<set _clothingItem to "dress">>
<<elseif $kate.wasWearing.includes("shorts")>>
<<= '<<wear-shorts-' + $kate.lastWornShorts + '>>'>>
<<set _clothingItem to "shorts">>
<<elseif $kate.wasWearing.includes("trousers")>>
<<= '<<wear-trousers-' + $kate.lastWornTrousers + '>>'>>
<<set _clothingItem to "capris">>
<<elseif $kate.wasWearing.includes("skirt")>>
<<= '<<wear-skirt-' + $kate.lastWornSkirt + '>>'>>
<<set _clothingItem to "skirt">>
<<else>>
<<set _clothingItem to "//[ERROR IN CLOTHINGITEM TEMP VAR]//">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.wasWearing.includesAll("bra", "knickers")>>Not bothering with underwear<<elseif $kate.wasWearing.includes("bra")>>Not bothering with your bra<<elseif $kate.wasWearing.includes("knickers")>>Not bothering with your <<knickers>><<else>>Quickly<</if>>, you wriggle back into your _clothingItem.
//Flash-click! Flash-click!// <<if $temp.playerDecision == "ignore">>You ignore the photography, trying not to look at the camera.<<elseif $temp.playerDecision == "finger">>You show him your middle finger and a withering stare. //Flash-click!// He captures that too.<<else>>(ERROR IN TEMP.PLAYERDECISION VAR)<</if>>
//[[Dress quickly.|WELBANG-341000 Leaving Connor's]]//
<</page>><<silently>>
<<if $kate.wasWearing.includes("top")>>
<<= '<<wear-top-' + $kate.lastWornTop + '>>'>>
<</if>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.wasWearing.includesAll("bra", "knickers")>>You stuff your underwear into your<<elseif $kate.wasWearing.includes("bra")>>You stuff your bra into your<<elseif $kate.wasWearing.includes("knickers")>>You stuff your <<knickers>> into your<<else>>You grab your<</if>> <<handbag>> and sidle out of the <<if $kate.agency == "mi6">>flat<<else>>apartment<</if>>, careful not to fully turn your back on him in these last few moments. But he doesn't follow you out.
//Fuck. Fuck. Fuck!//
//[[Head down to the street.|WELBANG-361000 Title card]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-knickers-whiteBrazilianCutWithLaceHem>>
<<wear-bra-whiteHalfCupCentralDart>>
<<wear-trousers-blackTailoredWorkTrousers>>
<<wear-top-greyBohoShirt>>
<<wear-shoes-blackSuedeAnklePlatformHeels>>
<</silently>>\
<<page>>\
//[[THREE DAYS LATER...|DEBRIEF1-1000 Title card]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You stare into his eyes. Is it even still up to you? You're naked and pinned against the wall, impaled on his finger. But he's waiting for a signal.
//He doesn't want to rape me,// you realise. //He wants permission.//
In a way, that's worse, more humiliating. Willingly trading your body for a job that pays peanuts. Connor stares probingly into your eyes. Like he's trying to work out who you are.
//Fuck it. I've already gone this far. Okay.// You open your mouth to say it, but it doesn't come out. It feels too much like surrender. Your mouth's dry and you need to lick your lips.
You nod instead. It's a slight gesture, but you know he understands [[what it means|WELBANG-364000 Up against the wall]].
<</page>><<silently>>
<<emote-eyes-big>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
You gasp at the sensation, staring deeply into his bruise blue eyes as his finger thrusts up into your pussy.
//Fuck, this wasn't in the plan!// He grabs your chin, goes in for <<if hasVisited("WELBANG-336000 Connor first kiss")>>another<<else>>the<</if>> kiss. His tongue explores your mouth while he rhythmically finger fucks you, jowly stubble prickling your soft face.
Naked and pressed up against the wall, impaled on his thrusting finger, it feels like there's not much you can do, except [[whatever he wants|WELBANG-364000 Up against the wall]].
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-eyes-calm>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-363000 Kate lets it happen")>>\
It's totally overwhelming, complicated by the fact that you're turned on and he's //really// good with his finger. It's surprising but it feels //good.// Your breath comes out in little gasps as it slips and thrusts inside you.
Then it slides out, suddenly, and he's tugging down his shorts. When he pulls up one of your legs so you're [[half-straddling him|WELBANG-364100 Lifted into position]], you realise you're not even going to make it to the bed.
<<else>>\
You don't even make it to the bed. His finger slips out of you, he tugs down his shorts, then he's pulling up one of your legs so you're [[half-straddling him|WELBANG-364100 Lifted into position]].
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
He grabs your butt and hoists you up against the wall. Your feet leave the floor; some of your weight supported by the wall, the rest he's holding up with one hand. The tip of his naked cock nudges between your wet lips.
[[Wait, condom.|WELBANG-365000 Not on the pill]]
//[[Don't bother with protection.|WELBANG-366000 Hip tilt]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Wait, have you got a..."
"Shut up," he grunts.
A moment's fumbling, feeling like he might drop you...then his cock finds the angle, and [[thrusts up inside you|WELBANG-367000 Up against the wall]], bareback.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You wrap your legs around his waist. A moment's fumbling, feeling like he might drop you...then his cock finds the angle, and [[thrusts up inside you|WELBANG-367000 Up against the wall]], bareback.
<</page>><<silently>>
<<set _npcD10 to random(1,10)>> /* npc rolls a d10 */
<<set _npcModifiers to -1>>
<<if _npcD10 + _npcModifiers gte 6>> /* npc succeeded the performance roll */
<<set _npcIsGoodInBed to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
Grabbing your ass cheeks, your new boss fucks you hard and fast, up against the wall.
You're not even into him, but something about being taken so forcefully is making your body respond. You feel like he could make you come in this position...
<div class="greyHighlighter">\
<table>\
<tr>\
<td style="padding: 0px 20px 0px;">\
<<dice-showDiceImage "d10">>\
</td>\
<td>\
<div id="skinnySkillCheck" class="greyHighlighter">\
''Strength check.'' Connor rolls <div class="tooltip">1D10<<if _npcModifiers gte 0>>+<</if>>_npcModifiers<span class="tooltiptext">Out of shape (-1) = _npcModifiers</span></div> to hold you up against the wall for five minutes.
Target: 6. Result<<= either("...", "....", ".....", "......", ".......", "........", ".........", "..........")>><<= _npcD10 + _npcModifiers >>. \
<<if _npcIsGoodInBed>>\
[[Success.|WELBANG-368000 Kate orgasm]]
<<else>>\
[[Failure.|WELBANG-368500 Max wimps out]]
<</if>>\
</div>\
</td>\
</tr>\
</table>\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-open>>
<<emote-brows-worried>>
<<emote-eyes-closed>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
Your <<if $kate.isNoisyInBed>>expressive cries<<else>>soft gasps<</if>> mingle with manly grunts of effort as his cock pumps up and down inside you, hard and fast like a piston.
Something about this angle feels amazing, like he's brushing your g-spot with every thrust. If you close your eyes and rock your hips you can even pretend he's someone hot, like <<if hasVisited("MALAY-51000 MO Bar")>>Max<<elseif hasVisited("MALAY-32000 What's in Penang?")>>that defence contractor guy in Malaysia<<else>>that hot guy from the pool in Malaysia<</if>>.
The mental image of doing this with someone tall, rugged and handsome pushes you over the edge. You gasp and cry out as your body's rocked by spasms of [[clenching, tremorous release|WELBANG-369000 Transition to bed]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your <<if $kate.isNoisyInBed>>expressive cries<<else>>soft gasps<</if>> mingle with manly grunts of effort as his cock pumps up and down inside you, hard and fast like a piston.
Something about this angle feels great at first, like he's brushing your g-spot with every thrust. His cheeks flush bright red as he tries to hold you and fuck you, but he can't do it for long; you feel yourself slithering down the wall.
Eventually he gives up, pulls out of you, lets your feet find the floor. "C'mere." He tugs you over to the bed, and [[bends you over the side|WELBANG-370000 Bed bent over]] of it instead.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-oh>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
His cheeks are flushed bright red with effort. He pulls his cock out of you, lets you slither down the wall.
"C'mere." The moment your feet find the floor again, he tugs you over to the bed, and [[bends you over the side|WELBANG-370000 Bed bent over]] of it.
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WELBANG-368500 Max wimps out")>>\
Propping yourself up on your hands, his cock slides into you again, this time from behind.
At first the new position isn't as good; the stimulation less intense than it was up against the wall.
Then you get used to the new sensations – his firm grip on your hips, his cock thrusting inside you, his balls slapping your clit as you're fucked hard and fast over the side of his musky bed.
You're facing his bedroom window, looking at an office block. The tinted windows reflect the blazing sunlight outside: if any of the worker bees are peeping in, you can't tell.
Facing away from him even means you can pretend he's someone hot, like <<if hasVisited("MALAY-51000 MO Bar")>>Max<<elseif hasVisited("MALAY-32000 What's in Penang?")>>that defence contractor guy in Malaysia<<else>>that hot guy from the pool in Malaysia<</if>>.
The mental image of doing this with someone tall, rugged and handsome pushes you over the edge. You gasp and cry out as your body's rocked by spasms of [[clenching, tremorous release|WELBANG-370100 Bent over orgasm]].
<<else>>\
Propping yourself up on your hands, his cock slides into you again, this time from behind.
Gripping your hips, Connor fucks you hard and fast, bent over his musky bed. You're facing his bedroom window, looking at an office block. The tinted windows reflect the blazing sunlight outside: if any of the worker bees are peeping in, you can't tell.
It only lasts a few minutes. His hand reaches around to grab a tit, squeezing it while his thrusting builds up to a frantic crescendo. He lets out a few low, masculine murmurs as he [[comes inside you|WELBANG-371000 Max money shot]].
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Connor only lasts a few minutes longer. His hand reaches around to grab a tit, squeezing it while his thrusting builds up to a frantic crescendo. He lets out a few low, masculine murmurs as he [[comes inside you|WELBANG-371000 Max money shot]].
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
//And that's that.// His cock slips out of you, leaving your pussy flooded with his cum.
When you turn around he's pulling up his shorts, his face flushed and satisfied. You feel...kind of stunned. Tingly and disorientated. You don't normally come that quickly. What just happened?
The practical part of your brain tells you that you need to deal with the shot of cum he just unloaded into you.
[[Can I use your bathroom?|WELBANG-372000 Bathroom break]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Can I use your bathroom?"
"Aye." He points to a doorway; you head into a compact bathroom and [[freshen up|WELBANG-373000 Kicked out]] in there.
<</page>><<silently>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<if $kate.braSize == "large">>
<<set $kate.nickNameFromConnor to "big tits">>
<<elseif $kate.braSize == "small">>
<<set $kate.nickNameFromConnor to "surfie">>
<<elseif $kate.hairColour == "blonde">>
<<set $kate.nickNameFromConnor to "blondie">>
<<elseif $kate.hairColour == "ginger">>
<<set $kate.nickNameFromConnor to "ginge">>
<<elseif $kate.agency == "nzsis">>
<<set $kate.nickNameFromConnor to "Kiwi">>
<<else>>
<<set $kate.nickNameFromConnor to "sweetie">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
When you emerge, Connor's standing at his kitchen counter, sipping Chang from a can.
"Alright, $kate.nickNameFromConnor," he grunts, tapping on a notepad. "We'll try you out. Give us yer number."
//[[Write down your number.|WELBANG-374000 Call me maybe]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You scrawl //$kate.cover.firstName// and your <<if $kate.agency == "cia" or $kate.agency == "csis">>cell<<else>>mobile<</if>> number down on the pad.
<<if $kate.braSize == "small" and not $kate.piercings.includes("nipplesSilverBarbells")>>\
"Get them pierced and yer hired," he says, pointing to your chest. "Do it tonight so they've got time to heal up. There's a tattoo parlour over the street from the club, owner's name is Mod: tell him you're a Hard Cock Cafe girl and he'll do ya for free."
[[Do I have to?|WELBANG-375000 Kate agrees to piercings][$temp.playerDecision to "mustI"]]
[[Okay.|WELBANG-375000 Kate agrees to piercings][$temp.playerDecision to "okay"]]
<<else>>\
"Alright," he says. "Now off you fuck, I've got a mate coming over. We'll give you a call in a few days."
//[[Get dressed and leave.|WELBANG-376000 Get dressed and leave]]//
<</if>>\
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "mustI">>\
"Do I have to?"
"Only if you want the job," he shrugs. "Now off you fuck, I've got a mate coming over. We'll call you in a few days."
<<elseif $temp.playerDecision == "okay">>\
"Okay."
"Great. Now off you fuck, I've got a mate coming over. We'll call you in a few days."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
//[[Get dressed and leave.|WELBANG-376000 Get dressed and leave]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<if $kate.wasWearing.includes("bra")>>
<<= '<<wear-bra-' + $kate.lastWornBra + '>>'>>
<</if>>
<<if $kate.wasWearing.includes("knickers")>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<</if>>
<<if $kate.wasWearing.includes("dress")>>
<<= '<<wear-dress-' + $kate.lastWornDress + '>>'>>
<</if>>
<<if $kate.wasWearing.includes("shorts")>>
<<= '<<wear-shorts-' + $kate.lastWornShorts + '>>'>>
<</if>>
<<if $kate.wasWearing.includes("skirt")>>
<<= '<<wear-skirt-' + $kate.lastWornSkirt + '>>'>>
<</if>>
<<if $kate.wasWearing.includes("trousers")>>
<<= '<<wear-trousers-' + $kate.lastWornTrousers + '>>'>>
<</if>>
<<if $kate.wasWearing.includes("top")>>
<<= '<<wear-top-' + $kate.lastWornTop + '>>'>>
<</if>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<set $header.line1 to "''68 WITTHAYU ROAD''",
$header.line2 to "LUMPHINI DISTRICT / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You dress quickly and leave his <<if $kate.agency == "mi6">>flat<<else>>apartment<</if>>...just in time. In the corridor outside, you cross paths with Connor's "mate" – a massively tall and fat white guy, carrying an 8-pack of Leo beer.
The guy looks like a huge bowling pin, stuffed into a Hawaiian shirt and too-short shorts. He eyes you curiously as you leave the <<if $kate.agency == "mi6">>flat<<else>>apartment<</if>> he's approaching, but doesn't say anything.
You wonder what exactly Connor will tell him about you, if he asks. Or maybe strange women come out of Connor's <<if $kate.agency == "mi6">>flat<<else>>apartment<</if>> all the time.
//[[Leave the building.|WELBANG-377000 Witthayu Road]]//
<</page>><<silently>>
<<set $header.line1 to "''LUMPHINI DISTRICT''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
As you step back out into the sultry early evening heat, you suddenly remember the last twenty or thirty images on Connor's camera phone are nudes of you. //Shit.// What are the chances that he won't show them to Bowling Pin?
//Not that it really matters in the scheme of things.// You've just been hired for a minimum wage job working topless in a thong – and you had to sleep with the boss to get it. //Bond, Jane Bond,// you think sourly as you [[walk back towards the main road|WELBANG-377100 Walk of shame]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Bangkok in April smells like heat and sweat and jasmine and tuk-tuk fumes and burned incense. As you're walking you pick up hints of another smell – Connor, lingering on your body. //I still smell of him.//
Ian said he'd be nearby. Is he watching you? Is it obvious that you've just been //fucked?//
You knew there was a risk of something sexual happening; you're not stupid. But it didn't go anything like you expected. You just let a guy in his forties photograph you naked, fuck you without protection, then <<link "kick you out of his <<if $kate.agency == 'cia' or $kate.agency == 'csis'>>apartment<<elseif $kate.agency == 'mi6'>>flat<<elseif $kate.agency == 'asis' or $kate.agency == 'nzsis'>>unit<<else>>ERROR IN KATE.AGENCY VAR<</if>>" "WELBANG-377200 Walk of shame II">><</link>> straight after.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It wouldn't be so bad if you'd just suffered through it stoically. But he made you come, embarrassingly quickly. //What the fuck just happened.// You felt in control until your clothes started coming off, then everything just moved so fast.
//Maybe that's why he's in this position, maybe he's just good at handling women.// That's how you feel. Handled, totally handled.
That said...you still got the job. That's what you came here to do.
//Better report in.// But how much to [[tell them|WELBANG-378000 Lumpini Park]]?
<</page>><<silently>>
<<set $header.line1 to "''LUMPINI PARK''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<emote-calm>>
<<emote-chest-flush-fading>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/lumpiniParkSunset.jpg" 100 1000 500 0>>\
Sitting on the grass in Lumpini Park, with your back against a giant palm tree, you open up Signal and send a report to Ian.
There's no prearranged codeword for "I just had sex with the manager", so you'll have to go with the one for "[[objective complete|WELBANG-379000 Objective complete]]".
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<div style="transform: scale(1,1);-webkit-transform-origin-x: 0;">\
<div class="marvel-device iphone-x">\
<div class="notch">\
<div class="camera"></div>\
<div class="speaker"></div>\
</div>\
<div class="top-bar"></div>\
<div class="sleep"></div>\
<div class="bottom-bar"></div>\
<div class="volume"></div>\
<div class="overflow">\
<div class="shadow shadow--tr"></div>\
<div class="shadow shadow--tl"></div>\
<div class="shadow shadow--br"></div>\
<div class="shadow shadow--bl"></div>\
</div>\
<div class="inner-shadow"></div>\
<div class="screenW">\
<div class="chat">\
<div class="chatHeaderSignal"><<= "<img src='" + $imagePath.ui + "phone/header.png' style='width: 100%;'>" >><div class="h3">20:20</div><div class="h2"><b>Uncle Ian</b></div></div>
<div class="date">\
Text Message
Today 18:16
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
<div class="tooltip">Zigzag<span class="tooltiptext">Objective complete</span></div>
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
GREAT u clear?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
Yes in Lumpini
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal last">\
when r u starting?
</div>\
</div>\
<div class="pc messages">\
<div class="messageSignal last">\
I have to wait for a call. He said a few days
</div>\
</div>\
<div class="npc messages">\
<div class="messageSignal">\
rgr. avoid contact w me til u get the call
</div>\
<div class="messageSignal">\
and WELL DONE 👍🏼
</div>\
<div class="messageSignal last">\
<<if $kate.agency != "cia">>the yanks<<else>><div class="tooltip">ctf<span class="tooltiptext">the Combined Task Force</span></div><</if>> will be v pleased, you did great 👍🏼
</div>\
</div>\
</div>\
<<= "<img src='" + $imagePath.ui + "phone/footer.png' style='width: 95%; position: absolute; bottom: 0px;'>" >>
</div>\
</div>\
</div>\
The message thread will automatically delete itself once you <<if $kate.braSize == "small" and not $kate.piercings.includes("nipplesSilverBarbells")>>[[close the app|WELBANG-380000 Piercings appointment]]<<else>>[[close the app|WELBANG-379500 Leaving Lumpini]]<</if>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//I need a shower.// The roads around the park are <<if $kate.agency == "cia" or $kate.agency == "csis">>fender-to-fender<<else>>bumper-to-bumper<</if>> gridlock, so you decide to walk back through the park, despite the sweaty heat.
You take it nice and slow. Bustling with locals and tourists, Lumpini's 142 acres are a green, leafy sanctuary in the heart of the business district.
<<image "/locationPhotos/thailand/bangkok/lumpiniMonitorLizardDrinking.jpg" 170 1000 550 0>>\
It's full of trees, lakes, and a dose of the weirdness you're learning to expect in Bangkok. You wander through, gazing at sculptures, pavilions, and scores of huge lazy monitor lizards basking in the sunset.
You cross over the busy <div class="tooltip">thanon<span class="tooltiptext">main road</span></div> on the other side of the park, and [[catch the skytrain|WELBANG-395000 Title card]] at BTS Ratchadamri.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You need a shower, but you don't think Connor was kidding about getting the piercings. //May as well get it over with.// The <<if $kate.agency != "cia">>yanks<<else>>task force<</if>> might not stay v pleased if you end up getting fired on your first day for not following instructions.
The roads around Lumpini are totally gridlocked. Your phone tells you that Patpong is about a 20-minute walk from here, and it's mostly through the park; so you decide to [[just walk it|WELBANG-381000 Lumpini walk]], despite the heat.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You take it slow in the sweaty heat. Bustling with locals and tourists, Lumpini's 142 acres are a green, leafy sanctuary in the heart of the business district.
<<image "/locationPhotos/thailand/bangkok/lumpiniMonitorLizardDrinking.jpg" 170 1000 550 0>>\
It's full of trees, lakes, and a dose of the weirdness you're learning to expect in Bangkok. You wander through, gazing at sculptures, pavilions, and scores of huge lazy monitor lizards [[basking in the sunset|WELBANG-382000 Silom Road]].
<</page>><<silently>>
<<set $header.line1 to "''SILOM FINANCIAL DISTRICT''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You leave the park, and cross through <<if $kate.agency == "cia" or $kate.agency == "csis">>fender-to-fender<<else>>bumper-to-bumper<</if>> gridlock traffic to get to busy Silom Road.
<<image "/locationPhotos/thailand/bangkok/silomRoadAerialShot.jpg" 200 1000 664 0>>\
From here it's a five-minute walk to [[Patpong|WELBANG-383000 Title card]]. The sun sinks behind the tall buildings as you go.
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-384000 Patpong tattoo parlour">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/patpong/patpongSunsetTitleCard.jpg"+' >'>>
</a><<silently>>
<<remove-bigBlackSunglasses>>
<<set $header.line1 to "''SOI PATPONG 2''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/patpong/neonSignsOnPatpong2.jpg" 270 1000 667 0>>\
//Back again.// You thread through the tourists trawling the night market, mostly ignoring the scantily-clad sirens lining the roadsides.
[[M-Yuk Tattoo|WELBANG-385000 M-Yuk Tattoo]] is right across the street from the Hard Cock Cafe.
<</page>><<silently>>
<<set $header.line1 to "''M-YUK TATTOO''",
$header.line2 to "PATPONG / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You step into a small and vividly decorated tattoor parlour. Trippy psychedelic Hindu gods gaze back from the walls. It smells of bleach.
<<image "/locationPhotos/thailand/patpong/goldenTriangle.jpg" 150 1000 600 0>>\
A hipsterish Thai guy, with sleeve tattoos on his arms and chunky black stretcher earrings, looks up from his phone as you walk in.
[[Hi, do you do nipple piercings?|WELBANG-386000 Do u do piercings]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Hi. Do you do nipple piercings?"
"Sure, sure." He shows you a little case with various bars and rings designed to be skewered through a person's flesh.
[[Choose silver barbells.|WELBANG-387000 Kate chooses her piercings]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Um...these ones?"
"Sure. Come through." He pulls aside the curtain, beckoning you through to a little private work area with a tattoo bench.
<<image "/locationPhotos/thailand/patpong/goldenTriangleBooth.jpg" 200 1000 647 0>>\
"For your clothes," he says, pointing to a row of hooks. "Get comfy on the bench whenever." He starts getting his piercing kit ready – gloving up, ripping open sterile packets. "You been in Bangkok long?"
<span class="greyedOut">//[Lie]//</span> [[Nine months.|WELBANG-388000 Nine months]]
<</page>><<silently>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<<header>>\
<<page>>\
"Nine months," you lie, hanging your <<handbag>> up on a hook.
"Cool. Why the piercings?"
[[My boss told me to do it.|WELBANG-389000 I'm a Hard Cock Cafe Girl][$temp.playerDecision to "boss"]]
[[I just started work at the place over the street.|WELBANG-389000 I'm a Hard Cock Cafe Girl][$temp.playerDecision to "hcc"]]
<</page>><<silently>>
<<removeTop>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "boss">>\
"My boss told me to do it. You're Mod, right?" you ask when he looks at you quizzically. "Do you know Connor?"
"Oh, yeah, //cool,"// he enthuses, understanding dawning. "You work at the Cafe? I do //all// the girls there. Piercings, tats, you name it. These'll be on the house. What's your name?"
<<elseif $temp.playerDecision == "hcc">>\
"I just started work at the place over the street."
"Oh, //cool,"// he enthuses. "You work at the Cafe? I do //all// the girls there. Piercings, tats, you name it. These'll be on the house. What's your name?"
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
<<link "$kate.cover.firstName." "WELBANG-390000 Bond, Jane Bond">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.cover.firstName," you tell him<<if $kate.isWearing.includes("bra")>>, taking off your bra<<removeBra>><</if>>.
"Cool, great to meet you," he shakes your hand, then pats the bench. <<if $temp.playerDecision == "hcc">>"I'm Mod."<</if>>
//[[Get on the tattoo bench.|WELBANG-391000 Tattoo bed]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You climb onto the bench and lie down on your back. "Okay," says Mod, rubbing some kind of oil over your right nipple with gloved fingers. "[[Big breaths|WELBANG-392000 Title card]]..."
<</page>><<silently>>
<<set $kate.piercings.push("nipplesSilverBarbells")>>
<</silently>>\
<<page>>\
//[[TWO MINUTES LATER...|WELBANG-393000 Nipples. Pierced]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Ow.// The second one hurt way more than the first.
You gaze into the mirror, examining your newly decorated breasts. There's no blood...how is that possible?
"Looks //great,"// Mod says, handing you a little bottle of hydrogen peroxide. "Clean 'em with this, twice a day 'til you run out. You get any problems, come see me."
A bell tinkles outside the booth: someone else coming into the shop.
[[Thanks, Mod.|WELBANG-394000 Thanks Mod][$temp.playerDecision to "thanks"]]
[[You really don't want any money?|WELBANG-394000 Thanks Mod][$temp.playerDecision to "noMoney"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "thanks">>\
"Thanks, Mod."
"It was a pleasure. See you in the club sometime."
<<elseif $temp.playerDecision == "noMoney">>\
"You really don't want any money?"
"Nah, it's cool," he shakes his head. "See you in the club sometime."
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
//[[Get dressed and go home.|WELBANG-395000 Title card]]//
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-towel-whiteBathSheet>>
<<wear-shoes-greyToeThongFlipFlops>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<</silently>>\
<a data-passage="WELBANG-396000 Back home">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
At least someone fixed the drain while you were gone. You take a long, long shower, washing off the smell of Connor.
//Did I do the right thing?// <<if hasVisited("WELBANG-385000 M-Yuk Tattoo")>>You're tired and your nipples hurt.<<else>>You feel like you don't want to see anyone or do anything.<</if>> You go out and grab some comfort food at a 7/11 – a <span class="imageLink"><<link "cheese toastie">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/bangkok/711GoldToastie.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, a Toblerone and a bottle of wine – and bring them back [[to your room|WELBANG-397000 Legendary toastie]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-top-vsHenleySleepTank>>
<</silently>>\
<<header>>\
<<page>>\
Maybe it's just the mood you're in...but the toastie is actually kind of epic. You splashed out ฿37 (<<if $kate.agency == "cia">>$1.11<<elseif $kate.agency == "mi6">>74p<<elseif $kate.agency == "asis">>$1.48<<elseif $kate.agency == "csis">>$1.48<<elseif $kate.agency == "nzsis">>$1.48<<else>>ERROR IN KATE.AGENCY VAR<</if>>) on the most expensive kind, and got a big chunky hot sandwich with melted, slightly spicy, nacho-y cheese.
<<image "/locationPhotos/thailand/bangkok/toastieCrossSection.jpg" 150 1000 520 0>>\
It tastes like home and warmth. You wash it down with half a bottle of a cheap, angry Rioja, eat Toblerone for <<if $kate.agency == "mi6">>pudding<<else>>dessert<</if>>, and [[get an early night|WELBANG-398000 Title card]].
<</page>><<page>>\
//[[NEXT MORNING...|WELBANG-399000 Songkran title card]]//
<</page>><<silently>>
<</silently>>\
<a data-passage="WELBANG-400000 Songkran">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/bangkok/songkranTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-brows-raised>>
<<emote-eyes-squint>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You're woken early by drums and reedy, piping horns in the streets outside.
You'd planned some sightseeing over the next few days, but that's going to be complicated by the nationwide Songkran Festival, which starts today.
Songkran celebrates the Thai New Year. Somewhere in history it got mixed up with the Water Festival, where people would bless elders and family members by trickling water over their shoulders.
The modern Songkran has [[come a long way|WELBANG-401000 National water fight]] from those genteel beginnings.
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-dress-yellowHalterNeckSummerDress>>
<<wear-shoes-greyToeThongFlipFlops>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<wear-bigBlackSunglasses>>
<<emote-mouth-smile>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
For three days in Thailand's hottest month, work stops so everyone can take part in a kingdom-wide water fight.
<<image "/locationPhotos/thailand/songkran/songkranKids.jpg" 150 1000 650 0>>\
It's impossible to leave the hostel without getting [[caught up in the mayhem|WELBANG-402000 Charming kids]]. Kids, adults and the elderly dance and soak each other on the pavements; carloads of teenagers, pumping out Thai pop music, carry out random drive-by shootings with super soakers; the soi dogs take cover where they can.
<</page>><<silently>>
<<wear-dress-wetYellowHalterNeckSummerDress>>
<<avatar-getWet>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
Everywhere you go, you get soaked to the skin. Street stalls spring up everywhere, selling water guns and little buckets of clay.
<<image "/locationPhotos/thailand/songkran/songkranKids2.jpg" 163 1000 563 0>>\
Kids especially love coming up to you with a <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> and an apologetic smile as they wipe clay on your cheeks and wish you "<div class="tooltip">Sa-wat-di pi mai<span class="tooltiptext">Happy New Year</span></div>""
They're copying the way monks bless people. Monks use chalk and drops of water, but the kids prefer clay and water guns, which make a [[much more satisfying mess|WELBANG-403000 Khao San shootout]].
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
For three days, the Khao San Road turns into Fallujah with squirt guns, Thais and <div class="tooltip">farangs<span class="tooltiptext">white foreigners</span></div> locked in wet merciless combat.
<<image "/locationPhotos/thailand/songkran/songkranKhaoSan.jpg" 100 1000 500 0>>\
You received tactical combat training <<if $kate.agency == "asis">>on<<else>>at<</if>> <<recruitHQ>>, but it can't keep you dry when you're outgunned [[ten million to one|WELBANG-404000 Everybody gets wet]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's a mark of Thai culture that no one – aside from monks, and the elderly – is exempt from Songkran. At one point you walk into a watery ambush set up by three cops, who smear your face with clay afterwards, then pose with you for group selfies.
<<image "/locationPhotos/thailand/songkran/officerJimmyKimmel.jpg" 50 1000 500 0>>\
In the end, you're drenched for three days running, and all your sightseeing plans are ruined. But getting to play for three days in a city overcome by a contagious spirit of optimism, positivity and fun was an [[amazing experience|WELBANG-405000 Songkran reflections]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<remove-makeup-manicure>>
<<remove-makeup-pedicure>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-shorts-offWhiteVelour70sTrackShorts>>
<<wear-top-petrolBlueDeathHornetCropTop>>
<<emote-eyes-squint>>
<<emote-mouth-smile>>
<<set $header.line1 to "''BAAN KRUNG THEP''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
You get the feeling that Songkran – like Christmas – has moved on a long way from its spiritual roots. To lots of tourists – probably even lots of Thais – it's just an excuse for a big drunken water party.
But the festival came at the perfect time for you. Not that you needed to be spiritually cleansed after the thing with Connor, of course. But still.
You've had no contact with Ian since you messaged him in Lumpini. It's possible you're now a surveillance target for the Thai <div class="tooltip">OC<span class="tooltiptext">Organised Crime</span></div> elements, so you've just been living [[like a normal backpacker|WELBANG-406000 Did I even succeed?]] this last few days.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You've realised that it's even possible they'll //never// be in touch. Connor's obviously a sleazebag: maybe he already got all he wanted out of you. He could have tossed your number in the <<if $kate.agency == "cia" or $kate.agency == "csis">>trash<<else>>bin<</if>> right after you left.
As the days trickle by with no contact from the task force or the Hard Cock Cafe, you begin to feel like this is actually the most likely outcome.
But you also feel like if all you really got to do here was experience Songkran, it was still kinda worth it. Maybe even preferable: at least you won't have to go back to [[the Hard Cock Cafe|WELBANG-406990 Title card]].
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<if hasVisited("WELBANG-70000 Henna tattoo")>>
<<set $avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2"),
$avatar.underwear.pushUnique("/113Tattoos/10_tattoo-leftHand-fadedHennaTattoo2-rear")>>
<</if>>
<<wear-skirt-ogKhakiMini>>
<<wear-top-yellowAndBlackCottonFlaredVest>>
<<wear-shoes-greyToeThongFlipFlops>>
<</silently>>\
<<page>>\
//[[DAYS PASS...|WELBANG-407000 Uncle & Aunt Pork Noodle]]//
<</page>><<silently>>
<<set $header.line1 to "''UNCLE & AUNT PORK NOODLE''",
$header.line2 to "BANGKOK / APRIL 2018">>
<</silently>>\
<<header>>\
<<page>>\
A few days later, you're eating a late lunch in Uncle & Aunt Pork Noodle, when your phone rings.
You grab it out of your bag; it's a local number you don't recognise.
//<span class="greyedOut">[Answer it]</span>// [[Hello?|WELBANG-408000 Is it me you're looking for]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
"Hello?"
"Is tha' $kate.cover.firstName?" It's a woman, with a local accent.
[[Yeah?|WELBANG-409000 Yeah][$temp.playerDecision to "yeah"]]
[[Who's asking?|WELBANG-409000 Yeah][$temp.playerDecision to "whosAsking"]]
<</page>><<silently>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<<if $temp.playerDecision == "yeah">>\
"Yeah?" you answer.
<<elseif $temp.playerDecision == "whosAsking">>\
"Who's this?" you ask in reply.
<<else>>\
(ERROR IN TEMP.PLAYERDECISION VAR)
<</if>>\
"It Lu from Har Cock Cafe," the woman says. "You still want bar job?"
[[Yes please!|WELBANG-410000 Yes please]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Yes please!"
"Okay. You come in to-mor-row four o'clock, okay? We pay you one shif. 600 Bah."
[[Okay, great!|WELBANG-411000 Joining instructions]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, great!" you say. "Thank you!"
"You need bring thong, high heel shoe and makeup," she says. "Okay? four o'clock. Don' be late."
[[I won't.|WELBANG-412000 I won't]]
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
"I'll be there," you promise. //Thong, heels, makeup.//
"Okay, see you to-mor-row." She hangs up.
Uncle & Aunt Pork Noodle is too busy to open up Signal: you wolf down your noodle soup fast, so you can get back to the hostel and send a message to Ian and the team.
//I did it. I actually did it.// You're officially undercover in the Hard Cock Cafe. And it starts tomorrow!
You need to report in. And [[buy a uniform|FNG-1000 Title card]]...
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<set $avatar.clothing.pushUnique("accessories/blueBedsheets/50_blueBedsheets")>>
<<set $kate.arousal to 0>>
<</silently>>\
<<header>>\
<<page>>\
Your thoughts slip away and you drift into a [[deep, peaceful sleep|WR-60 Quiet day]].
<</page>><<silently>>
<<emote-calm>>
<<remove-makeup-lipstick>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<wear-top-whiteRipleyVest>>
<<emote-eyes-squint>>
<<set $avatar.clothing.delete("accessories/blueBedsheets/50_blueBedsheets")>>
<</silently>>\
<<header>>\
<<page>>\
Tuesday dawns hot and humid.
You've got no mission taskings, no work at the club today. It'd be nice to do something relaxing; go swim in a rooftop pool somewhere, or get out of the city and spend a day on the beach.
But part of the '$kate.cover.firstName $kate.cover.surname' <div class="tooltip">legend<span class="tooltiptext">a spy's claimed background story, usually supported by documents and memorised details</span></div> is that she's broke, broke enough to need a job in a Patpong whorehouse. You decide it's best to just [[mooch around the hostel|WR-70 Moocher]] instead.
<</page>><<silently>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-shorts-basicBlackCottonBlendHotPants>>
<<wear-top-yellowAndBlackCottonFlaredVest>>
<<wear-bigBlackSunglasses>>
<<wear-shoes-greyToeThongFlipFlops>>
<<wear-ring-transmitterRing>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/hostel/courtyard.jpg" 100 1000 500 0>>\
"So, $kate.cover.firstName, ummm..." handing you a beer, the landlady's son nervously rubs the back of his neck. "You like the movies?"
[[Sure, Wun Sen, why?|WR-80 Noodle's friend][$kate.nameForNoodle to "Wun Sen"]]
[[Sure, Noodle, why?|WR-80 Noodle's friend][$kate.nameForNoodle to "Noodle"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Sure, $kate.nameForNoodle," you say, taking the cold beer. "Why?"
"My friend, he work in cinema, he uhhh...<div class="tooltip">poo tang paap<span class="tooltiptext">the person who sets up the image</span></div>. Ummm...he control how movie show on wall."
[[A projectionist?|WR-80.5 Projectionist]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He's the projectionist?"
<span class="greenHighlighter">Wun Sen ''liked'' that.</span>
"Yah, yah!" $kate.nameForNoodle enthuses. "We can watch for free, all movie. In special room. Best seat in house, hahaha."
[[Wow, cool.|WR-81 Wow cool]]
[[Are you inviting me?|WR-82 Are you inviting me?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Wow, sounds cool."
"Mm-hm! Maybe, um, you come see? I check my friend, he say it okay you to come."
[[Won't your friend get in trouble?|WR-85 Projection racket]]
<span class="greyedOut">//[Unlocks the ''Movie Night'' secondary mission]//</span> [[Okay, why not.|WR-86 Kate agrees to Movie Night with Noodle]]
[[Thanks but I can't make it.|WR-87 Thanks but no thanks Noodle]]
<<link "$kate.nameForNoodle, you and I can't date." "WR-88 Not into Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh...are you inviting me?"
"Mm-hm!" $kate.nameForNoodle nods eagerly. "New Star War movie, juss come out. I check my friend, he say okay you can come."
[[Won't your friend get in trouble?|WR-85 Projection racket]]
<span class="greyedOut">//[Unlocks the ''Movie Night'' secondary mission]//</span> [[Okay, why not.|WR-86 Kate agrees to Movie Night with Noodle]]
[[Thanks but I can't make it.|WR-87 Thanks but no thanks Noodle]]
<<link "$kate.nameForNoodle, you and I can't date." "WR-88 Not into Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Won't your friend get in trouble?"
"No, no, cinema the owner, he have to ahhh, give favour to my friend mom. It all okay, no problem."
<span class="greyedOut">//[Unlocks the ''Movie Night'' secondary mission]//</span> [[Okay, why not.|WR-86 Kate agrees to Movie Night with Noodle]]
[[Thanks but I can't make it.|WR-87 Thanks but no thanks Noodle]]
<<link "$kate.nameForNoodle, you and I can't date." "WR-88 Not into Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, well...sure," you shrug. "Why not."
<span class="greenHighlighter">$kate.nameForNoodle ''loved'' that.</span>
"Coool! I check him, see <<if hasVisited("WR-82 Are you inviting me?")>>when can go<<else>>what on<</if>>. <div class="tooltip">Waooo<span class="tooltiptext">Wowww</span></div>. I see you later, $kate.cover.firstName."
<<link "Later, $kate.nameForNoodle." "WR-95 Later Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks, it's really cool of you to invite me. But I don't think I can make it."
<span class="redHighlighter">$kate.nameForNoodle was ''disappointed''.</span>
"Uh huh, yeah cool, no problem." $kate.nameForNoodle shrugs it off like it's no big deal. "Juss, uhhh, no problem. I see you later, $kate.cover.firstName."
<<link "Later, $kate.nameForNoodle." "WR-95 Later Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.nameForNoodle, ummm...I think you're really sweet. But I'm a bit older. You and I can't...go on dates."
<span class="redHighlighter">$kate.nameForNoodle was ''disappointed''.</span>
"Mmm, yeah, no big deal." $kate.nameForNoodle's cheeks flush red. "Juss idea. No pressure. Sorry."
[[Mai pen rai, don't worry about it.|WR-89 Mai pen rai]]
[[Don't apologise, I was flattered.|WR-90 No apologies]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Mai pen rai<span class="tooltiptext">No big deal</span></div>, don't worry about it."
"Mm-hm. I see you later, $kate.cover.firstName."
<<link "Later, $kate.nameForNoodle." "WR-95 Later Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Don't apologise," you tell him. "I was flattered."
"Mm-hm, haha. I, uh, I see you later, $kate.cover.firstName."
<<link "Later, $kate.nameForNoodle." "WR-95 Later Noodle">><</link>>
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, yeah. Later, $kate.nameForNoodle." <<if hasVisited("WR-86 Kate agrees to Movie Night with Noodle")>>//What'd I just agree to?//<</if>>
The rest of the day trickles by in peace, reading in the hot sun, listening to the [[distant sounds of the city|WR-95.1 Girls just wanna]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
It's nice, but...'$kate.cover.firstName $kate.cover.surname' could have a little more <div class="tooltip">sanook<span class="tooltiptext">Thai joy of life. Embracing fun & enjoyment when it's available. Integral part of Thai culture</span></div> if she had a little more cash.
You guess that's the big appeal of <div class="tooltip">bargirling<span class="tooltiptext">club prostitution</span></div>. Connor and Lu told you they make a barmaid's monthly pay every night they work.
You didn't understand it when you arrived, not really. But you get how other girls [[fall into it|WR-96 Update from HQ]] now.
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<<removeShoes>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 200 1000 600 0>>\
Later, you have a secure messaging session with <<Olivia>> back at <div class="tooltip">Faslane<span class="tooltiptext">a British naval base, hosting a CIA 'black site'; the HQ of Combined Task Force <small>NEPTUNE</small></span></div>. It's standard stuff, a couple of minor questions about yesterday's report.
She assures you that, whatever's causing slow internet at the club, it's not <div class="tooltip">CCI<span class="tooltiptext">CIA Center for Cyber Intelligence</span></div>. They've tasked an expert to [[analyse it|WR-96.5 Pro tone]]; nobody wants the club bringing in an IT guy.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She doesn't say a thing about Bonaht. Not a word about the part of your shift you spent down on your knees.
You can't read her mind, but it doesn't feel like she's tiptoeing around it. It feels more like...//everything's normal. We're okay with it if you are.//
Like you realised yesterday, they're [[not going to pull you out|WR-97 Not gonna pull me out]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
That's liberating in some ways, scary in others. On the one hand...you're starting to believe they're okay with the things you have to do to stay undercover.
On the other...it puts pressure on you to keep going. You've crossed several lines already: first Connor, then Kriangsak, now Bonaht. When the next one comes up, [[what'll you do, quit|WR-98 Tid]]?
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your mind drifts back to the early hours of this morning.
You were in the office with Ploy and Káyk. Topless, in heels and makeup, waiting obediently while Tid counted out the money.
//Ploy, <div class="tooltip">yuu tee nee<span class="tooltiptext">stick around</span></div>,// he'd said. You and Káyk were getting changed next door while she was getting fucked.
You've been assuming Tid only fucks the Thai girls, and so far that's been true. But it was true about Bonaht, too...until it wasn't.
//What am I gonna do on the night he says, $kate.stripperName, <div class="tooltip">yuu tee nee<span class="tooltiptext">stick around</span></div>?//
//[[Wriggle out of it somehow.|WR-99 Wriggly]]
[[Abort the mission.|WR-99.1 Abort]]
[[Peel down my thong and bend over the desk.|WR-99.2 Thong down ass up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Wriggle out of it somehow.//
Really, though? <<if hasVisited("GOF-3550 Tid spanks Kate")>>//Didn't wriggle out of it when he spanked me.//<<else>>//Didn't wriggle out of it with Bonaht.//<</if>>
<<if hasVisited("WR-99.1 Abort")>>\
//$kate.stripperName, <div class="tooltip">yuu tee nee<span class="tooltiptext">stick around</span></div>.// If it comes down to it...you know what you'll //actually// do.
//[[Peel down my thong and bend over the desk.|WR-99.2 Thong down ass up]]//
<<else>>\
//What would I //actually// do?//
//[[Abort the mission.|WR-99.1 Abort]]//
//[[Peel down my thong and bend over the desk.|WR-99.2 Thong down ass up]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Fuck it, abort the mission.// Maybe. But why?
//And how would I explain it?// You've already let Connor and Kriangsak fuck you. And you let Bonaht use your mouth, like you're some kind of sex toy. Would a quickie with Tid really be the straw that broke the camel's back?
<<if hasVisited("WR-99 Wriggly")>>\
//$kate.stripperName, <div class="tooltip">yuu tee nee<span class="tooltiptext">stick around</span></div>.// If it comes down to it...you know what you'll //actually// do.
//[[Peel down my thong and bend over the desk.|WR-99.2 Thong down ass up]]//
<<else>>\
//What would I //actually// do?//
//[[Wriggle out of it somehow.|WR-99 Wriggly]]//
//[[Peel down my thong and bend over the desk.|WR-99.2 Thong down ass up]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
If he wants it...//<<if hasVisited("WR-99 Wriggly")>>I'm probably going over that desk. Only thing I'll 'wriggle out of' is my <<knickers>>.<<else>>I'm going over that desk.<</if>>
Fuck.// But...may as well come to terms with it now, so it'll be less stressful if it happens.
Lot of crossed lines behind you. No reason to think Bonaht was the last one.
<<link "//I've //got// to catch <small>DEVILFISH.</small>//" "WR-99.3 Gotta catch DEVILFISH">><</link>>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Gotta catch <div class="tooltip"><small>DEVILFISH.</small><span class="tooltiptext">The target of your mission. A broker for the Al-Ahmadi Network, a clandestine financier of Islamic terrorist activity and recruitment</span></div>// Otherwise you're crossing all these lines for nothing.
That can't be the way this ends. Not any more. //Gotta catch him.//
//[[Whatever it takes.|WR-200 Title card]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//Just gotta keep it together.//
Things are probably going to get crazier over the next few weeks. You just need to go with the flow, stop worrying that <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> will lose their nerve. They [[haven't yet|WR-140 Feeling better]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Operationally speaking – you're in a //great// position.
You're fitting in with the staff and the regulars; you've got access to management; you're allowed to roam around the site. Any time the mission team needs something done, they can just task you directly.
//Just got to keep my head down, and <<link "wait for <small>DEVILFISH</small>" "WR-140 Feeling better">><</link>>.//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Still...//best if I'm personally around for the capture.//
You don't know what form that could take: maybe you ID him face to face, maybe you're the one who kills the power three seconds before <div class="tooltip">Ground Branch<span class="tooltiptext">the CIA's secretive paramilitary force</span></div> slips in through the fire exit.
Whatever. The <div class="tooltip">operational prep<span class="tooltiptext">gathering intelligence, conducting analysis, and setting the stage for a successful intelligence operation</span></div> you're doing is great, but the best possible ending to this is that [[you're still around|WR-140 Feeling better]] when the objective is achieved.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The key thing is making sure you stay //effective.//
Sure, some of the things you've been doing are unorthodox. But so's this whole mission, and you've been doing your absolute best to adapt to it.
As long as you can keep up this steady flow of intel, that's it, [[nothing else should matter|WR-140 Feeling better]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You feel a lot better than you did yesterday. Something about the pressure of being in the club, wearing the makeup and the clothes, trying to maintain your cover while also worrying about what was happening on camera – it all just got on top of you in the moment.
You feel a lot calmer about the mission today, more positive. Maybe this is just one of the things you're going to have to learn to manage in the field – stress and emotional reactions when they flare up.
The most important thing is keeping your cool, and [[continuing the mission|WR-200 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<avatar-getWet>>
<<wear-shoes-greyToeThongFlipFlops>>
<<emote-eyes-closed>>
<</silently>>\
<a data-passage="WR-210 Shower thoughts">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/dateNightBaanTepaBathroomTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''SHARED BATHROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Wednesday's your double date with $zoe.firstName! You grab a shower, mentally preparing under the tepid spray.
<div class="tooltip"><small>NEPTUNE</small><span class="tooltiptext">The CIA-led black ops task force you're seconded to. Tasked with locating and neutralising sources of terrorist funding</span></div> sees this as a great opportunity to get closer to her. It's still the early stages of <div class="tooltip">SADRAT<span class="tooltiptext"><small>the process of recruiting agents: Spotting, Assessment, Development, Recruitment, Agent handling, Termination</small></span></div>, so your main aim should be getting her to like you. Actual intelligence gathering can take a back seat for now.
//[[Need to make it a fun date!|WR-220 Sanook]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Have fun together, it'll be a bonding experience. So...//I basically just need to be fun.//
Which is fine, because you're kind of ready for a night out. You could use a break from your frugal routine at the hostel, and the hustle of the club.
Ideally, the Russians will take you somewhere glamorous to be wined and dined. They had that alpha male vibe at the skybar, and they seemed to have money. You feel like if you and $zoe.firstName turn up [[looking hot|WR-221 Looking hot]], they'll take care of the rest.
<</page>><<silently>>
<<set _dominantKink to $kate.kinks.random()>>
<<set $kate.arousal += 1>>
<<set _arousalAlert to "*Normal.* Mission focused. Low interest in sex.">>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
There's a little tingle of excitement in your stomach about seeing Kolya again.
You were fine with not seeing him again; he's nothing to do with the mission. But now circumstances are pushing you back together, it feels like, well...there are //possibilities.//
He's not your normal type, but you two had a definite chemistry in the skybar. You wonder if you'll feel it again when you see him.
<<if _dominantKink == "exhibitionist">>And the way he was touching your back in front of everyone was kind of [[hot|WR-230 Getting ready]].<<elseif _dominantKink == "submissive">>And the way he just //told// you to give him your number at the end was bossy and kind of [[hot|WR-230 Getting ready]].<<elseif _dominantKink == "masochist">>And the way he got up in your space at the end of the night, and demanded your phone number, was kind of [[hot|WR-230 Getting ready]].<<else>>//ERROR IN DOMINANTKINK VAR// - //[[CONTINUE ANYWAY|WR-230 Getting ready]]//<</if>>
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-bathRobe-whiteBathRobe>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
//Date night.// Nerves and excitement mingle as you dry your hair in your room. You're borrowing a dress from $zoe.firstName, so you can wear something casual over to her place.
<<Knickers>> are a thing. You should pick something skimpy, to avoid <div class="tooltip">VPL<span class="tooltiptext"><small>the visible outline of underwear under tight clothing</small></span></div> in whatever $zoe.firstName lends you.
Sliding open your underwear drawer, your mind's also on Kolya. Are you picking something just for you? Or something flattering to be seen in later?
//[[Not planning to sleep with him.|WR-240 Not planning on sex with Kolya]]//
//[[Let's just go with the flow, see what happens.|WR-250 Go with the flow (Kolya)]]//
//[[Probably best for the mission if I do.|WR-260 DTF (Kolya)]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Things have been pretty crazy lately, so...//better not rule it out.//
But still, it's just a first date. Nothing says you have to jump into bed with Kolya in return for dinner or whatever.
It might be better for your reputation at work if you don't. Show them you're a professional officer, not some kind of...wannabe <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage</span></div>.
<span class="greenHighlighter">+1 to //Resist Seduction// rolls later.</span>
//[[Pick out some underwear for the date.|WR-300 Knickers choice]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
All intelligence ops rely on improvisation. //I'll just go with the flow tonight,// you decide. Won't rule anything out, just...//see how I'm feeling, and decide what's best for the mission.//
Maybe it'll be better if you do sleep with Kolya. Build rapport with $zoe.firstName, plus promiscuity makes '$kate.cover.firstName $kate.cover.surname' more consistent.
Or maybe it won't be necessary. It'd be nice to show HQ you can achieve mission objectives without using your body every time.
//I'll stay flexible.//
<span class="greyHighlighter">No modifier to //Resist Seduction// rolls later.</span>
//[[Pick out some underwear for the date.|WR-300 Knickers choice]]//
<</page>><<silently>>
<<set $kate.arousal += 1>>
<<set _arousalAlert to "*Anticipation.* Ready for some male attention.">>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
//It's probably better for the mission if I do.//
It'll build rapport with $zoe.firstName. And make '$kate.cover.firstName $kate.cover.surname' more consistent: the kind of girl who'd get a job at the Hard Cock Cafe probably doesn't make hot guys wait for the third date.
So...yeah. //Probably picking something for Kolya to enjoy looking at later.//
That thought makes your stomach tighten, makes your nipples perk up a little. You glance at your body in the mirror, noting the subtle flush of your cheeks, the quickened rise and fall of your chest. Nerves or...//something.//
<span class="redHighlighter">-1 to //Resist Seduction// rolls later.</span>
//[[Pick out some underwear for the date.|WR-300 Knickers choice]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "rapport">>\
//It's the best way to build rapport with $zoe.firstName,// you tell yourself. //Can't position myself like I'm above her, not if she's gonna trust and open up to me.//
<<elseif $kateSays == "cover">>\
//$kate.cover.firstName $kate.cover.surname isn't me,// you tell yourself. //This whole op's gonna fall apart if I'm promiscuous at work and a prude on my nights off.//
<<elseif $kateSays == "fitIn">>\
//This is just what the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are like,// you tell yourself. //Can't get close to them if I act like I'm different.//
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
You slide open up your underwear drawer, push down a slight twinge of uncertainty. It helps the mission, so...//I'm doing it.//
A subtle quiver in your groin as your body gets used to the idea. //Better pick some <<knickers>> Kolya will like seeing me in later. 'Cause I'm doing it.//
<span class="redHighlighter">-1 to //Resist Seduction// rolls later.</span>
//[[Pick out some underwear for the date.|WR-300 Knickers choice]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You rummage through a rainbow of lace and lycra, trying to pick the right thing.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div><<if $kate.agency == "cia" or $kate.agency == "csis">>Panties<<elseif $kate.agency == "mi6">>Knickers<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>Undies<<else>>ERROR IN KATE.AGENCY VAR<</if>></div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="underwear-container">\
<<include "WR-305 Knickers">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "WR-349 Exit navigation">>
</span>\
<</page>><<if !$avatar.underwear.includes("clothing/underwear/blackAndLimeGreenThreeSideStrapGanjaString/30_knickers-blackAndLimeGreenThreeSideStrapGanjaString")>>\
<<link "Ganja leaf g-string">>\
<<wear-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Strappy, bright, counterculture.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ganja leaf g-string">>\
<<remove-knickers-blackAndLimeGreenThreeSideStrapGanjaString>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/blackMeshWithHotPinkBowsCrotchlessString/30_knickers-blackMeshWithHotPinkBowsCrotchlessString")>>\
<<link "Black mesh crotchless g-string with hot pink bows">>\
<<wear-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "A sexy little scrap of sheer lace.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black mesh crotchless g-string with hot pink bows">>\
<<remove-knickers-blackMeshWithHotPinkBowsCrotchlessString>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedTwoSideStrapWithGoldLoopsString/30_knickers-cherryRedTwoSideStrapWithGoldLoopsString")>>\
<<link "Cherry red strappy thong with gold loops">>\
<<wear-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Bold and attention-grabbing.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red strappy thong with gold loops">>\
<<remove-knickers-cherryRedTwoSideStrapWithGoldLoopsString>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/vsPinkHeartsKnickers/30_knickers-vsPinkHeartsKnickers")>>\
<<link "VS Sheer Pink hearts <<knickers>>">>\
<<wear-knickers-vsPinkHeartsKnickers>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Comfy, but the sheerness is very sexy.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// VS Sheer Pink hearts <<knickers>>">>\
<<remove-knickers-vsPinkHeartsKnickers>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/maroonGlitterString/30_knickers-maroonGlitterString")>>\
<<link "Maroon glitter thong">>\
<<wear-knickers-maroonGlitterString>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Sparkly and glam.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Maroon glitter thong">>\
<<remove-knickers-maroonGlitterString>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/ivoryStrappyString/30_knickers-ivoryStrappyString")>>\
<<link "Strappy ivory g-string">>\
<<wear-knickers-ivoryStrappyString>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "These almost make you feel like a bride.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Strappy ivory g-string">>\
<<remove-knickers-ivoryStrappyString>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/leopardPrintMidiWithSplitSide/30_knickers-leopardPrintMidiWithSplitSide")>>\
<<link "Leopard print midi <<knickers>>">>\
<<wear-knickers-leopardPrintMidiWithSplitSide>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "These show your wild and playful side.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Leopard print midi <<knickers>>">>\
<<remove-knickers-leopardPrintMidiWithSplitSide>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/pinkThongWithCentralBow/30_knickers-pinkThongWithCentralBow")>>\
<<link "Pink thong with central bow">>\
<<wear-knickers-pinkThongWithCentralBow>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Plain but cute and feminine.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Pink thong with central bow">>\
<<remove-knickers-pinkThongWithCentralBow>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redLowRiseThong/30_knickers-redLowRiseThong")>>\
<<link "Red low rise thong">>\
<<wear-knickers-redLowRiseThong>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _knickersThought to "Bold scarlet, and you like the way it frames your bum.">>
<<else>>
<<set _knickersThought to "Bold scarlet, and you like the way it frames your bum.">>
<</if>>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red low rise thong">>\
<<remove-knickers-redLowRiseThong>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/redWineThongWith2Bows/30_knickers-redWineThongWith2Bows")>>\
<<link "Red wine thong with two bows">>\
<<wear-knickers-redWineThongWith2Bows>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "You feel sexy and classy in this.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Red wine thong with two bows">>\
<<remove-knickers-redWineThongWith2Bows>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if hasVisited("GNO-13210 Cheeky robin egg blue")>>\
<<if !$avatar.underwear.includes("clothing/underwear/cheekyThongRobinEggBlue/30_knickers-cheekyThongRobinEggBlue")>>\
<<link "Robin egg blue //Cheeky// thong">>\
<<wear-knickers-cheekyThongRobinEggBlue>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Sexy and low-slung, this is a versatile choice.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Robin egg blue //Cheeky// thong">>\
<<remove-knickers-cheekyThongRobinEggBlue>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif hasVisited("GNO-13230 Cheeky rose red")>>\
<<if !$avatar.underwear.includes("clothing/underwear/cheekyThongRoseRed/30_knickers-cheekyThongRoseRed")>>\
<<link "Rose red //Cheeky// thong">>\
<<wear-knickers-cheekyThongRoseRed>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Sexy and low-slung, this is a versatile choice.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rose red //Cheeky// thong">>\
<<remove-knickers-cheekyThongRoseRed>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<elseif hasVisited("GNO-13240 Cheeky flamingo pink")>>\
<<if !$avatar.underwear.includes("clothing/underwear/cheekyThongFlamingoPink/30_knickers-cheekyThongFlamingoPink")>>\
<<link "Flamingo pink //Cheeky// thong">>\
<<wear-knickers-cheekyThongFlamingoPink>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Sexy and low-slung, this is a versatile choice.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Flamingo pink //Cheeky// thong">>\
<<remove-knickers-cheekyThongFlamingoPink>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<else>>\
<<if !$avatar.underwear.includes("clothing/underwear/cheekyThongRavenBlack/30_knickers-cheekyThongRavenBlack")>>\
<<link "Raven black //Cheeky// thong">>\
<<wear-knickers-cheekyThongRavenBlack>>\
<<if $kate.isWearing.includes("bathrobe")>>
<<remove-bathRobe-whiteBathRobe>>
<</if>>
<<set _knickersThought to "Sexy and low-slung, this is a versatile choice.">>
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Raven black //Cheeky// thong">>\
<<remove-knickers-cheekyThongRavenBlack>>\
<<replace "#underwear-container">>\
<<include "WR-305 Knickers">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-349 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<</if>>\<<if $kate.isWearing.includes("knickers")>>\
_knickersThought
//[[Look through your bras.|WR-350 Bra choice]]//
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
Bras are even trickier to accessorise when you don't know what you'll be wearing.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Bras</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="bras-container">\
<<include "WR-355 Bras">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "WR-369 Exit nav">>
</span>\
<</page>><<if !$avatar.underwear.includes("clothing/underwear/blackPlungeBraWithPinkBow/30_bra-blackPlungeWithPinkBow-rear")>>\
<<link "Black criss-cross plunge bra">>\
<<wear-bra-blackPlungeWithPinkBow>>\
<<set _braThought to "Simple and black, with versatile straps.">>
<<replace "#bras-container">>\
<<include "WR-355 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Black criss-cross plunge bra">>\
<<remove-bra-blackPlungeWithPinkBow>>\
<<replace "#bras-container">>\
<<include "WR-355 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/cherryRedPlungeBra/30_bra-cherryRedPlunge-rear")>>\
<<link "Cherry red plunge bra">>\
<<wear-bra-cherryRedPlunge>>\
<<set _braThought to "Bright and attention grabbing.">>
<<replace "#bras-container">>\
<<include "WR-355 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Cherry red plunge bra">>\
<<remove-bra-cherryRedPlunge>>\
<<replace "#bras-container">>\
<<include "WR-355 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/nudeStraplessBra/30_bra-nudeStrapless-rear")>>\
<<link "Nude strapless bra">>\
<<wear-bra-nudeStrapless>>\
<<set _braThought to "No straps to worry about.">>
<<replace "#bras-container">>\
<<include "WR-355 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Nude strapless bra">>\
<<remove-bra-nudeStrapless>>\
<<replace "#bras-container">>\
<<include "WR-355 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.underwear.includes("clothing/underwear/whiteHalfCupBraCentralDart/30_bra-whiteHalfCupCentralDart-rear")>>\
<<link "White half cup bra">>\
<<wear-bra-whiteHalfCupCentralDart>>\
<<set _braThought to "Demure and simple.">>
<<replace "#bras-container">>\
<<include "WR-355 Bras">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// White half cup bra">>\
<<remove-bra-whiteHalfCupCentralDart>>\
<<replace "#bras-container">>\
<<include "WR-355 Bras">>\
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-369 Exit nav">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includes("bra")>>\
_braThought
//[[This'll do.|WR-400 Yaowarat Title card]]//
<<else>>\
//[[Just go braless.|WR-400 Yaowarat Title card]]//
<</if>>\<<silently>>
<<wear-shorts-bayouxBlueButtonDetailShorts>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-bigBlackSunglasses>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-bohoBrownLeatherBag>>
<<wear-ring-transmitterRing>>
<<if $kate.isWearing.includes("bra")>>
<<set $kateWoreABraToZoes to true>>
<</if>>
<</silently>>\
<a data-passage="WR-410 Welcome to Yaowarat">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/yaowarat/yaowaratDayTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''YAOWARAT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
$zoe.firstName's condo sits off Yaowarat Road, the heart of Bangkok's Chinatown.
<<image "/locationPhotos/thailand/yaowarat/yaowaratRoad.jpg" 250 1000 660 0>>\
A taxi drops you off on this bustling <div class="tooltip">thanon<span class="tooltiptext">main street</span></div>. It's packed with Chinese restaurants, mysterious apothecaries, sizzling street food stalls, and dark, winding alleys.
//<<link "Find $zoe.firstName's condo." "WR-420 Zoe's building">><</link>>//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/yaowarat/zoesCondoBuilding.jpg" 150 1000 550 0>>\
The humid air clings to your skin, and even a short walk through the crowd has sweat pricking at your brow. <<if $kate.braSize == "large" or not $kate.isWearing.includes("bra")>>Two Thai teenage boys passing by cast unsubtle looks at your breasts<<if not $kate.isWearing.includes("bra")>>, unconstrained beneath a thin cotton top<</if>>.<</if>>
$zoe.firstName lives in a ramshackle Bangkok lowrise. A web of thick black cables connects it to the street.
//[[Buzz up to number 5.|WR-430 Buzz up]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You press the buzzer. The sound blends into the hum of passing taxis, tuk-tuks, and chatter in foreign languages.
A crackle on the intercom, followed by $zoe.firstName's voice. "Hey?"
[[Hey.|WR-440 Introduction][$kateSays to "hey"]]
<<link "It's $kate.cover.firstName." "WR-440 Introduction">><<set $kateSays to "itsKate">><</link>>
[[Jehovah's Witnesses.|WR-440 Introduction][$kateSays to "jehovah"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<set $header.line1 to "''1115 CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "hey">>\
"Hey."
"Hey $kate.cover.firstName! Top floor." \
<<elseif $kateSays == "itsKate">>\
"It's $kate.cover.firstName."
"Hey, come up! Top floor." \
<<elseif $kateSays == "jehovah">>\
"Jehovah's Witnesses."
"Hiii! Come up, top floor." \
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>> With a dull //click,// the door yields to your pressure.
Inside, you climb three flights of narrow, dimly-lit stairs to reach condo number 5.
A little twinge of nerves dances in your stomach<<if hasVisited("GNO-74002.6 Kate poses topless for Bry")>>; part of you regrets getting dragged into that group topless selfie $zoe.firstName sent to her boyfriend.
//Hell of a first impression, $kate.firstName.//
<<else>>, that weak cocktail of anticipation and dread you always get just before you meet someone new.
//Hope he thinks I'm cool, hope he likes me.//
<</if>>\
//[[Knock and wait.|WR-450 Hey]]//
<</page>><<silently>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<<emote-mouth-smile>>
<<remove-bigBlackSunglasses>>
<<set $avatar.foreground.pushUnique("clothing/tops/brownVestWithSpaghettiStraps/60_sunglasses-bigShadesTuckedInBrownVest2-"+$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
"Heyyy!" Wearing just a bathrobe, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> greets you with a wide smile. Cool air wafts out from inside. "Come in, come in."
<<image "/locationPhotos/thailand/yaowarat/zoeCondoLivingArea.jpg" 200 1000 600 0>>\
She leads you into an artsy little condo, decorated with vibrant rugs and textiles. Aircon washes over your skin like cold silk.
Hunched over on a couch, a muscular figure with a broken nose and neck tattoos is playing a video game. He doesn't look up as you enter the room.
"Bry, this is $kate.cover.firstName. $kate.cover.firstName, Bryan."
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances up, his expression cold. <<if $kate.braSize == "large">>His eyes do that //face, breasts, face// thing that men do when they meet you. <</if>>He greets you with a curt upward nod of his chin.
[[Hi, Bry.|WR-460 Hi Bry][$kateSays to "Hi, Bry"]]
[[Nice to meet you.|WR-460 Hi Bry][$kateSays to "Nice to meet you"]]
<<if hasVisited("DINBOSS-17000 Geek girl")>>\
<span class="greyedOut">//[Geek Girl]//</span> [[Is that Black Ops?|WR-470 Black Ops]]
<<else>>\
<span class="greyedOut">//[Geek Girl]// Is that Black Ops?</span>
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
"Hey." <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reply is gruff, his eye contact fleeting. His gaze returns to the screen, flashing blood red as an enemy player peppers him with ray gun fire. "Aw //fuck."//
Catching your eye, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a wry look. "C'mon," she says. "We need [[something to wear|WR-500 Zoe's room]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Is that Black Ops?" you ask.
<span class="greenHighlighter">Bryan ''liked'' that.</span>
"Uhhh...yeah." <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reply is gruff, his eye contact fleeting. His gaze returns to the screen, flashing blood red as he gets fragged by another player. "Aw //fuck."//
Catching your eye, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives you a wry look. "C'mon," she says. "We need [[something to wear|WR-500 Zoe's room]]."
<</page>><<silently>>
<<emote-calm>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S BEDROOM''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S BEDROOM''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/yaowarat/zoesRoom.jpg" 100 1000 500 0>>\
The bedroom is a cozy retreat, with a plush queen-sized bed and a vintage wooden <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. A mural of a chinese dragon creates a striking accent wall.
[[Cool place.|WR-510 Cool place]]
[[Love the dragon.|WR-560 Love the dragon]]
[[Is Bryan okay?|WR-570 Is Bryan okay?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $avatar.foreground.delete("clothing/tops/brownVestWithSpaghettiStraps/60_sunglasses-bigShadesTuckedInBrownVest2-"+$kate.braSize)>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"Cool place," you say, unslinging your bag.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Thanks." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> beams. "You're in a hostel, right?"
[[Right.|WR-520 Hostel, right]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Right."
"You can get //such// good deals if you look around," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Helps if you know some Thai girls. Moo helped me find this place."
[[Think I'd need a pay rise.|WR-530 Need a pay rise]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Think I'd need a pay rise."
"Well," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, "you know how you can get one."
[[I'm happy behind the bar.|WR-540 Happy barmaiding]]
[[Yeah, I'm...thinking about it.|WR-550 I'm thinking about bargirling]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"I'm happy behind the bar."
"Mm-hm." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs again, <div class="tooltip">mai pen rai<span class="tooltiptext">no big deal</span></div>. "Okayyy," she says, opening up the vintage wooden <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. "Let's see what we've got to [[wear|WR-700 What to wear]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, I'm...thinking about it."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Mmm." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods encouragingly. "It's better. Anywayyy," she says, opening up the vintage wooden <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. "Enough work. Let's see what we've got to [[wear|WR-700 What to wear]]..."
<</page>><<silently>>
<<emote-mouth-smile>>
<<set $avatar.foreground.delete("clothing/tops/brownVestWithSpaghettiStraps/60_sunglasses-bigShadesTuckedInBrownVest2-"+$kate.braSize)>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"Love the dragon," you say, unslinging your bag.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Hah, thanks. His name's Bruce," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells you with a grin. "You're in a hostel, right?"
[[Right.|WR-520 Hostel, right]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<emote-brows-raised>>
<<set $avatar.foreground.delete("clothing/tops/brownVestWithSpaghettiStraps/60_sunglasses-bigShadesTuckedInBrownVest2-"+$kate.braSize)>>
<<remove-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
"Is Bryan okay?" you ask, unslinging your bag.
"He's fine," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Think he's a bit shy about meeting you."
[[Me? Why?|WR-580 Why]]
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why?"
"I dunno. Prolly just...worried you'll think he's weird," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
[[I like weird.|WR-590 I think it's interesting]]
<<link "It is a //bit// weird." "WR-600 It is a bit weird">><</link>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
[[I work in a titty bar, I'm not gonna judge him.|WR-610 I work topless, I won't judge]]
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>\
[[I work in a nudie bar, I'm not gonna judge him.|WR-610 I work topless, I won't judge]]
<<else>>\
[[I work in a topless bar, I'm not gonna judge him.|WR-610 I work topless, I won't judge]]
<</if>>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I like weird."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> grins. "Don't worry, he'll come out of his shell. Anywayyy," she says, opening up the vintage wooden <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. "Thanks for coming. Let's see what we've got to [[wear|WR-700 What to wear]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It is a //bit// weird," you admit, your voice low.
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span>
"Yeah, well, don't judge," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, her volume matching yours. "I told him you were cool. C'mon," she says, opening up the vintage wooden <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. "Let's find something to [[wear|WR-700 What to wear]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia" or $kate.agency == "csis">>\
"I work in a titty bar," you shrug, "I'm not gonna judge him."
<<elseif $kate.agency == "asis" or $kate.agency == "nzsis">>\
"I work in a nudie bar," you shrug, "I'm not gonna judge him."
<<else>>\
"I work in a topless bar," you shrug, "I'm not gonna judge him."
<</if>>\
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"I know. Don't worry, he'll come out of his shell. Anywayyy," she says, opening up the vintage wooden <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>. "Thanks for coming. Let's see what we've got to [[wear|WR-700 What to wear]]..."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Tinny sounds of guns and explosions rattle through from next door. They seem so disconnected: Bryan stuck in a video game, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> getting ready for a date with someone else.
Her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>'s stuffed with clothes. A few drab, masculine things hang on the left side of the rail, a rainbow of lace, lycra and PVC fills the rest.
"So these guys are ballers. I'm thinking...classy but sexy, right?" she asks, sliding through the hangers.
[[Yeah, they think we're models.|WR-710 Reminding the player of the legend]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you nod. "What do models wear on dates?"
"Hmmm. How 'bout...//this//...or //this."// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> passes you two hangers. Green satin dangles from one, yellow lycra from the other.
She syncs her phone to a speaker, and puts on some pop music to drown out the gunfire. "Bryyy!" she calls into the next room, "can you bring us some beers, babe?"
//[[Pick a dress.|WR-720 Time to choose]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I got this feelin', inside my bones<small>🎵</small>
<small>🎵</small>It goes electric wavy when I turn it on<small>🎵</small>//
The bassline drops, filling the room with a playful energy. <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bathrobe.png']]")>>
<<set Dialog.open()>>
<</link>></span> bounces to the music while she rummages through her <<if $kate.agency == "cia" or $kate.agency == "csis">>closet<<else>>wardrobe<</if>>.
//Hmmm.// You lay out the dresses on her bed, picturing yourself in each one. They're both short; the green one is shiny satin, and the yellow one is clingy, strappy lycra.
//[[Try the green satin one first.|WR-730 Body confidence][$kateSays to "dress1"]]
[[Try the stretchy yellow one first.|WR-730 Body confidence][$kateSays to "dress2"]]//
<</page>><<silently>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>All through my city, all through my hooome<small>🎵</small>
<small>🎵</small>We're flyin' up no ceiling when we in our zone<small>🎵</small>//
//Okay, time to get changed.// You kick off your sandals, and undo your shorts.
//[[Take them off.|WR-740 Get your rocks off]]//
<</page>><<silently>>
<<removeShorts>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I got, that, sunshine in my pocket<small>🎵</small>
<small>🎵</small>Got that good soul in my feet<small>🎵</small>//
You slide off your shorts, laying them on $zoe.firstName's bed for now.
<<if $kate.isWearing.includes("bra")>>\
//[[Take off your top.|WR-741 Bra shot]]//
<<else>>\
As your fingers curl under the hem of your top, they hesitate a moment, lingering for a heartbeat.
//[[Take off your top.|WR-750 Topless]]//
<</if>>\
<</page>><<silently>>
<<removeTop>>
<</silently>>\
<<header>>\
<<page>>\
You peel it off and lay it on the bed.
The green dress is backless; you won't be able to wear a bra with it.
You reach behind your back to undo it. As your fingers curl under the strap, they hesitate a moment, lingering for a heartbeat.
//[[Take off your bra.|WR-750 Topless]]//
<</page>><<silently>>
<<removeTop>>
<<removeBra>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I feel that hot blood in my bo-dy<small>🎵</small>
<small>🎵</small>When it drops! Ooh!<small>🎵</small>//
<<if hasVisited("WR-741 Bra shot")>>\
You've changed in front of each other before, it shouldn't be a big deal. With a gentle squeeze, you unfasten your bra. The hesitation fades as you slide it off, and toss it onto the bed beside you.
<<else>>\
You've changed in front of each other before, it shouldn't be a big deal. With a gentle tug, you peel it off over your head, baring your breasts. The hesitation fades as you toss the top onto the bed beside you.
<</if>>\
Ready to try on a red dress, $zoe.firstName unties her robe, <span class="imageLink"><<link "slipping it off">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span>. For a moment, it feels like being back at the club.
<<if $kateSays == "dress1">>\
//[[Try on the slip dress.|WR-760 Try on dress 1]]//
<<else>>\
<<if $kateSays != "dress2">>\
//[ERROR IN KATESAYS VAR! PLEASE REPORT THIS]//
<</if>>\
//[[Try on the stretchy dress.|WR-770 Try on dress 2]]//
<</if>>\
<</page>><<silently>>
<<wear-dress-emeraldGreenSatinMiniDress>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I can't take my eyes up off it<small>🎵</small>
<small>🎵</small>Movin' so phenomenal-ly<small>🎵</small>//
You slip into the satin dress. It feels soft and silky on your bare skin.
//[[Check your reflection.|WR-770 First reflection]]//
<</page>><<silently>>
<<wear-dress-bananaYellowLongSleeveCutOutMiniDress>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I can't take my eyes up off it<small>🎵</small>
<small>🎵</small>Movin' so phenomenal-ly<small>🎵</small>//
You thought this dress was backless, until you spotted the label. But it's actually cut out at the front – pretty savagely! It looks like a dress you might wear to a club back in <<if $kate.agency == "cia">>Washington<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>, if someone hadn't taken a pair of scissors to it.
The chest band drapes over your breasts like a flimsy bandage. It feels like a wardrobe malfunction waiting to happen. <<if $kate.braSize != "large">>Maybe $zoe.firstName's boobs fill it out better?<</if>>
//[[Check your reflection.|WR-770 First reflection]]//
<</page>><<silently>>
<<set _kateVisibleTats to 0>>
<<if $kate.tattoos.includes ("chestSwallows")>>
<<set _kateVisibleTats += 1>>
<</if>>
<<if $kate.tattoos.includes ("rightNeckStars")>>
<<set _kateVisibleTats += 1>>
<</if>>
<<if $kate.tattoos.includes ("rightUnderboobWave")>>
<<set _kateVisibleTats += 1>>
<</if>>
<<if $kate.tattoos.includes ("leftCollarbone8BitHearts")>>
<<set _kateVisibleTats += 1>>
<</if>>
<<if $kate.tattoos.includes ("leftCollarboneCaffeineStructure")>>
<<set _kateVisibleTats += 1>>
<</if>>
<<if $kate.tattoos.includes ("leftHipTribal")>>
<<set _kateVisibleTats += 1>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>And under the liiights<small>🎵</small>
<small>🎵</small>When everything goes<small>🎵</small>//
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
You strike an uncertain pose in front of her full-length mirror.
"Mm, that's hot," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. <<if $kate.piercings.includes("navelSilverBarbell")>>"Shows off your <<if _kateVisibleTats gt 0>>tat<<if _kateVisibleTats gt 1>>s<</if>>. And your<</if>> belly bling."<<elseif _kateVisibleTats gt 0>>"Shows off your <<if _kateVisibleTats gt 0>>tat<<if _kateVisibleTats gt 1>>s<</if>>."<</if>><<else>>"Shows off your figure."<</if>>
[[Thanks.|WR-780 Thanks I like it][$kateSays to "thanks"]]
[[Not sure about sitting down in it?|WR-780 Thanks I like it][$kateSays to "notSure"]]
<<if $kate.braSize == "small">>\
[[Feel like my boobs are gonna slip out.|WR-780 Thanks I like it][$kateSays to "nipSlip"]]
<<else>>\
[[Feel like my boobs are gonna pop out.|WR-780 Thanks I like it][$kateSays to "nipSlip"]]
<</if>>\
<<else>>\
"Oh wow," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "That looks //great// on you."
[[Thanks.|WR-780 Thanks I like it][$kateSays to "thanks"]]
[[I'm always borrowing your clothes.|WR-780 Thanks I like it][$kateSays to "alwaysBorrowing"]]
[[This feels so nice.|WR-780 Thanks I like it][$kateSays to "feelsSoNice"]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
<<emote-mouth-smile>>\
"Thanks," you smile, smoothing the material over your hips.
<<elseif $kateSays == "notSure">>\
<<emote-brows-raised>>\
<<emote-mouth-talking>>\
"Not sure about sitting down in it," you say, tugging at the hemline.
<<elseif $kateSays == "nipSlip">>\
<<emote-brows-raised>>\
<<emote-mouth-talking>>\
"Feel like my boobs are gonna <<if $kate.braSize == "small">>slip<<else>>pop<</if>> out," you say, grasping them.
<<elseif $kateSays == "alwaysBorrowing">>\
<<emote-mouth-wideSmile>>\
"I'm always borrowing your clothes."
<<elseif $kateSays == "feelsSoNice">>\
<<emote-mouth-talking>>\
"This feels so nice," you say, running your palms over your hips through the soft silky material.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
<<include "WR-800 Gimme a twirl">>\
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm always borrowing your clothes."
<<include "WR-800 Gimme a twirl">>\
<</page>>"Gimme a twirl?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
//[[Show off the back.|WR-810 Kate twirl]]//<<silently>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Nothin' I can see but you when you dance, dance, dance, feel<small>🎵</small>//
You turn like a model, showing off your back.
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>"Nice," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> coos. "Your ass looks great in that."<<else>>"Hmm. Little bit of panties going on at the back," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> points out.<</if>>
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
[[Thanks.|WR-811 Kate dresses Zoe]]
<<else>>\
[[Hmmm.|WR-811 Kate dresses Zoe]]
<span class="greyedOut">//[Shrug]//</span> [[I can take 'em off.|WR-811 Kate dresses Zoe][$kateOfferedToGoCommando to true]]
<</if>>\
<</page>><<silently>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
<<emote-mouth-smile>>\
"Thanks."
<<else>>\
<<if $kateOfferedToGoCommando>>\
<<emote-mouth-talking>>\
"I can take 'em off," you say with a little shrug.
<<else>>\
<<emote-calm>>\
"Hmmm."
<</if>>\
<</if>>\
You help her as she wriggles into a <span class="imageLink"><<link "red sheath dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_redSheathDress.png']]")>>
<<set Dialog.open()>>
<</link>></span>, zipping her up at the back. Her hair smells like apple shampoo up close.
[[Wow, gorgeous.|WR-820 Kate compliments Zoe][$kateSays to "Wow! Gorgeous."]]
[[Red really suits you.|WR-820 Kate compliments Zoe][$kateSays to "Red really suits you."]]
<<link "Your boobs look //amazing.//" "WR-820 Kate compliments Zoe">><<set $kateSays to "Your boobs look //amazing.//">><</link>>
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Can't stop the feelin'!<small>🎵</small>//
"$kateSays"
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Thaaanks," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_redSheathDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, posing for the mirror in a few different angles. "Hmm. [[Not sure|WR-830 Dress off]]."
<</page>><<silently>>
<<emote-calm>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Ooh, it's something magi-cal<small>🎵</small>//
//<small>🎵</small>It's in the air it's in my blood it's rushin' on<small>🎵</small>//
After unzipping her, you <<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>peel off the lycra<<else>>slip off the satin<</if>> dress.
As you lay it out on the bed, there's a tap at the bedroom door.
"God's sake, Bry," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> chides, "you live here, don't knock. Uh..." She glances to you, like it's an afterthought. "Okay if he comes in, right?"
[[Yeah, of course.|WR-831 Okay if he comes in][$kateSays to "ofCourse"]]
[[Uhhh...|WR-831 Okay if he comes in][$kateSays to "uhhh"]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "ofCourse">>\
"Yeah, of course," you shrug. It seems like the right thing to say...and the door's swinging open anyway.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<<elseif $kateSays == "uhhh">>\
<<emote-brows-raised>>\
"Uhhh..." But the door's swinging open already.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
Pushing it with his foot, <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> appears in the doorway. In each hand, he clutches a stubby can of <span class="imageLink"><<link "Chang">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/foodPorn/stubbyChangCan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The word <small>BRAWLER</small> is tattooed across his knuckles.
<<if $kateSays == "ofCourse">>Despite what you just said,<<else>>Topless in front of someone else's boyfriend,<</if>> you feel an instinctive urge to cover yourself up. Some wiser instinct tells you to just [[brazen it out|WR-832 Brazen]], like you do at work.
<</page>><<silently>>
<<emote-calm>>
<<set $kate.arousal += 1>>
<<set _arousalAlert to "*Anticipation.* Being seen like this is a little arousing.">>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tenses up when he walks in on the two of you undressed. His body stiffens up as his eyes flicker over your bodies; your nipples do the same, stiffening slightly in response to the male gaze.
"Uh...hey." He holds out a beer for you to take.
[[Thanks.|WR-840 Thanks]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks." You keep your voice light as you take the <span class="imageLink"><<link "ice cold beer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/foodPorn/stubbyChangCan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> from <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand.
Your fingers brush against his, and he swallows nervously, the tough guy facade slipping for a moment.
He towers over you, and he's fully dressed. But, like you're learning from working at the club: power isn't //always// about [[who's wearing the clothes|WR-840.1 Feint]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks baby." $zoe.firstName reaches out for her Chang, and <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> attention finally slips from you to his <span class="imageLink"><<link "nude girlfriend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
He feigns handing her the beer – then slips it under her hand, pressing the ice cold can up to her bare stomach. She gasps, then lets out a surprised laugh. "[[You dick!|WR-841 Dick]]"
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just grins goofily. He puts his hands on her hips, tries to kiss her, but she turns her face away.
"Bryyy, we're getting ready."
"Go like that."
"Shut up, Bry, seriously," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> pushes on his chest, "don't wanna turn up with fuckin' stubble rash."
"Bet I'm getting you //back// with stubble rash."
"Schyeh," she scoffs, finally fending him off. "[[You fuckin' love it|WR-842 No fun anymore]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>All those things I shouldn't do but you dance, dance, dance, and<small>🎵</small>//
//<small>🎵</small>Ain't nobody leavin' soon so keep dancing<small>🎵</small>//
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> cracks open her can of <span class="imageLink"><<link "beer">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/foodPorn/stubbyChangCan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, thumps it against yours in a toast. Ice cold Chang slides down your throat, bitter and invigorating.
"Stick around a sec," $zoe.firstName tells <span class="imageLink"><<link "her boyfriend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "Help us choose."
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
//[[Try on the satin dress.|WR-919 Bryan watches]]//
<<else>>\
//[[Try on the lycra dress.|WR-919 Bryan watches]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>All those things I shouldn't do but you dance, dance, dance, and<small>🎵</small>//
//<small>🎵</small>Ain't nobody leavin' soon so keep dancing<small>🎵</small>//
"Can you do us a favour?" $zoe.firstName asks <span class="imageLink"><<link "her boyfriend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. "We need your expert opinion."
[[Yeah, we need a man's perspective.|WR-900 A man's opinion]]
<</page>><<silently>>
<<emote-mouth-talking>>
<<first>>
<<addNotification "Alcohol +1" "*Relaxed.* A cold beer is taking the edge off.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you chime in, "we need a man's perspective."
"Uh, sure, what do you need?" <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Picture the scene," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You're waiting at the bar with your buddy, then we show up."
[[Fashionably late.|WR-910 Fashionably late]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Fashionably late," you add.
"What's the hottest look?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
//[[Put on the slip dress.|WR-930 Dress 1]]//
<<else>>\
//[[Put on the bodycon dress.|WR-920 Dress 2]]//
<</if>>\
<</page>><<silently>>
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand2")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand-rear")>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand-rear")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sits on the bed, watching you and $zoe.firstName <<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>[[try on dresses|WR-930 Dress 1]].<<else>>[[try on dresses|WR-920 Dress 2]].<</if>>
<</page>><<silently>>
<<emote-calm>>
<<wear-dress-bananaYellowLongSleeveCutOutMiniDress>>
<<set $avatar.clothing.delete("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand")>>
<<set $avatar.clothing.delete("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand-rear")>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Got this feelin' in my bo-dy<small>🎵</small>//
//<small>🎵</small>Can't stop the feelin'!<small>🎵</small>//
You wriggle into the tight lycra dress, tugging and stretching it into place over your curves.
<<include "WR-931 Bryan reaction">>\
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand2")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand-rear")>>
<<emote-calm>>
<<wear-dress-emeraldGreenSatinMiniDress>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Got this feelin' in my bo-dy<small>🎵</small>//
//<small>🎵</small>Can't stop the feelin'!<small>🎵</small>//
You slip into the satin dress. It feels soft and silky on your bare skin.
<<include "WR-931 Bryan reaction">>\
<</page>><span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lets out a low whistle at the sight of you and <span class="imageLink"><<link "his girlfriend">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDressNoMakeup.png']]")>>
<<set Dialog.open()>>
<</link>></span> in thigh-skimming <<if $kate.lastWornDress == "emeraldGreenSatinMiniDress">>satin<<else>>minidresses<</if>>. "Damn. You know how hot you are?"
"Yes, baby. Guys tell us every day."
"Must be annoying."
"Naw." She sidles up to you, striking a pose with a hand draped over your shoulder. "Sooo? [[Whaddya think|WR-940 Whadya think]]?"<<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Got this feelin' in my body, come on<small>🎵</small>//
"You two look in-credible." <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gaze runs between the pair of you. "Those guys are gonna be blown away."
"Haven't seen the other one yet," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDressNoMakeup.png']]")>>
<<set Dialog.open()>>
<</link>></span> answers.
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
//[[Undress and change into the slip dress.|WR-950 Ping]]//
<<else>>\
//[[Undress and change into the bodycon dress.|WR-950 Ping]]//
<</if>>\
<</page>><<silently>>
<<emote-calm>>
<<removeDress>>
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand2")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand-rear")>>
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand-rear")>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_naked.png']]")>>
<<set Dialog.open()>>
<</link>></span> phone pings while you're changing again.
You've heard that guys don't like helping their girlfriends pick dresses. But <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> seems to be enjoying the little fashion show.
"Venya," $zoe.firstName reports. "They're sending a car to pick us up."
<<if hasVisited("WR-760 Try on dress 1")>>\
//<span class="greyedOut">[Change into the satin dress]</span>// [[Uh huh.|WR-1000 Dress 1]]
<<else>>\
//<span class="greyedOut">[Change into the lycra dress]</span>// [[Uh huh.|WR-1001 Dress 2]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Not really sure why you're doing it, you reach for your beer instead of //<<if hasVisited("WR-760 Try on dress 1")>>TK description of dress 1 e.g. the yellow dress<<else>>TK description of dress 1 e.g. the yellow dress<</if>>//. <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> watches you guzzle down cold Chang, casually topless.
<span class="greenHighlighter">Bryan ''liked'' that.</span>
"Venya," $zoe.firstName reports. "They're sending a car to pick us up."
<<if hasVisited("WR-760 Try on dress 1")>>\
//[[Try on TK DRESS 1.|WR-1000 Dress 1]]//
<<else>>\
//[[Try on TK DRESS 2.|WR-1001 Dress 2]]//
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You scoop up //<<if hasVisited("WR-760 Try on dress 1")>>TK description of dress 1 e.g. the yellow dress<<else>>TK description of dress 1 e.g. the yellow dress<</if>>// from the bed.
"Venya," $zoe.firstName reports. "They're sending a car to pick us up."
<<if hasVisited("WR-760 Try on dress 1")>>\
//[[Try on TK DRESS 1.|WR-1000 Dress 1]]//
<<else>>\
//[[Try on TK DRESS 2.|WR-1001 Dress 2]]//
<</if>>\
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand2")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand-rear")>>
<<wear-dress-emeraldGreenSatinMiniDress>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Say boy, let's not talk too much<small>🎵</small>//
//<small>🎵</small>Grab on my waist and put that body on me<small>🎵</small>//
You zip $zoe.firstName back into her <span class="imageLink"><<link "red dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_redSheathDress.png']]")>>
<<set Dialog.open()>>
<</link>></span>, and pose side-by-side for <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<include "WR-1003 Bryan feedback">>\
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand")>>
<<set $avatar.clothing.delete("clothing/dresses/bananaYellowLongSleeveCutOutMiniDress/30_dress-bananaYellowLongSleeveCutOutMiniDress-heldInRightHand-rear")>>
<<wear-dress-bananaYellowLongSleeveCutOutMiniDress>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Say boy, let's not talk too much<small>🎵</small>//
//<small>🎵</small>Grab on my waist and put that body on me<small>🎵</small>//
You zip $zoe.firstName back into her <span class="imageLink"><<link "red dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_redSheathDress.png']]")>>
<<set Dialog.open()>>
<</link>></span>, and pose side-by-side for <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<<include "WR-1003 Bryan feedback">>\
<</page>>"Wow. Ummm..."
"Be honest," $zoe.firstName tells him.
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
"Hmmm." His eyes roam over you both judiciously. "They look great. But I think...[[the other ones|WR-1010 Bryan picks the dresses]]."
<<else>>\
"Hmmm." His eyes roam over you both judiciously. "I think $kate.cover.firstName looks great in that, but you look better in the [[other one|WR-1010 Bryan picks the dresses]]."
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Thought you liked clingy?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_redSheathDress.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"I do, I do," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Just uh, you look more...I dunno. Glamorous or something. You said be honest."
"Huh. Okay, thanks baby."
[[Thanks Bry.|WR-1020 Thanks Bry]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks Bry."
"No problem." He goes back to his video game, leaving you two to [[work on your makeup|WR-1100 Let's do each other's makeup]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I'm in love with the shape of you<small>🎵</small>//
//<small>🎵</small>We push and pull like a magnet do<small>🎵</small>//
<<if $kate.lastWornDress == "bananaYellowLongSleeveCutOutMiniDress">>\
<<silently>>
<<removeDress>>
<<wear-dress-emeraldGreenSatinMiniDress>>
<</silently>>\
You and $zoe.firstName change back into <span class="imageLink"><<link "short satin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDressNoMakeup.png']]")>>
<<set Dialog.open()>>
<</link>></span>. She pulls a dining chair through from the condo so you can share her vanity mirror.
<<else>>\
$zoe.firstName changes back into <span class="imageLink"><<link "short satin">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDressNoMakeup.png']]")>>
<<set Dialog.open()>>
<</link>></span>, and pulls a dining chair through from the condo so you can share her vanity mirror.
<</if>>\
"How about doing each other's makeup?"
[[Sure, sounds fun.|WR-1200 Sure sounds fun]]
[[Don't think we've got time.|WR-1101 Don't think we've got time]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't think we've got time."
"Yeah, prolly." The two of you set out your little makeup kits, and get to work on your eyes.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-3" name="tabs">\
<label for="tab-3"><div>Eyeshadow</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeshadow-container">\
<<include "WR-1110 Eyeshadow">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-2" name="tabs">\
<label for="tab-2"><div>Eyeliner</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="eyeliner-container">\
<<include "WR-1120 Eyeliner">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "WR-1199 Exit navigation">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-elizabeth-" + $kate.eyeShape + "")>>\
<<link "Elizabeth">>\
<<apply-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Elizabeth">>\
<<remove-makeup-eyeliner-elizabeth>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-jessica-" + $kate.eyeShape + "")>>\
<<link "Jessica">>\
<<apply-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Jessica">>\
<<remove-makeup-eyeliner-jessica>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-lina-" + $kate.eyeShape + "")>>\
<<link "Lina">>\
<<apply-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lina">>\
<<remove-makeup-eyeliner-lina>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeliner/20_eyeliner-ramona-" + $kate.eyeShape + "")>>\
<<link "Ramona">>\
<<apply-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Ramona">>\
<<remove-makeup-eyeliner-ramona>>\
<<replace "#eyeliner-container">>\
<<include "WR-1120 Eyeliner">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-amethyst-" + $kate.eyeShape + "")>>\
<<link "Amethyst">>\
<<apply-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Amethyst">>\
<<remove-makeup-eyeshadow-amethyst>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-galaxy-" + $kate.eyeShape + "")>>\
<<link "Galaxy">>\
<<apply-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Galaxy">>\
<<remove-makeup-eyeshadow-galaxy>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-lust-" + $kate.eyeShape + "")>>\
<<link "Lust">>\
<<apply-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Lust">>\
<<remove-makeup-eyeshadow-lust>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-rio-" + $kate.eyeShape + "")>>\
<<link "Rio">>\
<<apply-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rio">>\
<<remove-makeup-eyeshadow-rio>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/eyeshadow/10_eyeshadow-smoky-" + $kate.eyeShape + "")>>\
<<link "Smoky">>\
<<apply-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Smoky">>\
<<remove-makeup-eyeshadow-smoky>>\
<<replace "#eyeshadow-container">>\
<<include "WR-1110 Eyeshadow">>
<</replace>>\
<<replace "#avatar-container">>\
<<emote-calm>>
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1199 Exit navigation">>
<</replace>>\
<</link>>\
<</if>>\<<if $kate.isWearing.includesAll("eyeshadow", "eyeliner")>>\
//[[Check your look.|WR-1500 Eyes done][$zoeEyeMakeup to 4]]//
<</if>>\<<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Sure," you shrug. "Sounds fun."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Mm-hm. Know what, I got this //gorgeous// green that'll go with the dress. <<if $kate.eyeColour == "emerald">>Bring out your eyes,<<else>>You'll look a million bucks,<</if>>" $zoe.firstName [[promises|WR-1300 Zoe does Kate's makeup]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<set $avatar.clothing.pushUnique("/makeup/20_concealerDabs")>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>Havana ooh-na-na<small>🎵</small>//
//<small>🎵</small>Half my heart is in Havana ooh-na-na<small>🎵</small>//
"So I got this for St Paddy's Day at the club..." $zoe.firstName's touch is gentle, fingertips and makeup brushes delicately tracing over the contours of your eyes. It feels like the softest massage, and she chats soothingly while she works.
"But hey," she says, "what you been up to? Apart from work, I mean."
[[Not much, I'm broke.|WR-1301 Not much, I'm broke]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not much," you admit. "Kinda broke."
"Mm-hm," $zoe.firstName murmurs sympathetically. "Think these guys'll take us somewhere nice."
[[You looking forward to it?|WR-1302 Up for it?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You looking forward to it?"
"Yeahhh," she muses, "should be fun."
[[You don't sound too excited...|WR-1303 Don't sound that up for it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You don't //sound// that excited..."
"I am, I am!" she protests. "Just been kind of a busy week. Definitely need to chill tomorrow. What about you? Looking forward to see Kolya again?"
[[Yeah, I've been thinking about him all day.|WR-1304 Kolya on my mind]]
[[Wondering if the chemistry'll still be there.|WR-1305 Ephemeral]]
[[It's just nice to dress up and go out.|WR-1306 Nice to dress up and go out]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. Been thinking about him all day."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Well," she says, finishing up. "When he sees you, you're gonna be [[gorgeous|WR-1310 New eye makeup]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"We got <<if $kate.agency == "cia" or $kate.agency == "csis">>along<<else>>on<</if>> in the skybar. Just wondering...y'know. If the chemistry'll still be there."
"Well, if it helps," she says, finishing up. "When he sees you, you're gonna look [[gorgeous|WR-1310 New eye makeup]]."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Looking forward to getting out of the hostel," you tell her. "It's nice to dress up and go out."
"Mm-hm. Well," she says, finishing up. "When he sees you, you're gonna look [[gorgeous|WR-1310 New eye makeup]]."
<</page>><<silently>>
<<emote-calm>>
<<apply-makeup-eyeshadow-emerald>>
<<apply-makeup-eyeliner-lina>>
<<set $avatar.clothing.delete("/makeup/20_concealerDabs")>>
<</silently>>\
<<header>>\
<<page>>\
When you open your eyes, they're framed in bold, striking green.
[[I love it, thanks!|WR-1311 Love it]]
[[Wow, you're great at this.|WR-1312 You're great at makeup Zoe]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Wow, I love it! Thanks."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"No problem," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDressNoMakeup.png']]")>>
<<set Dialog.open()>>
<</link>></span> beams. "I //love// doing makeup."
<<include "WR-1313 Swap places">>\
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Wow! You're really good at this."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Heh," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDressNoMakeup.png']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles, "it's the club, I do like five makeup changes a night."
<<include "WR-1313 Swap places">>\
<</page>>You swap places, $zoe.firstName closing her eyes, you gently dabbing on the eye primer. She's got so many cool eyeshadow palettes, you're not sure how to best showcase her eyes.
//[[Frosty cat's eyes.|WR-1400 Kate does Zoe's eye makeup][$zoeEyeMakeup to 1]]//
//[[Moss and mist.|WR-1400 Kate does Zoe's eye makeup][$zoeEyeMakeup to 2]]//
//[[Gold and grey.|WR-1400 Kate does Zoe's eye makeup][$zoeEyeMakeup to 3]]//<<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small>I'm too hot! Hot damn<small>🎵</small>//
//<small>🎵</small>Call the po-lice and the fireman<small>🎵</small>//
Her eyelashes flutter gently as you work. You carefully sweep over her eyelids with brushes and fingertips, painting her skin with the lightest of touches.
You haven't done a friend's makeup since <<uni>>, and you forgot how satisfying it feels. Taking her face as a blank canvas, making her more beautiful with vivid colours and strokes of your creativity.
You're filled with a sense of soft, focused energy and a closeness to $zoe.firstName as you paint.
[[Continue|WR-1500 Eyes done]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//<small>🎵</small><div class="tooltip">Des-pa-cito<span class="tooltiptext">Slowly</span></div><small>🎵</small>//
//<small>🎵</small><div class="tooltip">Quiero respirar tu cuello despacito<span class="tooltiptext">I want to breathe on your neck slowly</span></div><small>🎵</small>//
When you're done, two alluring young women gaze back from the vanity mirror, their <span class="imageLink"><<link "soft, colourful eye makeup">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-eyeMakeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> making them look effortlessly glamorous.
<div class="wrapperAccordion">\
<div class="wrap-1">\
<input type="radio" id="tab-4" name="tabs">\
<label for="tab-4"><div>Lipstick</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="lipstick-container">\
<<include "WR-1520 Lipstick">>
</span>\
</div>\
</div>\
<div class="wrap-1">\
<input type="radio" id="tab-1" name="tabs">\
<label for="tab-1"><div>Blusher</div><div class="cross"></div></label>\
<div class="contentAccordion">\
<span id="blusher-container">\
<<include "WR-1510 Blusher">>
</span>\
</div>\
</div>\
</div>\
<span id="exit-navigation">\
<<include "WR-1589 Exit nav">>
</span>\
<</page>><<if !$avatar.clothing.includes("/makeup/blush/15_blush-apricot")>>\
<<link "Apricot">>\
<<apply-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Apricot">>\
<<remove-makeup-blusher-apricot>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-contour")>>\
<<link "Contour">>\
<<apply-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Contour">>\
<<remove-makeup-blusher-contour>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-peach")>>\
<<link "Peach">>\
<<apply-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Peach">>\
<<remove-makeup-blusher-peach>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/makeup/blush/15_blush-rosy")>>\
<<link "Rosy">>\
<<apply-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// Rosy">>\
<<remove-makeup-blusher-rosy>>\
<<replace "#blusher-container">>\
<<include "WR-1510 Blusher">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>><<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-apricotFantasy-" + $kate.mouthShape)>>\
<<link "(Revlon) Apricot Fantasy">>\
<<apply-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Revlon) Apricot Fantasy">>\
<<remove-makeup-lipstick-apricotFantasy>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-burntZellige-" + $kate.mouthShape)>>\
<<link "(YSL) Burnt Zellige">>\
<<apply-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (YSL) Burnt Zellige">>\
<<remove-makeup-lipstick-burntZellige>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-ladyDanger-" + $kate.mouthShape)>>\
<<link "(MAC) Lady Danger">>\
<<apply-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Lady Danger">>\
<<remove-makeup-lipstick-ladyDanger>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-missMagenta-" + $kate.mouthShape)>>\
<<link "(L'Oreal) Miss Magenta">>\
<<apply-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (L'Oreal) Miss Magenta">>\
<<remove-makeup-lipstick-missMagenta>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-pourpreEdgy-" + $kate.mouthShape)>>\
<<link "(Givenchy) Pourpre Edgy">>\
<<apply-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Givenchy) Pourpre Edgy">>\
<<remove-makeup-lipstick-pourpreEdgy>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseHip-" + $kate.mouthShape)>>\
<<link "(Shiseido) Rose Hip">>\
<<apply-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Shiseido) Rose Hip">>\
<<remove-makeup-lipstick-roseHip>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-roseTheDay-" + $kate.mouthShape)>>\
<<link "(Nyx) Rose the Day">>\
<<apply-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Nyx) Rose the Day">>\
<<remove-makeup-lipstick-roseTheDay>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-rubyWoo-" + $kate.mouthShape)>>\
<<link "(MAC) Ruby Woo">>\
<<apply-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (MAC) Ruby Woo">>\
<<remove-makeup-lipstick-rubyWoo>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-soWhat-" + $kate.mouthShape)>>\
<<link "(Sephora) So What?">>\
<<apply-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Sephora) So What?">>\
<<remove-makeup-lipstick-soWhat>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-universalBiscuit-" + $kate.mouthShape)>>\
<<link "(Kiko) Universal Biscuit">>\
<<apply-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Kiko) Universal Biscuit">>\
<<remove-makeup-lipstick-universalBiscuit>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>>
<<if !$avatar.clothing.includes("/114Lipsticks/10_lipstick-violetVixen-" + $kate.mouthShape)>>\
<<link "(Maybelline) Violet Vixen">>\
<<apply-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<<else>>\
<<link "//[Remove]// (Maybelline) Violet Vixen">>\
<<remove-makeup-lipstick-violetVixen>>\
<<replace "#lipstick-container">>\
<<include "WR-1520 Lipstick">>
<</replace>>\
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>\
<<replace "#exit-navigation">>\
<<include "WR-1589 Exit nav">>
<</replace>>\
<</link>>\
<</if>><<if $kate.isWearing.includes("lipstick")>>\
When you're ready, you can [[pack away your makeup|WR-1590 Final check]].
<</if>>\<<silently>>
<<wear-shoes-silverStrappyStilettoSandals>>
<<showRear>>
<<emote-calm>>
<<if $kate.lastWornKnickers == "blackAndLimeGreenThreeSideStrapGanjaString">>
<<set _aFlashOfRedLycra to "a flash of neon lime lycra">>
<<elseif $kate.lastWornKnickers == "blackMeshWithHotPinkBowsCrotchlessString">>
<<set _aFlashOfRedLycra to "half your thong">>
<<elseif $kate.lastWornKnickers == "cherryRedTwoSideStrapWithGoldLoopsString">>
<<set _aFlashOfRedLycra to "a big patch of bright red lycra">>
<<elseif $kate.lastWornKnickers == "vsPinkHeartsKnickers">>
<<if $kate.agency == "mi6">>
<<set _aFlashOfRedLycra to "the waistband of your knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "csis">>
<<set _aFlashOfRedLycra to "the waistband of your undies">>
<<else>>
<<set _aFlashOfRedLycra to "the waistband of your panties">>
<</if>>
<<elseif $kate.lastWornKnickers == "maroonGlitterString">>
<<set _aFlashOfRedLycra to "the top of your thong">>
<<elseif $kate.lastWornKnickers == "ivoryStrappyString">>
<<set _aFlashOfRedLycra to "a flash of white underwear">>
<<elseif $kate.lastWornKnickers == "leopardPrintMidiWithSplitSide">>
<<set _aFlashOfRedLycra to "leopard spots">>
<<elseif $kate.lastWornKnickers == "pinkThongWithCentralBow">>
<<if $kate.agency == "mi6">>
<<set _aFlashOfRedLycra to "pink knickers">>
<<elseif $kate.agency == "asis" or $kate.agency == "csis">>
<<set _aFlashOfRedLycra to "pink undies">>
<<else>>
<<set _aFlashOfRedLycra to "pink panties">>
<</if>>
<<elseif $kate.lastWornKnickers == "redLowRiseThong">>
<<set _aFlashOfRedLycra to "a bright red whale tail">>
<<elseif $kate.lastWornKnickers == "redWineThongWith2Bows">>
<<set _aFlashOfRedLycra to "a scrap of burgundy lycra">>
<<elseif $kate.lastWornKnickers == "cheekyThongRobinEggBlue">>
<<set _aFlashOfRedLycra to "a scrap of blue lycra">>
<<elseif $kate.lastWornKnickers == "cheekyThongRoseRed">>
<<set _aFlashOfRedLycra to "a scrap of red lycra">>
<<elseif $kate.lastWornKnickers == "cheekyThongFlamingoPink">>
<<set _aFlashOfRedLycra to "a scrap of pink lycra">>
<<elseif $kate.lastWornKnickers == "cheekyThongRavenBlack">>
<<set _aFlashOfRedLycra to "a scrap of black lycra">>
<<else>>
<<set _aFlashOfRedLycra to "your underwear">>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Babe, your panties are showing," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> reminds you.
Peering over your shoulder into the mirror, you can see what she means: _aFlashOfRedLycra peeping up at the back. Not the most glamorous look.
"I'm going commando," she says helpfully.
[[Bit short...|WR-1592 Bit short]]
[[Guess I am, too.|WR-1591 Commandoes]]
<</page>><<silently>>
<<showFront>>
<<emote-mouth-talking>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WR-1592 Bit short")>>\
"Well..." you shrug. "Guess we both are..."
<<else>>\
"Guess I am, too," you shrug.
<</if>>\
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
With your back to her bedroom wall, you're able to reach up under your dress with little fuss. You peel your <<knickers>> down and step out of them, your heels going //clonk-clonk// on the wooden floor.
You smooth down your dress, then pop your underwear in your bag. "Got us out of our panties already," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says with a smirk.
//[[Go through to the condo.|WR-1600 You look amazing]]//
<</page>><<silently>>
<<showFront>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bit short..." you reply dubiously.
"I'm doing it," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
<span class="greyedOut">//[Shrug]//</span> [[Guess we both are.|WR-1591 Commandoes]]
<</page>><<silently>>
<<set $kate.arousal += 1>>
<<set _arousalAlert to "*Anticipation.* You feel like flirting and getting some attention.">>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<<emote-calm>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks up from his video game as you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> click back into the main condo.
Now you're up and moving and out of your <<knickers>>, the dress feels like a skimpy <<if $kate.agency == "cia" or $kate.agency == "csis">>nightgown<<else>>nightie<</if>>. It clings to your breasts and your hips, but that's it; you could be //naked// everywhere else. You can actually feel the cool air wafting over your bare vagina when you walk.
"Shiiit," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs, his face filled with admiration. He doesn't even notice when someone kills him in the video game. "Wow. You two look //amazing."//
"Thanks, baby."
[[Thanks Bry.|WR-1610 Seriously amazing]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Thanks Bry."
"Seriously, holy shit," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, reaching out invitingly towards <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
"Uh-uh," she shakes her head, clicking through into the [[kitchen|WR-1620 Beer with straws]] instead. "I just put perfume on."
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> brings out a couple more <span class="imageLink"><<link "Changs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/foodPorn/stubbyChangCan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, and the two of you perch carefully on the armrests of <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> couch, sipping beer through straws to keep your lipsticks intact. Your dress barely covers your butt when you sit; your naked thighs rest on the scruffy fabric.
Gunfire and explosions rage on the TV screen, <<if hasVisited("WR-470 Black Ops")>>futuristic operators locked in intense virtual combat<<else>>space heroes in garish armour battling for supremacy<</if>>, but Bryan's lost interest in <<if hasVisited("WR-470 Black Ops")>>//Black Ops.//<<else>>his video game.<</if>> "So, uh...what's the plan tonight?" he asks, pawing $zoe.firstName's dusky, bare thigh.
"I don't know," she says. "Think we're gonna get wined and dined."
[[Do you know where they're taking us?|WR-1630 Do you know where we're going?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do you know where they're taking us?"
"Naw," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs nonchalantly. "Didn't say."
You sip your beer, trying to manage your hemline.
"What're these guys like?" <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks you.
[[Mature, confident.|WR-1640 Confident][$kateSays to "confident"]]
[[Loaded.|WR-1640 Confident][$kateSays to "loaded"]]
[[Hot.|WR-1640 Confident][$kateSays to "hot"]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "confident">>\
"Mature," you tell him. "Confident."
<<elseif $kateSays == "loaded">>\
"Loaded," you tell him.
<<elseif $kateSays == "hot">>\
"Hot," you tell him.
<<else>>\
//(ERROR IN KATESAYS VAR)//
<</if>>\
"Cool. Uhhh..." Over on the other arm of the couch, <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers have snaked up under <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> hemline. "Are you wearing..."
"Nope. She neither."
"Ohhh fuck." His voice comes out like a husky whisper.
The room falls momentarily silent, except for the //rat-a-tat// of <<if hasVisited("WR-470 Black Ops")>>high-tech assault rifles<<else>>space machine guns<</if>> on the TV screen. Then, as if on cue, the [[door buzzer rings|WR-1660 The driver cometh]].
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"They bought us drinks."
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches up, pets $zoe.firstName's bare thigh.
"Seriously, Bry." $zoe.firstName pushes his hand away. "Not yours tonight."
The room is filled with a momentary pause. Then, as if on cue, the [[door buzzer rings|WR-1660 The driver cometh]].
<</page>><<silently>>
<<emote-calm>>
<<if $kate.agency == "cia" or $kate.agency == "csis">>
<<set _bum to "butt">>
<<else>>
<<set _bum to "bum">>
<</if>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> gracefully stand. <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand trails off her leg as she slips out of his grasp.
His face is a picture as he watches the two of you clonking around the condo in your heels and short dresses, getting ready to go and meet two guys.
$zoe.firstName picks up the door handset. "<div class="tooltip">Sawatdi<span class="tooltiptext">Hi</span></div>, <div class="tooltip">ma long laeo<span class="tooltiptext">coming down now</span></div>."
Meanwhile, you transfer your stuff into a <<handbag>> you're borrowing from $zoe.firstName tonight – and you feel a jolt of alarm when you lean forward slightly to pick it up. You just can't feel where the hemline is at all, it feels like you might've just <<link "flashed your _bum" "WR-1661 Goodbyes">><</link>>.
<</page>><<silently>>
<<wear-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> goodbye to her boyfriend unfolds in low hushed murmurs. You can't quite catch what they're saying, but the tension and intimacy is obvious – their bodies close, fingers lingering on each other's skin, a possessive brush here, a trailing touch there.
$zoe.firstName's voice is sultry, Bryan's thick and husky. Something about coming home, something about [[texting|WR-1790 Don't smoosh my lipstick!]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
$zoe.firstName takes the bag; <span class="imageLink"><<link "the driver's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes flicker briefly down to check out your bodies, a subtle micro-ogle. "I be outside," he tells her. "Come down when you ready."
//[[Check out the present.|WR-1680 AP box]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Think it's underwear?" $zoe.firstName asks.
<<image "/locationPhotos/thailand/yaowarat/apBox.jpg" 150 1000 550 0>>\
Inside the bag are two large pink gift boxes, tied with black ribbons. $zoe.firstName passes one over.
//[[Untie the ribbon.|WR-1690 Undone]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You tug the bow loose, and open the lid. <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gets up off the couch to investigate.
Inside your box is a dark scrap of black silk, embellished with sparkling crystals.
"Holy shit," $zoe.firstName exclaims. "They bought us [[dresses|WR-1700 Dress first impression]]?"
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You hold it up to your body. It's soft and cool to the touch, the crystals sparkling as they catch the light.
"Woah. These are //gorgeous,"// $zoe.firstName says. Hers is similar to yours, but in vivid scarlet. They're both pretty short. "C'mon, let's [[try 'em on|WR-1710 Zoe's room]]."
<</page>><<silently>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S BEDROOM''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S BEDROOM''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follows you both into the bedroom. Golden sunlight floods in through the window as the afternoon sinks away.
//[[Take off your dress.|WR-1720 Undressed]]//
<</page>><<silently>>
<<remove-dress-blackSleevelessSkater>>
<<remove-dress-blackTwistFrontRuchedCutOutDress>>
<</silently>>\
<<header>>\
<<page>>\
You and $zoe.firstName undress in front of <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, laying $zoe.firstName's dresses out on her bed.
"You two look fuckin' amazing," he murmurs.
//[[Try on the black silk dress.|WR-1730 Try on]]//
<</page>><<silently>>
<<wear-dress-blackSleevelessSkater>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/test/apDresses.jpg" 0 1000 451 0>>\
You slip the dress on, the soft black silk draping over your body in a way that makes you feel both glamorous, and a little more exposed than before.
"Ohmygod," $zoe.firstName says. "These are beautiful."
//[[Check the back.|WR-1740 Rear check]]//
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You turn around to check the rear view in the mirror. It doesn't cling to you like lycra would; it feels loose in certain places, less secure.
Criss-crossed in diamante straps, the back is cut so low that you can see the 'whale tail' of your thong.
"Uh oh." $zoe.firstName's in the same predicament. "Bry, can you see our panties?"
"Show me?"
//[[Show Bryan.|WR-1750 Bry catches two whales]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You turn and show Bryan your back.
"Yeppp," he says. "Purple and black."
"Guess we're going commando." $zoe.firstName shrugs and reaches up under her dress.
[[Guess so.|WR-1760 Commandoes]]
<</page>><<silently>>
<<removeKnickers>>
<</silently>>\
<<header>>\
<<page>>\
Reaching under your dress, you peel down your <<knickers>>.
<span class="greenHighlighter">Bryan ''loved'' that.</span>
"Ohmygod. They got us out of our panties already," $zoe.firstName laughs. "D'you think we can keep the dresses?"
[[It's not like they can take them off us.|WR-1770 Not like they can take them off us]]
<</page>><<silently>>
<<emote-mouth-smirk>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
You shrug. "Not like they can take them off us."
"Babe - these are five hundred dollar dresses, they're //definitely// taking them off us," $zoe.firstName points out. "But yeah...[[see your point|WR-1780 See your point]]."
<</page>><<silently>>
<<emote-calm>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You click back through into the main condo.
You transfer your stuff into a <<handbag>> you're borrowing from $zoe.firstName tonight – and you feel a jolt of alarm when you lean forward slightly to pick it up. You just can't feel where the hemline is at all, it feels like you're flashing your ass.
Meanwhile, $zoe.firstName says goodbye to her boyfriend. Their voices are hushed in low, private murmurs, making it hard for you to catch what they're saying to each other. $zoe.firstName's voice is seductive, Bryan's thick and husky. Something about coming home, something about [[texting|WR-1790 Don't smoosh my lipstick!]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> pulls away with a giggle when he tries to kiss her goodbye. "Nooo, don't smoosh my lipstick!"
"Fuuuck, you're driving me crazy," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says with a grin. "Wow, you two look //in-credible."//
[[Nice to meet you, Bry.|WR-1800 Nice to meet you]]
[[Enjoy your video game.|WR-1810 Enjoy your stupid video game]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Nice to meet you, Bry."
"You too, $kate.cover.firstName." <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> smiles. "Thanks for taking care of her."
<<include "WR-1820 Bye baby">>\
<</page>><<silently>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"Enjoy your video game."
<span class="greenHighlighter">Bryan ''liked'' that.</span>
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "I will. Thanks for taking care of her."
<<include "WR-1820 Bye baby">>\
<</page>>"Seeya, baby." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> gives him a wave. "[[Don't wait up|WR-1900 Down to the streets]]."<<silently>>
<<emote-calm>>
<<set $header.line1 to "''1115 CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
Leaving the condo, you're met with a wave of hot, stifling air in the hallway. You're acutely aware of the heat rising up your dress as you carefully descend the stairs.
Like the parlour staircase in the club, you have to [[take it slowly in heels|WR-1910 Sampeng Lane]], especially borrowed ones that don't exactly fit. //Gonna have achey feet tomorrow.//
<</page>><<silently>>
<<set $header.line1 to "''YAOWARAT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<wear-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/yaowarat/isuzMUXExterior.jpg" 45 1000 445 0>>\
A blue SUV with dark tinted windows is parked up across the street.
A <span class="imageLink"><<link "driver in black clothes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climbs out as you emerge, and holds the rear door open for you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Cross the street and climb in.|WR-1920 Embus]]//
<</page>><<silently>>
<<showRear>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
"Sawatdi, sawatdi," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> greets him.
"Hi. I speak English," <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> replies, a hint of assertiveness in his dark eyes.
<<image "/locationPhotos/thailand/yaowarat/isuzuMUXPassengerSeating.jpg" 5 1000 405 0>>\
Cool air and Thai jazz rolls out from the SUV as you climb into the back.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
Sliding in sideways prevents you from flashing all of Yaowarat as you [[embus|WR-1930 Cold seats]].
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
You try to hold down your hem. But the satin just slips out of your palm. Warm air wafts between your legs as you climb in, and you have no idea [[how much you just showed off|WR-1930 Cold seats]].<br />
<br />
<span class="greenHighlighter">Chai ''liked'' that.</span>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<showFront>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You settle into a seat; <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> climbs in beside you, and <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> closes the door, sealing in the aircon.
You have to tug your dress down so you can sit on it, and you can only just get it to cover your ass. The vinyl's soft and cold on the backs of your [[bare thighs|WR-1940 Move off]].
<</page>><<silently>>
<<remove-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
A waft of hot air as <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climbs in, then the engine purrs into life and you merge into Bangkok weekday traffic.
"Bry likes you."
[[He's really sweet!|WR-1950 Bryan's sweet]]
[[How'd you guys meet?|WR-1960 How'd you meet Bry?]]
[[How does this thing you guys have work?|WR-1970 How does the cuck thing work?]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"He's really sweet!"
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles fondly, "he's a teddy bear really."
[[How'd you guys meet?|WR-1960 How'd you meet Bry?]]
[[How does this thing you guys have work?|WR-1970 How does the cuck thing work?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How'd you guys meet?"
"Oh, it was at a fight," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "He's learning <div class="tooltip">Muay Thai<span class="tooltiptext">Thai boxing</span></div>? I was watching a match, and we got to hang, and we just hit it off."
[[Cool.|WR-1965 Cool cool]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Cool."
"What about you, been single your whole trip? Or...?"
<<include "WR-1980 Exit nav">>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"How does this, uh, thing you guys have work?"
"It's just his thing," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Lots of guys are into it."
[[Not judging, just curious.|WR-1975 Not judging]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Not judging," you assure her. "Just curious."
"I know. What about you, been single your whole trip? Or...?"
<<include "WR-1980 Exit nav">>
<</page>>You try crossing your legs demurely, but //oh my god// doing that bares your leg all the way up to the hip.
[[Yeah, no one serious.|WR-1990 No one serious]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeahhh, no one serious." A jazzy piano plays along to your conversation, lending it a sophisticated vibe.
"You want something serious?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Maybe when I get home.|WR-2000 Settle down when I get home]]
[[Not ready to settle down.|WR-2010 Not ready to settle down]]
[[Got to be open to it, right?|WR-2020 Got to be open to Mr Right]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe when I get home."
"Ah, you never know," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Can't tell what the universe [[has planned for you|WR-2100 Title card]]..."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not ready to settle down," you tell her.
"Ah, you never know though," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Can't tell what the universe [[has planned for you|WR-2100 Title card]]..."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know," you shrug. "Gotta be open to it, right? Can't tell when the right guy will come along."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Exactly," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "Never know what the universe [[has planned for you|WR-2100 Title card]]..."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="WR-2110 Dropped off">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/songWatRoad/songWatRoadTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''SONG WAT ROAD''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
It's about a fifteen-minute drive to your destination; one of a million vibrant mini-neighbourhoods in this sprawling city. You could spend your whole life here and not visit them all.
<<image "/locationPhotos/thailand/songWatRoad/samsaraSign.jpg" 870 1000 1270 0>>\
Pulled over at the mouth of a little <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, <span class="imageLink"><<link "your driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> walks around and [[holds open your door|WR-2120 Upskirt opportunity]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction as you exit. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<wear-zoesSilverClutchHandbag>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
Holding the hem of your dress, you climb out of the SUV as gracefully as you can. Warm air washes over your bare skin as you [[disembark|WR-2130 Trok entrance]].
<<else>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-rear")>>
<<wear-zoesSilverClutchHandbag>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
Holding the hem of your dress, you climb out of the SUV as gracefully as you can. Warm air washes over your bare skin as you [[disembark|WR-2130 Trok entrance]].<br />
<br />
<span class="greenHighlighter">Chai ''liked'' that.</span>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"Have nice night, ladies," <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "You know where you go now?"
"Follow the signs, right?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Yesss. See you tonight, I pick you up."
<<image "/locationPhotos/thailand/songWatRoad/samsaraTrok.jpg" 100 1000 500 0>>\
//[[Follow the signs to Samsara Bar.|WR-2140 Unnamed trok]]//
<</page>><<silently>>
<<set $header.line1 to "''UNNAMED TROK''",
$header.line2 to "SONG WAT RD AREA / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> walk into the <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, your high heels clicking on the concrete, heat washing up your dress.
It's daylight, and Bangkok's a very safe city for western travellers, but still: there's something a little bit demeaning about having to walk <<if $kate.agency == "cia">>pantyless<<elseif $kate.agency == "mi6">>knickerless<<elseif $kate.agency == "asis">>with no undies<<elseif $kate.agency == "csis">>pantyless<<elseif $kate.agency == "nzsis">>with no undies<<else>>ERROR IN KATE.AGENCY VAR<</if>> through a weird alley to get to a date. The kind of guys you date in <<if $kate.agency == "cia">>D.C.<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>> would at least have come out and met you.
<<image "/locationPhotos/thailand/songWatRoad/samsaraTrokWithCat.jpg" 100 1000 500 0>>\
A cute cat sits outside a wooden house. You'd pet it, but you can't bend down in this dress. There's <span class="imageLink"><<link "a sign">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/songWatRoad/samsaraGoStraight.jpg']]")>>
<<set Dialog.open()>>
<<set _exitNavUnlocked to true>>
<<replace '#exitNavigation'>>
//[[Samsara go straight.|WR-2150 Samsara go straight]]//
<</replace>>
<</link>></span> affixed to the mailbox.
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You come to a big wooden house – unmarked, but with a hubbub of music and conversation drifting out through wide open doors and windows.
<<image "/locationPhotos/thailand/songWatRoad/samsaraEntrance.jpg" 100 1000 500 0>>\
"Must be it," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[Guess so.|WR-2170 Samara entry][$kateSays to "guessSo"]]
[[Or we're about to crash a party.|WR-2170 Samara entry][$kateSays to "partyCrashers"]]
[[Let's check.|WR-2160 Check and test]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Let's check."
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> waits while you fish out your phone, and open up Google Maps.
[[Yeah, this is it.|WR-2170 Samara entry][$kateSays to "thisIsIt"]]
<</page>><<silently>>
<<if hasVisited("WR-2160 Check and test")>>
<<set $header.line1 to "''SAMSARA BAR''",
$header.line2 to "SONG WAT RD AREA / MAY 2018">>
<<else>>
<<set $header.line1 to "''SAMSARA BAR?''",
$header.line2 to "SONG WAT RD AREA / MAY 2018">>
<</if>>
<<emote-mouth-talking>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "guessSo">>\
"Guess so."
<<elseif $kateSays == "partyCrashers">>\
<<emote-mouth-smirk>>\
"Or we're about to crash a party."
<<elseif $kateSays == "thisIsIt">>\
"Yeah, this is it."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"Hold up." With a gentle caress, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> touches up your hair before you go in, <<if $kate.hairStyle != "short">>tucking a strand behind your ear and <</if>>sweeping it to frame your brow //just so.// "Perfect."
<<image "/locationPhotos/thailand/songWatRoad/samsaraLobby.jpg" 150 1000 550 0>>\
Your heels clonk on wooden floorboards as you walk inside, reflexively smoothing down your dress. There's definitely a bar up ahead.
//[[Look for Kolya and Venya.|WR-2180 Officer on deck]]//
<</page>><<silently>>
<<emote-calm>>
<<if not hasVisited("WR-2160 Check and test")>>
<<set $header.line1 to "''SAMSARA BAR''",
$header.line2 to "SONG WAT RD AREA / MAY 2018">>
<<set _header1Blink to true>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
The main seating area is <<if $kate.agency == "cia" or $kate.agency == "csis">>through<<else>>out<</if>> the back. A strong smell of the Chao Phraya river – mud and fish and briny water – wafts over you as you step outside.
<<image "/locationPhotos/thailand/songWatRoad/deckBar.jpg" 175 1000 575 0>>\
It's a rustic deck bar, buzzing with tourists and locals relaxing with cold beers. Most are chatting or gazing out at the river, but you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> attract attention as you step out onto the deck; half a dozen guys giving you the side eye all at once.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are sitting over by the river's edge, [[deep in conversation|WR-2190 Attention]]. They're looking slick in shades, slacks, and summer shirts.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/songWatRoad/samsaraCrowd.jpg" 40 1000 450 0>>\
Weaving between tables, you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> attract more sidelong glances from men as you pass.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances up, and notices you approaching. Setting down their beers, he and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> rise out of their seats to [[greet you|WR-2200 Devushka]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"<div class="tooltip">Dewushka<span class="tooltiptext">Young lady</span></div>! You look wonderful." <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scent fills your nostrils, hints of earthy cologne and leather. Seeing him again, the chemistry crackles between you instantly, flaring up just like it did at the skybar.
He's not even really your //type,// there's just something about him that seems...comfortable, somehow. Familiar, even though you're barely more than strangers.
Touching your bare back, he pulls you in for a hug that's light but intimate. Pressed against him, wearing nothing but a thin scrap of satin, your body responds with a quickened pulse and a [[tingle of arousal|WR-2210 Hi Venya]].
<</page>><<silently>>
<<if ndef $katesNameToKolya>>
<<set $katesNameToKolya to $kate.cover.firstName>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$katesNameToKolya, wow." <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> greets you with a palm on your waist, and a peck on the cheek. "Great dress."
"Seat, seat," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> urges, pulling out chairs for <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> and you in turn.
//[[Sit down carefully.|WR-2220 Carefully seated]]//
<</page>><<silently>>
<<remove-zoesSilverClutchHandbag>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You carefully descend into the chair <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holding for you.
An inch or so of your bare butt comes into contact with the seat cushion; you need to wriggle and tug the hemline taut to make it cover you all the way to the tops of your thighs.
A <span class="imageLink"><<link "scruffy looking backpacker">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/samsaraScruffyBackpacker.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> on another table stares longingly at your [[long slim legs|WR-2230 Drinks menu]] over the top of his beer.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Keeping them pressed firmly together, you take a look at the laminated drinks menu that <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> slides across.
A Thai woman, sitting with her <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> boyfriend at another table, is sipping her drink right out of a coconut.
[[Order a Leo.|WR-2240 Kolya orders drinks][$katesDrink to "leo"]] <span class="greyedOut"><small>Thai lager</small></span>
[[Order a large white wine.|WR-2240 Kolya orders drinks][$katesDrink to "chardonnay"]] <span class="greyedOut"><small>Jacob's Creek double barrel Chardonnay</small></span>
[[Order a Thai mojito.|WR-2240 Kolya orders drinks][$katesDrink to "thaiMojito"]] <span class="greyedOut"><small>Rum, lemongrass, Thai basil, served in a young coconut</small></span>
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> heads inside to order from the bar; <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sprawls back comfortably in his chair. "So, ladies," he says, "how was beeg photoshoot?"
"Mmm, real nice," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> lies smoothly. "Flew us out to one of the islands."
<<if hasVisited("TNG-844 Not yet")>>\
[[Koh Samui.|WR-2670 Shoot on Koh Samui]]
<</if>>\
<<link "Where they shot //The Beach.//" "WR-2680 Shoot on Koh Phi Phi Le">><</link>>
[[The one from James Bond.|WR-2690 Shoot on Khao Ping Kan]]
<</page>><<silently>>
<<set $header.line1 to "''SIAM PLAZA''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
A 20-minute drive through traffic takes you to Siam Paragon, a lavish, upscale megamall.
<<image "/locationPhotos/thailand/siamParagon/siamParagonPlaza.jpg" 200 1000 600 0>>\
Pulled over out front of the busy plaza, <span class="imageLink"><<link "your driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> walks around and [[holds open your door|WR-2120 Upskirt opportunity]].
<</page>><<silently>>
<<set $header.line1 to "''SIAM PARAGON''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<remove-bigBlackSunglasses>>
<</silently>>\
<<header>>\
<<page>>\
Crossing the plaza, you and $zoe.firstName enter a stunning, air-conditioned atrium. Real trees and ornate wicker carvings intertwine with glowing LED lights and ultramodern surfaces.
<<image "/locationPhotos/thailand/siamParagon/siamAtrium.jpg" 125 1000 525 0>>\
Designer brands are everywhere you look – <span class="imageLink"><<link "Bulgari">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/bulgari.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Chanel">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/chanel.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Victoria's Secret">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/victoriasSecret.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Porsche">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/porsche.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
$zoe.firstName leads you through the opulence, her phone guiding the way.
[[Where are we going?|WR-2131 Peaggit]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Where're we going?" Soft music and the scent of luxury perfumes drift out from a <span class="imageLink"><<link "Dior boutique">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/dior.jpg']]")>>
<<set Dialog.open()>><</link>></span> as you pass.
$zoe.firstName shrugs, a quizzical look on her face. "Something called Peaggit?"
<span class="greyedOut">//[Elite upbringing]//</span> [[Piaget?|WR-2132 Piaget]]
[[Never heard of it.|WR-2134 Never heard of it]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Piaget?"
$zoe.firstName shrugs again.
[[They make watches.|WR-2133 They make watches]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"They make watches," you explain. //In the same way Krug makes sparkling wine.//
"Huh. Wonder why [[we're meeting there|WR-2140 Level 2]]?"
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Never heard of it."
"[[Me either|WR-2140 Level 2]]," $zoe.firstName shrugs.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Hermés">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/hermes.jpg']]")>>
<<set Dialog.open()>><</link>></span>, <span class="imageLink"><<link "Louis Vuitton">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/louisVuitton.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, <span class="imageLink"><<link "Nike">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/siamParagon/nike.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Well-heeled locals and tourists mill around, examining the luxuries on offer. In thigh-skimming silk dresses, you and $zoe.firstName turn heads as you click past.
<<image "/locationPhotos/thailand/siamParagon/aquarium.jpg" 105 1000 545 0>>\
One level up is a mesmerising aquarium, enormous tropical fish gliding gracefully among sunken Hindu statues. $zoe.firstName insists on pausing for selfies before carrying on to [[meet Venya and Kolya|WR-2200 Piaget]].
<</page>><<silently>>
<<set $header.line1 to "''PIAGET''",
$header.line2 to "SIAM PARAGON / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/siamParagon/piagetBoutique.jpg" 38 1000 438 0>>\
You and $zoe.firstName click into a jeweller's boutique: black oak, polished brass, theatrical lighting. A pair of middle eastern women wearing full niqābs browse diamond necklaces; a well-dressed Chinese man with a bald patch and a pot belly tries on a <<if $kate.agency == "cia">>$15,000<<elseif $kate.agency == "mi6">>£10,000<<elseif $kate.agency == "asis">>$20,000<<elseif $kate.agency == "csis">>$20,000<<elseif $kate.agency == "nzsis">>$20,000<<else>>ERROR IN KATE.AGENCY VAR<</if>> watch.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are here, looking slick in slacks and dress shirts.
They're holding [[champagne flutes|WR-2210 Here they are]], chatting with a <span class="imageLink"><<link "Thai woman">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> in a uniform skirt suit.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Here they are." The men set down their drinks, and rise to their feet.
"<div class="tooltip">Dewushka<span class="tooltiptext">Young lady</span></div>. You look beautiful." <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scent fills your nostrils, hints of earthy cologne and leather. The chemistry crackles between you instantly, just like it did at the skybar.
Touching your bare back, he pulls you in for a hug that's light but intimate. Pressed against him, wearing nothing but a thin scrap of expensive silk, your body responds with a quickened pulse and a [[tingle of arousal|WR-2220 Hi Venya]].
<</page>><<silently>>
<<if ndef $katesNameToKolya>>
<<set $katesNameToKolya to $kate.cover.firstName>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"$katesNameToKolya." <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> greets you with a light touch on your waist and a peck on your cheek.
"<div class="tooltip">Sawatdi, sawatdi<span class="tooltiptext">Hi, hi</span></div>, welcome," the <span class="imageLink"><<link "jewellery lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> beams and <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div>s to you both. There's an open bottle of champagne on the counter; she pours two flutes, and passes them to <<link "you and $zoe.firstName" "WR-2230 In for treat tonight">><</link>>.
<</page>><<silently>>
<<emote-calm>>
<<first>>
<<addNotification "Alcohol +1" "*Relaxed.* You're feeling pleasantly chilled, like the champagne.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"You in for treat tonight," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> promises. "You going to rent some of our most spectacular pieces. Diamonds, rubies, emerald. You going to get red carpet, movie star look. How that sound?"
[[Sounds great.|WR-2240 Admin][$kateSays to "great"]]
[[Sounds amazing.|WR-2240 Admin][$kateSays to "amazing"]]
[[Great. We're models, so we're used to this kind of thing.|WR-2240 Admin][$kateSays to "models"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "great">>\
<<emote-mouth-smile>>\
"Sounds great."
<<elseif $kateSays == "amazing">>\
<<emote-mouth-smile>>\
"Sounds amazing."
<<elseif $kateSays == "models">>\
<<emote-mouth-talking>>\
"Great. We're actually models, so...we're used to this kind of thing."
"Ahhh, of course," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> responds to that revelation with another <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div>, like she's greeting the news.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
A small amount of admin: you and $zoe.firstName need to fill out insurance forms with your contact details and address in Thailand, and show your ID. <<if $katesNameToKolya != $kate.cover.firstName>>This is slightly complicated by the fact that your ID says '$kate.cover.firstName', not '$kate.stripperName' – but subtly keeping a document out of sight is a very minor act of <div class="tooltip">tradecraft<span class="tooltiptext">the techniques used by undercover officers and agents. Bad tradecraft is the #1 way operations get blown</span></div>.<</if>>
//[[Sign the form.|WR-2250 Signed]]//
<</page>><<silently>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
You sign '$kate.cover.firstName $kate.cover.surname', and the paperwork gets filed away.
"This is Piaget," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, "so we start with a timepiece. A hundred forty-four year of Swiss precision, a work of art you wear on you wrist." Her cadence slows down to form the complex English words, a practised sales patter.
"These timepieces from our Treasures collection," she goes on, "inspire by four [[most precious stone|WR-2260 Stones]] on Earth."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/siamParagon/piagetWatches.jpg" 0 1000 500 0>>\
<span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shows you a collection of four absolutely showstopping diamond watches with satin straps.
//[[Choose Diamond.|WR-2270 Diamond watch]]
[[Choose Emerald.|WR-2280 Emerald watch]]
[[Choose Sapphire.|WR-2290 Sapphire watch]]
[[Choose Ruby.|WR-2300 Ruby watch]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmh, wonderful choice," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos, helping you slip it on. "The dial is mother-of-pearl. The timepiece encrusted with sixty four diamond, oval, brilliant and maquise-cut. Black and diamond, it match her dress. Simple beauty and elegance. The value of the piece, <div class="tooltip">nine hundred thousand ruble<span class="tooltiptext"><<if $kate.agency == "cia">>$15,000<<elseif $kate.agency == "mi6">>£10,000<<elseif $kate.agency == "asis">>$20,000<<elseif $kate.agency == "csis">>$20,000<<elseif $kate.agency == "nzsis">>$20,000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
//[[Show it off.|WR-2310 I was a teenage hand model]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmh, wonderful choice," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos, helping you slip it on. "The dial is mother-of-pearl. The timepiece encrusted with a beautiful emerald, nestle in a backdrop of sixty-two hand-cut diamond. <<if $kate.eyeColour == "emerald">>It bring out the green in her eyes.<<else>>The emerald green strap add a touch of vibrance to her look.<</if>> The value of the piece, <div class="tooltip">nine hundred thousand ruble<span class="tooltiptext"><<if $kate.agency == "cia">>$15,000<<elseif $kate.agency == "mi6">>£10,000<<elseif $kate.agency == "asis">>$20,000<<elseif $kate.agency == "csis">>$20,000<<elseif $kate.agency == "nzsis">>$20,000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
//[[Show it off.|WR-2310 I was a teenage hand model]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmh, wonderful choice," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos, helping you slip it on. "The dial is mother-of-pearl. The centre stone is beautiful sapphire, nestle in a backdrop of sixty-two hand-cut diamond. <<if $kate.eyeColour == "blue" or $kate.eyeColour == "sapphire">>It bring out the blue in her eyes.<<else>>The deep blue satin strap add a touch of sophistication to her look.<</if>> The value of the piece, <div class="tooltip">nine hundred thousand ruble<span class="tooltiptext"><<if $kate.agency == "cia">>$15,000<<elseif $kate.agency == "mi6">>£10,000<<elseif $kate.agency == "asis">>$20,000<<elseif $kate.agency == "csis">>$20,000<<elseif $kate.agency == "nzsis">>$20,000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
//[[Show it off.|WR-2310 I was a teenage hand model]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmh, wonderful choice," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> coos, helping you slip it on. "The dial is mother-of-pearl. The centre stone is fiery ruby, nestle in a backdrop of sixty-two hand-cut diamond. The strap red satin, add a bold, sexy flourish to her look. The value of the piece, <div class="tooltip">nine hundred thousand ruble<span class="tooltiptext"><<if $kate.agency == "cia">>$15,000<<elseif $kate.agency == "mi6">>£10,000<<elseif $kate.agency == "asis">>$20,000<<elseif $kate.agency == "csis">>$20,000<<elseif $kate.agency == "nzsis">>$20,000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
//[[Show it off.|WR-2310 I was a teenage hand model]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You show off the watch to $zoe.firstName, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
"I //love// this look on her," <span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "Diamond timepiece on one wrist. Friendship bracelet on other. It show two side of her nature. She appreciate finer things in life. But she also treasure all kinds of people. She a [[great friend|WR-2320 She's alright]]."
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-beam>>
<<emote-eyes-closed>>
<</silently>>\
<<header>>\
<<page>>\
"She's //alright,"// $zoe.firstName quips, getting a ripple of laughter out of everyone. "Let's not go overboard."
You sip your champagne while she [[takes a turn in the limelight|WR-2330 Moar jewels]], trying on a diamond-encrusted gold watch worth <div class="tooltip">1.2M rubles<span class="tooltiptext"><<if $kate.agency == "cia">>$20,000<<elseif $kate.agency == "mi6">>£13,000<<elseif $kate.agency == "asis">>$27,000<<elseif $kate.agency == "csis">>$27,000<<elseif $kate.agency == "nzsis">>$27,000<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The luxurious pieces keep coming – diamond earrings that glint in the soft lighting, necklaces adorned with gleaming gemstones, and your transmitter ring is swapped for a striking white gold ring with a <<if hasVisited("WR-2270 Diamond watch")>>pear-cut yellow diamond<<elseif hasVisited("WR-2280 Emerald watch")>>cushion-cut emerald<<elseif hasVisited("WR-2290 Sapphire watch")>>cushion-cut sapphire<<else>>cushion-cut ruby<</if>>.
With each new addition, you and $zoe.firstName pose elegantly: for the admiring gazes of <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, for their smartphones, and your own selfies.
<span class="imageLink"><<link "Jewellery Lady">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/supatra.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> never stops cooing over [[how stunning|WR-2340 Marines we are leaving]] the two of you look.
<</page>><<silently>>
<<set $header.line1 to "''SIAM PLAZA''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<emote-calm>>
<<wear-bigBlackSunglasses>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</silently>>\
<<header>>\
<<page>>\
The final pieces are admired and captured in photos; then <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> swipe their cards, and the four of you drift out together through the mall.
Stifling hot air washes over you as you step out into the bustling plaza. Thai kids run between the intermittent fountain jets, squealing when they mistime it and get soaked. Tantalising smells drift from street food stalls, reminding you that the mango sticky rice you had for lunch was a long time ago.
You're acutely aware of the heat rising up your dress, a stark contrast to the cool comfort you just left behind. You subtly touch your hemline to make sure it's still covering you up.
//[[Climb into the SUV.|WR-2350 Climb in]]//
<</page>><<silently>>
<<set $header.line1 to "''BANGKOK''",
$header.line2 to "THAILAND / MAY 2018">>
<<set _header1Blink to true>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
The SUV purrs into life, and merges back into traffic.
"So, ladies," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "How was big photoshoot?"
"Yeah, nice," $zoe.firstName lies smoothly. "Flew us out to one of the islands."
<<if hasVisited("TNG-844 Not yet")>>\
[[Koh Samui.|WR-2670 Shoot on Koh Samui]]
<</if>>\
<<link "Where they shot //The Beach.//" "WR-2680 Shoot on Koh Phi Phi Le">><</link>>
[[The one from James Bond.|WR-2690 Shoot on Khao Ping Kan]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Koh Samui," you lie, thinking of the island Chas told you about, back in the hostel. "Long beaches, crystal clear water. Like a postcard."
"Oh, cool," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "It sounds wonderful."
<<include "WR-2700 Zoe's phone pings">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It's where they shot //The Beach,"// you lie. "Really beautiful."
"Daaa," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "With, ah...Di Ceprio."
<<include "WR-2700 Zoe's phone pings">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Apparently they shot one of the James Bond movies there," you lie. "One of the old ones."
"Da, da," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "That was, ah...//Men With Golden Gun.// Roger Moore."
<<include "WR-2700 Zoe's phone pings">>\
<</page>><span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> phone pings in her <<handbag>>. "Sorry," she says, fishing it out. "My mom's having a drama back in the states. I might need to text a couple times tonight."
"No problem," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says graciously. "You were modelling <<if hasVisited("GNO-72490 Fashion model")>>feshion<<elseif hasVisited("GNO-72491 Bikini model")>>sweemwear<<else>>lingerie<</if>>, no?" he asks you.
<<if hasVisited("GNO-72490 Fashion model")>>\
[[Yeah, new summer collection for Versace.|WR-2710 Versace]]
<<elseif hasVisited("GNO-72491 Bikini model")>>\
[[Yeah, new bikini brand.|WR-2730 New bikinis]]
<<else>>\
[[Yeah, new lingerie brand.|WR-2750 New line for VS]]
<</if>>\<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you lie; that's what you told Kolya. "New summer collection."
You peek at $zoe.firstName's <span class="imageLink"><<link "phone screen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/songWatRoad/zoeTextingBryan.png']]")>>
<<set Dialog.open()>>
<</link>></span>; Bryan, of course.
"Do they let you keep the clothes?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[I wish!|WR-2720 I wish]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"I wish!" you tell him. "I was modelling a [[two thousand dollar skirt|WR-2800 Golden hour drinks]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you lie; that's what you told Kolya. "New bikini brand."
You peek at $zoe.firstName's <span class="imageLink"><<link "phone screen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/songWatRoad/zoeTextingBryan.png']]")>>
<<set Dialog.open()>>
<</link>></span>; Bryan, of course.
"Hm, must be nice," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says. "They pay you to go to beach."
[[Well, we had to work in the sun all day.|WR-2740 Modelling isn't easy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. But we had to work in the sun all day, so it's not all fun and games."
"Awww," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> teases. "You [[poor theengs|WR-2800 Golden hour drinks]]..."
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you lie; that's what you told Kolya. "New lingerie brand."
"Lingerie on beach?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks, brow furrowed.
[[Bikinis on the beach. Lingerie in the hotel.|WR-2751 Bikinis on the beach]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bikinis on the beach," you tell him. "Lingerie in the hotel."
"Ohhh, I see," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods his understanding. "What, uhhh, are the types of lingerie?"
[[All kinds. Lace, babydolls, bodystockings...|WR-2760 All kinds]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, all kinds. Lacy stuff...some babydolls...bodystockings..."
You peek at $zoe.firstName's <span class="imageLink"><<link "phone screen">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/songWatRoad/zoeTextingBryan.png']]")>>
<<set Dialog.open()>>
<</link>></span>; Bryan, of course.
<span class="greenHighlighter">Venya ''liked'' that.</span>
"Mm-hm," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods along, clearly imagining you clad in such things. "Sounds [[glemorous|WR-2800 Golden hour drinks]]..."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/songWatRoad/samsaraRiverView.jpg" 20 1000 420 0>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes back with the drinks. Basking in the riverside's golden glow, you take a deep, satisfying sip of your <<if $katesDrink == "leo">>ice cold Thai lager<<elseif $katesDrink == "chardonnay">>chilled white wine<<else>>Thai mojito, served in a chilled coconut shell<</if>>.
<span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> settle into their chairs, and the conversation flows easily, sharing stories of their travels, asking which countries you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> have been to.
The distant hum of boat engines and the soft clinking of glasses add to the relaxed atmosphere. Cargo barges, fishing boats, and brightly painted river taxis glide past in the background, creating a picturesque backdrop for your [[early evening drinks|WR-2810 Sexual tension]].
<</page>><<silently>>
<<first>>
<<addNotification "Alcohol +1" "*Buzzed.* You feel relaxed and chatty.">>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
The first <<if $katesDrink == "leo">>beer<<elseif $katesDrink == "chardonnay">>glass of wine<<else>>Thai mojito<</if>> goes down easy; you're feeling a little buzzed as you sip on the second one, which <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> buys you.
As you drink and chat, <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> frequent, lingering glances feel subtly, secretly sexy. It's like his mouth is saying //da, you should visit Japan,// and his eyes are saying //I want to get you in private and peel you out of that dress.// When you talk, he looks at your lips.
It's a little bit exciting, especially after the casually objectifying way you've been treated in the club recently. It's nice to actually be [[pursued again|WR-2820 You hungry]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Some of the other bar customers are ordering food; tempting smells of freshly grilled fish and steamed pork dumplings drift over from nearby tables. "You ladies ready for food?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Sure," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "We getting something here?"
"No, no, we khev reservation," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, checking his wristwatch, a stainless steel TAG Heuer. "Ectually, drink up. Our texi is [[probably waiting|WR-2830 Dreenk up]]."
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<wear-zoesSilverClutchHandbag>>
<<set $header.line1 to "''RIVERFRONT''",
$header.line2 to "SONG WAT RD AREA / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
A very short walk takes you to a nearby pier, where a small vintage speedboat awaits.
Gleaming in the soft sunset, its polished wooden deck looks straight out of the 1960s. As you approach, a red, white and blue Thai <div class="tooltip">ensign<span class="tooltiptext">the flag on a boat that indicates its country of registration</span></div> lifts up jauntily in the breeze, like it's welcoming you.
<<image "/locationPhotos/thailand/songWatRoad/speedBoatDocked.jpg" 100 1000 500 0>>\
"Hello sir!" The <span class="imageLink"><<link "cheery Thai pilot">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/maiSpeedboatPilot.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> greets your group with a <div class="tooltip">wai<span class="tooltiptext">the traditional greeting bow of Thailand</span></div> and a wide smile. "Chakrabongse?"
"Da, hyello." <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> boards first, stepping confidently across the big gap from pier to boat without assistance. <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> follows closely behind, with just as much assuredness.
Turning back, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans over the side, reaching out to you.
//[[Take his hand and board the boat.|WR-2840 Off to never neverland]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You reach out. Your palms touch, and his hand closes around yours, gently and firmly. That reassuring feeling of masculine strength.
The gap between the edge of the pier and the boat wouldn't normally be much of an obstacle. But tonight, in high heels and a short floaty dress, the prospect of crossing it elegantly feels more challenging.
As you step up to the edge, a cool river breeze wafts up your legs, offering a stark reminder that you're not wearing any underwear tonight.
//[[Step across the gap.|WR-2850 Leap of faith]]//
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
The breeze plays with your hemline as you step off the pier.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<<emote-mouth-open>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-modestMarilyn-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
A cool waft teases your bare legs as you step across. Catching the Thai <div class="tooltip">ensign<span class="tooltiptext">the flag on a boat that indicates its country of registration</span></div>, it lifts it jauntily into the air – and carries [[your dress|WR-2860 Minor wardrobe malfunction]] along for the ride!
<<else>>
<<emote-mouth-open>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
A cool waft teases your bare legs as you step across. Catching the Thai <div class="tooltip">ensign<span class="tooltiptext">the flag on a boat that indicates its country of registration</span></div>, it lifts it jauntily into the air – and carries [[your dress|WE-2870 Major wardrobe malfunction]] along for the ride!<br />
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
You yelp and manage to pin it down with your bag.
<span class="greenHighlighter">Kolya ''liked'' that.</span> <span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Mai ''liked'' that.</span>
You're not sure how much you just flashed the guys in the boat, but on the pier behind you, $zoe.firstName lets out an alarmed squeak as she catches a glimpse of your [[exposed derriere|WR-2861 OMG]].
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
"Ohmygod!" she laughs. "$katesNameToKolya!"
//[[Hold onto your hemline.|WR-2880 Landing]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With one hand in Kolya's, and the other holding onto $zoe.firstName's bag, all you can do is squeal as your dress floats up in the wind!
<span class="greenHighlighter">Kolya ''loved'' that.</span> <span class="greenHighlighter">Venya ''loved'' that.</span> <span class="greenHighlighter">Mai ''loved'' that.</span>
You can feel the breeze washing over your bare, <<if $kate.bikiniLine == "hollywood">>shaved<<else>>neatly trimmed<</if>> pussy. All three of them //must// have [[seen it|WR-2880 Landing]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-modestMarilyn-"+$kate.braSize)>>
<<showFront>>
<<emote-calm>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
Burning heat prickles your cheeks. Your high heel finds the deck and you manage to pull down your dress. <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> helps you over the gunwale and down into the cockpit.
The boat's wooden interior, varnished to a shine, welcomes you with vintage charm.
[[Oh my god.|WR-2890 Omg]]
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<emote-brows-worried>>
<<emote-eyes-big>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Oh my god," you exclaim, smoothing down your dress.
The guys are all wearing teasing smiles, even the <span class="imageLink"><<link "boat pilot">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/maiSpeedboatPilot.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The sun casts a warm, golden hue on the Chao Phraya's rippling waters.
For a moment no one says anything. Then <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> breaks the silence.
<<if hasVisited("GNO-72490 Fashion model") or hasVisited("GNO-72491 Bikini model")>>\
"So..." he shrugs. "You're not a lingerie model."
<<else>>\
"So..." he shrugs. "You can't keep lingerie after the shoot."
<</if>>\
You can't help but laugh along with the men, a mix of [[embarrassment and amusement|WR-2900 Zoe boards]] washing over you.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<<set $header.line1 to "''CHAO PHRAYA RIVER''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
$zoe.firstName comes aboard next, assisted by <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, one hand firmly holding down the hem of her dress. It flutters up at the back, flashing her <span class="imageLink"><<link "tawny bare buttocks">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-windy-front-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> to an empty pier.
<<image "/locationPhotos/thailand/songWatRoad/aboardVintageSpeedboat.jpg" 100 1000 500 0>>\
You settle into your seats while the <span class="imageLink"><<link "pilot">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/maiSpeedboatPilot.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> skillfully starts up the vintage vessel. The engine rasps into life, the propellors [[gurgling and spluttering|WR-2910 Drift and start]] in the water behind you.
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Smells of briny water and diesel linger in the air as the boat drifts apart from the pier, swaying gently on the river.
The <span class="imageLink"><<link "pilot">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/maiSpeedboatPilot.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> glances over his shoulder to check you're all seated. Satisfied, he eases the throttle forward.
With a roar, the bow rises gracefully up out of the water, and a surge of acceleration [[presses you back into your seat|WR-2920 Vroom]].
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-modestMarilyn-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<</silently>>\
<<header>>\
<<page>>\
Cool wind rushes through the cockpit, plastering the thin material of your dress against your body, making your nipples stiffen. You and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-windy-front-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> hold down your rippling hemlines as the boat surges forward.
"Woo!" she squeals. Over the roar of the engine and the hiss of the wake, it's too loud to talk. <<if $kate.braSize == "small">>The bow bobs and bounces as the boat<<else>>Without a bra, your breasts bounce in time with the bow as it<</if>> [[skims across the surface|WR-2930 Boat ride]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-modestMarilyn-"+$kate.braSize)>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/chaoPhraya/chaoPhrayaRiverbank.jpg" 267 1000 667 0>>\
Wind tousles your hair and whips around your dress. The evening sun bathes the river in warm, golden hues, casting a magical glow over everything.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-windy-front-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> takes advantage of the moment to capture a group selfie with all of you. Her phone flashes, and you hear her excited giggle as she reviews the picture.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> sit back, taking in the sights. Bangkok [[glides smoothly by|WR-3000 Title card]] on both banks: ramshackle piers...towering hotels and condo blocks...colourful wooden houses that seem to lean over the water.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="WR-3010 Pier arrival">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/chakrabongseVillas/chakrabongseTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''CHAKRABONGSE VILLAS''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
The sun is setting as you draw up to the pier of a riverside restaurant. Diners nearby turn to watch your glamorous arrival.
<span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> disembark, then help you and $zoe.firstName [[ashore|WR-3020 Cool steady breeze]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A cool, steady breeze wafts along the Chao Phraya. Knowing what that means, $zoe.firstName holds onto her hemline as <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> helps her ashore with a steadying hand.
That protects her modesty from the front, but she can't do anything when the breeze playfully lifts up the back of her dress. Her dusky, naked buttocks, framed by a billowing flourish of bronze satin, bid a <span class="imageLink"><<link "cheeky farewell">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-windy-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> to the boat and its <span class="imageLink"><<link "pilot">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/maiSpeedboatPilot.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">Mai ''liked'' that.</span>
Then it's [[your turn to disembark|WR-3030 Goodnight miss]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"Goodnight, miss."
The boat sways gently as you stand up, feeling the soft caress of the breeze in your hair and on your bare legs. <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> reaches out, his grip strong and steady, providing the support you need in your high-heeled elegance.
//Fuuuck,// it feels like a whole restaurant full of people is watching you.
//[[Step ashore.|WR-3031 Kate's memorable goodbye]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-modestMarilyn-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Keeping your face cool and holding onto your hemline, you step across the gap to the private pier.
The breeze lifts up your dress at the back, sending a tingle up your spine as you offer your own [[memorable goodbye|WR-3040 Paraded]] to the pilot.
<span class="greenHighlighter">Mai ''liked'' that.</span>
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-modestMarilyn-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-marilynMoment-rear")>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers press against your bare back, skin on skin, light and comforting. He guides you along the pier's lantern-lit path towards the restaurant.
A waitress in a silken <div class="tooltip">chakkri<span class="tooltiptext">a traditional dress of Thailand</span></div> greets your group with a bright smile and a deep <div class="tooltip">wai<span class="tooltiptext">the greeting bow of the Thai people</span></div>. Still buzzing from the boat ride, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> can't resist taking a quick selfie with her.
The restaurant itself is an enchanting villa, with architecture from an era long past. Ornate wooden beams and intricate carvings frame the [[dining area|WR-3050 Restaurant]]. The air is laced with scents of fragrant orchids, sizzling Thai spices, and the distinct aroma of grilling seafood.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
As you walk past elegantly set tables with flickering candles, you can sense the eyes of other diners on you. Your short, satin dress and sky-high heels make you grab attention from each table you pass.
<span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> touch on your back feels both protective and erotic. With no underwear beneath this slinky dress, you feel incredibly vulnerable and on display as you're paraded past well-heeled couples and families.
The clinking of glasses, hushed conversations, and the soft strains of traditional Thai music in the background create an atmosphere of [[sophistication and romance|WR-3060 The table]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/chakrabongseVillas/tableAtSunset2.jpg" 100 1000 500 0>>\
Passing straight through the restaurant, the waitress leads you out to a beautifully set table overlooking the river. The blazing sunset casts a liquid gold reflection on the water.
Casually chivalrous, <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hold out chairs for you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bagAndShades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
//[[Take a seat.|WR-3070 Seated]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<remove-zoesSilverClutchHandbag>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You set down your bag and take a seat, tugging down on your hemline to make sure you're sitting on satin, not chair.
<<image "/locationPhotos/thailand/chakrabongseVillas/restaurantPierView.jpg" 100 1000 500 0>>\
//Aaand relax.// The view is stunning, across from the iconic spires of Wat Arun temple. Waves lap gently at the base of the pier.
"Some drink to start?" Your waitress takes out a notepad and pen.
//[[Order a Negroni.|WR-3080 Aperitif][$kateSays to "negroni"]] <span class="greyedOut"><small>Gin, vermouth rosso, Campari</small></span>//
//[[Order an Aperol Spritz.|WR-3080 Aperitif][$kateSays to "aperolSpritz"]] <span class="greyedOut"><small>Prosecco, Aperol, soda water</small></span>//
//[[Order a French '75.|WR-3080 Aperitif][$kateSays to "french75"]] <span class="greyedOut"><small>Gin, champagne, lemon juice, sugar</small></span>//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "negroni">>\
You savour the crisp, bittersweet notes of a blood red Negroni while \
<<elseif $kateSays == "aperolSpritz">>\
You enjoy the refreshing tang of a vibrant orange Aperol Spritz while \
<<elseif $kateSays == "french75">>\
You savour the cold, refreshing taste of a French '75 while \
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>> <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> study the wine list, murmuring to each other in Russian.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> seizes the moment, snapping a selfie of the two of you raising your glasses in a toast, with the breathtaking river sunset as your backdrop. Her phone goes //whoosh// as she sends the snap to Bryan.
The guys order a 2012 Louis Jadot, then turn their attention back to you. "So ladies. What is next photoshoot for you?"
[[Not sure yet, the agency surprises us.|WR-3100 Nothing booked]]
<<link "//Let $zoe.firstName answer.//" "WR-3090 Zoe's bullshit">><</link>>
<</page>><<silently>>
<<set _insightAlert to "" + $zoe.firstName + " – Deceptive (low pressure)">>
<<first>>
<<addNotification "Insight gained" _insightAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
A well-timed sip of your <<if $kateSays == "negroni">>Negroni<<elseif $kateSays == "aperolSpritz">>Aperol Spritz<<elseif $kateSays == "french75">>French '75<<else>>//(ERROR IN KATESAYS VAR)//<</if>> puts <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-shades-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> in the spotlight.
"I've got a magazine shoot," $zoe.firstName lies, her voice steady and confident. "Y'know, like dresses and bags and stuff."
//Interesting,// she had that ready to go. Nice casual delivery, served up with a relaxed facial expression. Just enough detail to support the lie; vague enough that she won't get tripped up on a fine point later.
Her deception skills are //good,// at least in low pressure situations – that'll go in your contact report later.
"Da, nice. What about you, $katesNameToKolya?"
[[Nothing booked.|WR-3100 Nothing booked]]
[[I've got a booth babe thing coming up.|WR-3110 Booth babe]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WR-3090 Zoe's bullshit")>>\
"Nothing booked," you shrug. "The agency usually surprises us."
<<else>>\
"We're not sure yet," you shrug. "The agency usually surprises us."
<</if>>\
"Hm. Must keep things interesting," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says, nodding approvingly.
"Da. My diary is plenned, three months in advance," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> complains. "I could use some surprises."
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> raises his glass. "To pleasant surprises."
[[To pleasant surprises.|WR-3140 To pleasant surprises]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I've got a booth babe thing coming up," you say, picturing Jag and his friends. The best lies include elements of the truth.
"Oh, you mean like conference?" <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Yeah. I have to wear something skimpy to help sell telephones.|WR-3120 Skimpy]]
[[Yeah. They'll probably dress me up like a giant phone.|WR-3130 Big stupid phone]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, telecoms thing. I'll have to stand around all day wearing something skimpy," you shrug. "Apparently that helps them sell phones."
<span class="greenHighlighter">Kolya ''liked'' that.</span> <span class="greenHighlighter">Venya ''liked'' that.</span>
"Tough work," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> teases, "but somebody has to do it."
"I'm sure you'll [[sell many phones|WR-3200 Wine and appetisers]]," grins <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah, telecoms thing. They'll probably dress me up like a big stupid phone or something."
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> grin at that mental image. "So not all assignments are [[glemorous|WR-3200 Wine and appetisers]]."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"To pleasant surprises," the others echo, and you all clink glasses, the <<if $kateSays == "negroni">>Negroni's bittersweet taste<<elseif $kateSays == "aperolSpritz">>Aperol Spritz's tangy taste<<elseif $kateSays == "french75">>cool refreshing French 75<<else>>//(ERROR IN KATESAYS VAR)//<</if>> [[dancing on your palate|WR-3200 Wine and appetisers]].
<</page>><<silently>>
<<remove-bigBlackSunglasses>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Your wine glass is filled with chilled, buttery six-year old Chardonnay, and soon appetisers are brought to your table – a range of delicious-smelling morsels, each one presented like a tiny work of art.
[[Eat a deep fried corn cake.|WR-3210 Corn cake]]
[[Eat a steamed prawn pastry parcel.|WR-3220 Prawn parcel]]
[[Eat a bite-sized beef satay.|WR-3230 Beef satay]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You try a deep-fried corn cake – golden and crispy on the outside, with a creamy corn filling inside. A dip in plum sauce adds a tangy, morish sweetness.
<<if hasVisited("WR-3210 Corn cake") and hasVisited("WR-3220 Prawn parcel") and hasVisited("WR-3230 Beef satay")>>\
<<include "WR-3240 Wine sip">>\
<</if>>\
<<if not hasVisited("WR-3210 Corn cake")>>\
[[Eat a deep fried corn cake.|WR-3210 Corn cake]]
<</if>>\
<<if not hasVisited("WR-3220 Prawn parcel")>>\
[[Eat a steamed prawn pastry parcel.|WR-3220 Prawn parcel]]
<</if>>\
<<if not hasVisited("WR-3230 Beef satay")>>\
[[Eat a bite-sized beef satay.|WR-3230 Beef satay]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Like Chinese dumplings, the pastry parcels burst with fresh, savoury flavours: minced prawn mingling with the fragrant kick of a clear chilli sauce.
<<if hasVisited("WR-3210 Corn cake") and hasVisited("WR-3220 Prawn parcel") and hasVisited("WR-3230 Beef satay")>>\
<<include "WR-3240 Wine sip">>\
<</if>>\
<<if not hasVisited("WR-3210 Corn cake")>>\
[[Eat a deep fried corn cake.|WR-3210 Corn cake]]
<</if>>\
<<if not hasVisited("WR-3220 Prawn parcel")>>\
[[Eat a steamed prawn pastry parcel.|WR-3220 Prawn parcel]]
<</if>>\
<<if not hasVisited("WR-3230 Beef satay")>>\
[[Eat a bite-sized beef satay.|WR-3230 Beef satay]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Mmmh." You savour the bite-sized beef satays, the tender meat perfectly grilled and infused with a mild curry flavour, dipped in peanut and cucumber relish.
<<if hasVisited("WR-3210 Corn cake") and hasVisited("WR-3220 Prawn parcel") and hasVisited("WR-3230 Beef satay")>>\
<<include "WR-3240 Wine sip">>\
<</if>>\
<<if not hasVisited("WR-3210 Corn cake")>>\
[[Eat a deep fried corn cake.|WR-3210 Corn cake]]
<</if>>\
<<if not hasVisited("WR-3220 Prawn parcel")>>\
[[Eat a steamed prawn pastry parcel.|WR-3220 Prawn parcel]]
<</if>>\
<<if not hasVisited("WR-3230 Beef satay")>>\
[[Eat a bite-sized beef satay.|WR-3230 Beef satay]]
<</if>>\
<</page>>As you wash it down with a long sip of chilled white wine, your eyes meet <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The soft glow of the sunset casts a warm, flattering glow on his features. He has this way of //looking// at you that's so sexy, like everything you do turns him on.
Nerves flutter in your stomach. You shoot him a playful [[hint of a smile|WR-3300 Sundown]] in reply.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/chakrabongseVillas/tableEvening.jpg" 0 1000 400 0>>\
The sun sinks below the horizon, and the riverside comes alive with lights. It's a beautiful sight, and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> is quick to snap a photo of it.
She can't resist capturing moments – of the sunset, of herself, of you, of <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. Her phone whooshes and pings with incoming and outgoing messages to Bryan. "Sorry," she cringes, "my mom."
"I'm going to throw that thing in the [[fucking river|WR-3310 The fucking river]]," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> warns.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Sorrry." <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> thumbs dance on the screen as she taps out a quick last message to Bry.
"$zoe.firstName." <span class="imageLink"><<link "Venya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tone is firm. "Turn it off and put it in your bag."
"But–" she hesitates for a moment, her fingers hovering over the screen.
"Off. Now."
"Okay, okay." She flicks it onto silent, and slips it <<link "back into her <<handbag>>" "WR-3320 Hey brother pour the wine">><</link>>.
<</page>><<silently>>
<<first>>
<<addNotification "Alcohol +1" "*Tipsy.* You're feeling a little drunk! You feel playful and confident.">>
<</first>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<set _diceRollMods to -2>>
<</silently>>\
<<header>>\
<<page>>\
By now, the table's nearly through its third bottle of wine. <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are drinking like, well, Russians. And they're making sure you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> are constantly topped up.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Self control check''. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if (_kateD10 + _diceRollMods) gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Self control check.'' Target: 6. You rolled: <small>(_kateD10<<= _diceRollMods>>) =</small> <<= ( _kateD10 + _diceRollMods)>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
<span class="greyedOut">//[Self control check passed]//</span> //[[Subtly drink less.|WR-3330 Kate moderates her alcohol]]//<br />
//[[I'm fine.|WR-3340 Kate drinks]]//
<<else>>
<span class="greyedOut">//[Self control check failed] Subtly drink less.//</span><br />
//[[I'm fine.|WR-3340 Kate drinks]]//
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10-2<span class="tooltiptext"><small>//Conscientousness// +0<br />//Tipsy// -2</small></span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You're working: better keep a clear head. You slow down on the wine, taking small sips only, and drinking plenty of water in between. Nobody seems to notice...probably because they're all happily getting drunk.
<<include "WR-3350 Moar wine">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Alcohol plays a role in a surprising number of intelligence operations, so there's a strong drinking culture at <<if $kate.agency == "cia">>the CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>>. <<if $kate.agency == "cia">>At the Farm<<elseif $kate.agency == "mi6">>At Fort Monckton<<elseif $kate.agency == "asis">>On Swan Island<<elseif $kate.agency == "csis">>At Dwyer Hill<<elseif $kate.agency == "nzsis">>At Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>, recruits were encouraged to drink in the bar every night, to build up their tolerance for booze. //I know what I'm doing.//
You take a big, satisfying swig of cold Chardonnay, and smile at <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> when he tops you straight up.
<<include "WR-3350 Moar wine">>\
<</page>>The fourth bottle of wine makes its entrance, along with the main course. You're each served a plate adorned with a striking, <div class="tooltip">prang<span class="tooltiptext">the iconic stone towers characterising Hindu-Buddhist temple architecture</span></div>-shaped pillar of fragrant purple rice; a spread of [[Thai dishes|WR-3351 Om nom nom]] are laid out on the table to share.<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/chakrabongseVillas/chakrabongseMeal.jpg" 100 1000 500 0>>\
Every mouthful is //delicious.// A glistening pomelo salad with fresh-picked wild pepper leaves; salty, tangy <div class="tooltip">tom kha gai<span class="tooltiptext">Thai chicken & coconut soup</span></div>; a curry with melt-in-the-mouth chunks of roast duck; juicy baked <<if $kate.agency == "mi6">>aubergines<<else>>eggplant<</if>> stirred with fresh holy basil; plump, deep-fried river prawns with garlic.
As dishes are savoured and wine glasses clink, the river beyond the restaurant sparkles with lights, casting [[mesmerising reflections|WR-3360 The dream team]] on the dark water.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/chakrabongseVillas/tableAfterDark.jpg" 25 1000 425 0>>\
<span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> talk about their careers; they tell you they're the two top export negotiators in their company, the 'dream team' when they get to work together (Venya's the charmer, Kolya's the deliverer). The others in their group are technical experts; they just closed a massive deal with a Bangkok property developer, beating out rival suppliers from India and Japan.
"Venya Petrovich, we speak too much of work," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> warns. "They will find us dull."
"Nuh uh, I like it." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shakes her head. "I think it's [[sexy|WR-3370 Really]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Khyeh," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles, before he realises she might not have been making a joke. "Uhhh...truly?"
"Oh yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods insistently. "Y'know, the suits, the power...all that masculine energy." She looks to you. "Businessmen are a turn-on, right?"
[[Total turn-on.|WR-3380 Totally]]
<<link "//Hot// ones." "WR-3382 Hot ones">><</link>>
[[Eh, maybe. Depends.|WR-3381 Eh maybe]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hot guys in suits," you nod. "Total turn-on."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"My first job, right," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "This tiny law firm in Chicago. I'm like answering the phones, bringing coffee to the meetings. Straight outta high school."
Confidently holding court, she looks //beautiful// in the flickering candlelight. <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are [[listening raptly|WR-3390 Zoe's crush]].
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
"Eh, maybe," you shrug dismissively. "Depends."
"Oh, I love it. My first job, right," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "This tiny law firm in Chicago. I'm like answering the phones, bringing coffee to the meetings. Straight outta high school."
Confidently holding court, she looks //beautiful// in the flickering candlelight. <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are [[listening raptly|WR-3390 Zoe's crush]].
<</page>><<silently>>
<<emote-mouth-smirk>>
<</silently>>\
<<header>>\
<<page>>\
//"Hot// ones," you smirk.
"Oh, I love it. My first job, right," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says. "This tiny law firm in Chicago. I'm like answering the phones, bringing coffee to the meetings. Straight outta high school."
Confidently holding court, she looks //beautiful// in the flickering candlelight. <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are [[listening raptly|WR-3390 Zoe's crush]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"My boss," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes on, "he musta been mid-40s. I was 18, right? And I never said, but I had //such a crush// on him. I used to go home from work and make up these sexual fantasies about him. Like every night after work. //Hi mom// and straight to my room."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
You're not sure whether or not it's true, but <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are lapping it up, enchanted by the mental image of a teenage office girl constantly masturbating about her fortysomething colleague. "[[What fentasy|WR-3400 What fentasy]]?" asks Venya.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, you know." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> smiles coyly. "I was young, it was pretty mild. Sex in the office, basically. I started wearing little skirts in every day. But he never took the hint."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"Whoa, too bad," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> mutters.
"Meesed opportunity. For him," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"You should hev just said to him," Venya says. "Boss, I don't mind some extra duties." Pouring wine, Kolya laughs at that.
"I was [[too shy|WR-3410 Hush hush eye to eye]]," $zoe.firstName grins.
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, your turn," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you. "Tell us what you find sexy about office men."
[[I can't top that story.|WR-3420 I can't top that story]]
<<include "WR-3421 Exit nav">>\
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"I can't top that story," you protest.
"Come //onnn,// Dewushka," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chides. "You said <<if hasVisited("WR-3382 Hot ones")>>hot business men are<<else>>business men <<if hasVisited("WR-3381 Eh maybe")>>can be your<<else>>are total<</if>><</if>> turn-on."
<<include "WR-3421 Exit nav">>\
<</page>><<if $kate.kinks.includes("exhibitionist")>>\
<span class="greyedOut"><small>//[Exhibitionist]//</small></span> [[The secretary clothes were sexy.|WR-3430 Kate's exhib office fantasy]]
<<else>>\
<span class="greyedOut"><small>//[Exhibitionist]//</small> The secretary clothes were sexy.</span>
<</if>>\
<<if $kate.kinks.includes("masochist")>>\
<span class="greyedOut"><small>//[Masochist]//</small></span> [[Okay, fuck it. I used to have this fantasy about being punished.|WR-3440 Kate's maso office fantasy]]
<<else>>\
<span class="greyedOut"><small>//[Masochist]//</small> Okay, fuck it. I used to have this fantasy about being punished.</span>
<</if>>\
<<if $kate.kinks.includes("submissive")>>\
<span class="greyedOut"><small>//[Submissive]//</small></span> [[Following rules was kind of sexy.|WR-3480 Kate's sub office fantasy]]
<<else>>\
<span class="greyedOut"><small>//[Submissive]//</small> Following rules was kind of sexy.</span>
<</if>>\<<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Welll..." Toying with your answer, you feel a warm flush spreading across your cheeks, a mix of the wine and the sultry atmosphere breaking down your inhibitions. //Fuck it.// "I loved being a secretary. You're supposed to be all professional, but you get to wear pencil skirts and stockings, and drive all the men crazy."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"Mmmm," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods emphatically, his brow furrowed in approval at this new insight.
"What is sexiest thing you ever wore to office?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Lacy lingerie, black stockings.|WR-3431 Kate wore sexy lingerie]]
[[Sheer blouse.|WR-3432 Kate wore a sheer blouse]]
[[Pencil skirt with a high slit.|WR-3433 Kate wore a slit skirt]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh..." you think for a second. "Probably...lacy black lingerie. Black stockings. When I wore that under my clothes, I'd just keep getting turned on all day."
<<include "WR-3434 Russian approval">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh..." you think for a second. "I had this sheer blouse. I used to wear it with a lacy bralette underneath. Every time I wore it, I'd just catch guys eyes drifting down while they talked to me..."
<<include "WR-3434 Russian approval">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh..." you think for a second. "I used to have this pencil skirt with a really high slit. It made every step a bit of a show."
<<include "WR-3434 Russian approval">>\
<</page>><span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"Very nice." For a moment, both <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gazes drift down your curves, picturing you in your [[old office look|WR-3500 Their job is the sexy one]].<<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Welll..." Toying with your answer, you feel a warm flush spreading across your cheeks, a mix of the wine and the sultry atmosphere breaking down your inhibitions. //Fuck it.// "Okay. I used to have this fantasy about being...punished. You know, for messing something up."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"What kind of punishment?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks, intrigued.
[[Silly things. This is so embarrassing.|WR-3450 Silly things]]
[[Like...getting spanked if I got the coffee wrong.|WR-3460 Coffee ditz]]
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Silly things," you insist. "Ohmygod, this is so embarrassing."
"Come //on,"// <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> scoffs. "You can tell us."
"You //hev// to tell us now," asserts <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
[[Like...getting spanked if I got the coffee wrong.|WR-3460 Coffee ditz]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I don't know, like...putting too many sugars in the boss's coffee. Or jamming up the copier. Something like that. And I'd just like...go over someone's knee and get spanked for it."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Whoa," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs.
"That's so fucking //hot,"// <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says approvingly.
[[Just a fantasy. Never happened.|WR-3470 Just a fantasy]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"It was just a fantasy," you add hurriedly.
//"Hot// one," $zoe.firstName repeats. Something tells you she's filing it away for [[personal use later|WR-3500 Their job is the sexy one]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Welll..." Toying with your answer, you feel a warm flush spreading across your cheeks, a mix of the wine and the sultry atmosphere breaking down your inhibitions. //Fuck it.// "When I worked in an office, I kind of liked all the rules."
"What do you mean?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
[[Like someone else deciding what I could wear.|WR-3490 Dress code]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Well, like the rules saying I had to wear a skirt and high heels, just to step into the office. And I kind of liked it that all the men were my boss. Like they could all tell me to make a cup of coffee, do some copying, or anything else, and I...had to do it." You shrug. "I don't know. It was just sexy."
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"That //is// sexy," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> agrees.
"Very," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> [[nods approvingly|WR-3500 Their job is the sexy one]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
You sip your wine. "Why do we speak of office? Their job is the sexy one," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> points out. "Glemour, all beautiful people..."
"Da. Hev you ever posed nude for photoshoot?" <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> asks <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span>, who nods. "It is all business? Or turn on?"
"Uhhh..." $zoe.firstName's eyes drift up as she thinks. "Yeah. There is this [[one moment|WR-3510 Zoe's moment]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Like, when you've been posed. Imagine, you're topless, or nude, and you're just...looking at the camera," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes on. "Then like a light pops, and you hear the click."
She's digging into personal experiences here, you can tell. Maybe she's describing her photoshoot for Beardy, or whoever it was that took the nude photo of her that's hanging up in the stairway of the club.
"And that's like...the moment you know you can't take it back. It's out of your hands, you're going //out there,// it's not up to you anymore. I don't know why, being that vulnerable turns me on. Every time." She shakes her head. "I'm [[fucked up|WR-3520 Fucked up]]."
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Kolya ''liked'' that.</span>
"Then I am also fucked up," <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> admits.
"Da, me too," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods approvingly. "That is [[sexy to eemagine|WR-3530 Puddin']]."
<</page>><<silently>>
<<set $kate.arousal += 1>>
<<if $kate.arousal gte 5>>
<<set _arousalAlert to "*Turned On.* Kolya's probably pretty good in bed.">>
<<else>>
<<set _arousalAlert to "*Anticipation.* You wouldn't mind kissing Kolya.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/chakrabongseVillas/tableAtNight.jpg" 0 1000 400 0>>\
Your meal ends with a mixed fruit platter, bursting with the flavours and colours of Thailand, served with refreshing coconut ice cream.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> watches you hungrily as you eat your ice cream. Looking at your neck, your <<if $kate.braSize == "small">>chest<<else>>cleavage<</if>>, your arms. It's like he can't keep his eyes off you, like he's undressing you with them, touching you with them.
You feel a hot tingle of anticipation as the meal draws to a close; wondering what it'd be like to kiss him, to let him [[get you naked|WR-3540 Shot]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The waitress brings out a round of vodka mango shots on the house.
The chunky shot glasses are dusted with chili flakes, leaving a pleasant [[burn on your lips|WR-3550 Check please]] after each sip.
<</page>><<silently>>
<<if hasVisited("WR-3330 Kate moderates her alcohol")>>
<<first>>
<<addNotification "Alcohol +0" "*Tipsy.* You managed to stay level all the way through the meal.">>
<</first>>
<<else>>
<<first>>
<<addNotification "Alcohol +1" "*Drunk.* You're feeling relaxed and uninhibited.">>
<</first>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<wear-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
The Russians proudly frisbee their credit cards at the bill without even glancing at it. //Sberbank, VTB Bank,// you notice – major Russian banks, no surprises.
Then you're leaving, <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hand resting on the small of your back, guiding you out through the restaurant's warm ambiance.
He walks you out past the tables, and it feels like he's showing you off to the other diners. His fingertips slip under the satin of your dress's low back, gently stroking the tops of your bare buttocks, feeling the way they move when you walk.
<<image "/locationPhotos/thailand/chakrabongseVillas/chakArch.jpg" 200 1000 600 0>>\
The blue SUV is waiting out front, <span class="imageLink"><<link "the same driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holding open the rear door.
$zoe.firstName climbs in first, giving everyone a brief but <span class="imageLink"><<link "unmissable flash">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-windy-rear.png']]")>>
<<set Dialog.open()>>
<</link>></span> of her underwear-free state.
<span class="greenHighlighter">Kolya ''liked'' that.</span> <span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Chai ''liked'' that.</span>
//[[Climb in second.|WR-3560 Kate's flash]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-buttFlash-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
You climb in straight after her, knowing you're giving all three men a look up your dress as you clamber aboard.
<span class="greenHighlighter">Kolya ''liked'' that.</span> <span class="greenHighlighter">Venya ''liked'' that.</span> <span class="greenHighlighter">Chai ''liked'' that.</span>
The guys climb in, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> settling in beside you on the cool vinyl seat. He reaches out, his hand resting casually on your bare leg as you [[drive off|WR-4000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-buttFlash-rear")>>
<</silently>>\
<a data-passage="WR-4010 Trok">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/sukhumvitNightTitleCard2.jpg"+' >'>>
</a><<silently>>
<<showFront>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You realise you're getting near their hotel. But instead, the SUV pulls up at a bustling, narrow <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, tucked away down one of the many <div class="tooltip">soi<span class="tooltiptext">side street</span></div>s winding off Sukhumvit's main drag.
<<image "/locationPhotos/thailand/sukhumvit/soi11StreetParty.jpg" 150 1000 550 0>>\
Neon signs in vibrant shades of pink and green cast a surreal glow, mixing with pulsating music from nearby popup bars. The trok has a street party vibe, with tourists and locals mingling under the colourful lights.
Warm night air washes in as <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/chai.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds open your [[door|WR-4020 A little audience]].
<</page>><<silently>>
<<set _kateD10 to random(1,10)>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<</silently>>\
<<header>>\
<<page>>\
Clutching your hemline, you climb out carefully into the night.
Two <span class="imageLink"><<link "drunken farangs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/drunkFarangs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> – eyes drawn by a pair of long bare legs emerging from an SUV – check you out as they stumble by.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Coordination check'' to avoid a wardrobe malfunction as you exit. Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if _kateD10 gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: _kateD10. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
Warm, humid air envelops you as you climb out into the street. You gracefully avoided giving them a show as you got out, but their gazes [[linger appreciatively|WR-4030 Telefono]] on you anyway.
<<else>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<replace "#avatar-container">>\
<<avatar>>
<</replace>>
As your dress rides up, surprised glances become <span class="imageLink"><<link "lecherous laughs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/drunkFarangs.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> at your lack of underwear. //"Wahey!"// yells one, //"'Ello darlin!"// laughs the other. But they keep walking – perhaps noticing <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> climbing out of the [[other side|WR-4030 Telefono]] of the SUV.
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10+0<span class="tooltiptext">+0 //Coordination//</span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pussyFlash-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Fingers touching your bare back, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> guides you through the party <div class="tooltip">trok<span class="tooltiptext">alley</span></div>, approaching what looks like a weathered, retro phone booth.
Above it, a glowing sign in Spanish – <small><span class="imageLink"><<link "TELÉFONO">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/telefono.jpg']]")>>
<<set Dialog.open()>>
<</link>></span></small> – seems out-of-place in Bangkok.
<<image "/locationPhotos/thailand/sukhumvit/havanaSocialEntrance.jpg" 75 1000 475 0>>\
Squeezing into the small, graffiti-covered booth, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> picks up the phone handset, and punches in a five-digit code, //[[1-9-1-0-#|WR-4040 Secret door]].//
<</page>><<silently>>
<<set $header.line1 to "''TÉLEFONO BOOTH''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
//Beep!// The back panel of the 'phone booth' swings open, revealing a dimly-lit corridor.
The distant sound of live music beckons you forward. "Whoa," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs, "what the fuck is this place?"
//[[Head through the corridor.|WR-4050 Havana ooh na na]]//
<</page>><<silently>>
<<set $header.line1 to "''HAVANA SOCIAL''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/havanaSocialLounge.jpg" 180 1000 580 0>>\
Inside the hidden venue, the walls are crumbling, the lights are dim, fedoras are hanging on the wall, and a salsa band is in full force. Welcome to kitsch 50s Cuba, in Bangkok.
The buzz of laughter and lively chatter envelops you. Bangkok's drinking class downs Cuba Libres at the bar, while women in swingy skirts dance to the live music. In the low light, it's hard to discern nationalities, but everyone's united by the music.
//[[Get cocktails at the bar.|WR-4060 Bar]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/havanaSocialBar.jpg" 100 1000 500 0>>\
You squeeze into a spot at the busy bar, in between two guy groups drinking rum cocktails. <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> steps in beside you, his broad frame offering a sense of protection and support as he joins you in the wait.
The subtle graze of your wrists ignites a spark of electricity between you. His knuckles brush sensuously along the contours of your satin hemline while you scan the cocktail list, his fingers stroking your bare legs.
//[[Order a Capital Couture.|WR-4070 Capital Couture]] <span class="greyedOut"><small>42 Below Vodka, house salted caramel syrup, fresh lime, pimento ginger soda, Thai chili</small></span>//
//[[Order a Ricardo Robson.|WR-4080 Ricardo Robson]] <span class="greyedOut"><small>Diplomatico Anejo Rum, house hibiscus grenadine, fresh orange and lime, blood orange liqueur, honey</small></span>//
//[[Order an Old Fashioned.|WR-4090 Old Fashioned]] <span class="greyedOut"><small>Evan Williams 1783 Small Batch Bourbon, Angostura bitters, lemon zest oil, demerara syrup</small></span>//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch with interest as a suavely-dressed bartender expertly mixes the drinks. Bonaht would probably point to his shaker technique as a good example for you. //Yeah yeah, try doing it naked.//
<<image "/locationPhotos/thailand/sukhumvit/capitalCouture.jpg" 270 1000 670 0>>\
Your cocktail's laced with Thai flavours, as if to remind you you're still in Bangkok. The spiciness blends well with vanilla and caramel. Ginger, turmeric and vodka come second on the palate. You get a nice spicy kick in your throat and a pleasant aftertaste.
<<include "WR-4100 Venya pays">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch with interest as a suavely-dressed bartender expertly mixes the drinks. Bonaht would probably point to his shaker technique as a good example for you. //Yeah yeah, try doing it naked.//
<<image "/locationPhotos/thailand/sukhumvit/ricardoRobson.jpg" 50 1000 450 0>>\
You've got no idea who Ricardo Robson is, but the cocktail bearing his name is served with a huge piece of real honeycomb for garnish. When you sip it, the citrus taste infused with hibiscus is the first thing you notice. The honey lifts up the drink and rounds out the rum, which is pretty strong.
<<include "WR-4100 Venya pays">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You watch with interest as a suavely-dressed bartender expertly mixes the drinks. Bonaht would probably point to his shaker technique as a good example for you. //Yeah yeah, try doing it naked.//
<<image "/locationPhotos/thailand/sukhumvit/oldFashioned.jpg" 90 1000 490 0>>\
Strong Kentucky bourbon mixes well with citrusy flavours and a sweet sugar kick. The zesty aroma of the drink is really strong.
<<include "WR-4100 Venya pays">>\
<</page>><span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pays for the round, and you guys sip your drinks, soaking up the atmosphere.
<<include "WR-4101 Exit nav">>\<<if not hasVisited("WR-4120 Bathroom break")>>\
<<link "//Join $zoe.firstName for a quick bathroom break.//" "WR-4120 Bathroom break">><</link>>
<</if>>\
<<if not hasVisited("WR-4110 Cuban fedoras")>>\
//[[Try on Cuban fedoras.|WR-4110 Cuban fedoras]]//
<</if>>\
<<if not hasVisited("WR-4150 Booth babe")>>\
//[[Settle into a cosy booth.|WR-4150 Booth babe]]//
<</if>>\
<<if hasVisited("WR-4120 Bathroom break") and hasVisited("WR-4110 Cuban fedoras") and hasVisited("WR-4150 Booth babe")>>\
The live Cuban band shifts into a brassy, catchy tune that gets everyone's head bopping. "Let's [[check 'em out|WR-4190 Dance floor]]," <<if hasVisited("WR-4110 Cuban fedoras")>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHat-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> suggests.
<</if>>\<<silently>>
<<emote-mouth-smile>>
<<if not $kate.isWearing.includes("handbag")>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.foreground.pushUnique("clothing/accessories/cubanFedora/65_hat-cubanFedora-"+$kate.hairStyle+"-"+$kate.hairColour)>>
<<set $avatar.foreground.pushUnique("clothing/accessories/cubanFedora/65_hat-cubanFedora-"+$kate.hairStyle+"-"+$kate.hairColour+"-rear")>>
/* This absurd block of dirty code is required to temporarily change Kate's hair */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.delete("/113Hair/10_"+_hair+"-front"),
$avatar.foreground.delete("/113Hair/10_"+_hair+"-rear")
>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/cubanFedoras.jpg" 0 1000 400 0>>\
"When life gives you Cuba..." $zoe.firstName picks out a fedora and adjusts it to a jaunty angle. The hat adds a <span class="imageLink"><<link "playful vibe">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> to her already striking look.
Exchanging amused glances, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrug and join in on the fun. Soon, everyone is sporting a Cuban fedora and striking poses for selfies.
<<include "WR-4101 Exit nav">>\
<</page>><<silently>>
<<emote-calm>>
<<if not $kate.isWearing.includes("handbag")>>
<<wear-amandasWhiteCrissCrossFashionBag>>
<</if>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
"Be right back."
<<image "/locationPhotos/thailand/sukhumvit/selfieGirls.jpg" 350 1000 750 0>>\
You join <<if hasVisited("WR-4110 Cuban fedoras")>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> for a trip to the ladies' room, where a group of <div class="tooltip">farang<span class="tooltiptext">white foreign</span></div> girls is posing for tipsy selfies.
You take the chance to pee and freshen up; $zoe.firstName grabs the chance to reconnect with Bryan, sending him a fast little stream of <div class="tooltip">LINE<span class="tooltiptext">an instant messenger app, popular in <<if $kate.agency == "cia">>Southeast<<else>>South East<</if>> Asia</span></div> messages.
[[He OK?|WR-4130 Bry okay?]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Bry okay?" you ask.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Yeahhh, he's fine," <<if hasVisited("WR-4110 Cuban fedoras")>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> says, a soft smile playing on her face as her thumbs dancing on the screen of her phone. "Just wants to know what he's missing."
<<image "/locationPhotos/thailand/sukhumvit/havanaSocialBathroomWall.jpg" 298 1000 698 0>>\
The other girls move on; you and $zoe.firstName take a turn posing for selfies up against the [[iconic bathroom wall|WR-4140 Venya and Kolya]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Back in the bar, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are engaged in animated conversation, their drinks in hand.
"<div class="tooltip">Zdorovo<span class="tooltiptext">Hey</span></div>." <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls you in for an intimate little hug when you get back to him, your hips bumping together, his hand on your satin dress.
<<include "WR-4101 Exit nav">>\
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You take your drinks over to a cute little booth, tugging down on your hem to cover your butt when you take a seat. The battered velvet seat cushions feel worn but comfy under your naked thighs.
<<image "/locationPhotos/thailand/sukhumvit/havanaBoothNaNa.jpg" 400 1000 800 0>>\
//[[Drink and chat.|WR-4160 Drink and chat]]//
<</page>><<silently>>
<<remove-zoesSilverClutchHandbag>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Lubricated by plenty of wine and cocktails, the conversation flows easily. <<if hasVisited("WR-4110 Cuban fedoras")>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHat-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><<else>><span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span><</if>> shares a story about a disastrous Tinder date that has everyone in stitches. <span class="imageLink"><<link "Venya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> been to the real Cuba, and he paints a vivid picture of his time there, touring in a red 50s Chevy and sipping rum in Hemingway's favourite bar.
While Venya's storytelling, <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers gently trace along your bare thigh, hidden from sight beneath the table. The sensation is electric, sparking tingles of anticipation in your groin as you try to stay composed in the conversation.
<span class="greyedOut">//[Arousal too high] Discourage him.//</span>
//[[Encourage him.|WR-4170 Cross my heart]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Maintaining your attentive facade to <span class="imageLink"><<link "Venya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> story, you subtly cross your legs under the table. The satin falls away as you bare your leg, all the way up to the hip.
<span class="greenHighlighter">Kolya ''liked'' that.</span>
Sipping his rum cocktail with one hand, <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tantalising exploration of your leg continues with the other. His fingers glide lightly under your thigh, gently tracing the curve of your buttock.
You sip your <<if hasVisited("WR-4070 Capital Couture")>>Thai cocktail<<elseif hasVisited("WR-4080 Ricardo Robson")>>honey cocktail<<else>>Old Fashioned<</if>>, pretending to be [[totally focused on Venya|WR-4180 Anecdone]].
<</page>><<silently>>
<<set $kate.arousal += 1>>
<<if hasVisited("WR-260 DTF (Kolya)")>>
<<set _arousalAlert to "*Turned On.* If you uncrossed your legs, Kolya could finger you right here at the table.">>
<<else>>
<<set _arousalAlert to "*Turned On.* If you uncrossed your legs, Kolya could finger you right here at the table.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"So. If you ever get chance to do modelling shoot in Cuba...take it, khyeh heh heh." <span class="imageLink"><<link "Venya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> story comes to an end.
It actually was interesting, it was just hard to focus when <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> fingers slipped into your lap. With your legs crossed, he couldn't quite touch your pussy, but he definitely confirmed your lack of underwear.
As a few moments pass, you feel Kolya's fingers gently withdraw from your lap, leaving a lingering warmth in their wake. You exchange knowing glances with him before the conversation picks up again.
<<include "WR-4101 Exit nav">>\
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<if not $kate.isWearing.includes("handbag")>>
<<wear-zoesSilverClutchHandbag>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/havanaSocialDanceFloor.jpg" 94 1000 494 0>>\
The dancefloor's buzzing as the live band blasts out an infectious groove. Catchy horns blare out a repeating riff while a standup bass thumps out an enticing pulse.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leans in and shouts something you don't quite catch.
[[Huh?|WR-4200 Huh]]
<</page>><<silently>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
"Huh?" you shout back, resting a hand on his firm shoulder, leaning in to catch his words.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> <<if $kate.hairStyle != "short">>tucks your hair behind your ear, and <</if>>leans in close. "I said, what music do you like?"
[[All types.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "All types"]]
[[Rock.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "Rock"]]
[[Pop.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "Pop"]]
[[R&B.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "R&B"]]
[[Indie.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "Indie"]]
[[EDM.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "EDM"]]
[[Hip hop.|WR-4210 Zoe wants to dance][$kate.preferredMusicGenre to "Hip hop"]]
<</page>><<silently>>
<<emote-mouth-beam>>
<</silently>>\
<<header>>\
<<page>>\
"$kate.preferredMusicGenre," you shout back. "<<if $kate.preferredMusicGenre != "All types">>But this<<else>>This<</if>> is cool!" The music envelops you, the bassline resonating in your chest like another heartbeat.
Your faces are close. For a second, you feel like he's going to kiss you, but the moment passes.
"C'mon!" <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> hips are already bouncing to the irresistible beat. Grasping your hand, she tugs you towards the dancefloor.
//[[Join her and dance.|WR-4220 Girl/girl show]]//
<</page>><<silently>>
<<remove-zoesSilverClutchHandbag>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The music wraps around you both, the air alive with energy. <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHat-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> tugs you into some space, her body already moving gracefully to the rhythm. You respond instinctively, your hips moving sensuously in time with hers.
//Dance like no one's watching,// they say. But Venya and Kolya //are// watching, you know it, and you know that the two of you are putting on a show.
$zoe.firstName's eyes meet yours, and there's an unspoken understanding between you as your bodies move [[sensuously closer|WR-4221 Sensuously close]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
You're dancing a little closer than you would with a girl friend in a club back in <<if $kate.agency == "cia">>D.C.<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>. Your moves a little sexier.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
Okay...a //lot// sexier. Your bodies brush against each other, satin on satin. Her fingers linger on your hips, touching you a little longer than necessary. Your bodies sway and grind sensuously to the steamy beat. Her nipples are hard through her dress.
The <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> claim their lesbianism's all for show, but...//[[they're all fucking each other|WR-4222 Edge of a moment]].//
<</page>><<silently>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
Without even meaning to, you and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHat-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> edge even closer together. Her big, chocolate brown eyes gaze into yours. Flicker down to your lips.
You look back at her, your gaze lingering on the curve of her neck, the playfulness in her eyes, and the way her lips curve into a suggestive smile. Her fun-loving vibe, her thick gorgeous hair tousled just right.
Your bodies move in sensual harmony. Your eyes are drawn to her lips<<if $kate.braSize != "large">>, and her big tits<</if>>, and it feels like you're teetering on the edge of a moment. [[A breath away|WR-4230 Venya and Kolya]] from crossing the line into something more profound.
<</page>><<silently>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
Masculine hands settle onto your hips as Kolya moves in behind you.
A guilty jolt runs through you as he [[twists you around|WR-4231 Round round baby right round]] to face him.
<</page>><<silently>>
<<showFront>>
<<emote-brows-raised>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
Your eyes reconnect with his. The sudden change, from feminine to masculine energy, is jarring and erotic. <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls you in close, strong and possessive.
When he dances, it's confident. //Like everything he does.// Your bodies press intimately together, body heat on body heat. Every sway and turn feels like a sexual connection as your bodies move rhythmically against each other.
The dim lighting casts a sultry glow over both of you, highlighting the desire for you in his steel blue eyes. As his hands explore your curves through your flimsy satin dress, you can feel his cock [[gradually stiffening|WR-4240 First kiss]] against your stomach.
<</page>><<silently>>
<<emote-brows-calm>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> pulls you tight, your body pressed to his, naked except for a flimsy scrap of borrowed satin.
He pushes up the brim of your hat. Then leans in, his lips brushing against yours, soft and tender. The taste of his rum-laden kiss is electrifying, sending shivers down your spine. Your heart races, and for a breathless moment, you forget about everything else.
The music's sultry notes seem to swell in response to the passion between you, and you continue to dance, tongues locked in a [[slow dance|WR-4250 Coming up for air]] of their own.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
You come up for air, still dancing with <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> hands on your hips.
Nearby, <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHat-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> making out with <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. The dim lights cast an alluring glow on their entangled figures as they dance and kiss, their bodies swaying to the [[sensual beat|WR-4260 Back in the booth]].
<</page>><<silently>>
<<set $kate.arousal += 1>>
<<if hasVisited("WR-260 DTF (Kolya)")>>
<<set _arousalAlert to "*Horny.* Your nipples are hard, your pussy's wet, you're ready to fuck.">>
<<else>>
<<set _arousalAlert to "*Turned On.* Your nipples are hard, your pussy's wet, you're ready to fuck.">>
<</if>>
<<first>>
<<addNotification "Arousal +1" _arousalAlert>>
<</first>>
<<emote-calm>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<wear-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
The music fades into a distant throb as you slip away from the dance floor with <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>. His hand is warm against yours as he leads you back to the dimly lit booth, away from the crowd.
It's like a little cocoon, enveloping the two of you in a bubble of intimacy. Your knees brush against each other, your bare legs skimming over his slacks, sending a tingly little thrill up your spine. The soft glow of the bar's lights cast a gentle warmth over both of you.
His hand finds the small of your back, pulls you in closer until there's barely a breath between you. Your body responds instinctively, [[hot and tingly and wet|WR-4261 Hot tingly and wet]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<remove-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
His lips are warm and soft, a perfect contrast to the rough scrape of his stubble.
Outside the booth, the bar pulses with life, but inside it's like time has stopped. The world blurs into a background hum, the only reality his tongue in your mouth and his [[hands on your legs|WR-4270 Ladies room]].
<</page>><<silently>>
<<emote-calm>>
<<wear-zoesSilverClutchHandbag>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set _kateD10 to random(1,10)>>
<<set _modifiers to 0>>
<<set _diceDisplay to "1d10 @ "+_kateD10>> /*Show dice via formule, only used for display */
<<if hasVisited("WR-260 DTF (Kolya)")>>
<<set _arousalState to "horny">>
<<set _modifiers -= 2>>
<<else>>
<<set _arousalState to "turnedOn">>
<<set _modifiers -= 1>>
<</if>>
<<if hasVisited("WR-3330 Kate moderates her alcohol")>>
<<set _alcoholState to "tipsy">>
<<set _modifiers -= 1>>
<<else>>
<<set _alcoholState to "drunk">>
<<set _modifiers -= 2>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> rejoin you in the booth a little later. Time slips by in a pleasant haze of drinks, music, conversation, and Russian hands on <<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>Anglo-American<<elseif $kate.agency == "asis">>Aussie and American<<elseif $kate.agency == "csis">>North American<<elseif $kate.agency == "nzsis">>Kiwi and American<<else>>ERROR IN KATE.AGENCY VAR<</if>> legs.
In a last visit to the ladies' room, you and $zoe.firstName touch up your lipsticks.
"We're going back to the hotel, right?" she asks, her tone casual.
<div class="greyHighlighter"><<nobr>>
<table>
<tr>
<td style="padding: 0px 20px 0px;">
<<dice-showDiceImage "d10">>
</td>
<td>
<div id="skinnySkillCheck" class="greyHighlighter">
Make a ''Resist Seduction check.'' Difficulty: Routine (6).
<<link "Roll 6 or higher">>
<<rollDice _diceDisplay>>
<<replace '#skinnySkillCheck'>>
<<silently>>
<<if ( _kateD10 + _modifiers) gte 6>>
<<set _skillCheckSucceeded to true>>
<</if>>
<</silently>>
''Coordination check.'' Target: 6. You rolled: (_kateD10<<= _modifiers>>) = <<= _kateD10 + _modifiers>>. <<if _skillCheckSucceeded>>//Success.//<<else>>//Failure.//<</if>>
<</replace>>
<<replace '#exitNavigation'>>
<<if _skillCheckSucceeded>>
[[Yeah.|WR-4280 Yeah]] <br />
<span class="greyedOut">//[Resist Seduction check passed]//</span> [[Actually...gonna call it a night.|WR-9010 Gonna call it a night]]
<<else>>
[[Yeah.|WR-4280 Yeah]] <br />
<span class="greyedOut">//[Resist Seduction check failed]// Actually...gonna call it a night.</span>
<</if>>\
<</replace>>
<</rollDice>>
<</link>> with <div class="tooltip">1d10<<= _modifiers>><span class="tooltiptext"><small><<if _arousalState == "horny">>Horny -2<<else>>Turned On -2<</if>><br /><<if _alcoholState == "drunk">>Drunk -2<<else>>Tipsy -2<</if>></small></span></div>.
</div>
</td>
</tr>
</table>
<</nobr>></div>
<div id="exitNavigation">\
</div>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you nod, feigning nonchalance, "<<if $kate.agency == "asis" or $kate.agency == "nzsis">>defo<<else>>definitely<</if>>."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">Minor ''decrease'' to Suspicion Level.</span>
Building rapport with a potential asset means convincing them you're alike. //You, Me, Same Same,// the instructors teach <<if $kate.agency == "cia">>at the Farm<<elseif $kate.agency == "mi6">>at Fort Monckton<<elseif $kate.agency == "asis">>on Swan Island<<elseif $kate.agency == "csis">>at Dwyer Hill<<elseif $kate.agency == "nzsis">>at Papakura<<else>>ERROR IN KATE.AGENCY VAR<</if>>.
<span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> going back to the hotel with her date...so you're doing the same. You'll explain in your contact report that it was the best way to fit in.
A necessity, you [[tell yourself|WR-4281 Contact report]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
And honestly...HQ is probably //expecting// it of you at this point.
The realisation sits in your stomach like a heavy stone. A mix of concern and anticipation, the feeling you're being guided by forces outside your control. A decision's made in <div class="tooltip">Langley<span class="tooltiptext">CIA headquarters</span></div> and, halfway around the world, <<if $kate.agency == "mi6">>MI6 <<elseif $kate.agency == "asis">>ASIS <<elseif $kate.agency == "csis">>CSIS <<elseif $kate.agency == "nzsis">>SIS <</if>>Officer $kate.firstName[0] peels off her clothes and climbs into bed with some contact.
It's scary. And, for reasons you don't exactly understand, low-key kind of //hot.// You finish your lipstick, and gaze at the reflection of a persona you're not entirely certain of.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> finishes texting Bryan. Your eyes meet hers in the mirror. "[[Let's go|WR-4288 Title card]]," she says.
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/cubanFedora/65_hat-cubanFedora-"+$kate.hairStyle+"-"+$kate.hairColour)>>
<<set $avatar.foreground.delete("clothing/accessories/cubanFedora/65_hat-cubanFedora-"+$kate.hairStyle+"-"+$kate.hairColour+"-rear")>>
/* This absurd block of dirty code is required to temporarily change Kate's hair */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.pushUnique("/113Hair/10_"+_hair+"-front"),
$avatar.foreground.pushUnique("/113Hair/10_"+_hair+"-rear")
>>
<<emote-calm>>
<<emote-calm>>
<</silently>>\
<a data-passage="WR-4290 Honeypot">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/sukhumvitStreetNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
//I'm turning into a fucking <div class="tooltip">honeypot<span class="tooltiptext">a female officer who uses sex for espionage</span></div>.//
The thought sends a sensual thrill through your body as you walk, hand-in-hand with <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, through the warm night air.
Neon lights cast colourful glows on the <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalks<<else>>pavements<</if>>; couples and revelers pass by, lost in their own adventures. Music and laughter spill from nearby clubs and bars.
It's a short walk from Havana Social to their [[hotel|WR-5000 Title card]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="WR-5010 Lobby">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/marriottSukhumvitExtNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''MARRIOTT HOTEL''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottLobbyNight.jpg" 200 1000 600 0>>\
High heels click on marble as you return to this five star hotel.
The staff greet your group with discreet, knowing smiles as you pass through the opulent lobby towards the [[rooms|WR-5020 Goodbye Zoe]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottMezzanine.jpg" 200 1000 600 0>>\
<span class="imageLink"><<link "Venya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> room is on the mezzanine. At the foot of a grand, sweeping staircase, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-bag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> hugs you goodnight.
"Call me in the morning, okay?" her voice is soft and comforting.
[[Okay. See you tomorrow.|WR-5030 See you tomorrow]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Okay," you tell her, "see you tomorrow."
"<div class="tooltip">Spokoynoy nochi, priyatel.<span class="tooltiptext">Goodnight, buddy</span></div>"
And that's it; she climbs up the marble steps towards <span class="imageLink"><<link "Venya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> room, while <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> leads you away towards the <<lift>>s. The pair of you are split up, whisked off to different rooms for sex.
You're not used to being so open about one night stands with your friends back in <<if $kate.agency == "cia">>D.C.<<elseif $kate.agency == "mi6">>London<<elseif $kate.agency == "asis">>Canberra<<elseif $kate.agency == "csis">>Ottawa<<elseif $kate.agency == "nzsis">>Wellington<<else>>ERROR IN KATE.AGENCY VAR<</if>>. $zoe.firstName's nonchalance about it feels part disturbing, part liberating. This is just...the normal way a date ends, for her and $amanda.stripperName and $gina.nickname.
//Have to go along with it to fit in. Them, Me, Same Same.// That thought sends another [[disturbed, excited little quiver|WR-5040 Empty elevator]] through your stomach.
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Fingers loosely entwined with <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, you wait in the lobby for the <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>>.
<<image "/locationPhotos/thailand/sukhumvit/elevatorCar.jpg" 200 1000 750 0>>\
The doors swoosh open to reveal a gleaming, empty <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator car<<else>>lift compartment<</if>>.
//[[Step inside with Kolya.|WR-5050 Smooch with a swoosh]]//
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
Stepping in behind you, <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> punches the button for his floor.
Before the doors even close, he's pressing you up against the wall, kissing you hungrily, cupping your <<if $kate.braSize == "small">>small, pierced<<elseif $kate.braSize == "medium">>soft, perky<<else>>soft, round<</if>> breasts through your thin satin dress. His face feels like stubble and his mouth tastes like rum.
The <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>> starts to climb and you become acutely aware of every sensation – his smell, the taste of his kiss, the feeling of his hands pawing you through satin, the subtle vibration of the <<if $kate.agency == "cia" or $kate.agency == "csis">>elevator<<else>>lift<</if>>.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tugs your <<handbag>> out of your grasp, lets it <<link "drop to the floor" "WR-5060 Dress up">><</link>>.
<</page>><<silently>>
<<removeKnickers>>
<<remove-zoesSilverClutchHandbag>>
<<set $avatar.cleavageCounter -=1>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<</silently>>\
<<header>>\
<<page>>\
His fingers slide up your thighs, grasp your flimsy hemline. And sweep it up, baring you with no warning.
Cool air wafts up your body as the satin slides up, exposing you from the collarbone down.
His mouth leaves your lips, finds your breasts, tonguing and sucking your stiff nipples, making you [[gasp|WR-5070 Digital pen]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Holding your flimsy dress up with just a fingertip, his other hand slips up between your thighs. He's been touching your legs since you left the restaurant, but now he goes straight for your most intimate place.
After hours of anticipation, you're soaking wet, and his finger just slides easily into you. With a gasp, you squeeze the hard muscles in his shoulders as his finger [[sinks up inside you|WR-5080 Fingerfucked]], all the way to the knuckle.
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
Leaning on his shoulder for support, your voice comes out in soft little gasps, hot in his ear.
His tongue's on one of your stiff nipples, his thumb brushes the other. Waves of pleasure surge inside you as his finger thrusts casually up and down inside your pussy.
//[[Oh, fuck.|WR-5090 Unplanned stop]]//
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-big>>
<<emote-brows-raised>>
<</silently>>\
<<header>>\
<<page>>\
//Bing!//
<span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> finger stops mid-thrust, and his mouth slips off your nipple.
His head turns sharply and you both look at the control panel at the same time.
//14. That's not his fl–//
His finger leaves you suddenly as he twists away, straightening up, leaving you to [[hastily adjust your dress|WR-5091 Adjustment]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<<set $avatar.cleavageCounter +=1>>
<</silently>>\
<<header>>\
<<page>>\
You pull it down just as the doors [[slide apart|WR-5100 Hi]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
They open to reveal a Thai woman wearing a uniform dress and a name badge.
You subtly tug down both sides of your hemline, making sure it's in the right place. The satin feels cold on your nipples, stiff and wet with <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> spit. Lying on its side, your casually discarded <<handbag>> speaks of an interrupted moment.
You feel a twinge of embarrassment at the woman's knowing little smirk.
//[[Pick up your bag.|WR-5101 Bag pickup]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-buttFlash-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<wear-zoesSilverClutchHandbag>>
<<emote-calm>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
When she turns her back, you bend down to scoop up your bag.
Satin slips high up your ass as you lean forward. <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lifts up your dress at the back, and paws your [[naked buttock|WR-5110 Kolya's floor]].
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-buttFlash-rear")>>
<<emote-calm>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottCorridor.jpg" 180 1000 580 0>>\
You step out with him on the 22nd floor. Your legs are unsteady, wavering in heels as <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> walks you down a dimly-lit corridor, the air charged with anticipation.
Pausing at his door, his hands find your waist once more, pulling you close, his lips [[hungrily seeking yours|WR-5120 Pressed up]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<<remove-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
He presses you up against the wall again. Pulls your bag out of your grasp again. It hits the carpet with a //thump.//
His stubble scrapes your face. His tongue lashes in your mouth. His fingers curl under [[both sides of your hemline|WR-5130 Take it off]].
<</page>><<silently>>
<<set $avatar.cleavageCounter -=1>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Up it comes. His clothed body presses up against your nakedness, his hard cock pushing into your bare belly.
"Take it off," he murmurs, trying to pull your dress up over your arms.
<span class="greyedOut">//[Arousal too high]// Let's go inside.</span>
<span class="greyedOut">//[Exhibitionist or High Arousal]//</span> //[[Take it off.|WR-5140 Off off off]]//
<</page>><<silently>>
<<set $avatar.cleavageCounter +=1>>
<<emote-calm>>
<<removeDress>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand2")>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
A moment's hesitation. You cast quick glances to the left and right. He tugs insistently again.
//I'm already naked.// You lift up your arms, and let him slide your dress off over your head, right there in the corridor.
<span class="greenHighlighter">Kolya ''loved'' that.</span>
"<div class="tooltip">Yebat<span class="tooltiptext">Fuck</span></div>," <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs, eyes drinking in the sight of your naked body. His head drops and his mouth finds your [[stiff nipples|WR-5150 Smoochies]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-oh>>
<</silently>>\
<<header>>\
<<page>>\
His finger thrusts back into your naked pussy. His mouth and his fingers play with your stiff wet nipples, sucking and squeezing. When his body presses up against you, his dick's //so hard.//
Pressed up against the wallpaper, you surrender to the sensations, excitement and vulnerability swelling up inside you with each [[passing second|WR-5160 Breakaway]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Finally, he breaks away, fumbling in his pocket for his keycard.
<<image "/locationPhotos/thailand/sukhumvit/marriottCorridor.jpg" 180 1000 580 0>>\
You bend down and scoop up your bag from the floor.
[[Hurry up.|WR-5170 Hurry up]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Hurry up," you mutter.
"Relaxxx, <div class="tooltip">Dewushka<span class="tooltiptext">Young lady</span></div>." A smile plays on <span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> lips. You glance up and down the corridor nervously, aware that any of the doors could open suddenly without warning.
Some brief rifling through the many cards in his wallet; then a <span class="imageLink"><<link "Marriott keycard">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/locationPhotos/thailand/sukhumvit/marriottKeycard.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> is produced.
He holds it in the air for a moment, teasing you with it, before finally [[touching it to the lock|WR-5180 Sesame]].
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> holds open the door; you slip past him into a slick hotel room, dark wood and dim lights.
<<image "/locationPhotos/thailand/sukhumvit/kolyasRoom.jpg" 150 1000 550 0>>\
He comes in right behind you, his fingers pressing against your naked back. You hear him kicking off his shoes as he [[guides you towards the bed|WR-5190 Bed]].
<</page>><<silently>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand2")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-heldInRightHand-rear")>>
<<showRear>>
<</silently>>\
<<header>>\
<<page>>\
He pushes you onto it. Your hands and knees sink into fresh, clean white linen. Instinctively, you arch your back into a flattering pose.
"<div class="tooltip">Svyatoye dermo<span class="tooltiptext">Holy shit</span></div>." A slither and a jingle behind you as Kolya unfastens his belt.
//[[Look over your shoulder.|WR-5200 Doggystyle quickie]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You gaze over your shoulder at <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>, stripping quickly out of his clothes to reveal a lean, strong body. But your eyes don't meet; he's staring at your heart-shaped ass and your <<if $kate.bikiniLine == "hollywood">>shaved<<else>>neatly groomed<</if>> pussy, propped up and temptingly presented.
He slides down his boxer shorts. His cock is stiff<<if $kate.agency == "cia">> and uncircumcised<</if>>, nestled in a tuft of pubic hair the same colour as his eyebrows.
"Come here." Climbing onto the bed behind you, shuffling between your legs, his hands grasp your bare hips, pulling you into a [[slightly different position|WR-5210 Doggy pen]].
<</page>><<silently>>
<<emote-eyes-closed>>
<<emote-mouth-open>>
<</silently>>\
<<header>>\
<<page>>\
A moment. Then the tip of his cock slips //inside// you. It pushes into you, shallowly at first. Experimentally. Your breath escapes your lips in a feminine gasp.
His dick sinks into you, filling you up from behind, all the way until his balls touch your clit.
"Oh, <div class="tooltip">yebat<span class="tooltiptext">fuck</span></div>. You feel so good."
Gently, softly at first, he starts to thrust inside you, quicker and brisker as he gets more confident with your body.
//[[Be quiet.|WR-5230.1 Quiet doggy]]
[[Be noisy.|WR-5230.2 Noisy doggy]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Holding your hips, Kolya thrusts inside you, quicker and brisker as he gets more confident with your body.
//[[Be quiet.|WR-5230.1 Quiet doggy]]
[[Be noisy.|WR-5230.2 Noisy doggy]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/kolyasBed.jpg" 0 1000 400 0>>\
His cock thrusts stiffly inside you, his balls brushing and bumping your wet, sensitive clit. <<if $kate.braSize != "small">>Your breasts jiggle beneath you as the mattress rocks.<</if>> Your voice comes out in soft little gasps.
<span class="greenHighlighter">Kolya ''liked'' that.</span>
One hand comes off your hip. Some fumbling around your bare buttocks – then a wet fingertip slips into the cleft between them, presses up against your asshole.
//[[Push his hand away.|WR-5231 Swat]]//
<span class="greyedOut">//[Drunk/High Arousal]//</span> //[[Let him do it.|WR-5240 Anal pen]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/kolyasBed.jpg" 0 1000 400 0>>\
His cock thrusts stiffly inside you, his balls brushing and bumping your wet, sensitive clit. <<if $kate.braSize != "small">>Your breasts jiggle beneath you as the mattress rocks.<</if>> Your voice comes out in noisy, expressive moans.
<span class="greenHighlighter">Kolya ''loved'' that.</span>
One hand comes off your hip. Some fumbling around your bare buttocks – then a wet fingertip slips into the cleft between them, presses up against your asshole.
//[[Push his hand away.|WR-5231 Swat]]//
<span class="greyedOut">//[Drunk/High Arousal]//</span> //[[Let him do it.|WR-5240 Anal pen]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Still fucking him, you reach back, pushing at his wrist with a murmur of protest. "I don't–"
"Shhh, don't worry," Kolya murmurs, ignoring you. "It's fine."
<span class="greyedOut">//[Drunk or Arousal too high]// Kolya, stop.</span>
[[But...|WR-5240 Anal pen]]
<</page>><<silently>>
<<emote-brows-worried>>
<</silently>>\
<<header>>\
<<page>>\
<<if hasVisited("WR-5231 Swat")>>\
"But–"
"Shhhhh." His finger pushes against your asshole.
<</if>>\
A moment's resistance at the entrance. Then, with an insistent push, his fingertip slides into your butt, stretching your sphincter around it.
You let out a low, guttural moan as your body accommodates [[another intruder|WR-5250 DP'd]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//"Ohhhh...mmmhhh..."//
Heat rises up in your body as you meet Kolya's movements with answering thrusts of your hips, impaling yourself on his cock and his finger. "Da...<div class="tooltip">yebat<span class="tooltiptext">fuck</span></div>...you are so sexy..."
You answer him in low, throaty murmurs as your orgasm [[swells up like a building wave|WR-5260 Kate orgasm]].
<</page>><<silently>>
<<emote-calm>>
<<emote-eyes-closed>>
<<emote-brows-worried>>
<<emote-mouth-open>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<</silently>>\
<<header>>\
<<page>>\
You just feel so totally //dominated// as you surrender to the feeling. Naked and on all fours, fucking a man with his finger in your ass. Thrusting inside you, over and over.
Your face feels hot, your head swims and your voice comes out in noisy, expressive cries as a long, powerful orgasm [[rocks your body|WR-5270 Kolya rapid fuck]].
<</page>><<silently>>
<<emote-calm>>
<<emote-cheeks-blush>>
<<emote-chest-flush>>
<<emote-mouth-sexy>>
<</silently>>\
<<header>>\
<<page>>\
His finger pulls out of your ass; his hands settle on both your hips. Kolya's cock thrusts hard and fast inside you as you're returning to your senses.
<<image "/locationPhotos/thailand/sukhumvit/kolyasBed.jpg" 0 1000 400 0>>\
Reality swims back into focus. You gradually resynchronise your movements with Kolya's as he urgently fucks you from behind. "Oh...<div class="tooltip">yebat<span class="tooltiptext">fuck</span></div>. Oh...da..."
//[[Try the Singapore Grip.|WR-5280 Singapore Grip]]//
<</page>><<silently>>
<<emote-mouth-calm>>
<</silently>>\
<<header>>\
<<page>>\
You squeeze your pussy muscles, thinking fleetingly of Kriangsak. In your shitty little bed at the hostel. Spanking you 'til you got it right.
<span class="greenHighlighter">Kolya ''loved'' that.</span>
"Unnh," Kolya grunts, feeling your pussy pulse on his dick. "<div class="tooltip">Bozhe moy<span class="tooltiptext">My god</span></div>."
//[[Fuck Kolya.|WR-5290 Fuck Kolya]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Your bodies bump and rock on the mattress for a few more minutes: a hard, fast, urgent fuck in a hotel suite.
Tension starts to build again in your body, and you feel like you could maybe push for a second orgasm, when Kolya's noises and movements get more intense, more focused, and you know he's about to come.
Holding your hips, he thrusts inside you a dozen more times, [[groaning in satisfaction|WR-5300 Kolya came]].
<</page>><<silently>>
<<emote-mouth-sexy>>
<<showFront>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gently pulls out, slumping down beside you on the bed. Your pussy's filled with his sperm.
A long, long moment of silence and togetherness.
"Are you on pill?" he asks.
[[Yeah.|WR-5500 Yeah]]
<<link "//Now// you ask." "WR-5510 Now you ask">><</link>>
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you tell him.
"Good." He reaches up, strokes your cheek with a fingertip. Leans in and kisses your face. "You are so beautiful."
<<include "WR-5520 Gimme moar">>\
<</page>><<silently>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Now you ask."
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles. He reaches up, strokes your cheek with a fingertip. Leans in and kisses your face. "You are so beautiful."
<<include "WR-5520 Gimme moar">>\
<</page>>Despite the tender moment, your body still hums with a desire for more. You kiss him softly, hoping to reignite the spark. But Kolya seems content, perhaps even a little tired as he [[holds you close|WR-5530 Hold me closer let me be]].<<silently>>
<<emote-calm>>
<<emote-cheeks-blush-fading>>
<<emote-chest-flush-fading>>
<<removeShoes>>
<</silently>>\
<<header>>\
<<page>>\
As you lie together, bodies entwined, a sense of intimacy lingers in the air.
The room feels warmer, and in that moment your connection with <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> feels more than just physical.
It leaves you with a sense of longing as you drift off to sleep, [[tangled in his arms|WR-5540 Dream sequence]].
<</page>><<silently>>
<<emote-calm>>
<<if $kate.lastWornEyeshadow == "emerald">>
<<apply-makeup-eyeshadow-emeraldFaded>>
<</if>>
<<set $kate.isUsingHerStripperName to false,
$kate.isUndercover to false>>
<<set $header.line1 to "''???''",
$header.line2 to "??? / ???">>
<</silently>>\
<<page>>\
<<image "/locationPhotos/dreams/havanaSocialDream.jpg" 0 1000 400 0>>\
In some hazy place, Kolya found out you're not really $kate.cover.firstName $kate.cover.surname.
"You lied to me."
You can't remember if he discovered you're a //whore// or a //spy.// Confusion and dread churn over you as you fumble for an explanation. "I had to," you stutter, but his eyes bore into you accusingly. Your cover's blown – where's Ian?
You try to get up and leave, but your legs feel like lead. The bar patrons stare at you with judgemental eyes, their faces weirdly distorted. You're exposed, vulnerable and trapped.
//[[Where's Ian?|WR-5700 Morning Kolya]]//
<</page>><<silently>>
<<emote-eyes-squint>>
<<remove-makeup-lipstick>>
<<set $avatar.clothing.pushUnique("accessories/blueBedsheets/50_blueBedsheets")>>
<<set $header.line1 to "''KOLYA'S HOTEL ROOM''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/kolyasRoomDay.jpg" 150 1000 550 0>>\
//Ian?//
You wake in a strange room, disorientated for a moment, before the memories of last night flood back. Daylight seeps in through the window, and you can hear the faint sounds of the city outside.
<span class="imageLink"><<link "Kolya's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> standing by the window, wearing a hotel bathrobe. "Morning, <div class="tooltip">Dewushka<span class="tooltiptext">Young lady</span></div>. Hate to rush you, but I hev meeting in two hours."
[[What time is it?|WR-5710 What time is it]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"What time is it?" you croak.
"Almost nine."
You let out a little groan. Working regularly 'til 2 <small>A.M.,</small> and coming home wired, is messing up your sleep patterns.
<span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> looks at you expectantly.
[[No problem, I've got a thing too.|WR-5720 I'm going][$kateSays to "No problem. I've got something too. I should get going."]]
[[I'm going, I'm going.|WR-5720 I'm going][$kateSays to "I'm going, I'm going."]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
//[[Get up and get dressed.|WR-5730 Nude scene]]//
<</page>><<silently>>
<<emote-calm>>
<<set $avatar.clothing.delete("accessories/blueBedsheets/50_blueBedsheets")>>
<</silently>>\
<<header>>\
<<page>>\
You slide out of bed. <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> watches you pad around on the carpet, gathering your things from last night.
It doesn't take long, since all you had was <<if $kate.isWearing.includes("dress")>>a dress<<else>><<link "a dress" `passage()`>><<wear-dress-emeraldGreenSatinMiniDress>><</link>><</if>>, <<if $kate.isWearing.includes("dress") and not $kate.isWearing.includes("handbag")>><<link "a bag" `passage()`>><<wear-zoesSilverClutchHandbag>><</link>><<else>>a bag<</if>>, and some <<if $kate.isWearing.includes("dress") and not $kate.isWearing.includes("shoes")>><<link "shoes" `passage()`>><<wear-shoes-silverStrappyStilettoSandals>><</link>><<else>>shoes<</if>>.
<<if $kate.isWearing.includesAll("dress", "handbag", "shoes")>>\
[[Bye.|WR-5740 Dress bag shoes]]
<</if>>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Thenks, <div class="tooltip">dewushka<span class="tooltiptext">Young lady</span></div>." <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> kisses you goodbye, a peck on the lips. "I hed great night."
You notice that he doesn't say //I'll call you.// But that's okay; he's served his purpose to you, as well.
[[Me too.|WR-5741 Bye Kolya][$kateSays to "Me too"]]
[[Thanks for dinner.|WR-5741 Bye Kolya][$kateSays to "Thanks for dinner"]]
[[Good luck with your meeting.|WR-5741 Bye Kolya][$kateSays to "Good luck with your meeting"]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays."
"Hev great day."
His door closes behind you as you [[leave through the corridor|WR-5800 Corridors]].
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''MARRIOTT HOTEL''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriotCorridorDay.jpg" 180 1000 580 0>>\
The corridors have a different vibe in the day. Sunlight washes in through big windows; the hallways hum with the sounds of hotel staff going about their morning routines, wheeling carts, and exchanging greetings.
You send a text to $zoe.firstName while you're waiting for the <<link "<<lift>>" "WR-5810 Daytrium">><</link>>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottAtriumDay.jpg" 300 1000 700 0>>\
Your borrowed stilettoes click loudly on marble as you emerge into the atrium. It's bustling with staff members, attending to guests checking in and checking out.
Your slinky dress and high heels – appropriate for last night's glamour – feel out of place for a morning of sunshine and energy. It feels like everybody's attention is on you as you click across the room. Businessmen staring at your bare legs. The hotel staff with their smiles of entertainment. Catty, disapproving looks from professional women and <<if $kate.agency == "cia" or $kate.agency == "csis">>moms<<else>>mums<</if>>.
Your phone pings; $zoe.firstName will be down in a few minutes.
//[[Wait in the atrium.|WR-5820 Waiting for Zo]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<remove-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/marriottAtriumDay2.jpg" 350 1000 750 0>>\
You find a spot with a view of the mezzanine staircase. Carefully, you lower yourself into the chair, one hand holding onto your hemline in an attempt to maintain a semblance of modesty.
There are families with kids around. You demurely cross your legs, trying to make sure you don't accidentally traumatise someone's brat.
Doing that bares your right leg, all the way up to the hip. Over to your right, a Middle Eastern boy stares at you, while his parents pretend not to notice.
After a few futile tugs on the hem, you give up, realising there's not much you can do to conceal the [[provocative display|WR-5830 Provocative display]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You sit in the lobby, your phone in hand, waiting for $zoe.firstName. Smells of fresh coffee and cooked breakfast drift temptingly out from the hotel restaurant.
You're tempted to order a pot of <<if $kate.agency == "mi6">>tea<<else>>coffee<</if>> while you wait – but that'd involve standing up and walking across the lobby to the restaurant, which would draw even more attention to yourself.
It feels like guests are looking at you from every single direction. You adjust your dishevelled hair and try to straighten your posture, but the sensation of being judged and scrutinised persists. You pull your dress down again, even though it's a [[futile effort|WR-5840 Enter Zoe]] at this point.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Finally, <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-bag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> descends the mezzanine staircase. Her breasts jiggle with every step, her sky-high heels clicking confidently on the polished marble.
A volley of disapproving stares bounce off her like she's armoured. Her expression's nonchalant, almost indifferent. As she draws close, you notice that her once-pristine makeup is smeared and slightly raccoon-like around the eyes.
She greets you with a tired grin. //"Good// morning!"
[[Hiii! Let's get out of here.|WR-5850 Let's get out of here]]
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Hiii!" Standing up, you give her a quick hug. Your body presses gently against hers, separated by just two skimpy scraps of satin. "Let's get out of here."
"Cool," $zoe.firstName agrees, "[[I'm buying breakfast|WR-5900 French toast]]."
<</page>><<silently>>
<<set $header.line1 to "''DOI DOI BISTRO''",
$header.line2 to "SUKHUMVIT / MAY 2018">>
<<set _header1Blink to true>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<wear-bigBlackSunglasses>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/sukhumvit/frenchToast.jpg" 140 1000 540 0>>\
Twenty minutes later. out on a warm sunny balcony overlooking a bustling Sukhumvit side street, you break your fast with some thick French toast. It's fresh, fluffy, drizzled with honey and topped with plump juicy berries. A black coffee on the side cuts through the sweetness and attacks your mild hangover.
Like the morning after the girl's night out, <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> phone is blowing up with messages from Bryan. "He normally like fucks me the second I walk through the door," she tells you. "I told him he has to be on his best behaviour 'til you're gone."
[[Thanks.|WR-5910 Thanks][$kateSays to "thanks"]]
[[I'll just grab my stuff and go.|WR-5910 Thanks][$kateSays to "grabAndGo"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "thanks">>\
"Thanks."
"No problem. And thanks for coming out last night, I had a great time."
<<elseif $kateSays == "grabAndGo">>\
"I'll just grab my stuff and go."
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Thanks. And thanks for coming out last night, I had a great time."
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
[[Me too.|WR-5920 Hashtag me too]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Me too."
"Listen...about your money sitch. Not saying they're //all// like that, but honestly...that was kind of like an <div class="tooltip">outcall<span class="tooltiptext">visiting clients outside of the club for prostitution</span></div>. A good one. So..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Same same. Except you'd have <div class="tooltip">five grand<span class="tooltiptext">in Thai baht: <<if $kate.agency == "cia">>$150<<elseif $kate.agency == "mi6">>£100<<elseif $kate.agency == "asis">>$200<<elseif $kate.agency == "csis">>$200<<elseif $kate.agency == "nzsis">>$200<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> in your purse."
[[I know.|WR-5940 Want me to talk to Con][$kateSays to "iKnow"]]
[[Could definitely use the money.|WR-5940 Want me to talk to Con][$kateSays to "couldUseMoney"]]
[[I'm not sure...|WR-5930 Not sure I wanna bargirl]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"I'm not sure..."
"It's up to you," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "No one's gonna pressure you or anything. Just saying, think about it."
<<include "WR-5960 Exit nav">>\
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "iKnow">>\
"I know," you tell her.
"Want me to talk to Con?" she offers.
<<elseif $kateSays == "couldUseMoney">>\
"Could sure use the money," you shrug back.
"I know. Want me to talk to Con?" she offers.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
//About me becoming a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>?// Your heart skips a beat.
<span class="greyedOut">//[Arousal too low]// Yeah, okay.</span>
[[Uh, not yet.|WR-5950 Not yet]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Uh, not yet."
"Mm, no rush," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Just saying, think about it."
<<include "WR-5960 Exit nav">>\
<</page>>[[Yeah.|WR-5970 Yeah][$kateSays to "Yeah."]]
[[Maybe.|WR-5970 Yeah][$kateSays to "Maybe..."]]
[[I am thinking about it.|WR-5970 Yeah][$kateSays to "I am thinking about it."]]<<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"$kateSays"
"Do it, be one of us." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> grins and puts on a monster voice. //"One of usss..."//
She's distracted by another message from Bryan; you skewer another mouthful of French toast with your knife and fork, and munch on it while she replies. A little smile is playing on her lips.
[[He's really obsessed with you.|WR-5980 Bryan is obsessed with you]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"He's really obsessed with you."
<span class="greenHighlighter">$zoe.firstName ''loved'' that.</span>
"Yeah. Y'know..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> sets down her phone. "Was thinking about leaving Bangkok. Going home or something. But that's exactly when I met Bry. He's...really great."
[[You two seem so close.|WR-6000 You two seem so close]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"You two seem so close." You're not even sure what you mean, but some instinct tells you that's the right thing to say.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> nods. "It's weird. I totally wasn't in a relationship kind of place. Y'know...the job and everything. And then Bry comes along and...don't know how to say it, it just...works so well. Couldn't imagine [[not being with him|WR-6010 Boom]] now."
<</page>><<silently>>
<<emote-mouth-smile>>
<<set _insightAlert to "" + $zoe.firstName + " – Key motivation (Bryan)">>
<<first>>
<<addNotification "Insight gained" _insightAlert>>
<</first>>
<</silently>>\
<<header>>\
<<page>>\
"You're so lucky," you say.
//Boom,// you think. That's the key insight that's going in your contact report: this <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div>'s crazy about her boyfriend. Any recruitment approach needs to be [[positioned around Bryan|WR-7000 Taxi]] somehow. Then it'll work.
<</page>><<silently>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<emote-calm>>
<<wear-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
You finish breakfast, let her pay the bill, and head down to the street to hail a taxi.
<span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shadesAndBag.png']]")>>
<<set Dialog.open()>>
<</link>></span> hemline slides dangerously high up the backs of her legs as she leans in to talk with the driver. Bent over with her elbows propped, she looks like a hooker. "Hi! <div class="tooltip">Bpai Yaowarat khaaa<span class="tooltiptext">Go Yaowarat pleeease</span></div>?"
"<div class="tooltip">Chaiii, chaiii<span class="tooltiptext">Yesss, yesss</span></div>," the <span class="imageLink"><<link "driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> nods.
You climb into the back, scooping your hemline under you so there's some satin between your naked butt and the [[battered leather|WR-7010 Long night]].
<</page>><<silently>>
<<remove-zoesSilverClutchHandbag>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Pulling out into traffic, the <span class="imageLink"><<link "driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> gazes into the rearview, check out the glamorous yet bedraggled western girls on his backseat.
"Long nigh?" he asks, grinning despite a few missing teeth.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "Yeah, you could say that."
"Where you gooo?" he asks.
[[Do you know Chakrabongse Villas?|WR-7020 Chakrabongse]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Do you know Chakrabongse Villas?"
"Oh yes. Nice plaaace," <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> responds reverently, "very nice."
You feel a little pang of first world guilt at the way he says it; Venya and Kolya didn't even look at the bill, but eating there is probably an unattainable luxury to many hardworking locals.
"Then we went back to a hotel with these Russian guys," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> continues. "And we both [[lost all our underwear|WR-7030 Loss your underwear]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Uhhh...loss unnerwear?"
<span class="imageLink"><<link "The driver's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> not sure he heard her right. But based on your last few taxi rides with <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span>...you think you understand where this is going.
<<link "//Let $zoe.firstName work it.//" "WR-7031 Zoe works it">><</link>>
[[Yeah, we're both totally naked under these dresses!|WR-7040 Under our clothes we're naked!]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> goes on. "Our underwear's on the floor in some hotel room. Both of us."
<span class="greenHighlighter">Mee ''liked'' that.</span>
<span class="imageLink"><<link "The driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles appreciatively, offering a gap-toothed leer at you in the rearview mirror.
"Say, ummm..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> muses. "How much for the fare? To Yaowarat, <div class="tooltip">tao rai?<span class="tooltiptext">how much</span></div>"
//[[Here we go...|WR-7050 How much now]]//
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah," you chime in, "we're both totally naked under these dresses!"
<span class="greenHighlighter">Mee ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
<span class="imageLink"><<link "The driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> chuckles appreciatively, offering a gap-toothed leer at you both in the rearview mirror.
"Say, ummm..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> muses. "How much for the fare? To Yaowarat, <div class="tooltip">tao rai?<span class="tooltiptext">how much</span></div>"
//[[Here we go...|WR-7050 How much now]]//
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
"Yaowarat, <div class="tooltip">three hunna<span class="tooltiptext">in Thai baht: <<if $kate.agency == "cia">>$9<<elseif $kate.agency == "mi6">>£6<<elseif $kate.agency == "asis">>$12<<elseif $kate.agency == "csis">>$12<<elseif $kate.agency == "nzsis">>$12<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div> maybe?" <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> suggests.
"Okayyy..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> replies. "How much if we show you under our dresses? <div class="tooltip">Tod chut<span class="tooltiptext">Dress off</span></div>?"
"<div class="tooltip">Tod chut<span class="tooltiptext">Dress off</span></div>?" <span class="imageLink"><<link "The driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> laughs. "<div class="tooltip">One baht<span class="tooltiptext"><<if $kate.agency == "cia">>$0.03<<elseif $kate.agency == "mi6">>£0.02<<elseif $kate.agency == "asis">>$0.04<<elseif $kate.agency == "csis">>$0.04<<elseif $kate.agency == "nzsis">>$0.04<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>."
"Okay, deal," $zoe.firstName pats the back of his seat. "When we [[get there|WR-7100 Return to Yaowarat]]. Don't want you to crash."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<a data-passage="WR-7110 Paying the fare">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/yaowarat/yaowaratMorningTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''YAOWARAT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/yaowarat/zoesCondoBuilding.jpg" 150 1000 550 0>>\
The taxi pulls up in the street, just outside $zoe.firstName's condo. Traffic rumbles past her window, passersby stroll past yours.
In broad daylight, with just coffee in your veins instead of cocktails<<if hasVisited("GNO-67100 Kate drops Molly")>> and pills<</if>>, flashing your way out of a <<if $kate.agency == "cia">>$9<<elseif $kate.agency == "mi6">>£6<<elseif $kate.agency == "asis">>$12<<elseif $kate.agency == "csis">>$12<<elseif $kate.agency == "nzsis">>$12<<else>>ERROR IN KATE.AGENCY VAR<</if>> taxi fare does //not// seem sensible at all. Maybe...
"<div class="tooltip">Tod chut<span class="tooltiptext">Dress off</span></div>? <div class="tooltip">One baht?<span class="tooltiptext"><<if $kate.agency == "cia">>$0.03<<elseif $kate.agency == "mi6">>£0.02<<elseif $kate.agency == "asis">>$0.04<<elseif $kate.agency == "csis">>$0.04<<elseif $kate.agency == "nzsis">>$0.04<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> checks.
<span class="imageLink"><<link "The driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> just smiles his gappy smile, not sure if this is [[serious or a joke|WR-7120 Zoe gets her tits out]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
With a cheeky smirk, $zoe.firstName answers him by curling her fingers under her hemline, and <span class="imageLink"><<link "lifting up her dress">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-dressLifted.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">Mee ''loved'' that.</span>
<span class="imageLink"><<link "The driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> stares, slack-jawed, at her bared body on the backseat.
//[[Check the street.|WR-7121 Street check]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A moment's pause while you check nobody's about to walk //right// past your window. There are people everywhere and...//oh, fuck it.//
//[[Just show him your pussy.|WR-7122 Pussy flash]]
[[Show him everything.|WR-7123 Body flash]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pulledUpToWaist-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pulledUpToWaist-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Wriggling in your seat, you pull your dress up around your hips, showing the driver your <<if $kate.bikiniLine == "hollywood">>shaved <</if>>naked vagina.
<span class="greenHighlighter">Mee ''loved'' that.</span>
His <span class="imageLink"><<link "dark, surprised eyes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> roam between the two <<if $kate.agency == "cia">>American<<else>>western<</if>> girls exposed on his backseat, one showing him her pussy, the other baring <span class="imageLink"><<link "everything she's got">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-dressLifted.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
$zoe.firstName giggles at the [[expression on his face|WR-7124 3 2 1]].
<</page>><<silently>>
<<set $avatar.cleavageCounter -=1>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
Wriggling on your seat, you copy $zoe.firstName, lifting your dress <span class="imageLink"><<link "above your breasts">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-dressLifted.png']]")>>
<<set Dialog.open()>>
<</link>></span>.
<span class="greenHighlighter">Mee ''loved'' that.</span>
The driver's <span class="imageLink"><<link "dark, surprised eyes">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> roam between the two <<if $kate.agency == "cia">>American<<else>>western<</if>> girls exposing themselves on his backseat, showing off everything they've got for a <<if $kate.agency == "cia">>$9<<elseif $kate.agency == "mi6">>£6<<elseif $kate.agency == "asis">>$12<<elseif $kate.agency == "csis">>$12<<elseif $kate.agency == "nzsis">>$12<<else>>ERROR IN KATE.AGENCY VAR<</if>> ride.
$zoe.firstName giggles at the [[expression on his face|WR-7124 3 2 1]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She <span class="imageLink"><<link "spreads her legs">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-dressLifted.png']]")>>
<<set Dialog.open()>>
<</link>></span> a little wider, giving <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> a better view. Some instinctive part of you almost follows suit, but you can't quite bring yourself to do it.
Exposed on the backseat, holding up your dress, you can feel your nipples stiffening and a tingly warmth in your groin, despite the humiliation.
"Three...two...one." With a smile, $zoe.firstName [[pulls her dress back down|WR-7130 Dressed down]].
<</page>><<silently>>
<<set $avatar.cleavageCounter +=1>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pulledUpToWaist-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-pulledUpToWaist-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You do the same, restoring your modesty.
"<div class="tooltip">One baht<span class="tooltiptext"><<if $kate.agency == "cia">>$0.03<<elseif $kate.agency == "mi6">>£0.02<<elseif $kate.agency == "asis">>$0.04<<elseif $kate.agency == "csis">>$0.04<<elseif $kate.agency == "nzsis">>$0.04<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>, right?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-shades.png']]")>>
<<set Dialog.open()>>
<</link>></span> reaches for her <<handbag>>.
"<div class="tooltip">Maiii<span class="tooltiptext">Nooo</span></div>," <span class="imageLink"><<link "the driver">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shakes his head. "Your ride [[for free|WR-7150 The street]]."
<</page>><<silently>>
<<wear-skirt-blackShortWorkSkirt>>
<<remove-dress-blackSleevelessSkater>>
<</silently>>\
<<header>>\
<<page>>\
Content
<</page>><<silently>>
<<emote-mouth-sexy>>
<<set $avatar.cleavageCounter -=1>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp2-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-liftedUp-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You join in, slipping out of your shoulder straps and sliding the satin down to your waist. TK rewrite this, sex it up
<span class="greenHighlighter">Mee ''loved'' that.</span>
Twisted around in his seat, clutching his backrest, <span class="imageLink"><<link "the driver's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> eyes dart eagerly between your naked chest and <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-dressLifted.png']]")>>
<<set Dialog.open()>>
<</link>></span>, trying to commit every detail to memory.
"<div class="tooltip">One baht?<span class="tooltiptext"><<if $kate.agency == "cia">>$0.03<<elseif $kate.agency == "mi6">>£0.02<<elseif $kate.agency == "asis">>$0.04<<elseif $kate.agency == "csis">>$0.04<<elseif $kate.agency == "nzsis">>$0.04<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>" $zoe.firstName [[repeats|WR-7140 One baht]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "The driver's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/gappy.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> head bobs eagerly. He has to swallow and lick his lips before he can talk. "<div class="tooltip">One baht<span class="tooltiptext"><<if $kate.agency == "cia">>$0.03<<elseif $kate.agency == "mi6">>£0.02<<elseif $kate.agency == "asis">>$0.04<<elseif $kate.agency == "csis">>$0.04<<elseif $kate.agency == "nzsis">>$0.04<<else>>ERROR IN KATE.AGENCY VAR<</if>></span></div>," he manages to croak.
$zoe.firstName giggles, and slips back into her dress.
//[[Do the same.|WR-7150 Dressed up]]//
<</page>><<silently>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<<wear-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
You climb out into the street, feeling unexpectedly frisky. Satin brushes sensuously across your nipples. <span class="imageLink"><<link "$zoe.firstName's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-pokies-shadesAndBag.png']]")>>
<<set Dialog.open()>>
<</link>></span> nipples are hard, too, straining against the flimsy material.
Fishing in her <<handbag>> for her keyfob, she touches it to the [[door reader|WR-7160 Climb]].
<</page>><<silently>>
<<emote-calm>>
<<remove-bigBlackSunglasses>>
<<set $header.line1 to "''1115 CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<set _header1Blink to true>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-"+$kate.braSize)>>
<<set $avatar.clothing.pushUnique("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-rear")>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-"+$kate.braSize)>>
<<set $avatar.clothing.delete("clothing/dresses/emeraldGreenSatinMiniDress/30_dress-emeraldGreenSatinMiniDress-riddenUp-rear")>>
<</silently>>\
<<header>>\
<<page>>\
You climb three flights of narrow stairs up to her condo.
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> comes scurrying up to the door when he hears her key in the lock. He grabs $zoe.firstName's hips and pulls her into an urgent kiss.
[[Just gonna grab my stuff.|WR-7170 Grab my stuff]]
<</page>><<silently>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S BEDROOM''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S BEDROOM''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<<if $kate.isWearing.includes("shoes")>>
<<emote-mouth-talking>>
<<else>>
<<emote-calm>>
<</if>>
<</silently>>\
<<header>>\
<<page>>\
"Just gonna grab my stuff."
<<image "/locationPhotos/thailand/yaowarat/zoesRoom.jpg" 275 1000 675 0>>\
You clonk through into $zoe.firstName's room, where you kick off her <<if $kate.isWearing.includes("shoes")>><<link "heels" `passage()`>><<removeShoes>><</link>><<else>>heels<</if>>, and transfer your things back into your <<if $kate.isWearing.includes("handbag") and not $kate.isWearing.includes("shoes")>><<link "<<handbag>>" `passage()`>><<remove-zoesSilverClutchHandbag>><</link>><<else>><<handbag>><</if>>.
<<if not $kate.isWearing.includesAny("shoes", "handbag")>>\
//[[Take off her dress.|WR-7180 Un dressed]]//
<</if>>\
<</page>><<silently>>
<<removeDress>>
<</silently>>\
<<header>>\
<<page>>\
You slip off the satin dress, and lay it on her bed.
You're changing in front of a big window, the curtains are pulled, and there are buildings opposite. You didn't even think about it until you were naked.
//[[Change into your street clothes.|WR-7500 Changed]]//
<</page>><<silently>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<<= '<<wear-knickers-' + $kate.lastWornKnickers + '>>'>>
<<if $kateWoreABraToZoes>>
<<= '<<wear-bra-' + $kate.lastWornBra + '>>'>>
<<unset $kateWoreABraToZoes>>
<</if>>
<<wear-shorts-bayouxBlueButtonDetailShorts>>
<<wear-top-brownVestWithSpaghettiStraps>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-bohoBrownLeatherBag>>
<</silently>>\
<<header>>\
<<page>>\
You slip back into your summer clothes. It feels reassuring to have some material covering your crotch again, after about 18 hours of nudity.
<span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> says goodbye to in the doorway. "Catch you later," she says, "thanks again for coming out last night. When's your next shift?"
[[Tomorrow.|WR-7510 Tomorrow]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Tomorrow," you tell her.
"Ohhh, cool. What ya doing tonight?"
[[Sleeping.|WR-7520 Nothin][$kateSays to "sleeping"]]
[[Nothin'.|WR-7520 Nothin][$kateSays to "nothing"]]
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kateSays == "sleeping">>\
<<emote-mouth-smirk>>\
"Sleeping."
<<elseif $kateSays == "nothing">>\
<<emote-mouth-talking>>\
"Nothin'," you shrug.
<<else>>\
(ERROR IN KATESAYS VAR)
<</if>>\
"No plans? Come over here," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> offers, "have dinner with us!"
[[I don't wanna intrude...|WR-7530 I don't wanna intrude]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Oh, I don't wanna intrude..."
"Naw, it's no problem," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> insists. "Bryyy..." she calls out, "we're not doing anything tonight, are we?"
"Naw," he calls back from the kitchen.
"Okay if $kate.cover.firstName comes over?"
"Yeah," he calls back. "Course."
"There you go." $zoe.firstName smiles expectantly. "Come by 'bout seven?"
[[Ok, cool, see you later.|WR-7540 Ok cool]]
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"Okay, cool. Thanks. See you later."
"Seeya." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-morningAfter-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> hugs you goodbye, and you head back down to the street to grab a [[taxi|WR-8000 Title card]].
<</page>><<silently>>
<<removeShoes>>
<<remove-bohoBrownLeatherBag>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / MAY 2018">>
<</silently>>\
<a data-passage="WR-8010 Report">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepTitleCard.jpg"+' >'>>
</a><<silently>>
<<emote-calm>>
<<set $header.line1 to "''YOUR ROOM''",
$header.line2 to "HOSTEL / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
You lock your door and tap out a contact report on your phone. It's a straightforward account of your double date, coupled with your assessment of her suitability for recruitment as an agent. There were quite a few positive indicators:
<<include "WR-8011 Exit nav">>\
<</page>><<if not hasVisited("WR-8020 Zoe has access")>>\
//[[Report that she has good access to the target.|WR-8020 Zoe has access]]//
<</if>>\
<<if not hasVisited("WR-8030 Zoe invited me for dinner")>>\
//[[Report that she invited you back to her place tonight.|WR-8030 Zoe invited me for dinner]]//
<</if>>\
<<if not hasVisited("WR-8040 Zoe's a good liar")>>\
//[[Report that she's skilled at casual deception.|WR-8040 Zoe's a good liar]]//
<</if>>\
<<if not hasVisited("WR-8050 Zoe's relationship with Bryan")>>\
//[[Report that her relationship can be used as motivation or leverage.|WR-8050 Zoe's relationship with Bryan]]//
<</if>>\
<<if hasVisited("WR-8020 Zoe has access") and hasVisited("WR-8030 Zoe invited me for dinner") and hasVisited("WR-8040 Zoe's a good liar") and hasVisited("WR-8050 Zoe's relationship with Bryan")>>\
This a pretty solid contact report, especially considering it's just based on a single night out. HQ will probably be pleased with it. The only other thing you need to consider is your own conduct.
//[[Report that you had sex with Kolya.|WR-8060 Kate reports sex with Kolya]]
[[Leave it out of the report.|WR-8070 Kate doesn't report sex with Kolya]]//
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
<<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> teaches that the three most important qualities a potential <div class="tooltip">agent<span class="tooltiptext">a person working for an intelligence service, not always knowingly</span></div> can possess are 'access, access and access'; there's little point recruiting them otherwise.
It's already known that $zoe.firstName has behind-the-scenes access to the club. But you confirmed at breakfast that she plans to stay there at the present, which is helpful in terms of mission planning.
<<include "WR-8011 Exit nav">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's helpful that she seems to like you; part of that's just your intuition, but she also invited you back to dinner at her place tonight without any kind of prompting.
You add this into your report. If she does get recruited, it almost certainly won't be you that makes the approach – too risky for your cover – but being friends with her will just generally be helpful to whatever officer ends up as her handler.
<<include "WR-8011 Exit nav">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
She's pretty good at pretending to be something she's not (at least in a low-threat environment like the date was).
That's probably a normal skill for a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> or any kind of sex worker, but it's obviously a critical skill for any kind of <div class="tooltip">agent<span class="tooltiptext">a person working for an intelligence service, not always knowingly</span></div>.
<<include "WR-8011 Exit nav">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The main insight you picked up is how serious she is about Bryan. She really seems to like him, and see a future together with him; that'll be key in shaping a recruitment strategy.
Unlike some <div class="tooltip">HIS's<span class="tooltiptext">Hostile Intelligence Services</span></div> you could name, <<if $kate.agency == "cia">>the Agency doesn't<<elseif $kate.agency == "mi6">>MI6 and CIA don't<<elseif $kate.agency == "asis">>ASIS and CIA don't<<elseif $kate.agency == "csis">>CSIS and CIA don't<<elseif $kate.agency == "nzsis">>SIS and CIA don't<<else>>ERROR IN KATE.AGENCY VAR<</if>> routinely use coercion to recruit <div class="tooltip">agents<span class="tooltiptext">people working for an intelligence service, not always knowingly</span></div>. But it's professional to note when it's an //option.// $zoe.firstName's relationship with Bryan could provide leverage, if needed, in the future.
<<include "WR-8011 Exit nav">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
//In order to maintain my cover and develop my rapport with <small>SONGBIRD</small>...//
The rest just flows out in one steady draft. Thumbs tapping fluidly on the screen, you explain in professional, matter-of-fact language how – like $zoe.firstName – <<if $kate.agency == "cia">>CIA<<elseif $kate.agency == "mi6">>MI6<<elseif $kate.agency == "asis">>ASIS<<elseif $kate.agency == "csis">>CSIS<<elseif $kate.agency == "nzsis">>SIS<<else>>ERROR IN KATE.AGENCY VAR<</if>> Officer $kate.firstName[0] ended the night in a hotel room with a Russian businessman.
//...carried out in accordance with my verbal briefing from DCTC dated <<if $kate.agency == "cia">>05/18/2018<<elseif $kate.agency == "csis">>2018-05-15<<else>>18/05/2018<</if>>.//
You re-read it. It's dispassionate and factual.
It also turns you on when you hit <small>[[SEND|WR-8080 Into the ether]]</small>.
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
It's not lying to leave it out of your report, you'll tell the truth if anybody asks.
But you doubt they will. HQ seems fine with your methods, you don't need to write down everything that happens. It's pretty obvious anyway, if you read between the lines.
//[[Send the report.|WR-8080 Into the ether]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A checkmark icon appears at the bottom of your report, confirming it's been sent; then a second one, confirming it's been delivered.
They change colour a couple seconds later, indicating that someone – you have no idea who – has opened the report to read. Could be Ian, could be <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div>, or anybody in between.
Everything will be automatically be deleted from your phone when you [[close the app|WR-8090 Sent]].
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You kill a few hours in the hostel before [[heading back over|WR-8500 Title card]] to $zoe.firstName's.
<</page>><<silently>>
<<emote-calm>>
<<avatar-stripNaked>>
<<wear-bracelet-friendshipBraceletsLeftWrist>>
<<wear-skirt-blueAndRedEthnicPatternFlippyMini>>
<<wear-top-whiteTouristyTempleTShirt>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<</silently>>\
<a data-passage="WR-8510 Threesome worries">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/yaowarat/yaowaratEarlyEveningTitleCard.jpg"+' >'>>
</a><<silently>>
<<if $zoe.firstName == "Lauren">>
<<set $header.line1 to "''LAUREN'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<<else>>
<<set $header.line1 to "''EMILY'S CONDO''",
$header.line2 to "YAOWARAT / MAY 2018">>
<</if>>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You feel a little bit anxious as you tap on $zoe.firstName's door. In some ways, the <div class="tooltip">bargirls<span class="tooltiptext">club prostitutes</span></div> are so normal; in others, they're so weird.
//Is this going to be...some kind of threesome? Is that how this [[works|WR-8520 Not yet, everybody]]?//
<</page>><<silently>>
<<remove-shoes-tanAnkleHighStrappyFlatSandals>>
<<remove-multicolouredMalaysianCrossBodyBag>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/yaowarat/zoeCondoLivingArea.jpg" 200 1000 600 0>>\
In the end, it's nothing like that; just a fun, chilled-out night with <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span>.
You eat Chinese street food out of cartons, wash it down with a few stubby cans of Chang, and chat about Thailand, travel, and [[random stuff|WR-8530 Random stuff]].
<</page>><<silently>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
<span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> tells you about his MMA career: he's taking a year out from the States to study <div class="tooltip">Muay Thai<span class="tooltiptext">Thai boxing</span></div>, training at a fight camp under a <div class="tooltip">//kru//<span class="tooltiptext">teacher</span></div> called Yoda. He occasionally fights in Muay Thai matches in various stadiums in Bangkok, where his size and power give him a chance against more experienced but smaller Thai fighters.
"I'm like 50/50," he tells you.
"So modest. He's 10 for 12 since he got here," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> says proudly. "That's 80/20, baby."
//No it isn't,// screams your inner intelligence analyst, but you avoid derailing the good vibes.
"Eh," Bryan shrugs. "I fight, she [[does the math|WR-8540 The club]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
The conversation flows onto the club: the people in there, what it's like. <span class="imageLink"><<link "Bryan's">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> interested in, and at least mildly titillated by, the story of how you went from '<<if $kate.agency == "cia">>American<<elseif $kate.agency == "mi6">>English<<elseif $kate.agency == "asis">>Aussie<<elseif $kate.agency == "csis">>Canadian<<elseif $kate.agency == "nzsis">>Kiwi<<else>>ERROR IN KATE.AGENCY VAR<</if>> backpacker' to 'topless barmaid'.
"Are you gonna...y'know," he asks you. "Do <div class="tooltip">bargirling<span class="tooltiptext">club prostitution</span></div>?"
//The question on everybody's lips lately.//
[[Maybe.|WR-8570 Probably]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Maybe," you tell him, with a shrug.
<span class="greenHighlighter">$zoe.firstName ''liked'' that.</span> <span class="greenHighlighter">Bryan ''liked'' that.</span>
"That is so fuckin' hot," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> murmurs.
"Bry!" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> thwacks him on the leg. "Behave."
"Sorry."
[[Why's it hot?|WR-8580 Why's it hot?]]
<</page>><<silently>>
<<emote-brows-raised>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Why's it //hot?"// you ask.
"I dunno," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs. "Maybe the fact that...you're thinking about it, I guess? I don't know, it's just hot."
"You just like women to be sluts," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> says, "that's literally your whole entire kink. $amanda.firstName?"
"Uh...[[she's hot|WR-8590 Bargirls are hot]]," Bryan shrugs.
<</page>><<silently>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
"$gina.nickname?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> is counting bargirls on her fingers.
"Hot."
"Ilsa?"
"Uh huh. Hot."
"$kate.cover.firstName?"
"Hot."
"$kate.cover.firstName when she starts <div class="tooltip">bargirling<span class="tooltiptext">club prostitution</span></div>?"
"Fuck yeah," he nods. "[[Extra hot|WR-8600 Ping]]."
<</page>><<silently>>
<<emote-nose-wrinkle>>
<<emote-mouth-wideSmile>>
<</silently>>\
<<header>>\
<<page>>\
"Ping?" <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> asks.
"Uh, hot. But it's less hot for the Thai girls." <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs.
"Why?"
"Don't know," he shrugs. "[[Just is|WR-8610 Justice]]."
<</page>><<silently>>
<<wear-shoes-tanAnkleHighStrappyFlatSandals>>
<<wear-multicolouredMalaysianCrossBodyBag>>
<<emote-calm>>
<<emote-mouth-smile>>
<</silently>>\
<<header>>\
<<page>>\
The talk drifts onto other things, and a little while later you're saying goodbye to the couple in their doorway.
"Seeya $kate.cover.firstName," <span class="imageLink"><<link "Bryan">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/bryan.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> says.
[[Bye.|WR-8612 Bye Bry]]
//[[Kiss his cheek.|WR-8620 Mwah bye Bry]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
"Bye. Thanks for having me."
<span class="greenHighlighter">Bryan ''liked'' that.</span> <span class="greenHighlighter">$zoe.firstName ''liked'' that.</span>
"Thanks for coming over." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> hugs you goodbye. "We should [[do it more|WR-9000 Yaowarat by night]]."
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
You lean up and peck his stubbly cheek. "Bye."
<span class="greenHighlighter">Bryan ''loved'' that.</span>
"Thanks for coming over." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_condoChineseAndChill.png']]")>>
<<set Dialog.open()>>
<</link>></span> hugs you goodbye. "We should [[do it more|WR-9000 Yaowarat by night]]."
<</page>><<silently>>
<<emote-calm>>
<<set $header.line1 to "''YAOWARAT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/yaowarat/yaowaratNight.jpg" 263 1000 663 0>>\
Yaowarat at night buzzes with excitement: bustling crowds, neon signs, woks sizzling with street food, laughter and music drifting out of restaurants and bars.
You had a good time with $zoe.firstName and Bryan, but it seems way too early to end the night. You could hit a bar, just...see what happens.
//But $kate.cover.firstName $kate.cover.surname's broke.// You //seriously// doubt you're under surveillance, but you never know. You wave down a taxi, and head back to the hostel.
//Guess my next night out is the club, [[tomorrow night|End of content page]]...//
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Actually...I'm gonna call it a night."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span>
"Huhhh? You serious?"
[[Yeah. I'll get a taxi back.|WR-9020 Tonight was enough]]
<</page>><<silently>>
<<emote-mouth-talking>>
<</silently>>\
<<header>>\
<<page>>\
"Yeah. I just feel like tonight was enough. I'll get a taxi back."
<span class="redHighlighter">$zoe.firstName ''disliked'' that.</span>
"Well..." <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> shrugs, trying to hide her disappointment. "If you're sure. We can catch up tomorrow or something, [[I guess|WR-9030 Date ya both]]."
<</page>><<silently>>
<<emote-calm>>
<</silently>>\
<<header>>\
<<page>>\
Back at the booth, <span class="imageLink"><<link "Venya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/venya3.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> and <span class="imageLink"><<link "Kolya">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/npcAvatars/kolya2.jpg']]")>>
<<set Dialog.open()>>
<</link>></span> are startled to learn that you're leaving. "Huh? But, uhhh..."
They try to talk you into staying for 'one more dreenk', but you stick to your guns. "She's gotta go //now,// guys," <span class="imageLink"><<link "$zoe.firstName">>
<<set Dialog.setup()>>
<<set Dialog.wiki("[img[$imagePath.base+'/dynamicAvatars/zoe/zoe_bronzeSatinDress-havanaHatAndBag-makeup'+$zoeEyeMakeup+'.png']]")>>
<<set Dialog.open()>>
<</link>></span> tells them, "something's come up. Don't worry...I'll keep you both entertained."
Her tone is light and breezy, laced with an unmissable hint of a sensual possibility. It takes the spotlight off you for long enough to [[slip away easily|WR-9040 Title card]].
<</page>><<silently>>
<<set $avatar.foreground.delete("clothing/accessories/cubanFedora/65_hat-cubanFedora-"+$kate.hairStyle+"-"+$kate.hairColour)>>
<<set $avatar.foreground.delete("clothing/accessories/cubanFedora/65_hat-cubanFedora-"+$kate.hairStyle+"-"+$kate.hairColour+"-rear")>>
/* This absurd block of dirty code is required to temporarily change Kate's hair */
<<switch $kate.hairColour>>
<<case "Black" "black">>
<<set _hairColour to "black">>
<<case "Blonde" "blonde">>
<<set _hairColour to "blonde">>
<<case "Ginger" "ginger">>
<<set _hairColour to "ginger">>
<<case "Brown" "brown">>
<<set _hairColour to "brown">>
<<case "Auburn" "auburn">>
<<set _hairColour to "auburn">>
<<case "Champagne" "champagne">>
<<set _hairColour to "mousy">>
<</switch>>
<<switch $kate.hairStyle>>
<<case "longStraight" "Long straight">>
/*Long*/:
<<set _hair to "longHair-straight-"+_hairColour>>
<<case "longCurly" "Long curly">>
/*Curly*/
<<set _hair to "longHair-curls-"+_hairColour>>
<<case "short" "Short" "shortSuperShort" "Super short">>
/*Short*/
<<set _hair to "shortHair-superShort-"+_hairColour>>
<<case "shortBob" "Short bob" "Medium bob">>
/*ShortBob*/
<<set _hair to "mediumHair-bob-"+_hairColour>>
<<case "longHair-bunWithBangs" "bunWithBangs" "Bun with bangs">>
/*longHair-bunWithBangs*/
<<set _hair to "longHair-bunWithBangs-"+_hairColour>>
<<case "mediumHair-wavyBob" "wavyBob" "Wavy bob">>
/*ShortBob*/
<<set _hair to "mediumHair-wavyBob-"+_hairColour>>
<</switch>>
<<set $avatar.foreground.pushUnique("/113Hair/10_"+_hair+"-front"),
$avatar.foreground.pushUnique("/113Hair/10_"+_hair+"-rear")
>>
<<emote-calm>>
<</silently>>\
<a data-passage="WR-9050 Taxi">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/sukhumvit/sukhumvitStreetNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set $header.line1 to "''SUKHUMVIT''",
$header.line2 to "BANGKOK / MAY 2018">>
<<set _header1Blink to true>>
<</silently>>\
<<header>>\
<<page>>\
You exit alone through the fake phone booth, and walk out to the Sukhumvit main drag.
Neon lights cast colourful glows on the <<if $kate.agency == "cia" or $kate.agency == "csis">>sidewalks<<else>>pavements<</if>>; couples and revelers pass by, lost in their own adventures. Music and laughter spill from nearby clubs and bars.
Climbing into the back of a taxi, you feel a mixture of [[relief and regret|WR-9100 Title card]].
<</page>><<silently>>
<<set $header.line1 to "''BAAN KRUNG THEP HOSTEL''",
$header.line2 to "BANGKOK / APRIL 2018">>
<<set $kate.isUsingHerStripperName to false>>
<<emote-calm>>
<<remove-amandasWhiteCrissCrossFashionBag>>
<<removeShoes>>
<<removeDress>>
<<wear-knickers-whiteBikiniPantsRipley>>
<<wear-top-whiteRipleyVest>>
<</silently>>\
<a data-passage="WR-9110 Kate's room">
<<= '<img src='+ $imagePath.base + "locationPhotos/thailand/hostel/baanKrungThepNightTitleCard.jpg"+' >'>>
</a><<silently>>
<<set _header1Blink to true>>
<<remove-zoesSilverClutchHandbag>>
<</silently>>\
<<header>>\
<<page>>\
<<image "/locationPhotos/thailand/bangkok/katesRoom.jpg" 150 1000 700 0>>\
<span class="blinking">''1.37 <small>A.M.</small>''</span> Back at the hostel, you can't help but wonder if you made the right decision. The comfort of your little room surrounds you, and you find solace in the silence.
//[[Submit your contact report to HQ.|WR-9120 Contact report]]//
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Opening Signal on your phone, you tap out a contact report describing tonight's double date – along with your assessment of her suitability for recruitment as an agent. There are a couple of insights you can pass on:
<<include "WR-9121 Exit nav">>\
<</page>><<if not hasVisited("WR-9130 Zoe's a good liar")>>\
//[[Report that she's skilled at casual deception.|WR-9130 Zoe's a good liar]]//
<</if>>\
<<if not hasVisited("WR-9140 Zoe's a thrillseeker")>>\
//[[Report that she's a thrillseeker.|WR-9140 Zoe's a thrillseeker]]//
<</if>>\
<<if hasVisited("WR-9130 Zoe's a good liar") and hasVisited("WR-9140 Zoe's a thrillseeker")>>\
That's all you've got, really. It's a normal contact report, to the same standard as most that crossed your desk back at <<if $kate.agency == "cia">>Langley<<elseif $kate.agency == "mi6">>Vauxhall Cross<<elseif $kate.agency == "csis">>NHQ<<elseif $kate.agency == "asis">>RG Casey<<elseif $kate.agency == "nzsis">>Pipitea Plaza<<else>>HQ<</if>>: //Officer $kate.firstName[0] met source <<if $kate.firstName[0] == "X">>Y<<else>>X<</if>>, picked up a few details.//
//[[Send it.|WR-9150 Professional conduct]]//
<</if>>\<<silently>>
<</silently>>\
<<header>>\
<<page>>\
She's pretty good at pretending to be something she's not (at least in a low-threat environment like the date was).
That's probably a normal skill for a <div class="tooltip">bargirl<span class="tooltiptext">club prostitute</span></div> or any kind of sex worker, but it's obviously a critical skill for any kind of <div class="tooltip">agent<span class="tooltiptext">a person working for an intelligence service, not always knowingly</span></div>.
<<include "WR-9121 Exit nav">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
Squealing with excitement when the boat took off, going back to hotel rooms with men she barely knows; she's a thrillseeker.
This is a mixed blessing in <div class="tooltip">agent<span class="tooltiptext">a person working for an intelligence service, not always knowingly</span></div> recruitment. On the one hand, people who crave excitement are easy to recruit – often they say yes, just for the thrill of it. On the other hand, loose cannons can cause all kinds of problems in the field.
<<include "WR-9121 Exit nav">>\
<</page>><<silently>>
<</silently>>\
<<header>>\
<<page>>\
A checkmark icon appears at the bottom of your report, confirming it's been sent; then a second one, confirming it's been delivered.
They change colour a couple seconds later, indicating that someone – you have no idea who – has opened the report to read. Could be Ian, could be <div class="tooltip">DCTC<span class="tooltiptext">Mike Dodaro, Director, CIA Counterterrorism Mission Center</span></div>, or anybody in between.
At least you haven't got any worries about your own professional conduct tonight. It's quite satisfying to submit a contact report that doesn't paint you as some kind of wannabe Mata Hari. Hopefully this will help your reputation at work.
Everything deletes from your phone as soon as you close the app. That's another mission tasking complete; the next thing on your radar is a shift at the club, the [[day after tomorrow|End of content page]]...
<</page>>